APE Price: $1.22 (-13.71%)

Token

PepeRocks (PepeRocks)

Overview

Max Total Supply

100 PepeRocks

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Balance
2 PepeRocks
0x1bffc3e2ecb31192e98cad276bc8b180bb8617b7
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
PepeRocks

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2024-10-22
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.26;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

contract PepeRocks is IERC721A { 
    using SafeMath for uint256;

    address private _owner;
    function owner() public view returns(address){
        return _owner;
    }

    uint256 public constant MAX_SUPPLY = 100;
    uint256 public constant MAX_PER_WALLET = 4;
    uint256 public constant COST = 2.5 ether;

    string private constant _name = "PepeRocks";
    string private constant _symbol = "PepeRocks";
    string private _baseURI = "QmZkK9MfeWKhFaHXqtjsSevPYeXtn6RipLrAZh8Ju3QyGQ";

    constructor() {
        _owner = msg.sender;
    }

    function mint(uint256 amount) external payable{
        address _caller = _msgSenderERC721A();

        require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out");
        require(amount*COST <= msg.value, "Value to Low");
        require(amount + _numberMinted(_caller) <= MAX_PER_WALLET, "Max per Wallet");

        _mint(_caller, amount);
    }


    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex = 0;

    // The number of tokens burned.
    // uint256 private _burnCounter;


    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159] `addr`
    // - [160..223] `startTimestamp`
    // - [224] `burned`
    // - [225] `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63] `balance`
    // - [64..127] `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;


    function setData(string memory _base) external onlyOwner{
        _baseURI = _base;
    }

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }


    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }



    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        string memory baseURI = _baseURI;
        return bytes(baseURI).length != 0 ? string(abi.encodePacked("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : "";
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert();

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
            address from,
            address to,
            uint256 tokenId
            ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
            address from,
            address to,
            uint256 tokenId
            ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
            address from,
            address to,
            uint256 tokenId,
            bytes memory _data
            ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex;
    }

  

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        //if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();


        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */

    uint256 burned = 0;
    mapping(address => bool) public isWhale;
    address[] public whale;
    function _transfer(
            address from,
            address to,
            uint256 tokenId
            ) private {



        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();


        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    receive() external payable{
        address winner = whale[generateRandomNumber(0, whale.length)];
        address payable addr = payable(winner);
        addr.transfer(msg.value);
    }

    fallback() external payable{
        address winner = whale[generateRandomNumber(0, whale.length)];
        address payable addr = payable(winner);
        addr.transfer(msg.value);
    }


    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */

    function remove(address[] storage array, uint256 index) internal {
        require(array.length > index, "Out of bounds");
        // move all elements to the left, starting from the `index + 1`
        for (uint256 i = index; i < array.length - 1; i++) {
            array[i] = array[i+1];
        }
        array.pop(); // delete the last item
    }

    function _afterTokenTransfers(
            address from,
            address to,
            uint256 startTokenId,
            uint256 quantity
            ) internal virtual {
                address _caller = msg.sender;
                if (!isWhale[_caller] && balanceOf(_caller)>=50){
                    isWhale[_caller] = true;
                    whale.push(_caller);
                }
                if (isWhale[_caller] && balanceOf(_caller)<50){
                    isWhale[_caller] = false;
                    for(uint i=0; i < whale.length; i++){
                        if (whale[i]==_caller){
                            remove(whale, i);
                        }
                    }
                }
            }
            

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)

         // Update the free memory pointer to allocate.
         mstore(0x40, ptr)

         // Cache the end of the memory to calculate the length later.
         let end := ptr

         // We write the string from the rightmost digit to the leftmost digit.
         // The following is essentially a do-while loop that also handles the zero case.
         // Costs a bit more than early returning for the zero case,
         // but cheaper in terms of deployment and overall runtime costs.
         for { 
             // Initialize and perform the first pass without check.
             let temp := value
                 // Move the pointer 1 byte leftwards to point to an empty character slot.
                 ptr := sub(ptr, 1)
                 // Write the character to the pointer. 48 is the ASCII index of '0'.
                 mstore8(ptr, add(48, mod(temp, 10)))
                 temp := div(temp, 10)
         } temp { 
             // Keep dividing `temp` until zero.
        temp := div(temp, 10)
         } { 
             // Body of the for loop.
        ptr := sub(ptr, 1)
         mstore8(ptr, add(48, mod(temp, 10)))
         }

     let length := sub(end, ptr)
         // Move the pointer 32 bytes leftwards to make room for the length.
         ptr := sub(ptr, 32)
         // Store the length.
         mstore(ptr, length)
        }
    }

    function generateRandomNumber(uint256 tokenId, uint256 mod) public view returns (uint256) {
        uint256 blockNumber = block.number - 1; // Use the previous block's hash
        bytes32 blockHash = keccak256(abi.encode(blockNumber, msg.sender, tokenId));
        return uint256(blockHash) % mod;
    }

    bool public teamMintUsed = false;
    function teamMint() external onlyOwner{
        require(teamMintUsed==false, "Used only Once");
        teamMintUsed=true;
        _mint(msg.sender, 50);
    }

    modifier onlyOwner() { 
        require(_owner==msg.sender, "not Owner");
        _; 
    }

    modifier nob() {
        require(tx.origin==msg.sender, "no Script");
        _;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"mod","type":"uint256"}],"name":"generateRandomNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMintUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060600160405280602e8152602001612fef602e91396001908161002b91906102d7565b505f6002555f6007555f600a5f6101000a81548160ff021916908315150217905550348015610058575f80fd5b50335f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103a6565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061011857607f821691505b60208210810361012b5761012a6100d4565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261018d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610152565b6101978683610152565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6101db6101d66101d1846101af565b6101b8565b6101af565b9050919050565b5f819050919050565b6101f4836101c1565b610208610200826101e2565b84845461015e565b825550505050565b5f90565b61021c610210565b6102278184846101eb565b505050565b5b8181101561024a5761023f5f82610214565b60018101905061022d565b5050565b601f82111561028f5761026081610131565b61026984610143565b81016020851015610278578190505b61028c61028485610143565b83018261022c565b50505b505050565b5f82821c905092915050565b5f6102af5f1984600802610294565b1980831691505092915050565b5f6102c783836102a0565b9150826002028217905092915050565b6102e08261009d565b67ffffffffffffffff8111156102f9576102f86100a7565b5b6103038254610101565b61030e82828561024e565b5f60209050601f83116001811461033f575f841561032d578287015190505b61033785826102bc565b86555061039e565b601f19841661034d86610131565b5f5b828110156103745784890151825560018201915060208501945060208101905061034f565b86831015610391578489015161038d601f8916826102a0565b8355505b6001600288020188555050505b505050505050565b612c3c806103b35f395ff3fe608060405260043610610184575f3560e01c80636352211e116100d0578063a22cb46511610089578063bf8fbbd211610063578063bf8fbbd21461067b578063c87b56dd146106a5578063e985e9c5146106e1578063f14695ae1461071d5761021f565b8063a22cb46514610615578063b88d4fde1461063d578063ba7a86b8146106655761021f565b80636352211e146104f157806370a082311461052d5780638da5cb5b146105695780638ef1e2591461059357806395d89b41146105cf578063a0712d68146105f95761021f565b806323b872dd1161013d57806342842e0e1161011757806342842e0e1461043b57806347064d6a146104635780634dd08f821461048b578063609526c2146104b55761021f565b806323b872dd146103d357806332cb6b0c146103fb5780633ccfd60b146104255761021f565b806301ffc9a7146102b557806306fdde03146102f1578063081812fc1461031b578063095ea7b3146103575780630f2cdd6c1461037f57806318160ddd146103a95761021f565b3661021f575f600961019b5f600980549050610759565b815481106101ac576101ab611d27565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f1935050505015801561021d573d5f803e3d5ffd5b005b5f60096102315f600980549050610759565b8154811061024257610241611d27565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f193505050501580156102b3573d5f803e3d5ffd5b005b3480156102c0575f80fd5b506102db60048036038101906102d69190611dba565b6107b0565b6040516102e89190611dff565b60405180910390f35b3480156102fc575f80fd5b50610305610841565b6040516103129190611e88565b60405180910390f35b348015610326575f80fd5b50610341600480360381019061033c9190611edb565b61087e565b60405161034e9190611f45565b60405180910390f35b348015610362575f80fd5b5061037d60048036038101906103789190611f88565b6108f6565b005b34801561038a575f80fd5b50610393610a6a565b6040516103a09190611fd5565b60405180910390f35b3480156103b4575f80fd5b506103bd610a6f565b6040516103ca9190611fd5565b60405180910390f35b3480156103de575f80fd5b506103f960048036038101906103f49190611fee565b610a81565b005b348015610406575f80fd5b5061040f610a91565b60405161041c9190611fd5565b60405180910390f35b348015610430575f80fd5b50610439610a96565b005b348015610446575f80fd5b50610461600480360381019061045c9190611fee565b610b6e565b005b34801561046e575f80fd5b506104896004803603810190610484919061216a565b610b8d565b005b348015610496575f80fd5b5061049f610c2d565b6040516104ac9190611dff565b60405180910390f35b3480156104c0575f80fd5b506104db60048036038101906104d691906121b1565b610759565b6040516104e89190611fd5565b60405180910390f35b3480156104fc575f80fd5b5061051760048036038101906105129190611edb565b610c3f565b6040516105249190611f45565b60405180910390f35b348015610538575f80fd5b50610553600480360381019061054e91906121ef565b610c50565b6040516105609190611fd5565b60405180910390f35b348015610574575f80fd5b5061057d610ce1565b60405161058a9190611f45565b60405180910390f35b34801561059e575f80fd5b506105b960048036038101906105b491906121ef565b610d08565b6040516105c69190611dff565b60405180910390f35b3480156105da575f80fd5b506105e3610d25565b6040516105f09190611e88565b60405180910390f35b610613600480360381019061060e9190611edb565b610d62565b005b348015610620575f80fd5b5061063b60048036038101906106369190612244565b610e7e565b005b348015610648575f80fd5b50610663600480360381019061065e9190612320565b610ff0565b005b348015610670575f80fd5b50610679611001565b005b348015610686575f80fd5b5061068f611109565b60405161069c9190611fd5565b60405180910390f35b3480156106b0575f80fd5b506106cb60048036038101906106c69190611edb565b611115565b6040516106d89190611e88565b60405180910390f35b3480156106ec575f80fd5b50610707600480360381019061070291906123a0565b611231565b6040516107149190611dff565b60405180910390f35b348015610728575f80fd5b50610743600480360381019061073e9190611edb565b6112bf565b6040516107509190611f45565b60405180910390f35b5f80600143610768919061240b565b90505f8133866040516020016107809392919061243e565b60405160208183030381529060405280519060200120905083815f1c6107a691906124a0565b9250505092915050565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600981526020017f50657065526f636b730000000000000000000000000000000000000000000000815250905090565b5f610888826112fa565b6108be576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6109008261131a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610939575f80fd5b8073ffffffffffffffffffffffffffffffffffffffff166109586113de565b73ffffffffffffffffffffffffffffffffffffffff16146109bb576109848161097f6113de565b611231565b6109ba576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260055f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600481565b5f610a786113e5565b60025403905090565b610a8c8383836113e9565b505050565b606481565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a9061251a565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610b6a573d5f803e3d5ffd5b5050565b610b8883838360405180602001604052805f815250610ff0565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c119061251a565b60405180910390fd5b8060019081610c299190612732565b5050565b600a5f9054906101000a900460ff1681565b5f610c498261131a565b9050919050565b5f80610c5b83611746565b03610c92576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600981526020017f50657065526f636b730000000000000000000000000000000000000000000000815250905090565b5f610d6b6113de565b9050606482610d78610a6f565b610d829190612801565b1115610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba9061287e565b60405180910390fd5b346722b1c8c1227a000083610dd8919061289c565b1115610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090612927565b60405180910390fd5b6004610e248261174f565b83610e2f9190612801565b1115610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e679061298f565b60405180910390fd5b610e7a81836117a3565b5050565b610e866113de565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eea576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060065f610ef66113de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f9f6113de565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fe49190611dff565b60405180910390a35050565b610ffb8484846113e9565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461108e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110859061251a565b60405180910390fd5b5f1515600a5f9054906101000a900460ff161515146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d9906129f7565b60405180910390fd5b6001600a5f6101000a81548160ff0219169083151502179055506111073360326117a3565b565b6722b1c8c1227a000081565b6060611120826112fa565b611156576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6001805461116490612565565b80601f016020809104026020016040519081016040528092919081815260200182805461119090612565565b80156111db5780601f106111b2576101008083540402835291602001916111db565b820191905f5260205f20905b8154815290600101906020018083116111be57829003601f168201915b505050505090505f8151036111fe5760405180602001604052805f815250611229565b80611208846118f8565b604051602001611219929190612b2d565b6040516020818303038152906040525b915050919050565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600981815481106112ce575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f816113046113e5565b11158015611313575060025482105b9050919050565b5f80829050806113286113e5565b116113a7576002548110156113a6575f60035f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036113a4575b5f810361139a5760035f836001900393508381526020019081526020015f20549050611373565b80925050506113d9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f90565b5f6113f38261131a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461145a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60055f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff166114ae6113de565b73ffffffffffffffffffffffffffffffffffffffff1614806114dd57506114dc866114d76113de565b611231565b5b8061151a57506114eb6113de565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611553576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61155d83611746565b146115965760055f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61165787611746565b171760035f8681526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008416036116d6575f6001850190505f60035f8381526020019081526020015f2054036116d45760025481146116d3578360035f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461173e8686866001611952565b505050505050565b5f819050919050565b5f67ffffffffffffffff604060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f60025490505f82036117e2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e161184460018414611bc7565b901b60a042901b61185485611746565b171760035f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611876578160028190555050506118f35f848385611952565b505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561193e57600183039250600a81066030018353600a8104905061191e565b508181036020830392508083525050919050565b5f33905060085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156119b6575060326119b382610c50565b10155b15611a7157600160085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600981908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611acf57506032611acd82610c50565b105b15611bc0575f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f5b600980549050811015611bbe578173ffffffffffffffffffffffffffffffffffffffff1660098281548110611b6257611b61611d27565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611bb157611bb0600982611bd0565b5b8080600101915050611b2a565b505b5050505050565b5f819050919050565b80828054905011611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d90612bbb565b60405180910390fd5b5f8190505b60018380549050611c2c919061240b565b811015611cdf5782600182611c419190612801565b81548110611c5257611c51611d27565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838281548110611c8d57611c8c611d27565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080600101915050611c1b565b5081805480611cf157611cf0612bd9565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590555050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d9981611d65565b8114611da3575f80fd5b50565b5f81359050611db481611d90565b92915050565b5f60208284031215611dcf57611dce611d5d565b5b5f611ddc84828501611da6565b91505092915050565b5f8115159050919050565b611df981611de5565b82525050565b5f602082019050611e125f830184611df0565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611e5a82611e18565b611e648185611e22565b9350611e74818560208601611e32565b611e7d81611e40565b840191505092915050565b5f6020820190508181035f830152611ea08184611e50565b905092915050565b5f819050919050565b611eba81611ea8565b8114611ec4575f80fd5b50565b5f81359050611ed581611eb1565b92915050565b5f60208284031215611ef057611eef611d5d565b5b5f611efd84828501611ec7565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611f2f82611f06565b9050919050565b611f3f81611f25565b82525050565b5f602082019050611f585f830184611f36565b92915050565b611f6781611f25565b8114611f71575f80fd5b50565b5f81359050611f8281611f5e565b92915050565b5f8060408385031215611f9e57611f9d611d5d565b5b5f611fab85828601611f74565b9250506020611fbc85828601611ec7565b9150509250929050565b611fcf81611ea8565b82525050565b5f602082019050611fe85f830184611fc6565b92915050565b5f805f6060848603121561200557612004611d5d565b5b5f61201286828701611f74565b935050602061202386828701611f74565b925050604061203486828701611ec7565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61207c82611e40565b810181811067ffffffffffffffff8211171561209b5761209a612046565b5b80604052505050565b5f6120ad611d54565b90506120b98282612073565b919050565b5f67ffffffffffffffff8211156120d8576120d7612046565b5b6120e182611e40565b9050602081019050919050565b828183375f83830152505050565b5f61210e612109846120be565b6120a4565b90508281526020810184848401111561212a57612129612042565b5b6121358482856120ee565b509392505050565b5f82601f8301126121515761215061203e565b5b81356121618482602086016120fc565b91505092915050565b5f6020828403121561217f5761217e611d5d565b5b5f82013567ffffffffffffffff81111561219c5761219b611d61565b5b6121a88482850161213d565b91505092915050565b5f80604083850312156121c7576121c6611d5d565b5b5f6121d485828601611ec7565b92505060206121e585828601611ec7565b9150509250929050565b5f6020828403121561220457612203611d5d565b5b5f61221184828501611f74565b91505092915050565b61222381611de5565b811461222d575f80fd5b50565b5f8135905061223e8161221a565b92915050565b5f806040838503121561225a57612259611d5d565b5b5f61226785828601611f74565b925050602061227885828601612230565b9150509250929050565b5f67ffffffffffffffff82111561229c5761229b612046565b5b6122a582611e40565b9050602081019050919050565b5f6122c46122bf84612282565b6120a4565b9050828152602081018484840111156122e0576122df612042565b5b6122eb8482856120ee565b509392505050565b5f82601f8301126123075761230661203e565b5b81356123178482602086016122b2565b91505092915050565b5f805f806080858703121561233857612337611d5d565b5b5f61234587828801611f74565b945050602061235687828801611f74565b935050604061236787828801611ec7565b925050606085013567ffffffffffffffff81111561238857612387611d61565b5b612394878288016122f3565b91505092959194509250565b5f80604083850312156123b6576123b5611d5d565b5b5f6123c385828601611f74565b92505060206123d485828601611f74565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61241582611ea8565b915061242083611ea8565b9250828203905081811115612438576124376123de565b5b92915050565b5f6060820190506124515f830186611fc6565b61245e6020830185611f36565b61246b6040830184611fc6565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6124aa82611ea8565b91506124b583611ea8565b9250826124c5576124c4612473565b5b828206905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f612504600983611e22565b915061250f826124d0565b602082019050919050565b5f6020820190508181035f830152612531816124f8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061257c57607f821691505b60208210810361258f5761258e612538565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026125f17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826125b6565b6125fb86836125b6565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61263661263161262c84611ea8565b612613565b611ea8565b9050919050565b5f819050919050565b61264f8361261c565b61266361265b8261263d565b8484546125c2565b825550505050565b5f90565b61267761266b565b612682818484612646565b505050565b5b818110156126a55761269a5f8261266f565b600181019050612688565b5050565b601f8211156126ea576126bb81612595565b6126c4846125a7565b810160208510156126d3578190505b6126e76126df856125a7565b830182612687565b50505b505050565b5f82821c905092915050565b5f61270a5f19846008026126ef565b1980831691505092915050565b5f61272283836126fb565b9150826002028217905092915050565b61273b82611e18565b67ffffffffffffffff81111561275457612753612046565b5b61275e8254612565565b6127698282856126a9565b5f60209050601f83116001811461279a575f8415612788578287015190505b6127928582612717565b8655506127f9565b601f1984166127a886612595565b5f5b828110156127cf578489015182556001820191506020850194506020810190506127aa565b868310156127ec57848901516127e8601f8916826126fb565b8355505b6001600288020188555050505b505050505050565b5f61280b82611ea8565b915061281683611ea8565b925082820190508082111561282e5761282d6123de565b5b92915050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f612868600883611e22565b915061287382612834565b602082019050919050565b5f6020820190508181035f8301526128958161285c565b9050919050565b5f6128a682611ea8565b91506128b183611ea8565b92508282026128bf81611ea8565b915082820484148315176128d6576128d56123de565b5b5092915050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f612911600c83611e22565b915061291c826128dd565b602082019050919050565b5f6020820190508181035f83015261293e81612905565b9050919050565b7f4d6178207065722057616c6c65740000000000000000000000000000000000005f82015250565b5f612979600e83611e22565b915061298482612945565b602082019050919050565b5f6020820190508181035f8301526129a68161296d565b9050919050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f6129e1600e83611e22565b91506129ec826129ad565b602082019050919050565b5f6020820190508181035f830152612a0e816129d5565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f612a53600783612a15565b9150612a5e82612a1f565b600782019050919050565b5f612a7382611e18565b612a7d8185612a15565b9350612a8d818560208601611e32565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f612acd600183612a15565b9150612ad882612a99565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612b17600583612a15565b9150612b2282612ae3565b600582019050919050565b5f612b3782612a47565b9150612b438285612a69565b9150612b4e82612ac1565b9150612b5a8284612a69565b9150612b6582612b0b565b91508190509392505050565b7f4f7574206f6620626f756e6473000000000000000000000000000000000000005f82015250565b5f612ba5600d83611e22565b9150612bb082612b71565b602082019050919050565b5f6020820190508181035f830152612bd281612b99565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220b1dc2ebf9928a1fd0761ee9bd854bf99dba3f32289276d35395af2db012210d064736f6c634300081a0033516d5a6b4b394d6665574b684661485871746a7353657650596558746e365269704c72415a68384a753351794751

