ETH Price: $3,701.77 (+2.93%)

Token

Zomboki (ZOMBOKI)
 

Overview

Max Total Supply

3,333 ZOMBOKI

Holders

720

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 ZOMBOKI
0xbfd8b3d30ef7c3633a340e10c1d5d3c5d3a3617a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Zomboki

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-25
*/

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
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();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * 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();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 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`.
     *
     * 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 approved 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 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
    ) external;

    /**
     * @dev Transfers `tokenId` token 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);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @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 - _burnCounter - _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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @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 (owner == address(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 number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & 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);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @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 ApprovalToCurrentOwner();

        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);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // 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;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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 (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // 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.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        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);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                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, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @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 _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @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)
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/Zomboki.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;




    

contract Zomboki is ERC721A, Ownable {
    

    constructor() ERC721A("Zomboki", "ZOMBOKI") {}

    string public baseURI;
    string public contractURI;
    string public unrevealedUri = "ipfs://QmYBYBt414RNekYpgLWdwfUfZjLmZ1qKV6mokZYG1dfhQM";
    string public constant baseExtension = ".json";
    uint256 public constant MAX_SUPPLY = 3333;        
    uint256 public maxPerTx = 3;
    uint256 public price = 0 wei;
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    bool public paused = true;
    bool public revealed = false;

    function _startTokenId() internal override view virtual returns (uint256) {
        return 1;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function mint(uint256 _quantity) external payable {
        address _caller = _msgSender();
        require(MAX_SUPPLY >= totalSupply() + _quantity, "Exceeds max supply");
        require(_quantity > 0, "Mint quantity must be > 0");
        require(maxPerTx >= _quantity , "Exceeds max per tx");
        require(paused == false, "Mint paused");
        _safeMint(_caller, _quantity);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function setMaxPerTx(uint256 _maxPerTx) external onlyOwner {
        maxPerTx = _maxPerTx;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }    

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }
    
    function setUnrevealedURI(string memory _unrevealedURI) public onlyOwner {
        unrevealedUri = _unrevealedURI;
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setupOS() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }
    
    function isApprovedForAll(address owner, address operator) public view override returns (bool) {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        
        if (revealed == false) {
            return unrevealedUri;
        }
        
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
            baseURI,
            Strings.toString(_tokenId),
            baseExtension
            )
    ) : "";

    }
}


contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_unrevealedURI","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","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":[{"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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260356080818152906200201560a03980516200002991600b9160209091019062000129565b506003600c556000600d55600e805461ffff191660011790553480156200004f57600080fd5b50604051806040016040528060078152602001665a6f6d626f6b6960c81b815250604051806040016040528060078152602001665a4f4d424f4b4960c81b8152508160029080519060200190620000a892919062000129565b508051620000be90600390602084019062000129565b5050600160005550620000d133620000d7565b6200020b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013790620001cf565b90600052602060002090601f0160209004810192826200015b5760008555620001a6565b82601f106200017657805160ff1916838001178555620001a6565b82800160010185558215620001a6579182015b82811115620001a657825182559160200191906001019062000189565b50620001b4929150620001b8565b5090565b5b80821115620001b45760008155600101620001b9565b600181811c90821680620001e457607f821691505b6020821081036200020557634e487b7160e01b600052602260045260246000fd5b50919050565b611dfa806200021b6000396000f3fe60806040526004361061021a5760003560e01c80638da5cb5b11610123578063c6682862116100ab578063e8a3d4851161006f578063e8a3d485146105f9578063e985e9c51461060e578063f2fde38b1461062e578063f968adbe1461064e578063fe2c7fee1461066457600080fd5b8063c668286214610540578063c6f6f21614610571578063c87b56dd14610591578063cd7c0326146105b1578063dc33e681146105d957600080fd5b8063a0712d68116100f2578063a0712d68146104c3578063a22cb465146104d6578063a475b5dd146104f6578063b88d4fde1461050b578063c02c1bcd1461052b57600080fd5b80638da5cb5b1461045a578063938e3d7b1461047857806395d89b4114610498578063a035b1fe146104ad57600080fd5b806342842e0e116101a65780636352211e116101755780636352211e146103db578063698982ba146103fb5780636c0360eb1461041057806370a0823114610425578063715018a61461044557600080fd5b806342842e0e14610362578063518302271461038257806355f804b3146103a15780635c975abb146103c157600080fd5b8063095ea7b3116101ed578063095ea7b3146102d057806318160ddd146102f057806323b872dd1461031757806332cb6b0c146103375780633ccfd60b1461034d57600080fd5b806301ffc9a71461021f57806302329a291461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611837565b610684565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004611869565b6106d6565b005b34801561028257600080fd5b5061028b61071c565b60405161024b91906118dc565b3480156102a457600080fd5b506102b86102b33660046118ef565b6107ae565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b506102746102eb36600461191d565b6107f2565b3480156102fc57600080fd5b5060015460005403600019015b60405190815260200161024b565b34801561032357600080fd5b50610274610332366004611949565b6108c4565b34801561034357600080fd5b50610309610d0581565b34801561035957600080fd5b506102746108d4565b34801561036e57600080fd5b5061027461037d366004611949565b61098d565b34801561038e57600080fd5b50600e5461023f90610100900460ff1681565b3480156103ad57600080fd5b506102746103bc366004611a16565b6109a8565b3480156103cd57600080fd5b50600e5461023f9060ff1681565b3480156103e757600080fd5b506102b86103f63660046118ef565b6109e5565b34801561040757600080fd5b506102746109f0565b34801561041c57600080fd5b5061028b610a27565b34801561043157600080fd5b50610309610440366004611a5f565b610ab5565b34801561045157600080fd5b50610274610b04565b34801561046657600080fd5b506008546001600160a01b03166102b8565b34801561048457600080fd5b50610274610493366004611a16565b610b38565b3480156104a457600080fd5b5061028b610b75565b3480156104b957600080fd5b50610309600d5481565b6102746104d13660046118ef565b610b84565b3480156104e257600080fd5b506102746104f1366004611a7c565b610cc5565b34801561050257600080fd5b50610274610d5a565b34801561051757600080fd5b50610274610526366004611ab1565b610d95565b34801561053757600080fd5b5061028b610ddf565b34801561054c57600080fd5b5061028b60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561057d57600080fd5b5061027461058c3660046118ef565b610dec565b34801561059d57600080fd5b5061028b6105ac3660046118ef565b610e1b565b3480156105bd57600080fd5b506102b873a5409ec958c83c3f309868babaca7c86dcb077c181565b3480156105e557600080fd5b506103096105f4366004611a5f565b610f8b565b34801561060557600080fd5b5061028b610fb6565b34801561061a57600080fd5b5061023f610629366004611b31565b610fc3565b34801561063a57600080fd5b50610274610649366004611a5f565b611092565b34801561065a57600080fd5b50610309600c5481565b34801561067057600080fd5b5061027461067f366004611a16565b61112d565b60006301ffc9a760e01b6001600160e01b0319831614806106b557506380ac58cd60e01b6001600160e01b03198316145b806106d05750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107095760405162461bcd60e51b815260040161070090611b6a565b60405180910390fd5b600e805460ff1916911515919091179055565b60606002805461072b90611b9f565b80601f016020809104026020016040519081016040528092919081815260200182805461075790611b9f565b80156107a45780601f10610779576101008083540402835291602001916107a4565b820191906000526020600020905b81548152906001019060200180831161078757829003601f168201915b5050505050905090565b60006107b98261116a565b6107d6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107fd8261119f565b9050806001600160a01b0316836001600160a01b0316036108315760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108685761084b8133610fc3565b610868576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108cf838383611215565b505050565b6008546001600160a01b031633146108fe5760405162461bcd60e51b815260040161070090611b6a565b6040514790600090339083908381818185875af1925050503d8060008114610942576040519150601f19603f3d011682016040523d82523d6000602084013e610947565b606091505b50509050806109895760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610700565b5050565b6108cf83838360405180602001604052806000815250610d95565b6008546001600160a01b031633146109d25760405162461bcd60e51b815260040161070090611b6a565b8051610989906009906020840190611788565b60006106d08261119f565b6008546001600160a01b03163314610a1a5760405162461bcd60e51b815260040161070090611b6a565b610a253360016113bc565b565b60098054610a3490611b9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6090611b9f565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b505050505081565b60006001600160a01b038216610ade576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b2e5760405162461bcd60e51b815260040161070090611b6a565b610a2560006113d6565b6008546001600160a01b03163314610b625760405162461bcd60e51b815260040161070090611b6a565b805161098990600a906020840190611788565b60606003805461072b90611b9f565b600154600054339183910360001901610b9d9190611bef565b610d051015610be35760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610700565b60008211610c335760405162461bcd60e51b815260206004820152601960248201527f4d696e74207175616e74697479206d757374206265203e2030000000000000006044820152606401610700565b81600c541015610c7a5760405162461bcd60e51b815260206004820152601260248201527108af0c6cacac8e640dac2f040e0cae440e8f60731b6044820152606401610700565b600e5460ff1615610cbb5760405162461bcd60e51b815260206004820152600b60248201526a135a5b9d081c185d5cd95960aa1b6044820152606401610700565b61098981836113bc565b336001600160a01b03831603610cee5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610d845760405162461bcd60e51b815260040161070090611b6a565b600e805461ff001916610100179055565b610da0848484611215565b6001600160a01b0383163b15610dd957610dbc84848484611428565b610dd9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b8054610a3490611b9f565b6008546001600160a01b03163314610e165760405162461bcd60e51b815260040161070090611b6a565b600c55565b6060610e268261116a565b610e6a5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610700565b600e54610100900460ff161515600003610f1057600b8054610e8b90611b9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb790611b9f565b8015610f045780601f10610ed957610100808354040283529160200191610f04565b820191906000526020600020905b815481529060010190602001808311610ee757829003601f168201915b50505050509050919050565b600060098054610f1f90611b9f565b905011610f3b57604051806020016040528060008152506106d0565b6009610f4683611513565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610f7693929190611c23565b60405160208183030381529060405292915050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166106d0565b600a8054610a3490611b9f565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c455279190602401602060405180830381865afa158015611024573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110489190611cd3565b6001600160a01b0316036110605760019150506106d0565b6001600160a01b0380851660009081526007602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146110bc5760405162461bcd60e51b815260040161070090611b6a565b6001600160a01b0381166111215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610700565b61112a816113d6565b50565b6008546001600160a01b031633146111575760405162461bcd60e51b815260040161070090611b6a565b805161098990600b906020840190611788565b60008160011115801561117e575060005482105b80156106d0575050600090815260046020526040902054600160e01b161590565b600081806001116111fc576000548110156111fc5760008181526004602052604081205490600160e01b821690036111fa575b806000036111f35750600019016000818152600460205260409020546111d2565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60006112208261119f565b9050836001600160a01b0316816001600160a01b0316146112535760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061127157506112718533610fc3565b8061128c575033611281846107ae565b6001600160a01b0316145b9050806112ac57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166112d357604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003611374576001830160008181526004602052604081205490036113725760005481146113725760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610989828260405180602001604052806000815250611614565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061145d903390899088908890600401611cf0565b6020604051808303816000875af1925050508015611498575060408051601f3d908101601f1916820190925261149591810190611d23565b60015b6114f6573d8080156114c6576040519150601f19603f3d011682016040523d82523d6000602084013e6114cb565b606091505b5080516000036114ee576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608160000361153a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611564578061154e81611d40565b915061155d9050600a83611d6f565b915061153e565b60008167ffffffffffffffff81111561157f5761157f61198a565b6040519080825280601f01601f1916602001820160405280156115a9576020820181803683370190505b5090505b841561108a576115be600183611d83565b91506115cb600a86611d9a565b6115d6906030611bef565b60f81b8183815181106115eb576115eb611dae565b60200101906001600160f81b031916908160001a90535061160d600a86611d6f565b94506115ad565b6000546001600160a01b03841661163d57604051622e076360e81b815260040160405180910390fd5b8260000361165e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611733575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116fc6000878480600101955087611428565b611719576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116b157826000541461172e57600080fd5b611778565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611734575b506000908155610dd99085838684565b82805461179490611b9f565b90600052602060002090601f0160209004810192826117b657600085556117fc565b82601f106117cf57805160ff19168380011785556117fc565b828001600101855582156117fc579182015b828111156117fc5782518255916020019190600101906117e1565b5061180892915061180c565b5090565b5b80821115611808576000815560010161180d565b6001600160e01b03198116811461112a57600080fd5b60006020828403121561184957600080fd5b81356111f381611821565b8035801515811461186457600080fd5b919050565b60006020828403121561187b57600080fd5b6111f382611854565b60005b8381101561189f578181015183820152602001611887565b83811115610dd95750506000910152565b600081518084526118c8816020860160208601611884565b601f01601f19169290920160200192915050565b6020815260006111f360208301846118b0565b60006020828403121561190157600080fd5b5035919050565b6001600160a01b038116811461112a57600080fd5b6000806040838503121561193057600080fd5b823561193b81611908565b946020939093013593505050565b60008060006060848603121561195e57600080fd5b833561196981611908565b9250602084013561197981611908565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156119bb576119bb61198a565b604051601f8501601f19908116603f011681019082821181831017156119e3576119e361198a565b816040528093508581528686860111156119fc57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a2857600080fd5b813567ffffffffffffffff811115611a3f57600080fd5b8201601f81018413611a5057600080fd5b61108a848235602084016119a0565b600060208284031215611a7157600080fd5b81356111f381611908565b60008060408385031215611a8f57600080fd5b8235611a9a81611908565b9150611aa860208401611854565b90509250929050565b60008060008060808587031215611ac757600080fd5b8435611ad281611908565b93506020850135611ae281611908565b925060408501359150606085013567ffffffffffffffff811115611b0557600080fd5b8501601f81018713611b1657600080fd5b611b25878235602084016119a0565b91505092959194509250565b60008060408385031215611b4457600080fd5b8235611b4f81611908565b91506020830135611b5f81611908565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611bb357607f821691505b602082108103611bd357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611c0257611c02611bd9565b500190565b60008151611c19818560208601611884565b9290920192915050565b600080855481600182811c915080831680611c3f57607f831692505b60208084108203611c5e57634e487b7160e01b86526022600452602486fd5b818015611c725760018114611c8357611cb0565b60ff19861689528489019650611cb0565b60008c81526020902060005b86811015611ca85781548b820152908501908301611c8f565b505084890196505b505050505050611cc9611cc38287611c07565b85611c07565b9695505050505050565b600060208284031215611ce557600080fd5b81516111f381611908565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cc9908301846118b0565b600060208284031215611d3557600080fd5b81516111f381611821565b600060018201611d5257611d52611bd9565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611d7e57611d7e611d59565b500490565b600082821015611d9557611d95611bd9565b500390565b600082611da957611da9611d59565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212207cebe49621513de88c7d2117bf53df20cb883a9fd11aab06e8bc5f44b3bcba6964736f6c634300080d0033697066733a2f2f516d5942594274343134524e656b5970674c5764776655665a6a4c6d5a31714b56366d6f6b5a594731646668514d

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80638da5cb5b11610123578063c6682862116100ab578063e8a3d4851161006f578063e8a3d485146105f9578063e985e9c51461060e578063f2fde38b1461062e578063f968adbe1461064e578063fe2c7fee1461066457600080fd5b8063c668286214610540578063c6f6f21614610571578063c87b56dd14610591578063cd7c0326146105b1578063dc33e681146105d957600080fd5b8063a0712d68116100f2578063a0712d68146104c3578063a22cb465146104d6578063a475b5dd146104f6578063b88d4fde1461050b578063c02c1bcd1461052b57600080fd5b80638da5cb5b1461045a578063938e3d7b1461047857806395d89b4114610498578063a035b1fe146104ad57600080fd5b806342842e0e116101a65780636352211e116101755780636352211e146103db578063698982ba146103fb5780636c0360eb1461041057806370a0823114610425578063715018a61461044557600080fd5b806342842e0e14610362578063518302271461038257806355f804b3146103a15780635c975abb146103c157600080fd5b8063095ea7b3116101ed578063095ea7b3146102d057806318160ddd146102f057806323b872dd1461031757806332cb6b0c146103375780633ccfd60b1461034d57600080fd5b806301ffc9a71461021f57806302329a291461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611837565b610684565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004611869565b6106d6565b005b34801561028257600080fd5b5061028b61071c565b60405161024b91906118dc565b3480156102a457600080fd5b506102b86102b33660046118ef565b6107ae565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b506102746102eb36600461191d565b6107f2565b3480156102fc57600080fd5b5060015460005403600019015b60405190815260200161024b565b34801561032357600080fd5b50610274610332366004611949565b6108c4565b34801561034357600080fd5b50610309610d0581565b34801561035957600080fd5b506102746108d4565b34801561036e57600080fd5b5061027461037d366004611949565b61098d565b34801561038e57600080fd5b50600e5461023f90610100900460ff1681565b3480156103ad57600080fd5b506102746103bc366004611a16565b6109a8565b3480156103cd57600080fd5b50600e5461023f9060ff1681565b3480156103e757600080fd5b506102b86103f63660046118ef565b6109e5565b34801561040757600080fd5b506102746109f0565b34801561041c57600080fd5b5061028b610a27565b34801561043157600080fd5b50610309610440366004611a5f565b610ab5565b34801561045157600080fd5b50610274610b04565b34801561046657600080fd5b506008546001600160a01b03166102b8565b34801561048457600080fd5b50610274610493366004611a16565b610b38565b3480156104a457600080fd5b5061028b610b75565b3480156104b957600080fd5b50610309600d5481565b6102746104d13660046118ef565b610b84565b3480156104e257600080fd5b506102746104f1366004611a7c565b610cc5565b34801561050257600080fd5b50610274610d5a565b34801561051757600080fd5b50610274610526366004611ab1565b610d95565b34801561053757600080fd5b5061028b610ddf565b34801561054c57600080fd5b5061028b60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561057d57600080fd5b5061027461058c3660046118ef565b610dec565b34801561059d57600080fd5b5061028b6105ac3660046118ef565b610e1b565b3480156105bd57600080fd5b506102b873a5409ec958c83c3f309868babaca7c86dcb077c181565b3480156105e557600080fd5b506103096105f4366004611a5f565b610f8b565b34801561060557600080fd5b5061028b610fb6565b34801561061a57600080fd5b5061023f610629366004611b31565b610fc3565b34801561063a57600080fd5b50610274610649366004611a5f565b611092565b34801561065a57600080fd5b50610309600c5481565b34801561067057600080fd5b5061027461067f366004611a16565b61112d565b60006301ffc9a760e01b6001600160e01b0319831614806106b557506380ac58cd60e01b6001600160e01b03198316145b806106d05750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107095760405162461bcd60e51b815260040161070090611b6a565b60405180910390fd5b600e805460ff1916911515919091179055565b60606002805461072b90611b9f565b80601f016020809104026020016040519081016040528092919081815260200182805461075790611b9f565b80156107a45780601f10610779576101008083540402835291602001916107a4565b820191906000526020600020905b81548152906001019060200180831161078757829003601f168201915b5050505050905090565b60006107b98261116a565b6107d6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107fd8261119f565b9050806001600160a01b0316836001600160a01b0316036108315760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108685761084b8133610fc3565b610868576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108cf838383611215565b505050565b6008546001600160a01b031633146108fe5760405162461bcd60e51b815260040161070090611b6a565b6040514790600090339083908381818185875af1925050503d8060008114610942576040519150601f19603f3d011682016040523d82523d6000602084013e610947565b606091505b50509050806109895760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610700565b5050565b6108cf83838360405180602001604052806000815250610d95565b6008546001600160a01b031633146109d25760405162461bcd60e51b815260040161070090611b6a565b8051610989906009906020840190611788565b60006106d08261119f565b6008546001600160a01b03163314610a1a5760405162461bcd60e51b815260040161070090611b6a565b610a253360016113bc565b565b60098054610a3490611b9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6090611b9f565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b505050505081565b60006001600160a01b038216610ade576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b2e5760405162461bcd60e51b815260040161070090611b6a565b610a2560006113d6565b6008546001600160a01b03163314610b625760405162461bcd60e51b815260040161070090611b6a565b805161098990600a906020840190611788565b60606003805461072b90611b9f565b600154600054339183910360001901610b9d9190611bef565b610d051015610be35760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610700565b60008211610c335760405162461bcd60e51b815260206004820152601960248201527f4d696e74207175616e74697479206d757374206265203e2030000000000000006044820152606401610700565b81600c541015610c7a5760405162461bcd60e51b815260206004820152601260248201527108af0c6cacac8e640dac2f040e0cae440e8f60731b6044820152606401610700565b600e5460ff1615610cbb5760405162461bcd60e51b815260206004820152600b60248201526a135a5b9d081c185d5cd95960aa1b6044820152606401610700565b61098981836113bc565b336001600160a01b03831603610cee5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610d845760405162461bcd60e51b815260040161070090611b6a565b600e805461ff001916610100179055565b610da0848484611215565b6001600160a01b0383163b15610dd957610dbc84848484611428565b610dd9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b8054610a3490611b9f565b6008546001600160a01b03163314610e165760405162461bcd60e51b815260040161070090611b6a565b600c55565b6060610e268261116a565b610e6a5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610700565b600e54610100900460ff161515600003610f1057600b8054610e8b90611b9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb790611b9f565b8015610f045780601f10610ed957610100808354040283529160200191610f04565b820191906000526020600020905b815481529060010190602001808311610ee757829003601f168201915b50505050509050919050565b600060098054610f1f90611b9f565b905011610f3b57604051806020016040528060008152506106d0565b6009610f4683611513565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610f7693929190611c23565b60405160208183030381529060405292915050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166106d0565b600a8054610a3490611b9f565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c455279190602401602060405180830381865afa158015611024573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110489190611cd3565b6001600160a01b0316036110605760019150506106d0565b6001600160a01b0380851660009081526007602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146110bc5760405162461bcd60e51b815260040161070090611b6a565b6001600160a01b0381166111215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610700565b61112a816113d6565b50565b6008546001600160a01b031633146111575760405162461bcd60e51b815260040161070090611b6a565b805161098990600b906020840190611788565b60008160011115801561117e575060005482105b80156106d0575050600090815260046020526040902054600160e01b161590565b600081806001116111fc576000548110156111fc5760008181526004602052604081205490600160e01b821690036111fa575b806000036111f35750600019016000818152600460205260409020546111d2565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60006112208261119f565b9050836001600160a01b0316816001600160a01b0316146112535760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061127157506112718533610fc3565b8061128c575033611281846107ae565b6001600160a01b0316145b9050806112ac57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166112d357604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003611374576001830160008181526004602052604081205490036113725760005481146113725760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610989828260405180602001604052806000815250611614565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061145d903390899088908890600401611cf0565b6020604051808303816000875af1925050508015611498575060408051601f3d908101601f1916820190925261149591810190611d23565b60015b6114f6573d8080156114c6576040519150601f19603f3d011682016040523d82523d6000602084013e6114cb565b606091505b5080516000036114ee576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608160000361153a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611564578061154e81611d40565b915061155d9050600a83611d6f565b915061153e565b60008167ffffffffffffffff81111561157f5761157f61198a565b6040519080825280601f01601f1916602001820160405280156115a9576020820181803683370190505b5090505b841561108a576115be600183611d83565b91506115cb600a86611d9a565b6115d6906030611bef565b60f81b8183815181106115eb576115eb611dae565b60200101906001600160f81b031916908160001a90535061160d600a86611d6f565b94506115ad565b6000546001600160a01b03841661163d57604051622e076360e81b815260040160405180910390fd5b8260000361165e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611733575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116fc6000878480600101955087611428565b611719576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116b157826000541461172e57600080fd5b611778565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611734575b506000908155610dd99085838684565b82805461179490611b9f565b90600052602060002090601f0160209004810192826117b657600085556117fc565b82601f106117cf57805160ff19168380011785556117fc565b828001600101855582156117fc579182015b828111156117fc5782518255916020019190600101906117e1565b5061180892915061180c565b5090565b5b80821115611808576000815560010161180d565b6001600160e01b03198116811461112a57600080fd5b60006020828403121561184957600080fd5b81356111f381611821565b8035801515811461186457600080fd5b919050565b60006020828403121561187b57600080fd5b6111f382611854565b60005b8381101561189f578181015183820152602001611887565b83811115610dd95750506000910152565b600081518084526118c8816020860160208601611884565b601f01601f19169290920160200192915050565b6020815260006111f360208301846118b0565b60006020828403121561190157600080fd5b5035919050565b6001600160a01b038116811461112a57600080fd5b6000806040838503121561193057600080fd5b823561193b81611908565b946020939093013593505050565b60008060006060848603121561195e57600080fd5b833561196981611908565b9250602084013561197981611908565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156119bb576119bb61198a565b604051601f8501601f19908116603f011681019082821181831017156119e3576119e361198a565b816040528093508581528686860111156119fc57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a2857600080fd5b813567ffffffffffffffff811115611a3f57600080fd5b8201601f81018413611a5057600080fd5b61108a848235602084016119a0565b600060208284031215611a7157600080fd5b81356111f381611908565b60008060408385031215611a8f57600080fd5b8235611a9a81611908565b9150611aa860208401611854565b90509250929050565b60008060008060808587031215611ac757600080fd5b8435611ad281611908565b93506020850135611ae281611908565b925060408501359150606085013567ffffffffffffffff811115611b0557600080fd5b8501601f81018713611b1657600080fd5b611b25878235602084016119a0565b91505092959194509250565b60008060408385031215611b4457600080fd5b8235611b4f81611908565b91506020830135611b5f81611908565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611bb357607f821691505b602082108103611bd357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611c0257611c02611bd9565b500190565b60008151611c19818560208601611884565b9290920192915050565b600080855481600182811c915080831680611c3f57607f831692505b60208084108203611c5e57634e487b7160e01b86526022600452602486fd5b818015611c725760018114611c8357611cb0565b60ff19861689528489019650611cb0565b60008c81526020902060005b86811015611ca85781548b820152908501908301611c8f565b505084890196505b505050505050611cc9611cc38287611c07565b85611c07565b9695505050505050565b600060208284031215611ce557600080fd5b81516111f381611908565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cc9908301846118b0565b600060208284031215611d3557600080fd5b81516111f381611821565b600060018201611d5257611d52611bd9565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611d7e57611d7e611d59565b500490565b600082821015611d9557611d95611bd9565b500390565b600082611da957611da9611d59565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212207cebe49621513de88c7d2117bf53df20cb883a9fd11aab06e8bc5f44b3bcba6964736f6c634300080d0033

Deployed Bytecode Sourcemap

44002:3066:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15197:615;;;;;;;;;;-1:-1:-1;15197:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;15197:615:0;;;;;;;;45796:81;;;;;;;;;;-1:-1:-1;45796:81:0;;;;;:::i;:::-;;:::i;:::-;;20210:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22278:204::-;;;;;;;;;;-1:-1:-1;22278:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2064:32:1;;;2046:51;;2034:2;2019:18;22278:204:0;1900:203:1;21738:474:0;;;;;;;;;;-1:-1:-1;21738:474:0;;;;;:::i;:::-;;:::i;14251:315::-;;;;;;;;;;-1:-1:-1;44695:1:0;14517:12;14304:7;14501:13;:28;-1:-1:-1;;14501:46:0;14251:315;;;2710:25:1;;;2698:2;2683:18;14251:315:0;2564:177:1;23164:170:0;;;;;;;;;;-1:-1:-1;23164:170:0;;;;;:::i;:::-;;:::i;44313:41::-;;;;;;;;;;;;44350:4;44313:41;;45575:209;;;;;;;;;;;;;:::i;23405:185::-;;;;;;;;;;-1:-1:-1;23405:185:0;;;;;:::i;:::-;;:::i;44566:28::-;;;;;;;;;;-1:-1:-1;44566:28:0;;;;;;;;;;;45467:100;;;;;;;;;;-1:-1:-1;45467:100:0;;;;;:::i;:::-;;:::i;44534:25::-;;;;;;;;;;-1:-1:-1;44534:25:0;;;;;;;;19999:144;;;;;;;;;;-1:-1:-1;19999:144:0;;;;;:::i;:::-;;:::i;46096:83::-;;;;;;;;;;;;;:::i;44108:21::-;;;;;;;;;;;;;:::i;15876:224::-;;;;;;;;;;-1:-1:-1;15876:224:0;;;;;:::i;:::-;;:::i;43077:103::-;;;;;;;;;;;;;:::i;42426:87::-;;;;;;;;;;-1:-1:-1;42499:6:0;;-1:-1:-1;;;;;42499:6:0;42426:87;;44712:116;;;;;;;;;;-1:-1:-1;44712:116:0;;;;;:::i;:::-;;:::i;20379:104::-;;;;;;;;;;;;;:::i;44403:28::-;;;;;;;;;;;;;;;;44836:396;;;;;;:::i;:::-;;:::i;22554:308::-;;;;;;;;;;-1:-1:-1;22554:308:0;;;;;:::i;:::-;;:::i;46019:69::-;;;;;;;;;;;;;:::i;23661:396::-;;;;;;;;;;-1:-1:-1;23661:396:0;;;;;:::i;:::-;;:::i;44168:85::-;;;;;;;;;;;;;:::i;44260:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;44260:46:0;;;;;45361:98;;;;;;;;;;-1:-1:-1;45361:98:0;;;;;:::i;:::-;;:::i;46611:454::-;;;;;;;;;;-1:-1:-1;46611:454:0;;;;;:::i;:::-;;:::i;44438:89::-;;;;;;;;;;;;44485:42;44438:89;;45240:113;;;;;;;;;;-1:-1:-1;45240:113:0;;;;;:::i;:::-;;:::i;44136:25::-;;;;;;;;;;;;;:::i;46191:404::-;;;;;;;;;;-1:-1:-1;46191:404:0;;;;;:::i;:::-;;:::i;43335:201::-;;;;;;;;;;-1:-1:-1;43335:201:0;;;;;:::i;:::-;;:::i;44369:27::-;;;;;;;;;;;;;;;;45889:122;;;;;;;;;;-1:-1:-1;45889:122:0;;;;;:::i;:::-;;:::i;15197:615::-;15282:4;-1:-1:-1;;;;;;;;;15582:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15659:25:0;;;15582:102;:179;;;-1:-1:-1;;;;;;;;;;15736:25:0;;;15582:179;15562:199;15197:615;-1:-1:-1;;15197:615:0:o;45796:81::-;42499:6;;-1:-1:-1;;;;;42499:6:0;41230:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;;;;;;:::i;:::-;;;;;;;;;45854:6:::1;:15:::0;;-1:-1:-1;;45854:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45796:81::o;20210:100::-;20264:13;20297:5;20290:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20210:100;:::o;22278:204::-;22346:7;22371:16;22379:7;22371;:16::i;:::-;22366:64;;22396:34;;-1:-1:-1;;;22396:34:0;;;;;;;;;;;22366:64;-1:-1:-1;22450:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22450:24:0;;22278:204::o;21738:474::-;21811:13;21843:27;21862:7;21843:18;:27::i;:::-;21811:61;;21893:5;-1:-1:-1;;;;;21887:11:0;:2;-1:-1:-1;;;;;21887:11:0;;21883:48;;21907:24;;-1:-1:-1;;;21907:24:0;;;;;;;;;;;21883:48;41230:10;-1:-1:-1;;;;;21948:28:0;;;21944:175;;21996:44;22013:5;41230:10;46191:404;:::i;21996:44::-;21991:128;;22068:35;;-1:-1:-1;;;22068:35:0;;;;;;;;;;;21991:128;22131:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22131:29:0;-1:-1:-1;;;;;22131:29:0;;;;;;;;;22176:28;;22131:24;;22176:28;;;;;;;21800:412;21738:474;;:::o;23164:170::-;23298:28;23308:4;23314:2;23318:7;23298:9;:28::i;:::-;23164:170;;;:::o;45575:209::-;42499:6;;-1:-1:-1;;;;;42499:6:0;41230:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;;;;;;:::i;:::-;45694:37:::1;::::0;45643:21:::1;::::0;45625:15:::1;::::0;41230:10;;45643:21;;45625:15;45694:37;45625:15;45694:37;45643:21;41230:10;45694:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45675:56;;;45750:7;45742:34;;;::::0;-1:-1:-1;;;45742:34:0;;7355:2:1;45742:34:0::1;::::0;::::1;7337:21:1::0;7394:2;7374:18;;;7367:30;-1:-1:-1;;;7413:18:1;;;7406:44;7467:18;;45742:34:0::1;7153:338:1::0;45742:34:0::1;45614:170;;45575:209::o:0;23405:185::-;23543:39;23560:4;23566:2;23570:7;23543:39;;;;;;;;;;;;:16;:39::i;45467:100::-;42499:6;;-1:-1:-1;;;;;42499:6:0;41230:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;;;;;;:::i;:::-;45541:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;19999:144::-:0;20063:7;20106:27;20125:7;20106:18;:27::i;46096:83::-;42499:6;;-1:-1:-1;;;;;42499:6:0;41230:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;;;;;;:::i;:::-;46145:26:::1;41230:10:::0;46169:1:::1;46145:9;:26::i;:::-;46096:83::o:0;44108:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15876:224::-;15940:7;-1:-1:-1;;;;;15964:19:0;;15960:60;;15992:28;;-1:-1:-1;;;15992:28:0;;;;;;;;;;;15960:60;-1:-1:-1;;;;;;16038:25:0;;;;;:18;:25;;;;;;11215:13;16038:54;;15876:224::o;43077:103::-;42499:6;;-1:-1:-1;;;;;42499:6:0;41230:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;;;;;;:::i;:::-;43142:30:::1;43169:1;43142:18;:30::i;44712:116::-:0;42499:6;;-1:-1:-1;;;;;42499:6:0;41230:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;;;;;;:::i;:::-;44794:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;20379:104::-:0;20435:13;20468:7;20461:14;;;;;:::i;44836:396::-;44695:1;14517:12;14304:7;14501:13;41230:10;;44976:9;;14501:28;-1:-1:-1;;14501:46:0;44960:25;;;;:::i;:::-;44350:4;44946:39;;44938:70;;;;-1:-1:-1;;;44938:70:0;;7963:2:1;44938:70:0;;;7945:21:1;8002:2;7982:18;;;7975:30;-1:-1:-1;;;8021:18:1;;;8014:48;8079:18;;44938:70:0;7761:342:1;44938:70:0;45039:1;45027:9;:13;45019:51;;;;-1:-1:-1;;;45019:51:0;;8310:2:1;45019:51:0;;;8292:21:1;8349:2;8329:18;;;8322:30;8388:27;8368:18;;;8361:55;8433:18;;45019:51:0;8108:349:1;45019:51:0;45101:9;45089:8;;:21;;45081:53;;;;-1:-1:-1;;;45081:53:0;;8664:2:1;45081:53:0;;;8646:21:1;8703:2;8683:18;;;8676:30;-1:-1:-1;;;8722:18:1;;;8715:48;8780:18;;45081:53:0;8462:342:1;45081:53:0;45153:6;;;;:15;45145:39;;;;-1:-1:-1;;;45145:39:0;;9011:2:1;45145:39:0;;;8993:21:1;9050:2;9030:18;;;9023:30;-1:-1:-1;;;9069:18:1;;;9062:41;9120:18;;45145:39:0;8809:335:1;45145:39:0;45195:29;45205:7;45214:9;45195;:29::i;22554:308::-;41230:10;-1:-1:-1;;;;;22653:31:0;;;22649:61;;22693:17;;-1:-1:-1;;;22693:17:0;;;;;;;;;;;22649:61;41230:10;22723:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22723:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22723:60:0;;;;;;;;;;22799:55;;540:41:1;;;22723:49:0;;41230:10;22799:55;;513:18:1;22799:55:0;;;;;;;22554:308;;:::o;46019:69::-;42499:6;;-1:-1:-1;;;;;42499:6:0;41230:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;;;;;;:::i;:::-;46065:8:::1;:15:::0;;-1:-1:-1;;46065:15:0::1;;;::::0;;46019:69::o;23661:396::-;23828:28;23838:4;23844:2;23848:7;23828:9;:28::i;:::-;-1:-1:-1;;;;;23871:14:0;;;:19;23867:183;;23910:56;23941:4;23947:2;23951:7;23960:5;23910:30;:56::i;:::-;23905:145;;23994:40;;-1:-1:-1;;;23994:40:0;;;;;;;;;;;23905:145;23661:396;;;;:::o;44168:85::-;;;;;;;:::i;45361:98::-;42499:6;;-1:-1:-1;;;;;42499:6:0;41230:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;;;;;;:::i;:::-;45431:8:::1;:20:::0;45361:98::o;46611:454::-;46677:13;46711:17;46719:8;46711:7;:17::i;:::-;46703:51;;;;-1:-1:-1;;;46703:51:0;;9351:2:1;46703:51:0;;;9333:21:1;9390:2;9370:18;;;9363:30;-1:-1:-1;;;9409:18:1;;;9402:51;9470:18;;46703:51:0;9149:345:1;46703:51:0;46779:8;;;;;;;:17;;46791:5;46779:17;46775:70;;46820:13;46813:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46611:454;;;:::o;46775:70::-;46896:1;46878:7;46872:21;;;;;:::i;:::-;;;:25;:183;;;;;;;;;;;;;;;;;46952:7;46974:26;46991:8;46974:16;:26::i;:::-;47015:13;;;;;;;;;;;;;-1:-1:-1;;;47015:13:0;;;46921:122;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46865:190;46611:454;-1:-1:-1;;46611:454:0:o;45240:113::-;-1:-1:-1;;;;;16271:25:0;;45298:7;16271:25;;;:18;:25;;11352:2;16271:25;;;;11215:13;16271:49;;16270:80;45325:20;16182:176;44136:25;;;;;;;:::i;46191:404::-;46448:28;;-1:-1:-1;;;46448:28:0;;-1:-1:-1;;;;;2064:32:1;;;46448:28:0;;;2046:51:1;46280:4:0;;44485:42;;46440:49;;;44485:42;;46448:21;;2019:18:1;;46448:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46440:49:0;;46436:93;;46513:4;46506:11;;;;;46436:93;-1:-1:-1;;;;;23054:25:0;;;23030:4;23054:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;46548:39;46541:46;46191:404;-1:-1:-1;;;;46191:404:0:o;43335:201::-;42499:6;;-1:-1:-1;;;;;42499:6:0;41230:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43424:22:0;::::1;43416:73;;;::::0;-1:-1:-1;;;43416:73:0;;11556:2:1;43416:73:0::1;::::0;::::1;11538:21:1::0;11595:2;11575:18;;;11568:30;11634:34;11614:18;;;11607:62;-1:-1:-1;;;11685:18:1;;;11678:36;11731:19;;43416:73:0::1;11354:402:1::0;43416:73:0::1;43500:28;43519:8;43500:18;:28::i;:::-;43335:201:::0;:::o;45889:122::-;42499:6;;-1:-1:-1;;;;;42499:6:0;41230:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;;;;;;:::i;:::-;45973:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;24312:273::-:0;24369:4;24425:7;44695:1;24406:26;;:66;;;;;24459:13;;24449:7;:23;24406:66;:152;;;;-1:-1:-1;;24510:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24510:43:0;:48;;24312:273::o;17514:1129::-;17581:7;17616;;44695:1;17665:23;17661:915;;17718:13;;17711:4;:20;17707:869;;;17756:14;17773:23;;;:17;:23;;;;;;;-1:-1:-1;;;17862:23:0;;:28;;17858:699;;18381:113;18388:6;18398:1;18388:11;18381:113;;-1:-1:-1;;;18459:6:0;18441:25;;;;:17;:25;;;;;;18381:113;;;18527:6;17514:1129;-1:-1:-1;;;17514:1129:0:o;17858:699::-;17733:843;17707:869;18604:31;;-1:-1:-1;;;18604:31:0;;;;;;;;;;;29551:2515;29666:27;29696;29715:7;29696:18;:27::i;:::-;29666:57;;29781:4;-1:-1:-1;;;;;29740:45:0;29756:19;-1:-1:-1;;;;;29740:45:0;;29736:86;;29794:28;;-1:-1:-1;;;29794:28:0;;;;;;;;;;;29736:86;29835:22;41230:10;-1:-1:-1;;;;;29861:27:0;;;;:87;;-1:-1:-1;29905:43:0;29922:4;41230:10;46191:404;:::i;29905:43::-;29861:147;;;-1:-1:-1;41230:10:0;29965:20;29977:7;29965:11;:20::i;:::-;-1:-1:-1;;;;;29965:43:0;;29861:147;29835:174;;30027:17;30022:66;;30053:35;;-1:-1:-1;;;30053:35:0;;;;;;;;;;;30022:66;-1:-1:-1;;;;;30103:16:0;;30099:52;;30128:23;;-1:-1:-1;;;30128:23:0;;;;;;;;;;;30099:52;30280:24;;;;:15;:24;;;;;;;;30273:31;;-1:-1:-1;;;;;;30273:31:0;;;-1:-1:-1;;;;;30672:24:0;;;;;:18;:24;;;;;30670:26;;-1:-1:-1;;30670:26:0;;;30741:22;;;;;;;30739:24;;-1:-1:-1;30739:24:0;;;31034:26;;;:17;:26;;;;;-1:-1:-1;;;31122:15:0;11869:3;31122:41;31080:84;;:128;;31034:174;;;31328:46;;:51;;31324:626;;31432:1;31422:11;;31400:19;31555:30;;;:17;:30;;;;;;:35;;31551:384;;31693:13;;31678:11;:28;31674:242;;31840:30;;;;:17;:30;;;;;:52;;;31674:242;31381:569;31324:626;31997:7;31993:2;-1:-1:-1;;;;;31978:27:0;31987:4;-1:-1:-1;;;;;31978:27:0;;;;;;;;;;;29655:2411;;29551:2515;;;:::o;24669:104::-;24738:27;24748:2;24752:8;24738:27;;;;;;;;;;;;:9;:27::i;43696:191::-;43789:6;;;-1:-1:-1;;;;;43806:17:0;;;-1:-1:-1;;;;;;43806:17:0;;;;;;;43839:40;;43789:6;;;43806:17;43789:6;;43839:40;;43770:16;;43839:40;43759:128;43696:191;:::o;35763:716::-;35947:88;;-1:-1:-1;;;35947:88:0;;35926:4;;-1:-1:-1;;;;;35947:45:0;;;;;:88;;41230:10;;36014:4;;36020:7;;36029:5;;35947:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35947:88:0;;;;;;;;-1:-1:-1;;35947:88:0;;;;;;;;;;;;:::i;:::-;;;35943:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36230:6;:13;36247:1;36230:18;36226:235;;36276:40;;-1:-1:-1;;;36276:40:0;;;;;;;;;;;36226:235;36419:6;36413:13;36404:6;36400:2;36396:15;36389:38;35943:529;-1:-1:-1;;;;;;36106:64:0;-1:-1:-1;;;36106:64:0;;-1:-1:-1;35763:716:0;;;;;;:::o;365:723::-;421:13;642:5;651:1;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;25146:2236;25269:20;25292:13;-1:-1:-1;;;;;25320:16:0;;25316:48;;25345:19;;-1:-1:-1;;;25345:19:0;;;;;;;;;;;25316:48;25379:8;25391:1;25379:13;25375:44;;25401:18;;-1:-1:-1;;;25401:18:0;;;;;;;;;;;25375:44;-1:-1:-1;;;;;25968:22:0;;;;;;:18;:22;;;;11352:2;25968:22;;;:70;;26006:31;25994:44;;25968:70;;;26281:31;;;:17;:31;;;;;26374:15;11869:3;26374:41;26332:84;;-1:-1:-1;26452:13:0;;12132:3;26437:56;26332:162;26281:213;;:31;;26575:23;;;;26619:14;:19;26615:635;;26659:313;26690:38;;26715:12;;-1:-1:-1;;;;;26690:38:0;;;26707:1;;26690:38;;26707:1;;26690:38;26756:69;26795:1;26799:2;26803:14;;;;;;26819:5;26756:30;:69::i;:::-;26751:174;;26861:40;;-1:-1:-1;;;26861:40:0;;;;;;;;;;;26751:174;26967:3;26952:12;:18;26659:313;;27053:12;27036:13;;:29;27032:43;;27067:8;;;27032:43;26615:635;;;27116:119;27147:40;;27172:14;;;;;-1:-1:-1;;;;;27147:40:0;;;27164:1;;27147:40;;27164:1;;27147:40;27230:3;27215:12;:18;27116:119;;26615:635;-1:-1:-1;27264:13:0;:28;;;27314:60;;27347:2;27351:12;27365:8;27314:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:269::-;1258:3;1296:5;1290:12;1323:6;1318:3;1311:19;1339:63;1395:6;1388:4;1383:3;1379:14;1372:4;1365:5;1361:16;1339:63;:::i;:::-;1456:2;1435:15;-1:-1:-1;;1431:29:1;1422:39;;;;1463:4;1418:50;;1205:269;-1:-1:-1;;1205:269:1:o;1479:231::-;1628:2;1617:9;1610:21;1591:4;1648:56;1700:2;1689:9;1685:18;1677:6;1648:56;:::i;1715:180::-;1774:6;1827:2;1815:9;1806:7;1802:23;1798:32;1795:52;;;1843:1;1840;1833:12;1795:52;-1:-1:-1;1866:23:1;;1715:180;-1:-1:-1;1715:180:1:o;2108:131::-;-1:-1:-1;;;;;2183:31:1;;2173:42;;2163:70;;2229:1;2226;2219:12;2244:315;2312:6;2320;2373:2;2361:9;2352:7;2348:23;2344:32;2341:52;;;2389:1;2386;2379:12;2341:52;2428:9;2415:23;2447:31;2472:5;2447:31;:::i;:::-;2497:5;2549:2;2534:18;;;;2521:32;;-1:-1:-1;;;2244:315:1:o;2746:456::-;2823:6;2831;2839;2892:2;2880:9;2871:7;2867:23;2863:32;2860:52;;;2908:1;2905;2898:12;2860:52;2947:9;2934:23;2966:31;2991:5;2966:31;:::i;:::-;3016:5;-1:-1:-1;3073:2:1;3058:18;;3045:32;3086:33;3045:32;3086:33;:::i;:::-;2746:456;;3138:7;;-1:-1:-1;;;3192:2:1;3177:18;;;;3164:32;;2746:456::o;3207:127::-;3268:10;3263:3;3259:20;3256:1;3249:31;3299:4;3296:1;3289:15;3323:4;3320:1;3313:15;3339:632;3404:5;3434:18;3475:2;3467:6;3464:14;3461:40;;;3481:18;;:::i;:::-;3556:2;3550:9;3524:2;3610:15;;-1:-1:-1;;3606:24:1;;;3632:2;3602:33;3598:42;3586:55;;;3656:18;;;3676:22;;;3653:46;3650:72;;;3702:18;;:::i;:::-;3742:10;3738:2;3731:22;3771:6;3762:15;;3801:6;3793;3786:22;3841:3;3832:6;3827:3;3823:16;3820:25;3817:45;;;3858:1;3855;3848:12;3817:45;3908:6;3903:3;3896:4;3888:6;3884:17;3871:44;3963:1;3956:4;3947:6;3939;3935:19;3931:30;3924:41;;;;3339:632;;;;;:::o;3976:451::-;4045:6;4098:2;4086:9;4077:7;4073:23;4069:32;4066:52;;;4114:1;4111;4104:12;4066:52;4154:9;4141:23;4187:18;4179:6;4176:30;4173:50;;;4219:1;4216;4209:12;4173:50;4242:22;;4295:4;4287:13;;4283:27;-1:-1:-1;4273:55:1;;4324:1;4321;4314:12;4273:55;4347:74;4413:7;4408:2;4395:16;4390:2;4386;4382:11;4347:74;:::i;4432:247::-;4491:6;4544:2;4532:9;4523:7;4519:23;4515:32;4512:52;;;4560:1;4557;4550:12;4512:52;4599:9;4586:23;4618:31;4643:5;4618:31;:::i;4684:315::-;4749:6;4757;4810:2;4798:9;4789:7;4785:23;4781:32;4778:52;;;4826:1;4823;4816:12;4778:52;4865:9;4852:23;4884:31;4909:5;4884:31;:::i;:::-;4934:5;-1:-1:-1;4958:35:1;4989:2;4974:18;;4958:35;:::i;:::-;4948:45;;4684:315;;;;;:::o;5004:795::-;5099:6;5107;5115;5123;5176:3;5164:9;5155:7;5151:23;5147:33;5144:53;;;5193:1;5190;5183:12;5144:53;5232:9;5219:23;5251:31;5276:5;5251:31;:::i;:::-;5301:5;-1:-1:-1;5358:2:1;5343:18;;5330:32;5371:33;5330:32;5371:33;:::i;:::-;5423:7;-1:-1:-1;5477:2:1;5462:18;;5449:32;;-1:-1:-1;5532:2:1;5517:18;;5504:32;5559:18;5548:30;;5545:50;;;5591:1;5588;5581:12;5545:50;5614:22;;5667:4;5659:13;;5655:27;-1:-1:-1;5645:55:1;;5696:1;5693;5686:12;5645:55;5719:74;5785:7;5780:2;5767:16;5762:2;5758;5754:11;5719:74;:::i;:::-;5709:84;;;5004:795;;;;;;;:::o;5804:388::-;5872:6;5880;5933:2;5921:9;5912:7;5908:23;5904:32;5901:52;;;5949:1;5946;5939:12;5901:52;5988:9;5975:23;6007:31;6032:5;6007:31;:::i;:::-;6057:5;-1:-1:-1;6114:2:1;6099:18;;6086:32;6127:33;6086:32;6127:33;:::i;:::-;6179:7;6169:17;;;5804:388;;;;;:::o;6197:356::-;6399:2;6381:21;;;6418:18;;;6411:30;6477:34;6472:2;6457:18;;6450:62;6544:2;6529:18;;6197:356::o;6558:380::-;6637:1;6633:12;;;;6680;;;6701:61;;6755:4;6747:6;6743:17;6733:27;;6701:61;6808:2;6800:6;6797:14;6777:18;6774:38;6771:161;;6854:10;6849:3;6845:20;6842:1;6835:31;6889:4;6886:1;6879:15;6917:4;6914:1;6907:15;6771:161;;6558:380;;;:::o;7496:127::-;7557:10;7552:3;7548:20;7545:1;7538:31;7588:4;7585:1;7578:15;7612:4;7609:1;7602:15;7628:128;7668:3;7699:1;7695:6;7692:1;7689:13;7686:39;;;7705:18;;:::i;:::-;-1:-1:-1;7741:9:1;;7628:128::o;9625:185::-;9667:3;9705:5;9699:12;9720:52;9765:6;9760:3;9753:4;9746:5;9742:16;9720:52;:::i;:::-;9788:16;;;;;9625:185;-1:-1:-1;;9625:185:1:o;9815:1249::-;10039:3;10068:1;10101:6;10095:13;10131:3;10153:1;10181:9;10177:2;10173:18;10163:28;;10241:2;10230:9;10226:18;10263;10253:61;;10307:4;10299:6;10295:17;10285:27;;10253:61;10333:2;10381;10373:6;10370:14;10350:18;10347:38;10344:165;;-1:-1:-1;;;10408:33:1;;10464:4;10461:1;10454:15;10494:4;10415:3;10482:17;10344:165;10525:18;10552:104;;;;10670:1;10665:320;;;;10518:467;;10552:104;-1:-1:-1;;10585:24:1;;10573:37;;10630:16;;;;-1:-1:-1;10552:104:1;;10665:320;9572:1;9565:14;;;9609:4;9596:18;;10760:1;10774:165;10788:6;10785:1;10782:13;10774:165;;;10866:14;;10853:11;;;10846:35;10909:16;;;;10803:10;;10774:165;;;10778:3;;10968:6;10963:3;10959:16;10952:23;;10518:467;;;;;;;11001:57;11027:30;11053:3;11045:6;11027:30;:::i;:::-;11019:6;11001:57;:::i;:::-;10994:64;9815:1249;-1:-1:-1;;;;;;9815:1249:1:o;11069:280::-;11168:6;11221:2;11209:9;11200:7;11196:23;11192:32;11189:52;;;11237:1;11234;11227:12;11189:52;11269:9;11263:16;11288:31;11313:5;11288:31;:::i;11761:500::-;-1:-1:-1;;;;;12030:15:1;;;12012:34;;12082:15;;12077:2;12062:18;;12055:43;12129:2;12114:18;;12107:34;;;12177:3;12172:2;12157:18;;12150:31;;;11955:4;;12198:57;;12235:19;;12227:6;12198:57;:::i;12266:249::-;12335:6;12388:2;12376:9;12367:7;12363:23;12359:32;12356:52;;;12404:1;12401;12394:12;12356:52;12436:9;12430:16;12455:30;12479:5;12455:30;:::i;12520:135::-;12559:3;12580:17;;;12577:43;;12600:18;;:::i;:::-;-1:-1:-1;12647:1:1;12636:13;;12520:135::o;12660:127::-;12721:10;12716:3;12712:20;12709:1;12702:31;12752:4;12749:1;12742:15;12776:4;12773:1;12766:15;12792:120;12832:1;12858;12848:35;;12863:18;;:::i;:::-;-1:-1:-1;12897:9:1;;12792:120::o;12917:125::-;12957:4;12985:1;12982;12979:8;12976:34;;;12990:18;;:::i;:::-;-1:-1:-1;13027:9:1;;12917:125::o;13047:112::-;13079:1;13105;13095:35;;13110:18;;:::i;:::-;-1:-1:-1;13144:9:1;;13047:112::o;13164:127::-;13225:10;13220:3;13216:20;13213:1;13206:31;13256:4;13253:1;13246:15;13280:4;13277:1;13270:15

Swarm Source

ipfs://7cebe49621513de88c7d2117bf53df20cb883a9fd11aab06e8bc5f44b3bcba69
Loading...
Loading
Loading...
Loading
[ 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.