ETH Price: $3,255.37 (+2.52%)
Gas: 2 Gwei

Token

Plague Club (PLAGUE)
 

Overview

Max Total Supply

2,206 PLAGUE

Holders

755

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 PLAGUE
0xfcada87998c04ee2b1903f5d7cd5ba6bd3b68c02
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:
PlagueClub

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-18
*/

// File: contracts/IERC721Receiver.sol



pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: contracts/Address.sol



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: contracts/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: contracts/IERC165.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

// File: contracts/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: contracts/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );

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

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

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

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

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

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

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

// File: contracts/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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: contracts/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: contracts/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: contracts/ERC721A.sol


pragma solidity ^0.8.0;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    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;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _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 ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // 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.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @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, tokenId.toString())) : '';
    }

    /**
     * @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 See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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 (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // 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**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // 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**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @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 {}
}
// File: contracts/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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/datatime.sol



pragma solidity ^0.8.0;



contract PlagueClub is ERC721A, Ownable {

    uint256 public price = 0.005 ether;
    uint256 public maxTotalSupply = 6666;
    uint256 public saleStartTime = 1658154600;
    string private baseURI;
    mapping(address => uint256) public freePlagueClaimed;

    constructor() ERC721A("Plague Club", "PLAGUE") {
        saleStartTime = block.timestamp;
    }

    modifier mintableSupply(uint256 _quantity) {
        require(
            _quantity > 0,
            "You need to mint at least 1 NFT."
        );
        require(
            totalSupply() + _quantity <= maxTotalSupply,
            "Over maximum supply."
        );
        _;
    }

    modifier saleActive() {
        require(
            saleStartTime <= block.timestamp,
            "Not start yet."
        );
        _;
    }

    function mintPlagues(uint256 quantity)
        external
        payable
        saleActive
        mintableSupply(quantity) 
    {
        uint256 payAmount = freePlagueClaimed[msg.sender] + quantity <= 3 ? 0: freePlagueClaimed[msg.sender] + quantity - 3;

        freePlagueClaimed[msg.sender] = freePlagueClaimed[msg.sender] + quantity <= 3 ? freePlagueClaimed[msg.sender] + quantity : 3;
        require(msg.value >= payAmount * price, "Insufficent funds.");
        _safeMint(msg.sender, quantity);
    }

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

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }


    function setMintPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setSaleTime(uint256 _time) external onlyOwner {
        saleStartTime = _time;
    }

    function setMaxSupply(uint256 newSupply) external onlyOwner {
        require(newSupply < maxTotalSupply);
        maxTotalSupply = newSupply;
    }


    function withdraw() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freePlagueClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPlagues","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setSaleTime","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526611c37937e08000600855611a0a6009556362d56e68600a553480156200002a57600080fd5b506040518060400160405280600b81526020016a283630b3bab29021b63ab160a91b81525060405180604001604052806006815260200165504c4147554560d01b81525081600190816200007f9190620001b0565b5060026200008e8282620001b0565b505050620000ab620000a5620000b560201b60201c565b620000b9565b42600a556200027c565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013657607f821691505b6020821081036200015757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ab57600081815260208120601f850160051c81016020861015620001865750805b601f850160051c820191505b81811015620001a75782815560010162000192565b5050505b505050565b81516001600160401b03811115620001cc57620001cc6200010b565b620001e481620001dd845462000121565b846200015d565b602080601f8311600181146200021c5760008415620002035750858301515b600019600386901b1c1916600185901b178555620001a7565b600085815260208120601f198616915b828110156200024d578886015182559484019460019091019084016200022c565b50858210156200026c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611d60806200028c6000396000f3fe6080604052600436106101c25760003560e01c806355f804b3116100f7578063a035b1fe11610095578063c87b56dd11610064578063c87b56dd146104f4578063e985e9c514610514578063f2fde38b1461055d578063f4a0a5281461057d57600080fd5b8063a035b1fe14610471578063a22cb46514610487578063b88d4fde146104a7578063c468f6ca146104c757600080fd5b806370a08231116100d157806370a0823114610409578063715018a6146104295780638da5cb5b1461043e57806395d89b411461045c57600080fd5b806355f804b3146103a95780636352211e146103c95780636f8b44b0146103e957600080fd5b806328a4723b116101645780633bd2b67d1161013e5780633bd2b67d146103345780633ccfd60b1461035457806342842e0e146103695780634f6ccce71461038957600080fd5b806328a4723b146102eb5780632ab4d052146102fe5780632f745c591461031457600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd146102785780631cbaee2d146102b557806323b872dd146102cb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611759565b61059d565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161060a565b6040516101f391906117ce565b34801561022a57600080fd5b5061023e6102393660046117e1565b61069c565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611816565b6106e0565b005b34801561028457600080fd5b506102a76000546001600160801b03600160801b82048116918116919091031690565b6040519081526020016101f3565b3480156102c157600080fd5b506102a7600a5481565b3480156102d757600080fd5b506102766102e6366004611840565b61076d565b6102766102f93660046117e1565b610778565b34801561030a57600080fd5b506102a760095481565b34801561032057600080fd5b506102a761032f366004611816565b61098e565b34801561034057600080fd5b5061027661034f3660046117e1565b610a82565b34801561036057600080fd5b50610276610ab1565b34801561037557600080fd5b50610276610384366004611840565b610b69565b34801561039557600080fd5b506102a76103a43660046117e1565b610b84565b3480156103b557600080fd5b506102766103c4366004611907565b610c2d565b3480156103d557600080fd5b5061023e6103e43660046117e1565b610c67565b3480156103f557600080fd5b506102766104043660046117e1565b610c79565b34801561041557600080fd5b506102a761042436600461194f565b610cb6565b34801561043557600080fd5b50610276610d04565b34801561044a57600080fd5b506007546001600160a01b031661023e565b34801561046857600080fd5b50610211610d3a565b34801561047d57600080fd5b506102a760085481565b34801561049357600080fd5b506102766104a236600461196a565b610d49565b3480156104b357600080fd5b506102766104c23660046119a6565b610dde565b3480156104d357600080fd5b506102a76104e236600461194f565b600c6020526000908152604090205481565b34801561050057600080fd5b5061021161050f3660046117e1565b610e18565b34801561052057600080fd5b506101e761052f366004611a21565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056957600080fd5b5061027661057836600461194f565b610e9c565b34801561058957600080fd5b506102766105983660046117e1565b610f34565b60006001600160e01b031982166380ac58cd60e01b14806105ce57506001600160e01b03198216635b5e139f60e01b145b806105e957506001600160e01b0319821663780e9d6360e01b145b8061060457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461061990611a54565b80601f016020809104026020016040519081016040528092919081815260200182805461064590611a54565b80156106925780601f1061066757610100808354040283529160200191610692565b820191906000526020600020905b81548152906001019060200180831161067557829003601f168201915b5050505050905090565b60006106a782610f63565b6106c4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106eb82610c67565b9050806001600160a01b0316836001600160a01b03160361071f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061073f575061073d813361052f565b155b1561075d576040516367d9dca160e11b815260040160405180910390fd5b610768838383610f97565b505050565b610768838383610ff3565b42600a5411156107c05760405162461bcd60e51b815260206004820152600e60248201526d2737ba1039ba30b93a103cb2ba1760911b60448201526064015b60405180910390fd5b80600081116108115760405162461bcd60e51b815260206004820181905260248201527f596f75206e65656420746f206d696e74206174206c656173742031204e46542e60448201526064016107b7565b600954816108376000546001600160801b03600160801b82048116918116919091031690565b6108419190611aa4565b11156108865760405162461bcd60e51b815260206004820152601460248201527327bb32b91036b0bc34b6bab69039bab838363c9760611b60448201526064016107b7565b336000908152600c60205260408120546003906108a4908590611aa4565b11156108d757336000908152600c60205260409020546003906108c8908590611aa4565b6108d29190611abc565b6108da565b60005b336000908152600c60205260409020549091506003906108fb908590611aa4565b1115610908576003610923565b336000908152600c6020526040902054610923908490611aa4565b336000908152600c60205260409020556008546109409082611ad3565b3410156109845760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b2b73a10333ab732399760711b60448201526064016107b7565b6107683384611210565b600061099983610cb6565b82106109b8576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b838110156101c257600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610a305750610a7a565b80516001600160a01b031615610a4557805192505b876001600160a01b0316836001600160a01b031603610a7857868403610a715750935061060492505050565b6001909301925b505b6001016109c9565b6007546001600160a01b03163314610aac5760405162461bcd60e51b81526004016107b790611af2565b600a55565b6007546001600160a01b03163314610adb5760405162461bcd60e51b81526004016107b790611af2565b604051600090339047908381818185875af1925050503d8060008114610b1d576040519150601f19603f3d011682016040523d82523d6000602084013e610b22565b606091505b5050905080610b665760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107b7565b50565b61076883838360405180602001604052806000815250610dde565b600080546001600160801b031681805b82811015610c1357600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610c0a57858303610c035750949350505050565b6001909201915b50600101610b94565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610c575760405162461bcd60e51b81526004016107b790611af2565b600b610c638282611b75565b5050565b6000610c728261122a565b5192915050565b6007546001600160a01b03163314610ca35760405162461bcd60e51b81526004016107b790611af2565b6009548110610cb157600080fd5b600955565b60006001600160a01b038216610cdf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610d2e5760405162461bcd60e51b81526004016107b790611af2565b610d38600061134c565b565b60606002805461061990611a54565b336001600160a01b03831603610d725760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610de9848484610ff3565b610df58484848461139e565b610e12576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e2382610f63565b610e4057604051630a14c4b560e41b815260040160405180910390fd5b6000610e4a6114a1565b90508051600003610e6a5760405180602001604052806000815250610e95565b80610e74846114b0565b604051602001610e85929190611c34565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610ec65760405162461bcd60e51b81526004016107b790611af2565b6001600160a01b038116610f2b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b7565b610b668161134c565b6007546001600160a01b03163314610f5e5760405162461bcd60e51b81526004016107b790611af2565b600855565b600080546001600160801b031682108015610604575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ffe8261122a565b80519091506000906001600160a01b0316336001600160a01b0316148061102c5750815161102c903361052f565b8061104757503361103c8461069c565b6001600160a01b0316145b90508061106757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461109c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166110c357604051633a954ecd60e21b815260040160405180910390fd5b6110d36000848460000151610f97565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166111c6576000546001600160801b03168110156111c657825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610c638282604051806020016040528060008152506115b0565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561133357600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906113315780516001600160a01b0316156112c8579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561132c579392505050565b6112c8565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561149557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113e2903390899088908890600401611c63565b6020604051808303816000875af192505050801561141d575060408051601f3d908101601f1916820190925261141a91810190611ca0565b60015b61147b573d80801561144b576040519150601f19603f3d011682016040523d82523d6000602084013e611450565b606091505b508051600003611473576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611499565b5060015b949350505050565b6060600b805461061990611a54565b6060816000036114d75750506040805180820190915260018152600360fc1b602082015290565b8160005b811561150157806114eb81611cbd565b91506114fa9050600a83611cec565b91506114db565b6000816001600160401b0381111561151b5761151b61187c565b6040519080825280601f01601f191660200182016040528015611545576020820181803683370190505b5090505b84156114995761155a600183611abc565b9150611567600a86611d00565b611572906030611aa4565b60f81b81838151811061158757611587611d14565b60200101906001600160f81b031916908160001a9053506115a9600a86611cec565b9450611549565b61076883838360016000546001600160801b03166001600160a01b0385166115ea57604051622e076360e81b815260040160405180910390fd5b8360000361160b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561171d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156116f357506116f1600088848861139e565b155b15611711576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161169c565b50600080546001600160801b0319166001600160801b0392909216919091179055611209565b6001600160e01b031981168114610b6657600080fd5b60006020828403121561176b57600080fd5b8135610e9581611743565b60005b83811015611791578181015183820152602001611779565b83811115610e125750506000910152565b600081518084526117ba816020860160208601611776565b601f01601f19169290920160200192915050565b602081526000610e9560208301846117a2565b6000602082840312156117f357600080fd5b5035919050565b80356001600160a01b038116811461181157600080fd5b919050565b6000806040838503121561182957600080fd5b611832836117fa565b946020939093013593505050565b60008060006060848603121561185557600080fd5b61185e846117fa565b925061186c602085016117fa565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156118ac576118ac61187c565b604051601f8501601f19908116603f011681019082821181831017156118d4576118d461187c565b816040528093508581528686860111156118ed57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561191957600080fd5b81356001600160401b0381111561192f57600080fd5b8201601f8101841361194057600080fd5b61149984823560208401611892565b60006020828403121561196157600080fd5b610e95826117fa565b6000806040838503121561197d57600080fd5b611986836117fa565b91506020830135801515811461199b57600080fd5b809150509250929050565b600080600080608085870312156119bc57600080fd5b6119c5856117fa565b93506119d3602086016117fa565b92506040850135915060608501356001600160401b038111156119f557600080fd5b8501601f81018713611a0657600080fd5b611a1587823560208401611892565b91505092959194509250565b60008060408385031215611a3457600080fd5b611a3d836117fa565b9150611a4b602084016117fa565b90509250929050565b600181811c90821680611a6857607f821691505b602082108103611a8857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ab757611ab7611a8e565b500190565b600082821015611ace57611ace611a8e565b500390565b6000816000190483118215151615611aed57611aed611a8e565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561076857600081815260208120601f850160051c81016020861015611b4e5750805b601f850160051c820191505b81811015611b6d57828155600101611b5a565b505050505050565b81516001600160401b03811115611b8e57611b8e61187c565b611ba281611b9c8454611a54565b84611b27565b602080601f831160018114611bd75760008415611bbf5750858301515b600019600386901b1c1916600185901b178555611b6d565b600085815260208120601f198616915b82811015611c0657888601518255948401946001909101908401611be7565b5085821015611c245787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351611c46818460208801611776565b835190830190611c5a818360208801611776565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c96908301846117a2565b9695505050505050565b600060208284031215611cb257600080fd5b8151610e9581611743565b600060018201611ccf57611ccf611a8e565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611cfb57611cfb611cd6565b500490565b600082611d0f57611d0f611cd6565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122073fa1ed5eb98e64dde5071272478e0ab3c14cb50281d6d02a974bca14a0dc4a764736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806355f804b3116100f7578063a035b1fe11610095578063c87b56dd11610064578063c87b56dd146104f4578063e985e9c514610514578063f2fde38b1461055d578063f4a0a5281461057d57600080fd5b8063a035b1fe14610471578063a22cb46514610487578063b88d4fde146104a7578063c468f6ca146104c757600080fd5b806370a08231116100d157806370a0823114610409578063715018a6146104295780638da5cb5b1461043e57806395d89b411461045c57600080fd5b806355f804b3146103a95780636352211e146103c95780636f8b44b0146103e957600080fd5b806328a4723b116101645780633bd2b67d1161013e5780633bd2b67d146103345780633ccfd60b1461035457806342842e0e146103695780634f6ccce71461038957600080fd5b806328a4723b146102eb5780632ab4d052146102fe5780632f745c591461031457600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd146102785780631cbaee2d146102b557806323b872dd146102cb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611759565b61059d565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161060a565b6040516101f391906117ce565b34801561022a57600080fd5b5061023e6102393660046117e1565b61069c565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611816565b6106e0565b005b34801561028457600080fd5b506102a76000546001600160801b03600160801b82048116918116919091031690565b6040519081526020016101f3565b3480156102c157600080fd5b506102a7600a5481565b3480156102d757600080fd5b506102766102e6366004611840565b61076d565b6102766102f93660046117e1565b610778565b34801561030a57600080fd5b506102a760095481565b34801561032057600080fd5b506102a761032f366004611816565b61098e565b34801561034057600080fd5b5061027661034f3660046117e1565b610a82565b34801561036057600080fd5b50610276610ab1565b34801561037557600080fd5b50610276610384366004611840565b610b69565b34801561039557600080fd5b506102a76103a43660046117e1565b610b84565b3480156103b557600080fd5b506102766103c4366004611907565b610c2d565b3480156103d557600080fd5b5061023e6103e43660046117e1565b610c67565b3480156103f557600080fd5b506102766104043660046117e1565b610c79565b34801561041557600080fd5b506102a761042436600461194f565b610cb6565b34801561043557600080fd5b50610276610d04565b34801561044a57600080fd5b506007546001600160a01b031661023e565b34801561046857600080fd5b50610211610d3a565b34801561047d57600080fd5b506102a760085481565b34801561049357600080fd5b506102766104a236600461196a565b610d49565b3480156104b357600080fd5b506102766104c23660046119a6565b610dde565b3480156104d357600080fd5b506102a76104e236600461194f565b600c6020526000908152604090205481565b34801561050057600080fd5b5061021161050f3660046117e1565b610e18565b34801561052057600080fd5b506101e761052f366004611a21565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056957600080fd5b5061027661057836600461194f565b610e9c565b34801561058957600080fd5b506102766105983660046117e1565b610f34565b60006001600160e01b031982166380ac58cd60e01b14806105ce57506001600160e01b03198216635b5e139f60e01b145b806105e957506001600160e01b0319821663780e9d6360e01b145b8061060457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461061990611a54565b80601f016020809104026020016040519081016040528092919081815260200182805461064590611a54565b80156106925780601f1061066757610100808354040283529160200191610692565b820191906000526020600020905b81548152906001019060200180831161067557829003601f168201915b5050505050905090565b60006106a782610f63565b6106c4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106eb82610c67565b9050806001600160a01b0316836001600160a01b03160361071f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061073f575061073d813361052f565b155b1561075d576040516367d9dca160e11b815260040160405180910390fd5b610768838383610f97565b505050565b610768838383610ff3565b42600a5411156107c05760405162461bcd60e51b815260206004820152600e60248201526d2737ba1039ba30b93a103cb2ba1760911b60448201526064015b60405180910390fd5b80600081116108115760405162461bcd60e51b815260206004820181905260248201527f596f75206e65656420746f206d696e74206174206c656173742031204e46542e60448201526064016107b7565b600954816108376000546001600160801b03600160801b82048116918116919091031690565b6108419190611aa4565b11156108865760405162461bcd60e51b815260206004820152601460248201527327bb32b91036b0bc34b6bab69039bab838363c9760611b60448201526064016107b7565b336000908152600c60205260408120546003906108a4908590611aa4565b11156108d757336000908152600c60205260409020546003906108c8908590611aa4565b6108d29190611abc565b6108da565b60005b336000908152600c60205260409020549091506003906108fb908590611aa4565b1115610908576003610923565b336000908152600c6020526040902054610923908490611aa4565b336000908152600c60205260409020556008546109409082611ad3565b3410156109845760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b2b73a10333ab732399760711b60448201526064016107b7565b6107683384611210565b600061099983610cb6565b82106109b8576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b838110156101c257600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610a305750610a7a565b80516001600160a01b031615610a4557805192505b876001600160a01b0316836001600160a01b031603610a7857868403610a715750935061060492505050565b6001909301925b505b6001016109c9565b6007546001600160a01b03163314610aac5760405162461bcd60e51b81526004016107b790611af2565b600a55565b6007546001600160a01b03163314610adb5760405162461bcd60e51b81526004016107b790611af2565b604051600090339047908381818185875af1925050503d8060008114610b1d576040519150601f19603f3d011682016040523d82523d6000602084013e610b22565b606091505b5050905080610b665760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107b7565b50565b61076883838360405180602001604052806000815250610dde565b600080546001600160801b031681805b82811015610c1357600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610c0a57858303610c035750949350505050565b6001909201915b50600101610b94565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610c575760405162461bcd60e51b81526004016107b790611af2565b600b610c638282611b75565b5050565b6000610c728261122a565b5192915050565b6007546001600160a01b03163314610ca35760405162461bcd60e51b81526004016107b790611af2565b6009548110610cb157600080fd5b600955565b60006001600160a01b038216610cdf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610d2e5760405162461bcd60e51b81526004016107b790611af2565b610d38600061134c565b565b60606002805461061990611a54565b336001600160a01b03831603610d725760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610de9848484610ff3565b610df58484848461139e565b610e12576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e2382610f63565b610e4057604051630a14c4b560e41b815260040160405180910390fd5b6000610e4a6114a1565b90508051600003610e6a5760405180602001604052806000815250610e95565b80610e74846114b0565b604051602001610e85929190611c34565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610ec65760405162461bcd60e51b81526004016107b790611af2565b6001600160a01b038116610f2b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b7565b610b668161134c565b6007546001600160a01b03163314610f5e5760405162461bcd60e51b81526004016107b790611af2565b600855565b600080546001600160801b031682108015610604575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ffe8261122a565b80519091506000906001600160a01b0316336001600160a01b0316148061102c5750815161102c903361052f565b8061104757503361103c8461069c565b6001600160a01b0316145b90508061106757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461109c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166110c357604051633a954ecd60e21b815260040160405180910390fd5b6110d36000848460000151610f97565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166111c6576000546001600160801b03168110156111c657825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610c638282604051806020016040528060008152506115b0565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561133357600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906113315780516001600160a01b0316156112c8579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561132c579392505050565b6112c8565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561149557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113e2903390899088908890600401611c63565b6020604051808303816000875af192505050801561141d575060408051601f3d908101601f1916820190925261141a91810190611ca0565b60015b61147b573d80801561144b576040519150601f19603f3d011682016040523d82523d6000602084013e611450565b606091505b508051600003611473576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611499565b5060015b949350505050565b6060600b805461061990611a54565b6060816000036114d75750506040805180820190915260018152600360fc1b602082015290565b8160005b811561150157806114eb81611cbd565b91506114fa9050600a83611cec565b91506114db565b6000816001600160401b0381111561151b5761151b61187c565b6040519080825280601f01601f191660200182016040528015611545576020820181803683370190505b5090505b84156114995761155a600183611abc565b9150611567600a86611d00565b611572906030611aa4565b60f81b81838151811061158757611587611d14565b60200101906001600160f81b031916908160001a9053506115a9600a86611cec565b9450611549565b61076883838360016000546001600160801b03166001600160a01b0385166115ea57604051622e076360e81b815260040160405180910390fd5b8360000361160b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561171d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156116f357506116f1600088848861139e565b155b15611711576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161169c565b50600080546001600160801b0319166001600160801b0392909216919091179055611209565b6001600160e01b031981168114610b6657600080fd5b60006020828403121561176b57600080fd5b8135610e9581611743565b60005b83811015611791578181015183820152602001611779565b83811115610e125750506000910152565b600081518084526117ba816020860160208601611776565b601f01601f19169290920160200192915050565b602081526000610e9560208301846117a2565b6000602082840312156117f357600080fd5b5035919050565b80356001600160a01b038116811461181157600080fd5b919050565b6000806040838503121561182957600080fd5b611832836117fa565b946020939093013593505050565b60008060006060848603121561185557600080fd5b61185e846117fa565b925061186c602085016117fa565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156118ac576118ac61187c565b604051601f8501601f19908116603f011681019082821181831017156118d4576118d461187c565b816040528093508581528686860111156118ed57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561191957600080fd5b81356001600160401b0381111561192f57600080fd5b8201601f8101841361194057600080fd5b61149984823560208401611892565b60006020828403121561196157600080fd5b610e95826117fa565b6000806040838503121561197d57600080fd5b611986836117fa565b91506020830135801515811461199b57600080fd5b809150509250929050565b600080600080608085870312156119bc57600080fd5b6119c5856117fa565b93506119d3602086016117fa565b92506040850135915060608501356001600160401b038111156119f557600080fd5b8501601f81018713611a0657600080fd5b611a1587823560208401611892565b91505092959194509250565b60008060408385031215611a3457600080fd5b611a3d836117fa565b9150611a4b602084016117fa565b90509250929050565b600181811c90821680611a6857607f821691505b602082108103611a8857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ab757611ab7611a8e565b500190565b600082821015611ace57611ace611a8e565b500390565b6000816000190483118215151615611aed57611aed611a8e565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561076857600081815260208120601f850160051c81016020861015611b4e5750805b601f850160051c820191505b81811015611b6d57828155600101611b5a565b505050505050565b81516001600160401b03811115611b8e57611b8e61187c565b611ba281611b9c8454611a54565b84611b27565b602080601f831160018114611bd75760008415611bbf5750858301515b600019600386901b1c1916600185901b178555611b6d565b600085815260208120601f198616915b82811015611c0657888601518255948401946001909101908401611be7565b5085821015611c245787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351611c46818460208801611776565b835190830190611c5a818360208801611776565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c96908301846117a2565b9695505050505050565b600060208284031215611cb257600080fd5b8151610e9581611743565b600060018201611ccf57611ccf611a8e565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611cfb57611cfb611cd6565b500490565b600082611d0f57611d0f611cd6565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122073fa1ed5eb98e64dde5071272478e0ab3c14cb50281d6d02a974bca14a0dc4a764736f6c634300080f0033

Deployed Bytecode Sourcemap

45620:2125:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26771:372;;;;;;;;;;-1:-1:-1;26771:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26771:372:0;;;;;;;;29381:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30884:204::-;;;;;;;;;;-1:-1:-1;30884:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;30884:204:0;1528:203:1;30447:371:0;;;;;;;;;;-1:-1:-1;30447:371:0;;;;;:::i;:::-;;:::i;:::-;;24008:280;;;;;;;;;;;;24061:7;24253:12;-1:-1:-1;;;;;;;;24253:12:0;;;;24237:13;;;:28;;;;24230:35;;24008:280;;;;2319:25:1;;;2307:2;2292:18;24008:280:0;2173:177:1;45753:41:0;;;;;;;;;;;;;;;;31741:170;;;;;;;;;;-1:-1:-1;31741:170:0;;;;;:::i;:::-;;:::i;46454:519::-;;;;;;:::i;:::-;;:::i;45710:36::-;;;;;;;;;;;;;;;;25594:1105;;;;;;;;;;-1:-1:-1;25594:1105:0;;;;;:::i;:::-;;:::i;47305:95::-;;;;;;;;;;-1:-1:-1;47305:95:0;;;;;:::i;:::-;;:::i;47569:173::-;;;;;;;;;;;;;:::i;31982:185::-;;;;;;;;;;-1:-1:-1;31982:185:0;;;;;:::i;:::-;;:::i;24581:713::-;;;;;;;;;;-1:-1:-1;24581:713:0;;;;;:::i;:::-;;:::i;46981:100::-;;;;;;;;;;-1:-1:-1;46981:100:0;;;;;:::i;:::-;;:::i;29190:124::-;;;;;;;;;;-1:-1:-1;29190:124:0;;;;;:::i;:::-;;:::i;47408:151::-;;;;;;;;;;-1:-1:-1;47408:151:0;;;;;:::i;:::-;;:::i;27207:206::-;;;;;;;;;;-1:-1:-1;27207:206:0;;;;;:::i;:::-;;:::i;44884:94::-;;;;;;;;;;;;;:::i;44233:87::-;;;;;;;;;;-1:-1:-1;44306:6:0;;-1:-1:-1;;;;;44306:6:0;44233:87;;29550:104;;;;;;;;;;;;;:::i;45669:34::-;;;;;;;;;;;;;;;;31160:279;;;;;;;;;;-1:-1:-1;31160:279:0;;;;;:::i;:::-;;:::i;32238:342::-;;;;;;;;;;-1:-1:-1;32238:342:0;;;;;:::i;:::-;;:::i;45830:52::-;;;;;;;;;;-1:-1:-1;45830:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;29725:318;;;;;;;;;;-1:-1:-1;29725:318:0;;;;;:::i;:::-;;:::i;31510:164::-;;;;;;;;;;-1:-1:-1;31510:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31631:25:0;;;31607:4;31631:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31510:164;45133:229;;;;;;;;;;-1:-1:-1;45133:229:0;;;;;:::i;:::-;;:::i;47207:90::-;;;;;;;;;;-1:-1:-1;47207:90:0;;;;;:::i;:::-;;:::i;26771:372::-;26873:4;-1:-1:-1;;;;;;26910:40:0;;-1:-1:-1;;;26910:40:0;;:105;;-1:-1:-1;;;;;;;26967:48:0;;-1:-1:-1;;;26967:48:0;26910:105;:172;;;-1:-1:-1;;;;;;;27032:50:0;;-1:-1:-1;;;27032:50:0;26910:172;:225;;;-1:-1:-1;;;;;;;;;;13299:40:0;;;27099:36;26890:245;26771:372;-1:-1:-1;;26771:372:0:o;29381:100::-;29435:13;29468:5;29461:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29381:100;:::o;30884:204::-;30952:7;30977:16;30985:7;30977;:16::i;:::-;30972:64;;31002:34;;-1:-1:-1;;;31002:34:0;;;;;;;;;;;30972:64;-1:-1:-1;31056:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31056:24:0;;30884:204::o;30447:371::-;30520:13;30536:24;30552:7;30536:15;:24::i;:::-;30520:40;;30581:5;-1:-1:-1;;;;;30575:11:0;:2;-1:-1:-1;;;;;30575:11:0;;30571:48;;30595:24;;-1:-1:-1;;;30595:24:0;;;;;;;;;;;30571:48;20644:10;-1:-1:-1;;;;;30636:21:0;;;;;;:63;;-1:-1:-1;30662:37:0;30679:5;20644:10;31510:164;:::i;30662:37::-;30661:38;30636:63;30632:138;;;30723:35;;-1:-1:-1;;;30723:35:0;;;;;;;;;;;30632:138;30782:28;30791:2;30795:7;30804:5;30782:8;:28::i;:::-;30509:309;30447:371;;:::o;31741:170::-;31875:28;31885:4;31891:2;31895:7;31875:9;:28::i;46454:519::-;46369:15;46352:13;;:32;;46330:96;;;;-1:-1:-1;;;46330:96:0;;5980:2:1;46330:96:0;;;5962:21:1;6019:2;5999:18;;;5992:30;-1:-1:-1;;;6038:18:1;;;6031:44;6092:18;;46330:96:0;;;;;;;;;46572:8:::1;46084:1;46072:9;:13;46050:95;;;::::0;-1:-1:-1;;;46050:95:0;;6323:2:1;46050:95:0::1;::::0;::::1;6305:21:1::0;;;6342:18;;;6335:30;6401:34;6381:18;;;6374:62;6453:18;;46050:95:0::1;6121:356:1::0;46050:95:0::1;46207:14;;46194:9;46178:13;24061:7:::0;24253:12;-1:-1:-1;;;;;;;;24253:12:0;;;;24237:13;;;:28;;;;24230:35;;24008:280;46178:13:::1;:25;;;;:::i;:::-;:43;;46156:113;;;::::0;-1:-1:-1;;;46156:113:0;;6949:2:1;46156:113:0::1;::::0;::::1;6931:21:1::0;6988:2;6968:18;;;6961:30;-1:-1:-1;;;7007:18:1;;;7000:50;7067:18;;46156:113:0::1;6747:344:1::0;46156:113:0::1;46637:10:::2;46599:17;46619:29:::0;;;:17:::2;:29;::::0;;;;;46663:1:::2;::::0;46619:40:::2;::::0;46651:8;;46619:40:::2;:::i;:::-;:45;;:95;;46688:10;46670:29;::::0;;;:17:::2;:29;::::0;;;;;46713:1:::2;::::0;46670:40:::2;::::0;46702:8;;46670:40:::2;:::i;:::-;:44;;;;:::i;:::-;46619:95;;;46667:1;46619:95;46777:10;46759:29;::::0;;;:17:::2;:29;::::0;;;;;46599:115;;-1:-1:-1;46803:1:0::2;::::0;46759:40:::2;::::0;46791:8;;46759:40:::2;:::i;:::-;:45;;:92;;46850:1;46759:92;;;46825:10;46807:29;::::0;;;:17:::2;:29;::::0;;;;;:40:::2;::::0;46839:8;;46807:40:::2;:::i;:::-;46745:10;46727:29;::::0;;;:17:::2;:29;::::0;;;;:124;46895:5:::2;::::0;46883:17:::2;::::0;:9;:17:::2;:::i;:::-;46870:9;:30;;46862:61;;;::::0;-1:-1:-1;;;46862:61:0;;7601:2:1;46862:61:0::2;::::0;::::2;7583:21:1::0;7640:2;7620:18;;;7613:30;-1:-1:-1;;;7659:18:1;;;7652:48;7717:18;;46862:61:0::2;7399:342:1::0;46862:61:0::2;46934:31;46944:10;46956:8;46934:9;:31::i;25594:1105::-:0;25683:7;25716:16;25726:5;25716:9;:16::i;:::-;25707:5;:25;25703:61;;25741:23;;-1:-1:-1;;;25741:23:0;;;;;;;;;;;25703:61;25775:22;25800:13;;-1:-1:-1;;;;;25800:13:0;;25775:22;;26050:557;26070:14;26066:1;:18;26050:557;;;26110:31;26144:14;;;:11;:14;;;;;;;;;26110:48;;;;;;;;;-1:-1:-1;;;;;26110:48:0;;;;-1:-1:-1;;;26110:48:0;;-1:-1:-1;;;;;26110:48:0;;;;;;;;-1:-1:-1;;;26110:48:0;;;;;;;;;;;;;;;;26177:73;;26222:8;;;26177:73;26272:14;;-1:-1:-1;;;;;26272:28:0;;26268:111;;26345:14;;;-1:-1:-1;26268:111:0;26422:5;-1:-1:-1;;;;;26401:26:0;:17;-1:-1:-1;;;;;26401:26:0;;26397:195;;26471:5;26456:11;:20;26452:85;;-1:-1:-1;26512:1:0;-1:-1:-1;26505:8:0;;-1:-1:-1;;;26505:8:0;26452:85;26559:13;;;;;26397:195;26091:516;26050:557;26086:3;;26050:557;;47305:95;44306:6;;-1:-1:-1;;;;;44306:6:0;20644:10;44453:23;44445:68;;;;-1:-1:-1;;;44445:68:0;;;;;;;:::i;:::-;47371:13:::1;:21:::0;47305:95::o;47569:173::-;44306:6;;-1:-1:-1;;;;;44306:6:0;20644:10;44453:23;44445:68;;;;-1:-1:-1;;;44445:68:0;;;;;;;:::i;:::-;47638:49:::1;::::0;47620:12:::1;::::0;47638:10:::1;::::0;47661:21:::1;::::0;47620:12;47638:49;47620:12;47638:49;47661:21;47638:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47619:68;;;47706:7;47698:36;;;::::0;-1:-1:-1;;;47698:36:0;;8519:2:1;47698:36:0::1;::::0;::::1;8501:21:1::0;8558:2;8538:18;;;8531:30;-1:-1:-1;;;8577:18:1;;;8570:46;8633:18;;47698:36:0::1;8317:340:1::0;47698:36:0::1;47608:134;47569:173::o:0;31982:185::-;32120:39;32137:4;32143:2;32147:7;32120:39;;;;;;;;;;;;:16;:39::i;24581:713::-;24648:7;24693:13;;-1:-1:-1;;;;;24693:13:0;24648:7;;24907:328;24927:14;24923:1;:18;24907:328;;;24967:31;25001:14;;;:11;:14;;;;;;;;;24967:48;;;;;;;;;-1:-1:-1;;;;;24967:48:0;;;;-1:-1:-1;;;24967:48:0;;-1:-1:-1;;;;;24967:48:0;;;;;;;;-1:-1:-1;;;24967:48:0;;;;;;;;;;;;;;25034:186;;25099:5;25084:11;:20;25080:85;;-1:-1:-1;25140:1:0;24581:713;-1:-1:-1;;;;24581:713:0:o;25080:85::-;25187:13;;;;;25034:186;-1:-1:-1;24943:3:0;;24907:328;;;;25263:23;;-1:-1:-1;;;25263:23:0;;;;;;;;;;;46981:100;44306:6;;-1:-1:-1;;;;;44306:6:0;20644:10;44453:23;44445:68;;;;-1:-1:-1;;;44445:68:0;;;;;;;:::i;:::-;47055:7:::1;:18;47065:8:::0;47055:7;:18:::1;:::i;:::-;;46981:100:::0;:::o;29190:124::-;29254:7;29281:20;29293:7;29281:11;:20::i;:::-;:25;;29190:124;-1:-1:-1;;29190:124:0:o;47408:151::-;44306:6;;-1:-1:-1;;;;;44306:6:0;20644:10;44453:23;44445:68;;;;-1:-1:-1;;;44445:68:0;;;;;;;:::i;:::-;47499:14:::1;;47487:9;:26;47479:35;;;::::0;::::1;;47525:14;:26:::0;47408:151::o;27207:206::-;27271:7;-1:-1:-1;;;;;27295:19:0;;27291:60;;27323:28;;-1:-1:-1;;;27323:28:0;;;;;;;;;;;27291:60;-1:-1:-1;;;;;;27377:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27377:27:0;;27207:206::o;44884:94::-;44306:6;;-1:-1:-1;;;;;44306:6:0;20644:10;44453:23;44445:68;;;;-1:-1:-1;;;44445:68:0;;;;;;;:::i;:::-;44949:21:::1;44967:1;44949:9;:21::i;:::-;44884:94::o:0;29550:104::-;29606:13;29639:7;29632:14;;;;;:::i;31160:279::-;20644:10;-1:-1:-1;;;;;31251:24:0;;;31247:54;;31284:17;;-1:-1:-1;;;31284:17:0;;;;;;;;;;;31247:54;20644:10;31314:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31314:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31314:53:0;;;;;;;;;;31383:48;;540:41:1;;;31314:42:0;;20644:10;31383:48;;513:18:1;31383:48:0;;;;;;;31160:279;;:::o;32238:342::-;32405:28;32415:4;32421:2;32425:7;32405:9;:28::i;:::-;32449:48;32472:4;32478:2;32482:7;32491:5;32449:22;:48::i;:::-;32444:129;;32521:40;;-1:-1:-1;;;32521:40:0;;;;;;;;;;;32444:129;32238:342;;;;:::o;29725:318::-;29798:13;29829:16;29837:7;29829;:16::i;:::-;29824:59;;29854:29;;-1:-1:-1;;;29854:29:0;;;;;;;;;;;29824:59;29896:21;29920:10;:8;:10::i;:::-;29896:34;;29954:7;29948:21;29973:1;29948:26;:87;;;;;;;;;;;;;;;;;30001:7;30010:18;:7;:16;:18::i;:::-;29984:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29948:87;29941:94;29725:318;-1:-1:-1;;;29725:318:0:o;45133:229::-;44306:6;;-1:-1:-1;;;;;44306:6:0;20644:10;44453:23;44445:68;;;;-1:-1:-1;;;44445:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45236:22:0;::::1;45214:110;;;::::0;-1:-1:-1;;;45214:110:0;;11543:2:1;45214:110:0::1;::::0;::::1;11525:21:1::0;11582:2;11562:18;;;11555:30;11621:34;11601:18;;;11594:62;-1:-1:-1;;;11672:18:1;;;11665:36;11718:19;;45214:110:0::1;11341:402:1::0;45214:110:0::1;45335:19;45345:8;45335:9;:19::i;47207:90::-:0;44306:6;;-1:-1:-1;;;;;44306:6:0;20644:10;44453:23;44445:68;;;;-1:-1:-1;;;44445:68:0;;;;;;;:::i;:::-;47275:5:::1;:14:::0;47207:90::o;32835:144::-;32892:4;32926:13;;-1:-1:-1;;;;;32926:13:0;32916:23;;:55;;;;-1:-1:-1;;32944:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32944:27:0;;;;32943:28;;32835:144::o;40051:196::-;40166:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40166:29:0;-1:-1:-1;;;;;40166:29:0;;;;;;;;;40211:28;;40166:24;;40211:28;;;;;;;40051:196;;;:::o;35552:2112::-;35667:35;35705:20;35717:7;35705:11;:20::i;:::-;35780:18;;35667:58;;-1:-1:-1;35738:22:0;;-1:-1:-1;;;;;35764:34:0;20644:10;-1:-1:-1;;;;;35764:34:0;;:101;;;-1:-1:-1;35832:18:0;;35815:50;;20644:10;31510:164;:::i;35815:50::-;35764:154;;;-1:-1:-1;20644:10:0;35882:20;35894:7;35882:11;:20::i;:::-;-1:-1:-1;;;;;35882:36:0;;35764:154;35738:181;;35937:17;35932:66;;35963:35;;-1:-1:-1;;;35963:35:0;;;;;;;;;;;35932:66;36035:4;-1:-1:-1;;;;;36013:26:0;:13;:18;;;-1:-1:-1;;;;;36013:26:0;;36009:67;;36048:28;;-1:-1:-1;;;36048:28:0;;;;;;;;;;;36009:67;-1:-1:-1;;;;;36091:16:0;;36087:52;;36116:23;;-1:-1:-1;;;36116:23:0;;;;;;;;;;;36087:52;36260:49;36277:1;36281:7;36290:13;:18;;;36260:8;:49::i;:::-;-1:-1:-1;;;;;36605:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36605:31:0;;;-1:-1:-1;;;;;36605:31:0;;;-1:-1:-1;;36605:31:0;;;;;;;36651:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36651:29:0;;;;;;;;;;;36697:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36742:61:0;;;;-1:-1:-1;;;36787:15:0;36742:61;;;;;;;;;;;37077:11;;;37107:24;;;;;:29;37077:11;;37107:29;37103:445;;37332:13;;-1:-1:-1;;;;;37332:13:0;37318:27;;37314:219;;;37402:18;;;37370:24;;;:11;:24;;;;;;;;:50;;37485:28;;;;-1:-1:-1;;;;;37443:70:0;-1:-1:-1;;;37443:70:0;-1:-1:-1;;;;;;37443:70:0;;;-1:-1:-1;;;;;37370:50:0;;;37443:70;;;;;;;37314:219;36580:979;37595:7;37591:2;-1:-1:-1;;;;;37576:27:0;37585:4;-1:-1:-1;;;;;37576:27:0;;;;;;;;;;;37614:42;35656:2008;;35552:2112;;;:::o;32987:104::-;33056:27;33066:2;33070:8;33056:27;;;;;;;;;;;;:9;:27::i;28045:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;28211:13:0;;28155:7;;-1:-1:-1;;;;;28211:13:0;28204:20;;28200:861;;;28245:31;28279:17;;;:11;:17;;;;;;;;;28245:51;;;;;;;;;-1:-1:-1;;;;;28245:51:0;;;;-1:-1:-1;;;28245:51:0;;-1:-1:-1;;;;;28245:51:0;;;;;;;;-1:-1:-1;;;28245:51:0;;;;;;;;;;;;;;28315:731;;28365:14;;-1:-1:-1;;;;;28365:28:0;;28361:101;;28429:9;28045:1083;-1:-1:-1;;;28045:1083:0:o;28361:101::-;-1:-1:-1;;;28806:6:0;28851:17;;;;:11;:17;;;;;;;;;28839:29;;;;;;;;;-1:-1:-1;;;;;28839:29:0;;;;;-1:-1:-1;;;28839:29:0;;-1:-1:-1;;;;;28839:29:0;;;;;;;;-1:-1:-1;;;28839:29:0;;;;;;;;;;;;;28899:28;28895:109;;28967:9;28045:1083;-1:-1:-1;;;28045:1083:0:o;28895:109::-;28766:261;;;28226:835;28200:861;29089:31;;-1:-1:-1;;;29089:31:0;;;;;;;;;;;45370:173;45445:6;;;-1:-1:-1;;;;;45462:17:0;;;-1:-1:-1;;;;;;45462:17:0;;;;;;;45495:40;;45445:6;;;45462:17;45445:6;;45495:40;;45426:16;;45495:40;45415:128;45370:173;:::o;40812:790::-;40967:4;-1:-1:-1;;;;;40988:13:0;;2004:20;2052:8;40984:611;;41024:72;;-1:-1:-1;;;41024:72:0;;-1:-1:-1;;;;;41024:36:0;;;;;:72;;20644:10;;41075:4;;41081:7;;41090:5;;41024:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41024:72:0;;;;;;;;-1:-1:-1;;41024:72:0;;;;;;;;;;;;:::i;:::-;;;41020:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41270:6;:13;41287:1;41270:18;41266:259;;41320:40;;-1:-1:-1;;;41320:40:0;;;;;;;;;;;41266:259;41475:6;41469:13;41460:6;41456:2;41452:15;41445:38;41020:520;-1:-1:-1;;;;;;41147:55:0;-1:-1:-1;;;41147:55:0;;-1:-1:-1;41140:62:0;;40984:611;-1:-1:-1;41579:4:0;40984:611;40812:790;;;;;;:::o;47089:108::-;47149:13;47182:7;47175:14;;;;;:::i;9770:723::-;9826:13;10047:5;10056:1;10047:10;10043:53;;-1:-1:-1;;10074:10:0;;;;;;;;;;;;-1:-1:-1;;;10074:10:0;;;;;9770:723::o;10043:53::-;10121:5;10106:12;10162:78;10169:9;;10162:78;;10195:8;;;;:::i;:::-;;-1:-1:-1;10218:10:0;;-1:-1:-1;10226:2:0;10218:10;;:::i;:::-;;;10162:78;;;10250:19;10282:6;-1:-1:-1;;;;;10272:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10272:17:0;;10250:39;;10300:154;10307:10;;10300:154;;10334:11;10344:1;10334:11;;:::i;:::-;;-1:-1:-1;10403:10:0;10411:2;10403:5;:10;:::i;:::-;10390:24;;:2;:24;:::i;:::-;10377:39;;10360:6;10367;10360:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10360:56:0;;;;;;;;-1:-1:-1;10431:11:0;10440:2;10431:11;;:::i;:::-;;;10300:154;;33454:163;33577:32;33583:2;33587:8;33597:5;33604:4;34015:20;34038:13;-1:-1:-1;;;;;34038:13:0;-1:-1:-1;;;;;34066:16:0;;34062:48;;34091:19;;-1:-1:-1;;;34091:19:0;;;;;;;;;;;34062:48;34125:8;34137:1;34125:13;34121:44;;34147:18;;-1:-1:-1;;;34147:18:0;;;;;;;;;;;34121:44;-1:-1:-1;;;;;34517:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;34576:49:0;;-1:-1:-1;;;;;34517:44:0;;;;;;;34576:49;;;;-1:-1:-1;;34517:44:0;;;;;;34576:49;;;;;;;;;;;;;;;;34642:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;34692:66:0;;;;-1:-1:-1;;;34742:15:0;34692:66;;;;;;;;;;;34642:25;;34827:328;34847:8;34843:1;:12;34827:328;;;34886:38;;34911:12;;-1:-1:-1;;;;;34886:38:0;;;34903:1;;34886:38;;34903:1;;34886:38;34947:4;:68;;;;;34956:59;34987:1;34991:2;34995:12;35009:5;34956:22;:59::i;:::-;34955:60;34947:68;34943:164;;;35047:40;;-1:-1:-1;;;35047:40:0;;;;;;;;;;;34943:164;35125:14;;;;;34857:3;34827:328;;;-1:-1:-1;35171:13:0;:37;;-1:-1:-1;;;;;;35171:37:0;-1:-1:-1;;;;;35171:37:0;;;;;;;;;;35230:60;32238:342;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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;-1:-1:-1;;;;;2956:2:1;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;-1:-1:-1;;;;;3660:6:1;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;-1:-1:-1;;;;;4875:6:1;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;6482:127::-;6543:10;6538:3;6534:20;6531:1;6524:31;6574:4;6571:1;6564:15;6598:4;6595:1;6588:15;6614:128;6654:3;6685:1;6681:6;6678:1;6675:13;6672:39;;;6691:18;;:::i;:::-;-1:-1:-1;6727:9:1;;6614:128::o;7096:125::-;7136:4;7164:1;7161;7158:8;7155:34;;;7169:18;;:::i;:::-;-1:-1:-1;7206:9:1;;7096:125::o;7226:168::-;7266:7;7332:1;7328;7324:6;7320:14;7317:1;7314:21;7309:1;7302:9;7295:17;7291:45;7288:71;;;7339:18;;:::i;:::-;-1:-1:-1;7379:9:1;;7226:168::o;7746:356::-;7948:2;7930:21;;;7967:18;;;7960:30;8026:34;8021:2;8006:18;;7999:62;8093:2;8078:18;;7746:356::o;8788:545::-;8890:2;8885:3;8882:11;8879:448;;;8926:1;8951:5;8947:2;8940:17;8996:4;8992:2;8982:19;9066:2;9054:10;9050:19;9047:1;9043:27;9037:4;9033:38;9102:4;9090:10;9087:20;9084:47;;;-1:-1:-1;9125:4:1;9084:47;9180:2;9175:3;9171:12;9168:1;9164:20;9158:4;9154:31;9144:41;;9235:82;9253:2;9246:5;9243:13;9235:82;;;9298:17;;;9279:1;9268:13;9235:82;;;9239:3;;;8788:545;;;:::o;9509:1352::-;9635:3;9629:10;-1:-1:-1;;;;;9654:6:1;9651:30;9648:56;;;9684:18;;:::i;:::-;9713:97;9803:6;9763:38;9795:4;9789:11;9763:38;:::i;:::-;9757:4;9713:97;:::i;:::-;9865:4;;9929:2;9918:14;;9946:1;9941:663;;;;10648:1;10665:6;10662:89;;;-1:-1:-1;10717:19:1;;;10711:26;10662:89;-1:-1:-1;;9466:1:1;9462:11;;;9458:24;9454:29;9444:40;9490:1;9486:11;;;9441:57;10764:81;;9911:944;;9941:663;8735:1;8728:14;;;8772:4;8759:18;;-1:-1:-1;;9977:20:1;;;10095:236;10109:7;10106:1;10103:14;10095:236;;;10198:19;;;10192:26;10177:42;;10290:27;;;;10258:1;10246:14;;;;10125:19;;10095:236;;;10099:3;10359:6;10350:7;10347:19;10344:201;;;10420:19;;;10414:26;-1:-1:-1;;10503:1:1;10499:14;;;10515:3;10495:24;10491:37;10487:42;10472:58;10457:74;;10344:201;-1:-1:-1;;;;;10591:1:1;10575:14;;;10571:22;10558:36;;-1:-1:-1;9509:1352:1:o;10866:470::-;11045:3;11083:6;11077:13;11099:53;11145:6;11140:3;11133:4;11125:6;11121:17;11099:53;:::i;:::-;11215:13;;11174:16;;;;11237:57;11215:13;11174:16;11271:4;11259:17;;11237:57;:::i;:::-;11310:20;;10866:470;-1:-1:-1;;;;10866:470:1:o;11748:489::-;-1:-1:-1;;;;;12017:15:1;;;11999:34;;12069:15;;12064:2;12049:18;;12042:43;12116:2;12101:18;;12094:34;;;12164:3;12159:2;12144:18;;12137:31;;;11942:4;;12185:46;;12211:19;;12203:6;12185:46;:::i;:::-;12177:54;11748:489;-1:-1:-1;;;;;;11748:489:1:o;12242:249::-;12311:6;12364:2;12352:9;12343:7;12339:23;12335:32;12332:52;;;12380:1;12377;12370:12;12332:52;12412:9;12406:16;12431:30;12455:5;12431:30;:::i;12496:135::-;12535:3;12556:17;;;12553:43;;12576:18;;:::i;:::-;-1:-1:-1;12623:1:1;12612:13;;12496:135::o;12636:127::-;12697:10;12692:3;12688:20;12685:1;12678:31;12728:4;12725:1;12718:15;12752:4;12749:1;12742:15;12768:120;12808:1;12834;12824:35;;12839:18;;:::i;:::-;-1:-1:-1;12873:9:1;;12768:120::o;12893:112::-;12925:1;12951;12941:35;;12956:18;;:::i;:::-;-1:-1:-1;12990:9:1;;12893:112::o;13010:127::-;13071:10;13066:3;13062:20;13059:1;13052:31;13102:4;13099:1;13092:15;13126:4;13123:1;13116:15

Swarm Source

ipfs://73fa1ed5eb98e64dde5071272478e0ab3c14cb50281d6d02a974bca14a0dc4a7
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.