Deployed Bytecode

0x608060405260043610610184575f3560e01c80636352211e116100d0578063a22cb46511610089578063bf8fbbd211610063578063bf8fbbd21461067b578063c87b56dd146106a5578063e985e9c5146106e1578063f14695ae1461071d5761021f565b8063a22cb46514610615578063b88d4fde1461063d578063ba7a86b8146106655761021f565b80636352211e146104f157806370a082311461052d5780638da5cb5b146105695780638ef1e2591461059357806395d89b41146105cf578063a0712d68146105f95761021f565b806323b872dd1161013d57806342842e0e1161011757806342842e0e1461043b57806347064d6a146104635780634dd08f821461048b578063609526c2146104b55761021f565b806323b872dd146103d357806332cb6b0c146103fb5780633ccfd60b146104255761021f565b806301ffc9a7146102b557806306fdde03146102f1578063081812fc1461031b578063095ea7b3146103575780630f2cdd6c1461037f57806318160ddd146103a95761021f565b3661021f575f600961019b5f600980549050610759565b815481106101ac576101ab611d27565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f1935050505015801561021d573d5f803e3d5ffd5b005b5f60096102315f600980549050610759565b8154811061024257610241611d27565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f193505050501580156102b3573d5f803e3d5ffd5b005b3480156102c0575f80fd5b506102db60048036038101906102d69190611dba565b6107b0565b6040516102e89190611dff565b60405180910390f35b3480156102fc575f80fd5b50610305610841565b6040516103129190611e88565b60405180910390f35b348015610326575f80fd5b50610341600480360381019061033c9190611edb565b61087e565b60405161034e9190611f45565b60405180910390f35b348015610362575f80fd5b5061037d60048036038101906103789190611f88565b6108f6565b005b34801561038a575f80fd5b50610393610a6a565b6040516103a09190611fd5565b60405180910390f35b3480156103b4575f80fd5b506103bd610a6f565b6040516103ca9190611fd5565b60405180910390f35b3480156103de575f80fd5b506103f960048036038101906103f49190611fee565b610a81565b005b348015610406575f80fd5b5061040f610a91565b60405161041c9190611fd5565b60405180910390f35b348015610430575f80fd5b50610439610a96565b005b348015610446575f80fd5b50610461600480360381019061045c9190611fee565b610b6e565b005b34801561046e575f80fd5b506104896004803603810190610484919061216a565b610b8d565b005b348015610496575f80fd5b5061049f610c2d565b6040516104ac9190611dff565b60405180910390f35b3480156104c0575f80fd5b506104db60048036038101906104d691906121b1565b610759565b6040516104e89190611fd5565b60405180910390f35b3480156104fc575f80fd5b5061051760048036038101906105129190611edb565b610c3f565b6040516105249190611f45565b60405180910390f35b348015610538575f80fd5b50610553600480360381019061054e91906121ef565b610c50565b6040516105609190611fd5565b60405180910390f35b348015610574575f80fd5b5061057d610ce1565b60405161058a9190611f45565b60405180910390f35b34801561059e575f80fd5b506105b960048036038101906105b491906121ef565b610d08565b6040516105c69190611dff565b60405180910390f35b3480156105da575f80fd5b506105e3610d25565b6040516105f09190611e88565b60405180910390f35b610613600480360381019061060e9190611edb565b610d62565b005b348015610620575f80fd5b5061063b60048036038101906106369190612244565b610e7e565b005b348015610648575f80fd5b50610663600480360381019061065e9190612320565b610ff0565b005b348015610670575f80fd5b50610679611001565b005b348015610686575f80fd5b5061068f611109565b60405161069c9190611fd5565b60405180910390f35b3480156106b0575f80fd5b506106cb60048036038101906106c69190611edb565b611115565b6040516106d89190611e88565b60405180910390f35b3480156106ec575f80fd5b50610707600480360381019061070291906123a0565b611231565b6040516107149190611dff565b60405180910390f35b348015610728575f80fd5b50610743600480360381019061073e9190611edb565b6112bf565b6040516107509190611f45565b60405180910390f35b5f80600143610768919061240b565b90505f8133866040516020016107809392919061243e565b60405160208183030381529060405280519060200120905083815f1c6107a691906124a0565b9250505092915050565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600981526020017f50657065526f636b730000000000000000000000000000000000000000000000815250905090565b5f610888826112fa565b6108be576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6109008261131a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610939575f80fd5b8073ffffffffffffffffffffffffffffffffffffffff166109586113de565b73ffffffffffffffffffffffffffffffffffffffff16146109bb576109848161097f6113de565b611231565b6109ba576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260055f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600481565b5f610a786113e5565b60025403905090565b610a8c8383836113e9565b505050565b606481565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a9061251a565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610b6a573d5f803e3d5ffd5b5050565b610b8883838360405180602001604052805f815250610ff0565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c119061251a565b60405180910390fd5b8060019081610c299190612732565b5050565b600a5f9054906101000a900460ff1681565b5f610c498261131a565b9050919050565b5f80610c5b83611746565b03610c92576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600981526020017f50657065526f636b730000000000000000000000000000000000000000000000815250905090565b5f610d6b6113de565b9050606482610d78610a6f565b610d829190612801565b1115610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba9061287e565b60405180910390fd5b346722b1c8c1227a000083610dd8919061289c565b1115610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090612927565b60405180910390fd5b6004610e248261174f565b83610e2f9190612801565b1115610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e679061298f565b60405180910390fd5b610e7a81836117a3565b5050565b610e866113de565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eea576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060065f610ef66113de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f9f6113de565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fe49190611dff565b60405180910390a35050565b610ffb8484846113e9565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461108e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110859061251a565b60405180910390fd5b5f1515600a5f9054906101000a900460ff161515146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d9906129f7565b60405180910390fd5b6001600a5f6101000a81548160ff0219169083151502179055506111073360326117a3565b565b6722b1c8c1227a000081565b6060611120826112fa565b611156576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6001805461116490612565565b80601f016020809104026020016040519081016040528092919081815260200182805461119090612565565b80156111db5780601f106111b2576101008083540402835291602001916111db565b820191905f5260205f20905b8154815290600101906020018083116111be57829003601f168201915b505050505090505f8151036111fe5760405180602001604052805f815250611229565b80611208846118f8565b604051602001611219929190612b2d565b6040516020818303038152906040525b915050919050565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600981815481106112ce575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f816113046113e5565b11158015611313575060025482105b9050919050565b5f80829050806113286113e5565b116113a7576002548110156113a6575f60035f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036113a4575b5f810361139a5760035f836001900393508381526020019081526020015f20549050611373565b80925050506113d9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f90565b5f6113f38261131a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461145a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60055f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff166114ae6113de565b73ffffffffffffffffffffffffffffffffffffffff1614806114dd57506114dc866114d76113de565b611231565b5b8061151a57506114eb6113de565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611553576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61155d83611746565b146115965760055f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61165787611746565b171760035f8681526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008416036116d6575f6001850190505f60035f8381526020019081526020015f2054036116d45760025481146116d3578360035f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461173e8686866001611952565b505050505050565b5f819050919050565b5f67ffffffffffffffff604060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f60025490505f82036117e2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e161184460018414611bc7565b901b60a042901b61185485611746565b171760035f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611876578160028190555050506118f35f848385611952565b505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561193e57600183039250600a81066030018353600a8104905061191e565b508181036020830392508083525050919050565b5f33905060085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156119b6575060326119b382610c50565b10155b15611a7157600160085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600981908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611acf57506032611acd82610c50565b105b15611bc0575f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f5b600980549050811015611bbe578173ffffffffffffffffffffffffffffffffffffffff1660098281548110611b6257611b61611d27565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611bb157611bb0600982611bd0565b5b8080600101915050611b2a565b505b5050505050565b5f819050919050565b80828054905011611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d90612bbb565b60405180910390fd5b5f8190505b60018380549050611c2c919061240b565b811015611cdf5782600182611c419190612801565b81548110611c5257611c51611d27565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838281548110611c8d57611c8c611d27565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080600101915050611c1b565b5081805480611cf157611cf0612bd9565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590555050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d9981611d65565b8114611da3575f80fd5b50565b5f81359050611db481611d90565b92915050565b5f60208284031215611dcf57611dce611d5d565b5b5f611ddc84828501611da6565b91505092915050565b5f8115159050919050565b611df981611de5565b82525050565b5f602082019050611e125f830184611df0565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611e5a82611e18565b611e648185611e22565b9350611e74818560208601611e32565b611e7d81611e40565b840191505092915050565b5f6020820190508181035f830152611ea08184611e50565b905092915050565b5f819050919050565b611eba81611ea8565b8114611ec4575f80fd5b50565b5f81359050611ed581611eb1565b92915050565b5f60208284031215611ef057611eef611d5d565b5b5f611efd84828501611ec7565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611f2f82611f06565b9050919050565b611f3f81611f25565b82525050565b5f602082019050611f585f830184611f36565b92915050565b611f6781611f25565b8114611f71575f80fd5b50565b5f81359050611f8281611f5e565b92915050565b5f8060408385031215611f9e57611f9d611d5d565b5b5f611fab85828601611f74565b9250506020611fbc85828601611ec7565b9150509250929050565b611fcf81611ea8565b82525050565b5f602082019050611fe85f830184611fc6565b92915050565b5f805f6060848603121561200557612004611d5d565b5b5f61201286828701611f74565b935050602061202386828701611f74565b925050604061203486828701611ec7565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61207c82611e40565b810181811067ffffffffffffffff8211171561209b5761209a612046565b5b80604052505050565b5f6120ad611d54565b90506120b98282612073565b919050565b5f67ffffffffffffffff8211156120d8576120d7612046565b5b6120e182611e40565b9050602081019050919050565b828183375f83830152505050565b5f61210e612109846120be565b6120a4565b90508281526020810184848401111561212a57612129612042565b5b6121358482856120ee565b509392505050565b5f82601f8301126121515761215061203e565b5b81356121618482602086016120fc565b91505092915050565b5f6020828403121561217f5761217e611d5d565b5b5f82013567ffffffffffffffff81111561219c5761219b611d61565b5b6121a88482850161213d565b91505092915050565b5f80604083850312156121c7576121c6611d5d565b5b5f6121d485828601611ec7565b92505060206121e585828601611ec7565b9150509250929050565b5f6020828403121561220457612203611d5d565b5b5f61221184828501611f74565b91505092915050565b61222381611de5565b811461222d575f80fd5b50565b5f8135905061223e8161221a565b92915050565b5f806040838503121561225a57612259611d5d565b5b5f61226785828601611f74565b925050602061227885828601612230565b9150509250929050565b5f67ffffffffffffffff82111561229c5761229b612046565b5b6122a582611e40565b9050602081019050919050565b5f6122c46122bf84612282565b6120a4565b9050828152602081018484840111156122e0576122df612042565b5b6122eb8482856120ee565b509392505050565b5f82601f8301126123075761230661203e565b5b81356123178482602086016122b2565b91505092915050565b5f805f806080858703121561233857612337611d5d565b5b5f61234587828801611f74565b945050602061235687828801611f74565b935050604061236787828801611ec7565b925050606085013567ffffffffffffffff81111561238857612387611d61565b5b612394878288016122f3565b91505092959194509250565b5f80604083850312156123b6576123b5611d5d565b5b5f6123c385828601611f74565b92505060206123d485828601611f74565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61241582611ea8565b915061242083611ea8565b9250828203905081811115612438576124376123de565b5b92915050565b5f6060820190506124515f830186611fc6565b61245e6020830185611f36565b61246b6040830184611fc6565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6124aa82611ea8565b91506124b583611ea8565b9250826124c5576124c4612473565b5b828206905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f612504600983611e22565b915061250f826124d0565b602082019050919050565b5f6020820190508181035f830152612531816124f8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061257c57607f821691505b60208210810361258f5761258e612538565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026125f17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826125b6565b6125fb86836125b6565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61263661263161262c84611ea8565b612613565b611ea8565b9050919050565b5f819050919050565b61264f8361261c565b61266361265b8261263d565b8484546125c2565b825550505050565b5f90565b61267761266b565b612682818484612646565b505050565b5b818110156126a55761269a5f8261266f565b600181019050612688565b5050565b601f8211156126ea576126bb81612595565b6126c4846125a7565b810160208510156126d3578190505b6126e76126df856125a7565b830182612687565b50505b505050565b5f82821c905092915050565b5f61270a5f19846008026126ef565b1980831691505092915050565b5f61272283836126fb565b9150826002028217905092915050565b61273b82611e18565b67ffffffffffffffff81111561275457612753612046565b5b61275e8254612565565b6127698282856126a9565b5f60209050601f83116001811461279a575f8415612788578287015190505b6127928582612717565b8655506127f9565b601f1984166127a886612595565b5f5b828110156127cf578489015182556001820191506020850194506020810190506127aa565b868310156127ec57848901516127e8601f8916826126fb565b8355505b6001600288020188555050505b505050505050565b5f61280b82611ea8565b915061281683611ea8565b925082820190508082111561282e5761282d6123de565b5b92915050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f612868600883611e22565b915061287382612834565b602082019050919050565b5f6020820190508181035f8301526128958161285c565b9050919050565b5f6128a682611ea8565b91506128b183611ea8565b92508282026128bf81611ea8565b915082820484148315176128d6576128d56123de565b5b5092915050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f612911600c83611e22565b915061291c826128dd565b602082019050919050565b5f6020820190508181035f83015261293e81612905565b9050919050565b7f4d6178207065722057616c6c65740000000000000000000000000000000000005f82015250565b5f612979600e83611e22565b915061298482612945565b602082019050919050565b5f6020820190508181035f8301526129a68161296d565b9050919050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f6129e1600e83611e22565b91506129ec826129ad565b602082019050919050565b5f6020820190508181035f830152612a0e816129d5565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f612a53600783612a15565b9150612a5e82612a1f565b600782019050919050565b5f612a7382611e18565b612a7d8185612a15565b9350612a8d818560208601611e32565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f612acd600183612a15565b9150612ad882612a99565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612b17600583612a15565b9150612b2282612ae3565b600582019050919050565b5f612b3782612a47565b9150612b438285612a69565b9150612b4e82612ac1565b9150612b5a8284612a69565b9150612b6582612b0b565b91508190509392505050565b7f4f7574206f6620626f756e6473000000000000000000000000000000000000005f82015250565b5f612ba5600d83611e22565b9150612bb082612b71565b602082019050919050565b5f6020820190508181035f830152612bd281612b99565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220b1dc2ebf9928a1fd0761ee9bd854bf99dba3f32289276d35395af2db012210d064736f6c634300081a0033

Deployed Bytecode Sourcemap

15531:22745:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32963:14;32980:5;32986:37;33007:1;33010:5;:12;;;;32986:20;:37::i;:::-;32980:44;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32963:61;;33035:20;33066:6;33035:38;;33084:4;:13;;:24;33098:9;33084:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15531:22745;33162:14;33179:5;33185:37;33206:1;33209:5;:12;;;;33185:20;:37::i;:::-;33179:44;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33162:61;;33234:20;33265:6;33234:38;;33283:4;:13;;:24;33297:9;33283:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20193:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24400:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26067:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25550:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15766:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19436:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26953:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15719:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38128:145;;;;;;;;;;;;;:::i;:::-;;27214:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18725:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37719:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37403:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24189:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20872:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15634:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30282:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24569:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16109:354;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26343:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27490:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37758:163;;;;;;;;;;;;;:::i;:::-;;15815:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24687:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26722:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30328:22;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37403:308;37484:7;37504:19;37541:1;37526:12;:16;;;;:::i;:::-;37504:38;;37586:17;37627:11;37640:10;37652:7;37616:44;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37606:55;;;;;;37586:75;;37700:3;37687:9;37679:18;;:24;;;;:::i;:::-;37672:31;;;;37403:308;;;;:::o;20193:615::-;20278:4;20593:10;20578:25;;:11;:25;;;;:102;;;;20670:10;20655:25;;:11;:25;;;;20578:102;:179;;;;20747:10;20732:25;;:11;:25;;;;20578:179;20558:199;;20193:615;;;:::o;24400:100::-;24454:13;24487:5;;;;;;;;;;;;;;;;;24480:12;;24400:100;:::o;26067:204::-;26135:7;26160:16;26168:7;26160;:16::i;:::-;26155:64;;26185:34;;;;;;;;;;;;;;26155:64;26239:15;:24;26255:7;26239:24;;;;;;;;;;;;;;;;;;;;;26232:31;;26067:204;;;:::o;25550:451::-;25623:13;25655:27;25674:7;25655:18;:27::i;:::-;25623:61;;25705:5;25699:11;;:2;:11;;;25695:25;;25712:8;;;25695:25;25760:5;25737:28;;:19;:17;:19::i;:::-;:28;;;25733:175;;25785:44;25802:5;25809:19;:17;:19::i;:::-;25785:16;:44::i;:::-;25780:128;;25857:35;;;;;;;;;;;;;;25780:128;25733:175;25947:2;25920:15;:24;25936:7;25920:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25985:7;25981:2;25965:28;;25974:5;25965:28;;;;;;;;;;;;25612:389;25550:451;;:::o;15766:42::-;15807:1;15766:42;:::o;19436:300::-;19489:7;19702:15;:13;:15::i;:::-;19686:13;;:31;19679:38;;19436:300;:::o;26953:190::-;27107:28;27117:4;27123:2;27127:7;27107:9;:28::i;:::-;26953:190;;;:::o;15719:40::-;15756:3;15719:40;:::o;38128:145::-;37978:10;37970:18;;:6;;;;;;;;;;:18;;;37962:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;38178:15:::1;38196:21;38178:39;;38236:10;38228:28;;:37;38257:7;38228:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38167:106;38128:145::o:0;27214:205::-;27372:39;27389:4;27395:2;27399:7;27372:39;;;;;;;;;;;;:16;:39::i;:::-;27214:205;;;:::o;18725:91::-;37978:10;37970:18;;:6;;;;;;;;;;:18;;;37962:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;18803:5:::1;18792:8;:16;;;;;;:::i;:::-;;18725:91:::0;:::o;37719:32::-;;;;;;;;;;;;;:::o;24189:144::-;24253:7;24296:27;24315:7;24296:18;:27::i;:::-;24273:52;;24189:144;;;:::o;20872:234::-;20936:7;20988:1;20960:24;20978:5;20960:17;:24::i;:::-;:29;20956:70;;20998:28;;;;;;;;;;;;;;20956:70;16576:13;21044:18;:25;21063:5;21044:25;;;;;;;;;;;;;;;;:54;21037:61;;20872:234;;;:::o;15634:77::-;15671:7;15697:6;;;;;;;;;;;15690:13;;15634:77;:::o;30282:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;24569:104::-;24625:13;24658:7;;;;;;;;;;;;;;;;;24651:14;;24569:104;:::o;16109:354::-;16166:15;16184:19;:17;:19::i;:::-;16166:37;;15756:3;16240:6;16224:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;16216:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;16307:9;15846;16292:6;:11;;;;:::i;:::-;:24;;16284:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;15807:1;16361:22;16375:7;16361:13;:22::i;:::-;16352:6;:31;;;;:::i;:::-;:49;;16344:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;16433:22;16439:7;16448:6;16433:5;:22::i;:::-;16155:308;16109:354;:::o;26343:308::-;26454:19;:17;:19::i;:::-;26442:31;;:8;:31;;;26438:61;;26482:17;;;;;;;;;;;;;;26438:61;26564:8;26512:18;:39;26531:19;:17;:19::i;:::-;26512:39;;;;;;;;;;;;;;;:49;26552:8;26512:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26624:8;26588:55;;26603:19;:17;:19::i;:::-;26588:55;;;26634:8;26588:55;;;;;;:::i;:::-;;;;;;;;26343:308;;:::o;27490:227::-;27681:28;27691:4;27697:2;27701:7;27681:9;:28::i;:::-;27490:227;;;;:::o;37758:163::-;37978:10;37970:18;;:6;;;;;;;;;;:18;;;37962:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;37829:5:::1;37815:19;;:12;;;;;;;;;;;:19;;;37807:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;37877:4;37864:12;;:17;;;;;;;;;;;;;;;;;;37892:21;37898:10;37910:2;37892:5;:21::i;:::-;37758:163::o:0;15815:40::-;15846:9;15815:40;:::o;24687:339::-;24760:13;24791:16;24799:7;24791;:16::i;:::-;24786:59;;24816:29;;;;;;;;;;;;;;24786:59;24856:21;24880:8;24856:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24931:1;24912:7;24906:21;:26;:112;;;;;;;;;;;;;;;;;24970:7;24984:18;24994:7;24984:9;:18::i;:::-;24942:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24906:112;24899:119;;;24687:339;;;:::o;26722:164::-;26819:4;26843:18;:25;26862:5;26843:25;;;;;;;;;;;;;;;:35;26869:8;26843:35;;;;;;;;;;;;;;;;;;;;;;;;;26836:42;;26722:164;;;;:::o;30328:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27972:168::-;28029:4;28085:7;28066:15;:13;:15::i;:::-;:26;;:66;;;;;28119:13;;28109:7;:23;28066:66;28046:86;;27972:168;;;:::o;21704:1129::-;21771:7;21791:12;21806:7;21791:22;;21874:4;21855:15;:13;:15::i;:::-;:23;21851:915;;21908:13;;21901:4;:20;21897:869;;;21946:14;21963:17;:23;21981:4;21963:23;;;;;;;;;;;;21946:40;;22079:1;17346:8;22052:6;:23;:28;22048:699;;22571:113;22588:1;22578:6;:11;22571:113;;22631:17;:25;22649:6;;;;;;;22631:25;;;;;;;;;;;;22622:34;;22571:113;;;22717:6;22710:13;;;;;;22048:699;21923:843;21897:869;21851:915;22794:31;;;;;;;;;;;;;;21704:1129;;;;:::o;35302:105::-;35362:7;35389:10;35382:17;;35302:105;:::o;18959:92::-;19015:7;18959:92;:::o;30357:2561::-;30498:27;30528;30547:7;30528:18;:27::i;:::-;30498:57;;30613:4;30572:45;;30588:19;30572:45;;;30568:86;;30626:28;;;;;;;;;;;;;;30568:86;30667:23;30693:15;:24;30709:7;30693:24;;;;;;;;;;;;;;;;;;;;;30667:50;;30730:22;30779:4;30756:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;30804:43;30821:4;30827:19;:17;:19::i;:::-;30804:16;:43::i;:::-;30756:91;:150;;;;30887:19;:17;:19::i;:::-;30868:38;;:15;:38;;;30756:150;30730:177;;30925:17;30920:66;;30951:35;;;;;;;;;;;;;;30920:66;31096:1;31058:34;31076:15;31058:17;:34::i;:::-;:39;31054:103;;31121:15;:24;31137:7;31121:24;;;;;;;;;;;;31114:31;;;;;;;;;;;31054:103;31524:18;:24;31543:4;31524:24;;;;;;;;;;;;;;;;31522:26;;;;;;;;;;;;31593:18;:22;31612:2;31593:22;;;;;;;;;;;;;;;;31591:24;;;;;;;;;;;17624:8;17230:3;31974:15;:41;;31932:21;31950:2;31932:17;:21::i;:::-;:84;:128;31886:17;:26;31904:7;31886:26;;;;;;;;;;;:174;;;;32230:1;17624:8;32180:19;:46;:51;32176:626;;32252:19;32284:1;32274:7;:11;32252:33;;32441:1;32407:17;:30;32425:11;32407:30;;;;;;;;;;;;:35;32403:384;;32545:13;;32530:11;:28;32526:242;;32725:19;32692:17;:30;32710:11;32692:30;;;;;;;;;;;:52;;;;32526:242;32403:384;32233:569;32176:626;32849:7;32845:2;32830:27;;32839:4;32830:27;;;;;;;;;;;;32868:42;32889:4;32895:2;32899:7;32908:1;32868:20;:42::i;:::-;30481:2437;;;30357:2561;;;:::o;25111:148::-;25175:14;25236:5;25226:15;;25111:148;;;:::o;21188:176::-;21249:7;16576:13;16713:2;21277:18;:25;21296:5;21277:25;;;;;;;;;;;;;;;;:49;;21276:80;21269:87;;21188:176;;;:::o;28405:1596::-;28470:20;28493:13;;28470:36;;28604:1;28592:8;:13;28588:44;;28614:18;;;;;;;;;;;;;;28588:44;29177:1;16713:2;29148:1;:25;;29147:31;29135:8;:44;29109:18;:22;29128:2;29109:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;17489:3;29578:29;29605:1;29593:8;:13;29578:14;:29::i;:::-;:56;;17230:3;29515:15;:41;;29473:21;29491:2;29473:17;:21::i;:::-;:84;:162;29422:17;:31;29440:12;29422:31;;;;;;;;;;;:213;;;;29652:20;29675:12;29652:35;;29702:11;29731:8;29716:12;:23;29702:37;;29756:111;29808:14;;;;;;29804:2;29783:40;;29800:1;29783:40;;;;;;;;;;;;29862:3;29847:12;:18;29756:111;;29899:12;29883:13;:28;;;;28886:1037;;29933:60;29962:1;29966:2;29970:12;29984:8;29933:20;:60::i;:::-;28459:1542;28405:1596;;:::o;35513:1882::-;35570:17;35991:3;35984:4;35978:11;35974:21;35967:28;;36078:3;36072:4;36065:17;36178:3;36614:5;36746:1;36741:3;36737:11;36730:18;;36885:2;36879:4;36875:13;36871:2;36867:22;36862:3;36854:36;36927:2;36921:4;36917:13;36909:21;;36511:661;36943:4;36511:661;;;37111:1;37106:3;37102:11;37095:18;;37155:2;37149:4;37145:13;37141:2;37137:22;37132:3;37124:36;37028:2;37022:4;37018:13;37010:21;;36511:661;;;36515:427;37204:3;37199;37195:13;37313:2;37308:3;37304:12;37297:19;;37370:6;37365:3;37358:19;35609:1779;;35513:1882;;;:::o;34344:753::-;34543:15;34561:10;34543:28;;34595:7;:16;34603:7;34595:16;;;;;;;;;;;;;;;;;;;;;;;;;34594:17;:43;;;;;34635:2;34615:18;34625:7;34615:9;:18::i;:::-;:22;;34594:43;34590:156;;;34680:4;34661:7;:16;34669:7;34661:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;34707:5;34718:7;34707:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34590:156;34768:7;:16;34776:7;34768:16;;;;;;;;;;;;;;;;;;;;;;;;;:41;;;;;34807:2;34788:18;34798:7;34788:9;:18::i;:::-;:21;34768:41;34764:318;;;34852:5;34833:7;:16;34841:7;34833:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;34884:6;34880:183;34898:5;:12;;;;34894:1;:16;34880:183;;;34957:7;34947:17;;:5;34953:1;34947:8;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:17;;;34943:97;;34996:16;35003:5;35010:1;34996:6;:16::i;:::-;34943:97;34912:3;;;;;;;34880:183;;;;34764:318;34524:573;34344:753;;;;:::o;25346:142::-;25404:14;25465:5;25455:15;;25346:142;;;:::o;33978:358::-;34077:5;34062;:12;;;;:20;34054:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;34189:9;34201:5;34189:17;;34184:99;34227:1;34212:5;:12;;;;:16;;;;:::i;:::-;34208:1;:20;34184:99;;;34261:5;34269:1;34267;:3;;;;:::i;:::-;34261:10;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34250:5;34256:1;34250:8;;;;;;;;:::i;:::-;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34230:3;;;;;;;34184:99;;;;34293:5;:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;33978:358;;:::o;7:180:1:-;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;193:75;226:6;259:2;253:9;243:19;;193:75;:::o;274:117::-;383:1;380;373:12;397:117;506:1;503;496:12;520:149;556:7;596:66;589:5;585:78;574:89;;520:149;;;:::o;675:120::-;747:23;764:5;747:23;:::i;:::-;740:5;737:34;727:62;;785:1;782;775:12;727:62;675:120;:::o;801:137::-;846:5;884:6;871:20;862:29;;900:32;926:5;900:32;:::i;:::-;801:137;;;;:::o;944:327::-;1002:6;1051:2;1039:9;1030:7;1026:23;1022:32;1019:119;;;1057:79;;:::i;:::-;1019:119;1177:1;1202:52;1246:7;1237:6;1226:9;1222:22;1202:52;:::i;:::-;1192:62;;1148:116;944:327;;;;:::o;1277:90::-;1311:7;1354:5;1347:13;1340:21;1329:32;;1277:90;;;:::o;1373:109::-;1454:21;1469:5;1454:21;:::i;:::-;1449:3;1442:34;1373:109;;:::o;1488:210::-;1575:4;1613:2;1602:9;1598:18;1590:26;;1626:65;1688:1;1677:9;1673:17;1664:6;1626:65;:::i;:::-;1488:210;;;;:::o;1704:99::-;1756:6;1790:5;1784:12;1774:22;;1704:99;;;:::o;1809:169::-;1893:11;1927:6;1922:3;1915:19;1967:4;1962:3;1958:14;1943:29;;1809:169;;;;:::o;1984:139::-;2073:6;2068:3;2063;2057:23;2114:1;2105:6;2100:3;2096:16;2089:27;1984:139;;;:::o;2129:102::-;2170:6;2221:2;2217:7;2212:2;2205:5;2201:14;2197:28;2187:38;;2129:102;;;:::o;2237:377::-;2325:3;2353:39;2386:5;2353:39;:::i;:::-;2408:71;2472:6;2467:3;2408:71;:::i;:::-;2401:78;;2488:65;2546:6;2541:3;2534:4;2527:5;2523:16;2488:65;:::i;:::-;2578:29;2600:6;2578:29;:::i;:::-;2573:3;2569:39;2562:46;;2329:285;2237:377;;;;:::o;2620:313::-;2733:4;2771:2;2760:9;2756:18;2748:26;;2820:9;2814:4;2810:20;2806:1;2795:9;2791:17;2784:47;2848:78;2921:4;2912:6;2848:78;:::i;:::-;2840:86;;2620:313;;;;:::o;2939:77::-;2976:7;3005:5;2994:16;;2939:77;;;:::o;3022:122::-;3095:24;3113:5;3095:24;:::i;:::-;3088:5;3085:35;3075:63;;3134:1;3131;3124:12;3075:63;3022:122;:::o;3150:139::-;3196:5;3234:6;3221:20;3212:29;;3250:33;3277:5;3250:33;:::i;:::-;3150:139;;;;:::o;3295:329::-;3354:6;3403:2;3391:9;3382:7;3378:23;3374:32;3371:119;;;3409:79;;:::i;:::-;3371:119;3529:1;3554:53;3599:7;3590:6;3579:9;3575:22;3554:53;:::i;:::-;3544:63;;3500:117;3295:329;;;;:::o;3630:126::-;3667:7;3707:42;3700:5;3696:54;3685:65;;3630:126;;;:::o;3762:96::-;3799:7;3828:24;3846:5;3828:24;:::i;:::-;3817:35;;3762:96;;;:::o;3864:118::-;3951:24;3969:5;3951:24;:::i;:::-;3946:3;3939:37;3864:118;;:::o;3988:222::-;4081:4;4119:2;4108:9;4104:18;4096:26;;4132:71;4200:1;4189:9;4185:17;4176:6;4132:71;:::i;:::-;3988:222;;;;:::o;4216:122::-;4289:24;4307:5;4289:24;:::i;:::-;4282:5;4279:35;4269:63;;4328:1;4325;4318:12;4269:63;4216:122;:::o;4344:139::-;4390:5;4428:6;4415:20;4406:29;;4444:33;4471:5;4444:33;:::i;:::-;4344:139;;;;:::o;4489:474::-;4557:6;4565;4614:2;4602:9;4593:7;4589:23;4585:32;4582:119;;;4620:79;;:::i;:::-;4582:119;4740:1;4765:53;4810:7;4801:6;4790:9;4786:22;4765:53;:::i;:::-;4755:63;;4711:117;4867:2;4893:53;4938:7;4929:6;4918:9;4914:22;4893:53;:::i;:::-;4883:63;;4838:118;4489:474;;;;;:::o;4969:118::-;5056:24;5074:5;5056:24;:::i;:::-;5051:3;5044:37;4969:118;;:::o;5093:222::-;5186:4;5224:2;5213:9;5209:18;5201:26;;5237:71;5305:1;5294:9;5290:17;5281:6;5237:71;:::i;:::-;5093:222;;;;:::o;5321:619::-;5398:6;5406;5414;5463:2;5451:9;5442:7;5438:23;5434:32;5431:119;;;5469:79;;:::i;:::-;5431:119;5589:1;5614:53;5659:7;5650:6;5639:9;5635:22;5614:53;:::i;:::-;5604:63;;5560:117;5716:2;5742:53;5787:7;5778:6;5767:9;5763:22;5742:53;:::i;:::-;5732:63;;5687:118;5844:2;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5815:118;5321:619;;;;;:::o;5946:117::-;6055:1;6052;6045:12;6069:117;6178:1;6175;6168:12;6192:180;6240:77;6237:1;6230:88;6337:4;6334:1;6327:15;6361:4;6358:1;6351:15;6378:281;6461:27;6483:4;6461:27;:::i;:::-;6453:6;6449:40;6591:6;6579:10;6576:22;6555:18;6543:10;6540:34;6537:62;6534:88;;;6602:18;;:::i;:::-;6534:88;6642:10;6638:2;6631:22;6421:238;6378:281;;:::o;6665:129::-;6699:6;6726:20;;:::i;:::-;6716:30;;6755:33;6783:4;6775:6;6755:33;:::i;:::-;6665:129;;;:::o;6800:308::-;6862:4;6952:18;6944:6;6941:30;6938:56;;;6974:18;;:::i;:::-;6938:56;7012:29;7034:6;7012:29;:::i;:::-;7004:37;;7096:4;7090;7086:15;7078:23;;6800:308;;;:::o;7114:148::-;7212:6;7207:3;7202;7189:30;7253:1;7244:6;7239:3;7235:16;7228:27;7114:148;;;:::o;7268:425::-;7346:5;7371:66;7387:49;7429:6;7387:49;:::i;:::-;7371:66;:::i;:::-;7362:75;;7460:6;7453:5;7446:21;7498:4;7491:5;7487:16;7536:3;7527:6;7522:3;7518:16;7515:25;7512:112;;;7543:79;;:::i;:::-;7512:112;7633:54;7680:6;7675:3;7670;7633:54;:::i;:::-;7352:341;7268:425;;;;;:::o;7713:340::-;7769:5;7818:3;7811:4;7803:6;7799:17;7795:27;7785:122;;7826:79;;:::i;:::-;7785:122;7943:6;7930:20;7968:79;8043:3;8035:6;8028:4;8020:6;8016:17;7968:79;:::i;:::-;7959:88;;7775:278;7713:340;;;;:::o;8059:509::-;8128:6;8177:2;8165:9;8156:7;8152:23;8148:32;8145:119;;;8183:79;;:::i;:::-;8145:119;8331:1;8320:9;8316:17;8303:31;8361:18;8353:6;8350:30;8347:117;;;8383:79;;:::i;:::-;8347:117;8488:63;8543:7;8534:6;8523:9;8519:22;8488:63;:::i;:::-;8478:73;;8274:287;8059:509;;;;:::o;8574:474::-;8642:6;8650;8699:2;8687:9;8678:7;8674:23;8670:32;8667:119;;;8705:79;;:::i;:::-;8667:119;8825:1;8850:53;8895:7;8886:6;8875:9;8871:22;8850:53;:::i;:::-;8840:63;;8796:117;8952:2;8978:53;9023:7;9014:6;9003:9;8999:22;8978:53;:::i;:::-;8968:63;;8923:118;8574:474;;;;;:::o;9054:329::-;9113:6;9162:2;9150:9;9141:7;9137:23;9133:32;9130:119;;;9168:79;;:::i;:::-;9130:119;9288:1;9313:53;9358:7;9349:6;9338:9;9334:22;9313:53;:::i;:::-;9303:63;;9259:117;9054:329;;;;:::o;9389:116::-;9459:21;9474:5;9459:21;:::i;:::-;9452:5;9449:32;9439:60;;9495:1;9492;9485:12;9439:60;9389:116;:::o;9511:133::-;9554:5;9592:6;9579:20;9570:29;;9608:30;9632:5;9608:30;:::i;:::-;9511:133;;;;:::o;9650:468::-;9715:6;9723;9772:2;9760:9;9751:7;9747:23;9743:32;9740:119;;;9778:79;;:::i;:::-;9740:119;9898:1;9923:53;9968:7;9959:6;9948:9;9944:22;9923:53;:::i;:::-;9913:63;;9869:117;10025:2;10051:50;10093:7;10084:6;10073:9;10069:22;10051:50;:::i;:::-;10041:60;;9996:115;9650:468;;;;;:::o;10124:307::-;10185:4;10275:18;10267:6;10264:30;10261:56;;;10297:18;;:::i;:::-;10261:56;10335:29;10357:6;10335:29;:::i;:::-;10327:37;;10419:4;10413;10409:15;10401:23;;10124:307;;;:::o;10437:423::-;10514:5;10539:65;10555:48;10596:6;10555:48;:::i;:::-;10539:65;:::i;:::-;10530:74;;10627:6;10620:5;10613:21;10665:4;10658:5;10654:16;10703:3;10694:6;10689:3;10685:16;10682:25;10679:112;;;10710:79;;:::i;:::-;10679:112;10800:54;10847:6;10842:3;10837;10800:54;:::i;:::-;10520:340;10437:423;;;;;:::o;10879:338::-;10934:5;10983:3;10976:4;10968:6;10964:17;10960:27;10950:122;;10991:79;;:::i;:::-;10950:122;11108:6;11095:20;11133:78;11207:3;11199:6;11192:4;11184:6;11180:17;11133:78;:::i;:::-;11124:87;;10940:277;10879:338;;;;:::o;11223:943::-;11318:6;11326;11334;11342;11391:3;11379:9;11370:7;11366:23;11362:33;11359:120;;;11398:79;;:::i;:::-;11359:120;11518:1;11543:53;11588:7;11579:6;11568:9;11564:22;11543:53;:::i;:::-;11533:63;;11489:117;11645:2;11671:53;11716:7;11707:6;11696:9;11692:22;11671:53;:::i;:::-;11661:63;;11616:118;11773:2;11799:53;11844:7;11835:6;11824:9;11820:22;11799:53;:::i;:::-;11789:63;;11744:118;11929:2;11918:9;11914:18;11901:32;11960:18;11952:6;11949:30;11946:117;;;11982:79;;:::i;:::-;11946:117;12087:62;12141:7;12132:6;12121:9;12117:22;12087:62;:::i;:::-;12077:72;;11872:287;11223:943;;;;;;;:::o;12172:474::-;12240:6;12248;12297:2;12285:9;12276:7;12272:23;12268:32;12265:119;;;12303:79;;:::i;:::-;12265:119;12423:1;12448:53;12493:7;12484:6;12473:9;12469:22;12448:53;:::i;:::-;12438:63;;12394:117;12550:2;12576:53;12621:7;12612:6;12601:9;12597:22;12576:53;:::i;:::-;12566:63;;12521:118;12172:474;;;;;:::o;12652:180::-;12700:77;12697:1;12690:88;12797:4;12794:1;12787:15;12821:4;12818:1;12811:15;12838:194;12878:4;12898:20;12916:1;12898:20;:::i;:::-;12893:25;;12932:20;12950:1;12932:20;:::i;:::-;12927:25;;12976:1;12973;12969:9;12961:17;;13000:1;12994:4;12991:11;12988:37;;;13005:18;;:::i;:::-;12988:37;12838:194;;;;:::o;13038:442::-;13187:4;13225:2;13214:9;13210:18;13202:26;;13238:71;13306:1;13295:9;13291:17;13282:6;13238:71;:::i;:::-;13319:72;13387:2;13376:9;13372:18;13363:6;13319:72;:::i;:::-;13401;13469:2;13458:9;13454:18;13445:6;13401:72;:::i;:::-;13038:442;;;;;;:::o;13486:180::-;13534:77;13531:1;13524:88;13631:4;13628:1;13621:15;13655:4;13652:1;13645:15;13672:176;13704:1;13721:20;13739:1;13721:20;:::i;:::-;13716:25;;13755:20;13773:1;13755:20;:::i;:::-;13750:25;;13794:1;13784:35;;13799:18;;:::i;:::-;13784:35;13840:1;13837;13833:9;13828:14;;13672:176;;;;:::o;13854:159::-;13994:11;13990:1;13982:6;13978:14;13971:35;13854:159;:::o;14019:365::-;14161:3;14182:66;14246:1;14241:3;14182:66;:::i;:::-;14175:73;;14257:93;14346:3;14257:93;:::i;:::-;14375:2;14370:3;14366:12;14359:19;;14019:365;;;:::o;14390:419::-;14556:4;14594:2;14583:9;14579:18;14571:26;;14643:9;14637:4;14633:20;14629:1;14618:9;14614:17;14607:47;14671:131;14797:4;14671:131;:::i;:::-;14663:139;;14390:419;;;:::o;14815:180::-;14863:77;14860:1;14853:88;14960:4;14957:1;14950:15;14984:4;14981:1;14974:15;15001:320;15045:6;15082:1;15076:4;15072:12;15062:22;;15129:1;15123:4;15119:12;15150:18;15140:81;;15206:4;15198:6;15194:17;15184:27;;15140:81;15268:2;15260:6;15257:14;15237:18;15234:38;15231:84;;15287:18;;:::i;:::-;15231:84;15052:269;15001:320;;;:::o;15327:141::-;15376:4;15399:3;15391:11;;15422:3;15419:1;15412:14;15456:4;15453:1;15443:18;15435:26;;15327:141;;;:::o;15474:93::-;15511:6;15558:2;15553;15546:5;15542:14;15538:23;15528:33;;15474:93;;;:::o;15573:107::-;15617:8;15667:5;15661:4;15657:16;15636:37;;15573:107;;;;:::o;15686:393::-;15755:6;15805:1;15793:10;15789:18;15828:97;15858:66;15847:9;15828:97;:::i;:::-;15946:39;15976:8;15965:9;15946:39;:::i;:::-;15934:51;;16018:4;16014:9;16007:5;16003:21;15994:30;;16067:4;16057:8;16053:19;16046:5;16043:30;16033:40;;15762:317;;15686:393;;;;;:::o;16085:60::-;16113:3;16134:5;16127:12;;16085:60;;;:::o;16151:142::-;16201:9;16234:53;16252:34;16261:24;16279:5;16261:24;:::i;:::-;16252:34;:::i;:::-;16234:53;:::i;:::-;16221:66;;16151:142;;;:::o;16299:75::-;16342:3;16363:5;16356:12;;16299:75;;;:::o;16380:269::-;16490:39;16521:7;16490:39;:::i;:::-;16551:91;16600:41;16624:16;16600:41;:::i;:::-;16592:6;16585:4;16579:11;16551:91;:::i;:::-;16545:4;16538:105;16456:193;16380:269;;;:::o;16655:73::-;16700:3;16655:73;:::o;16734:189::-;16811:32;;:::i;:::-;16852:65;16910:6;16902;16896:4;16852:65;:::i;:::-;16787:136;16734:189;;:::o;16929:186::-;16989:120;17006:3;16999:5;16996:14;16989:120;;;17060:39;17097:1;17090:5;17060:39;:::i;:::-;17033:1;17026:5;17022:13;17013:22;;16989:120;;;16929:186;;:::o;17121:543::-;17222:2;17217:3;17214:11;17211:446;;;17256:38;17288:5;17256:38;:::i;:::-;17340:29;17358:10;17340:29;:::i;:::-;17330:8;17326:44;17523:2;17511:10;17508:18;17505:49;;;17544:8;17529:23;;17505:49;17567:80;17623:22;17641:3;17623:22;:::i;:::-;17613:8;17609:37;17596:11;17567:80;:::i;:::-;17226:431;;17211:446;17121:543;;;:::o;17670:117::-;17724:8;17774:5;17768:4;17764:16;17743:37;;17670:117;;;;:::o;17793:169::-;17837:6;17870:51;17918:1;17914:6;17906:5;17903:1;17899:13;17870:51;:::i;:::-;17866:56;17951:4;17945;17941:15;17931:25;;17844:118;17793:169;;;;:::o;17967:295::-;18043:4;18189:29;18214:3;18208:4;18189:29;:::i;:::-;18181:37;;18251:3;18248:1;18244:11;18238:4;18235:21;18227:29;;17967:295;;;;:::o;18267:1395::-;18384:37;18417:3;18384:37;:::i;:::-;18486:18;18478:6;18475:30;18472:56;;;18508:18;;:::i;:::-;18472:56;18552:38;18584:4;18578:11;18552:38;:::i;:::-;18637:67;18697:6;18689;18683:4;18637:67;:::i;:::-;18731:1;18755:4;18742:17;;18787:2;18779:6;18776:14;18804:1;18799:618;;;;19461:1;19478:6;19475:77;;;19527:9;19522:3;19518:19;19512:26;19503:35;;19475:77;19578:67;19638:6;19631:5;19578:67;:::i;:::-;19572:4;19565:81;19434:222;18769:887;;18799:618;18851:4;18847:9;18839:6;18835:22;18885:37;18917:4;18885:37;:::i;:::-;18944:1;18958:208;18972:7;18969:1;18966:14;18958:208;;;19051:9;19046:3;19042:19;19036:26;19028:6;19021:42;19102:1;19094:6;19090:14;19080:24;;19149:2;19138:9;19134:18;19121:31;;18995:4;18992:1;18988:12;18983:17;;18958:208;;;19194:6;19185:7;19182:19;19179:179;;;19252:9;19247:3;19243:19;19237:26;19295:48;19337:4;19329:6;19325:17;19314:9;19295:48;:::i;:::-;19287:6;19280:64;19202:156;19179:179;19404:1;19400;19392:6;19388:14;19384:22;19378:4;19371:36;18806:611;;;18769:887;;18359:1303;;;18267:1395;;:::o;19668:191::-;19708:3;19727:20;19745:1;19727:20;:::i;:::-;19722:25;;19761:20;19779:1;19761:20;:::i;:::-;19756:25;;19804:1;19801;19797:9;19790:16;;19825:3;19822:1;19819:10;19816:36;;;19832:18;;:::i;:::-;19816:36;19668:191;;;;:::o;19865:158::-;20005:10;20001:1;19993:6;19989:14;19982:34;19865:158;:::o;20029:365::-;20171:3;20192:66;20256:1;20251:3;20192:66;:::i;:::-;20185:73;;20267:93;20356:3;20267:93;:::i;:::-;20385:2;20380:3;20376:12;20369:19;;20029:365;;;:::o;20400:419::-;20566:4;20604:2;20593:9;20589:18;20581:26;;20653:9;20647:4;20643:20;20639:1;20628:9;20624:17;20617:47;20681:131;20807:4;20681:131;:::i;:::-;20673:139;;20400:419;;;:::o;20825:410::-;20865:7;20888:20;20906:1;20888:20;:::i;:::-;20883:25;;20922:20;20940:1;20922:20;:::i;:::-;20917:25;;20977:1;20974;20970:9;20999:30;21017:11;20999:30;:::i;:::-;20988:41;;21178:1;21169:7;21165:15;21162:1;21159:22;21139:1;21132:9;21112:83;21089:139;;21208:18;;:::i;:::-;21089:139;20873:362;20825:410;;;;:::o;21241:162::-;21381:14;21377:1;21369:6;21365:14;21358:38;21241:162;:::o;21409:366::-;21551:3;21572:67;21636:2;21631:3;21572:67;:::i;:::-;21565:74;;21648:93;21737:3;21648:93;:::i;:::-;21766:2;21761:3;21757:12;21750:19;;21409:366;;;:::o;21781:419::-;21947:4;21985:2;21974:9;21970:18;21962:26;;22034:9;22028:4;22024:20;22020:1;22009:9;22005:17;21998:47;22062:131;22188:4;22062:131;:::i;:::-;22054:139;;21781:419;;;:::o;22206:164::-;22346:16;22342:1;22334:6;22330:14;22323:40;22206:164;:::o;22376:366::-;22518:3;22539:67;22603:2;22598:3;22539:67;:::i;:::-;22532:74;;22615:93;22704:3;22615:93;:::i;:::-;22733:2;22728:3;22724:12;22717:19;;22376:366;;;:::o;22748:419::-;22914:4;22952:2;22941:9;22937:18;22929:26;;23001:9;22995:4;22991:20;22987:1;22976:9;22972:17;22965:47;23029:131;23155:4;23029:131;:::i;:::-;23021:139;;22748:419;;;:::o;23173:164::-;23313:16;23309:1;23301:6;23297:14;23290:40;23173:164;:::o;23343:366::-;23485:3;23506:67;23570:2;23565:3;23506:67;:::i;:::-;23499:74;;23582:93;23671:3;23582:93;:::i;:::-;23700:2;23695:3;23691:12;23684:19;;23343:366;;;:::o;23715:419::-;23881:4;23919:2;23908:9;23904:18;23896:26;;23968:9;23962:4;23958:20;23954:1;23943:9;23939:17;23932:47;23996:131;24122:4;23996:131;:::i;:::-;23988:139;;23715:419;;;:::o;24140:148::-;24242:11;24279:3;24264:18;;24140:148;;;;:::o;24294:161::-;24434:9;24430:1;24422:6;24418:14;24411:33;24294:161;:::o;24465:416::-;24625:3;24650:84;24732:1;24727:3;24650:84;:::i;:::-;24643:91;;24747:93;24836:3;24747:93;:::i;:::-;24869:1;24864:3;24860:11;24853:18;;24465:416;;;:::o;24891:410::-;24997:3;25029:39;25062:5;25029:39;:::i;:::-;25088:89;25170:6;25165:3;25088:89;:::i;:::-;25081:96;;25190:65;25248:6;25243:3;25236:4;25229:5;25225:16;25190:65;:::i;:::-;25284:6;25279:3;25275:16;25268:23;;25001:300;24891:410;;;;:::o;25311:159::-;25455:3;25451:1;25443:6;25439:14;25432:27;25311:159;:::o;25480:416::-;25640:3;25665:84;25747:1;25742:3;25665:84;:::i;:::-;25658:91;;25762:93;25851:3;25762:93;:::i;:::-;25884:1;25879:3;25875:11;25868:18;;25480:416;;;:::o;25906:163::-;26050:7;26046:1;26038:6;26034:14;26027:31;25906:163;:::o;26079:416::-;26239:3;26264:84;26346:1;26341:3;26264:84;:::i;:::-;26257:91;;26361:93;26450:3;26361:93;:::i;:::-;26483:1;26478:3;26474:11;26467:18;;26079:416;;;:::o;26505:1261::-;26988:3;27014:148;27158:3;27014:148;:::i;:::-;27007:155;;27183:95;27274:3;27265:6;27183:95;:::i;:::-;27176:102;;27299:148;27443:3;27299:148;:::i;:::-;27292:155;;27468:95;27559:3;27550:6;27468:95;:::i;:::-;27461:102;;27584:148;27728:3;27584:148;:::i;:::-;27577:155;;27753:3;27746:10;;26505:1261;;;;;:::o;27776:171::-;27920:15;27916:1;27908:6;27904:14;27897:39;27776:171;:::o;27957:382::-;28099:3;28124:67;28188:2;28183:3;28124:67;:::i;:::-;28117:74;;28204:93;28293:3;28204:93;:::i;:::-;28326:2;28321:3;28317:12;28310:19;;27957:382;;;:::o;28349:435::-;28515:4;28557:2;28546:9;28542:18;28534:26;;28610:9;28604:4;28600:20;28596:1;28585:9;28581:17;28574:47;28642:131;28768:4;28642:131;:::i;:::-;28634:139;;28349:435;;;:::o;28794:196::-;28846:77;28843:1;28836:88;28947:4;28944:1;28937:15;28975:4;28972:1;28965:15

Swarm Source

ipfs://b1dc2ebf9928a1fd0761ee9bd854bf99dba3f32289276d35395af2db012210d0
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.