ETH Price: $3,449.46 (-0.90%)
Gas: 14 Gwei

Token

SeshWorld (SESH)
 

Overview

Max Total Supply

1,495 SESH

Holders

546

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fredvanvleet.eth
Balance
8 SESH
0xc2cabb33ad896375cc6bd686dbc70030ebc5cf4d
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:
SeshWorld

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-04
*/

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/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: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/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: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/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);

    /**
     * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/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: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/v2.2.0/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: SeshWorld.sol


pragma solidity ^0.8.12;





contract SeshWorld is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string internal _baseTokenURI;
    string internal _unrevealedURI;
    string internal _lockedURIHeaven;
    string internal _lockedURIHell;

    uint256 internal reserved;

    bool public revealed;
    bool public saleActive;

    mapping(uint256 => uint256) public tokenLevels;
    mapping(uint256 => bool) public isLocked;

    uint256 public mintPrice = 0.05 ether;

    uint256 public constant MAX_LEVEL = 2;
    uint256 public constant MAX_TOTAL_SUPPLY = 10_000;
    uint256 public constant MAX_AMOUNT_PER_MINT = 100;
    uint256 public constant MAX_RESERVED_AMOUNT = 50;

    constructor(
        string memory unrevealedURI,
        string memory lockedURIHeaven,
        string memory lockedURIHell
    ) ERC721A("SeshWorld", "SESH") {
        _unrevealedURI = unrevealedURI;
        _lockedURIHeaven = lockedURIHeaven;
        _lockedURIHell = lockedURIHell;
    }

    // MODIFIERS

    modifier onlyTokenOwner(uint256 tokenId) {
        require(msg.sender == ownerOf(tokenId), "Sender is not the token owner");
        _;
    }

    // URI FUNCTIONS

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!revealed) {
            return _unrevealedURI;
        }

        if (isLocked[tokenId]) {
            if (tokenId % 2 == 0) {
                return _lockedURIHeaven;
            } else {
                return _lockedURIHell;
            }
        }

        string memory baseURI = _baseURI();
        uint256 level = tokenLevels[tokenId];
        return string(abi.encodePacked(baseURI, tokenId.toString(), "-", level.toString()));
    }

    // OWNER FUNCTIONS

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setUnrevealedURI(string calldata unrevealedURI) external onlyOwner {
        _unrevealedURI = unrevealedURI;
    }

    function setLockedURIHeaven(string calldata lockedURIHeaven) external onlyOwner {
        _lockedURIHeaven = lockedURIHeaven;
    }

    function setLockedURIHell(string calldata lockedURIHell) external onlyOwner {
        _lockedURIHell = lockedURIHell;
    }

    function setMintPrice(uint256 price) public onlyOwner {
        mintPrice = price;
    }

    function flipSaleStatus() public onlyOwner {
        // kev was here
        saleActive = !saleActive;
    }

    function flipReveal() public onlyOwner {
        revealed = !revealed;
    }

    function flipLockStatus(uint256 tokenId) public onlyOwner {
        isLocked[tokenId] = !isLocked[tokenId];
    }

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

    // MINTING FUNCTIONS

    function mint(uint256 amount) external payable {
        require(saleActive, "Public sale not active");
        require(msg.value == amount * mintPrice, "Not enough ETH sent");
        require(amount <= MAX_AMOUNT_PER_MINT, "Minting too many at a time");
        require(amount + totalSupply() <= MAX_TOTAL_SUPPLY, "Would exceed max supply");

        _mint(msg.sender, amount, "", false);
    }

    // reserves 'amount' NFTs minted direct to a specified wallet
    function reserve(address to, uint256 amount) external onlyOwner {
        require(amount + totalSupply() <= MAX_TOTAL_SUPPLY, "Would exceed max supply");
        require(reserved + amount <= MAX_RESERVED_AMOUNT, "Would exceed max reserved amount");

        _mint(to, amount, "", false);
        reserved += amount;
    }

    // UPDATE FUNCTIONS

    function plunge(uint256 tokenId) public onlyTokenOwner(tokenId) {
        require(!isLocked[tokenId], "Gator is dead");

        uint256 currentLevel = tokenLevels[tokenId];
        require(currentLevel < MAX_LEVEL, "Gator already max level");

        uint256 pseudoRandomNumber = _genPseudoRandomNumber(tokenId);

        if (currentLevel == 0) {
            // first upgrade, 90% chance of success
            if (pseudoRandomNumber < 9) {
                tokenLevels[tokenId] += 1;
            } else {
                tokenLevels[tokenId] = 0;
                isLocked[tokenId] = true;
            }
        } else {
            // second upgrade, 30% chance of success
            if (pseudoRandomNumber < 3) {
                tokenLevels[tokenId] += 1;
            } else {
                tokenLevels[tokenId] = 0;
                isLocked[tokenId] = true;
            }
        }
    }

    // VIEW FUNCTIONS

    function walletOfOwner(address wallet) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(wallet);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(wallet, i);
        }
        return tokenIds;
    }

    function _genPseudoRandomNumber(uint256 tokenId) private view returns (uint256) {
        // you coward
        uint256 pseudoRandomHash = uint256(keccak256(abi.encodePacked(block.difficulty, block.timestamp, tokenId)));
        return pseudoRandomHash % 10;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"unrevealedURI","type":"string"},{"internalType":"string","name":"lockedURIHeaven","type":"string"},{"internalType":"string","name":"lockedURIHell","type":"string"}],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_AMOUNT_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_LEVEL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVED_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"flipLockStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"plunge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"string","name":"lockedURIHeaven","type":"string"}],"name":"setLockedURIHeaven","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"lockedURIHell","type":"string"}],"name":"setLockedURIHell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"unrevealedURI","type":"string"}],"name":"setUnrevealedURI","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":"uint256","name":"","type":"uint256"}],"name":"tokenLevels","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":[{"internalType":"address","name":"wallet","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266b1a2bc2ec500006011553480156200001c57600080fd5b506040516200284b3803806200284b8339810160408190526200003f91620002d8565b604080518082018252600981526814d95cda15dbdc9b1960ba1b6020808301918252835180850190945260048452630a68aa6960e31b9084015281519192916200008c9160019162000165565b508051620000a290600290602084019062000165565b505050620000bf620000b96200010f60201b60201c565b62000113565b60016008558251620000d990600a90602086019062000165565b508151620000ef90600b90602085019062000165565b5080516200010590600c90602084019062000165565b50505050620003a6565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001739062000369565b90600052602060002090601f016020900481019282620001975760008555620001e2565b82601f10620001b257805160ff1916838001178555620001e2565b82800160010185558215620001e2579182015b82811115620001e2578251825591602001919060010190620001c5565b50620001f0929150620001f4565b5090565b5b80821115620001f05760008155600101620001f5565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200023357600080fd5b81516001600160401b03808211156200025057620002506200020b565b604051601f8301601f19908116603f011681019082821181831017156200027b576200027b6200020b565b816040528381526020925086838588010111156200029857600080fd5b600091505b83821015620002bc57858201830151818301840152908201906200029d565b83821115620002ce5760008385830101525b9695505050505050565b600080600060608486031215620002ee57600080fd5b83516001600160401b03808211156200030657600080fd5b620003148783880162000221565b945060208601519150808211156200032b57600080fd5b620003398783880162000221565b935060408601519150808211156200035057600080fd5b506200035f8682870162000221565b9150509250925092565b600181811c908216806200037e57607f821691505b60208210811415620003a057634e487b7160e01b600052602260045260246000fd5b50919050565b61249580620003b66000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063c87b56dd116100b6578063f09f18e31161007a578063f09f18e3146106b6578063f2fde38b146106cb578063f4138897146106eb578063f4a0a52814610700578063f6aacfb114610720578063fe2c7fee1461075057600080fd5b8063c87b56dd146105eb578063cc47a40b1461060b578063ce03ec931461062b578063e600d94d14610640578063e985e9c51461066d57600080fd5b8063a22cb465116100fd578063a22cb46514610556578063a426eb0514610576578063a49062d414610596578063b30513b4146105ab578063b88d4fde146105cb57600080fd5b806370a08231146104db578063715018a6146104fb5780638da5cb5b1461051057806395d89b411461052e578063a0712d681461054357600080fd5b80633ccfd60b116101c757806355f804b31161018b57806355f804b3146104465780636352211e146104665780636817c76c1461048657806368428a1b1461049c5780636ad3164e146104bb57600080fd5b80633ccfd60b146103aa57806342842e0e146103bf578063438b6300146103df5780634f6ccce71461040c578063518302271461042c57600080fd5b806323b872dd1161020e57806323b872dd1461031f5780632d267f491461033f5780632f745c591461035f57806333039d3d1461037f5780633b84d9c61461039557600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806318160ddd146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611f1d565b610770565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107dd565b6040516102779190611f92565b3480156102ae57600080fd5b506102c26102bd366004611fa5565b61086f565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611fda565b6108b3565b005b34801561030857600080fd5b50610311610941565b604051908152602001610277565b34801561032b57600080fd5b506102fa61033a366004612004565b610960565b34801561034b57600080fd5b506102fa61035a366004611fa5565b61096b565b34801561036b57600080fd5b5061031161037a366004611fda565b6109be565b34801561038b57600080fd5b5061031161271081565b3480156103a157600080fd5b506102fa610abb565b3480156103b657600080fd5b506102fa610af9565b3480156103cb57600080fd5b506102fa6103da366004612004565b610c0d565b3480156103eb57600080fd5b506103ff6103fa366004612040565b610c28565b604051610277919061205b565b34801561041857600080fd5b50610311610427366004611fa5565b610cca565b34801561043857600080fd5b50600e5461026b9060ff1681565b34801561045257600080fd5b506102fa61046136600461209f565b610d75565b34801561047257600080fd5b506102c2610481366004611fa5565b610dab565b34801561049257600080fd5b5061031160115481565b3480156104a857600080fd5b50600e5461026b90610100900460ff1681565b3480156104c757600080fd5b506102fa6104d636600461209f565b610dbd565b3480156104e757600080fd5b506103116104f6366004612040565b610df3565b34801561050757600080fd5b506102fa610e42565b34801561051c57600080fd5b506007546001600160a01b03166102c2565b34801561053a57600080fd5b50610295610e78565b6102fa610551366004611fa5565b610e87565b34801561056257600080fd5b506102fa610571366004612111565b610ff5565b34801561058257600080fd5b506102fa61059136600461209f565b61108b565b3480156105a257600080fd5b50610311600281565b3480156105b757600080fd5b506102fa6105c6366004611fa5565b6110c1565b3480156105d757600080fd5b506102fa6105e6366004612163565b61129e565b3480156105f757600080fd5b50610295610606366004611fa5565b6112d2565b34801561061757600080fd5b506102fa610626366004611fda565b61140a565b34801561063757600080fd5b506102fa611526565b34801561064c57600080fd5b5061031161065b366004611fa5565b600f6020526000908152604090205481565b34801561067957600080fd5b5061026b61068836600461223f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106c257600080fd5b50610311603281565b3480156106d757600080fd5b506102fa6106e6366004612040565b61156d565b3480156106f757600080fd5b50610311606481565b34801561070c57600080fd5b506102fa61071b366004611fa5565b611605565b34801561072c57600080fd5b5061026b61073b366004611fa5565b60106020526000908152604090205460ff1681565b34801561075c57600080fd5b506102fa61076b36600461209f565b611634565b60006001600160e01b031982166380ac58cd60e01b14806107a157506001600160e01b03198216635b5e139f60e01b145b806107bc57506001600160e01b0319821663780e9d6360e01b145b806107d757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107ec90612272565b80601f016020809104026020016040519081016040528092919081815260200182805461081890612272565b80156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b600061087a8261166a565b610897576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108be82610dab565b9050806001600160a01b0316836001600160a01b031614156108f35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061091357506109118133610688565b155b15610931576040516367d9dca160e11b815260040160405180910390fd5b61093c83838361169e565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b61093c8383836116fa565b6007546001600160a01b0316331461099e5760405162461bcd60e51b8152600401610995906122ad565b60405180910390fd5b6000908152601060205260409020805460ff19811660ff90911615179055565b60006109c983610df3565b82106109e8576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610ab557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161580159282019290925290610a615750610aad565b80516001600160a01b031615610a7657805192505b876001600160a01b0316836001600160a01b03161415610aab5786841415610aa4575093506107d792505050565b6001909301925b505b6001016109f9565b50600080fd5b6007546001600160a01b03163314610ae55760405162461bcd60e51b8152600401610995906122ad565b600e805460ff19811660ff90911615179055565b6007546001600160a01b03163314610b235760405162461bcd60e51b8152600401610995906122ad565b60026008541415610b765760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610995565b6002600855604051600090339047908381818185875af1925050503d8060008114610bbd576040519150601f19603f3d011682016040523d82523d6000602084013e610bc2565b606091505b5050905080610c055760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b6044820152606401610995565b506001600855565b61093c8383836040518060200160405280600081525061129e565b60606000610c3583610df3565b905060008167ffffffffffffffff811115610c5257610c5261214d565b604051908082528060200260200182016040528015610c7b578160200160208202803683370190505b50905060005b82811015610cc257610c9385826109be565b828281518110610ca557610ca56122e2565b602090810291909101015280610cba8161230e565b915050610c81565b509392505050565b600080546001600160801b031681805b82811015610d5b57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610d525785831415610d4b5750949350505050565b6001909201915b50600101610cda565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610d9f5760405162461bcd60e51b8152600401610995906122ad565b61093c60098383611e6e565b6000610db682611919565b5192915050565b6007546001600160a01b03163314610de75760405162461bcd60e51b8152600401610995906122ad565b61093c600c8383611e6e565b60006001600160a01b038216610e1c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610e6c5760405162461bcd60e51b8152600401610995906122ad565b610e766000611a3d565b565b6060600280546107ec90612272565b600e54610100900460ff16610ed75760405162461bcd60e51b81526020600482015260166024820152755075626c69632073616c65206e6f742061637469766560501b6044820152606401610995565b601154610ee49082612329565b3414610f285760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610995565b6064811115610f795760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e6720746f6f206d616e7920617420612074696d650000000000006044820152606401610995565b612710610f84610941565b610f8e9083612348565b1115610fd65760405162461bcd60e51b8152602060048201526017602482015276576f756c6420657863656564206d617820737570706c7960481b6044820152606401610995565b610ff23382604051806020016040528060008152506000611a8f565b50565b6001600160a01b03821633141561101f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146110b55760405162461bcd60e51b8152600401610995906122ad565b61093c600b8383611e6e565b806110cb81610dab565b6001600160a01b0316336001600160a01b03161461112b5760405162461bcd60e51b815260206004820152601d60248201527f53656e646572206973206e6f742074686520746f6b656e206f776e65720000006044820152606401610995565b60008281526010602052604090205460ff161561117a5760405162461bcd60e51b815260206004820152600d60248201526c11d85d1bdc881a5cc819195859609a1b6044820152606401610995565b6000828152600f6020526040902054600281106111d95760405162461bcd60e51b815260206004820152601760248201527f4761746f7220616c7265616479206d6178206c6576656c0000000000000000006044820152606401610995565b60006111e484611c1a565b90508161124957600981101561121e576000848152600f60205260408120805460019290611213908490612348565b909155506112989050565b6000848152600f6020908152604080832083905560109091529020805460ff19166001179055611298565b6003811015611271576000848152600f60205260408120805460019290611213908490612348565b6000848152600f6020908152604080832083905560109091529020805460ff191660011790555b50505050565b6112a98484846116fa565b6112b584848484611c61565b611298576040516368d2bf6b60e11b815260040160405180910390fd5b600e5460609060ff1661137157600a80546112ec90612272565b80601f016020809104026020016040519081016040528092919081815260200182805461131890612272565b80156113655780601f1061133a57610100808354040283529160200191611365565b820191906000526020600020905b81548152906001019060200180831161134857829003601f168201915b50505050509050919050565b60008281526010602052604090205460ff16156113b157611393600283612376565b6113a457600b80546112ec90612272565b600c80546112ec90612272565b60006113bb611d61565b6000848152600f6020526040902054909150816113d785611d70565b6113e083611d70565b6040516020016113f29392919061238a565b60405160208183030381529060405292505050919050565b6007546001600160a01b031633146114345760405162461bcd60e51b8152600401610995906122ad565b61271061143f610941565b6114499083612348565b11156114915760405162461bcd60e51b8152602060048201526017602482015276576f756c6420657863656564206d617820737570706c7960481b6044820152606401610995565b603281600d546114a19190612348565b11156114ef5760405162461bcd60e51b815260206004820181905260248201527f576f756c6420657863656564206d617820726573657276656420616d6f756e746044820152606401610995565b61150b8282604051806020016040528060008152506000611a8f565b80600d600082825461151d9190612348565b90915550505050565b6007546001600160a01b031633146115505760405162461bcd60e51b8152600401610995906122ad565b600e805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146115975760405162461bcd60e51b8152600401610995906122ad565b6001600160a01b0381166115fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610995565b610ff281611a3d565b6007546001600160a01b0316331461162f5760405162461bcd60e51b8152600401610995906122ad565b601155565b6007546001600160a01b0316331461165e5760405162461bcd60e51b8152600401610995906122ad565b61093c600a8383611e6e565b600080546001600160801b0316821080156107d7575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061170582611919565b80519091506000906001600160a01b0316336001600160a01b03161480611733575081516117339033610688565b8061174e5750336117438461086f565b6001600160a01b0316145b90508061176e57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117a35760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166117ca57604051633a954ecd60e21b815260040160405180910390fd5b6117da600084846000015161169e565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166118cf576000546001600160801b03168110156118cf578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611a2457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611a225780516001600160a01b0316156119b8579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611a1d579392505050565b6119b8565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160801b03166001600160a01b038516611ac157604051622e076360e81b815260040160405180910390fd5b83611adf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611bf25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611bc85750611bc66000888488611c61565b155b15611be6576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611b71565b50600080546001600160801b0319166001600160801b03929092169190911781556119129050565b6040805144602080830191909152428284015260608083018590528351808403909101815260809092019092528051910120600090611c5a600a82612376565b9392505050565b60006001600160a01b0384163b15611d5557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ca59033908990889088906004016123da565b6020604051808303816000875af1925050508015611ce0575060408051601f3d908101601f19168201909252611cdd91810190612417565b60015b611d3b573d808015611d0e576040519150601f19603f3d011682016040523d82523d6000602084013e611d13565b606091505b508051611d33576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d59565b5060015b949350505050565b6060600980546107ec90612272565b606081611d945750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dbe5780611da88161230e565b9150611db79050600a83612434565b9150611d98565b60008167ffffffffffffffff811115611dd957611dd961214d565b6040519080825280601f01601f191660200182016040528015611e03576020820181803683370190505b5090505b8415611d5957611e18600183612448565b9150611e25600a86612376565b611e30906030612348565b60f81b818381518110611e4557611e456122e2565b60200101906001600160f81b031916908160001a905350611e67600a86612434565b9450611e07565b828054611e7a90612272565b90600052602060002090601f016020900481019282611e9c5760008555611ee2565b82601f10611eb55782800160ff19823516178555611ee2565b82800160010185558215611ee2579182015b82811115611ee2578235825591602001919060010190611ec7565b50611eee929150611ef2565b5090565b5b80821115611eee5760008155600101611ef3565b6001600160e01b031981168114610ff257600080fd5b600060208284031215611f2f57600080fd5b8135611c5a81611f07565b60005b83811015611f55578181015183820152602001611f3d565b838111156112985750506000910152565b60008151808452611f7e816020860160208601611f3a565b601f01601f19169290920160200192915050565b602081526000611c5a6020830184611f66565b600060208284031215611fb757600080fd5b5035919050565b80356001600160a01b0381168114611fd557600080fd5b919050565b60008060408385031215611fed57600080fd5b611ff683611fbe565b946020939093013593505050565b60008060006060848603121561201957600080fd5b61202284611fbe565b925061203060208501611fbe565b9150604084013590509250925092565b60006020828403121561205257600080fd5b611c5a82611fbe565b6020808252825182820181905260009190848201906040850190845b8181101561209357835183529284019291840191600101612077565b50909695505050505050565b600080602083850312156120b257600080fd5b823567ffffffffffffffff808211156120ca57600080fd5b818501915085601f8301126120de57600080fd5b8135818111156120ed57600080fd5b8660208285010111156120ff57600080fd5b60209290920196919550909350505050565b6000806040838503121561212457600080fd5b61212d83611fbe565b91506020830135801515811461214257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561217957600080fd5b61218285611fbe565b935061219060208601611fbe565b925060408501359150606085013567ffffffffffffffff808211156121b457600080fd5b818701915087601f8301126121c857600080fd5b8135818111156121da576121da61214d565b604051601f8201601f19908116603f011681019083821181831017156122025761220261214d565b816040528281528a602084870101111561221b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561225257600080fd5b61225b83611fbe565b915061226960208401611fbe565b90509250929050565b600181811c9082168061228657607f821691505b602082108114156122a757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612322576123226122f8565b5060010190565b6000816000190483118215151615612343576123436122f8565b500290565b6000821982111561235b5761235b6122f8565b500190565b634e487b7160e01b600052601260045260246000fd5b60008261238557612385612360565b500690565b6000845161239c818460208901611f3a565b8451908301906123b0818360208901611f3a565b602d60f81b910190815283516123cd816001840160208801611f3a565b0160010195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061240d90830184611f66565b9695505050505050565b60006020828403121561242957600080fd5b8151611c5a81611f07565b60008261244357612443612360565b500490565b60008282101561245a5761245a6122f8565b50039056fea26469706673582212206966b4c9ea94163a3d9e1a2e7e6e448eb45fa823bfde0f5b3ad522d84e8efa6c64736f6c634300080c0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d4e526647514e3656347761716e326135355a74337937336258544268797667676a46423364644247643478430000000000000000000000000000000000000000000000000000000000000000000000000000000000000668656176656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000468656c6c00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063c87b56dd116100b6578063f09f18e31161007a578063f09f18e3146106b6578063f2fde38b146106cb578063f4138897146106eb578063f4a0a52814610700578063f6aacfb114610720578063fe2c7fee1461075057600080fd5b8063c87b56dd146105eb578063cc47a40b1461060b578063ce03ec931461062b578063e600d94d14610640578063e985e9c51461066d57600080fd5b8063a22cb465116100fd578063a22cb46514610556578063a426eb0514610576578063a49062d414610596578063b30513b4146105ab578063b88d4fde146105cb57600080fd5b806370a08231146104db578063715018a6146104fb5780638da5cb5b1461051057806395d89b411461052e578063a0712d681461054357600080fd5b80633ccfd60b116101c757806355f804b31161018b57806355f804b3146104465780636352211e146104665780636817c76c1461048657806368428a1b1461049c5780636ad3164e146104bb57600080fd5b80633ccfd60b146103aa57806342842e0e146103bf578063438b6300146103df5780634f6ccce71461040c578063518302271461042c57600080fd5b806323b872dd1161020e57806323b872dd1461031f5780632d267f491461033f5780632f745c591461035f57806333039d3d1461037f5780633b84d9c61461039557600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806318160ddd146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611f1d565b610770565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107dd565b6040516102779190611f92565b3480156102ae57600080fd5b506102c26102bd366004611fa5565b61086f565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611fda565b6108b3565b005b34801561030857600080fd5b50610311610941565b604051908152602001610277565b34801561032b57600080fd5b506102fa61033a366004612004565b610960565b34801561034b57600080fd5b506102fa61035a366004611fa5565b61096b565b34801561036b57600080fd5b5061031161037a366004611fda565b6109be565b34801561038b57600080fd5b5061031161271081565b3480156103a157600080fd5b506102fa610abb565b3480156103b657600080fd5b506102fa610af9565b3480156103cb57600080fd5b506102fa6103da366004612004565b610c0d565b3480156103eb57600080fd5b506103ff6103fa366004612040565b610c28565b604051610277919061205b565b34801561041857600080fd5b50610311610427366004611fa5565b610cca565b34801561043857600080fd5b50600e5461026b9060ff1681565b34801561045257600080fd5b506102fa61046136600461209f565b610d75565b34801561047257600080fd5b506102c2610481366004611fa5565b610dab565b34801561049257600080fd5b5061031160115481565b3480156104a857600080fd5b50600e5461026b90610100900460ff1681565b3480156104c757600080fd5b506102fa6104d636600461209f565b610dbd565b3480156104e757600080fd5b506103116104f6366004612040565b610df3565b34801561050757600080fd5b506102fa610e42565b34801561051c57600080fd5b506007546001600160a01b03166102c2565b34801561053a57600080fd5b50610295610e78565b6102fa610551366004611fa5565b610e87565b34801561056257600080fd5b506102fa610571366004612111565b610ff5565b34801561058257600080fd5b506102fa61059136600461209f565b61108b565b3480156105a257600080fd5b50610311600281565b3480156105b757600080fd5b506102fa6105c6366004611fa5565b6110c1565b3480156105d757600080fd5b506102fa6105e6366004612163565b61129e565b3480156105f757600080fd5b50610295610606366004611fa5565b6112d2565b34801561061757600080fd5b506102fa610626366004611fda565b61140a565b34801561063757600080fd5b506102fa611526565b34801561064c57600080fd5b5061031161065b366004611fa5565b600f6020526000908152604090205481565b34801561067957600080fd5b5061026b61068836600461223f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106c257600080fd5b50610311603281565b3480156106d757600080fd5b506102fa6106e6366004612040565b61156d565b3480156106f757600080fd5b50610311606481565b34801561070c57600080fd5b506102fa61071b366004611fa5565b611605565b34801561072c57600080fd5b5061026b61073b366004611fa5565b60106020526000908152604090205460ff1681565b34801561075c57600080fd5b506102fa61076b36600461209f565b611634565b60006001600160e01b031982166380ac58cd60e01b14806107a157506001600160e01b03198216635b5e139f60e01b145b806107bc57506001600160e01b0319821663780e9d6360e01b145b806107d757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107ec90612272565b80601f016020809104026020016040519081016040528092919081815260200182805461081890612272565b80156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b600061087a8261166a565b610897576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108be82610dab565b9050806001600160a01b0316836001600160a01b031614156108f35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061091357506109118133610688565b155b15610931576040516367d9dca160e11b815260040160405180910390fd5b61093c83838361169e565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b61093c8383836116fa565b6007546001600160a01b0316331461099e5760405162461bcd60e51b8152600401610995906122ad565b60405180910390fd5b6000908152601060205260409020805460ff19811660ff90911615179055565b60006109c983610df3565b82106109e8576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610ab557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161580159282019290925290610a615750610aad565b80516001600160a01b031615610a7657805192505b876001600160a01b0316836001600160a01b03161415610aab5786841415610aa4575093506107d792505050565b6001909301925b505b6001016109f9565b50600080fd5b6007546001600160a01b03163314610ae55760405162461bcd60e51b8152600401610995906122ad565b600e805460ff19811660ff90911615179055565b6007546001600160a01b03163314610b235760405162461bcd60e51b8152600401610995906122ad565b60026008541415610b765760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610995565b6002600855604051600090339047908381818185875af1925050503d8060008114610bbd576040519150601f19603f3d011682016040523d82523d6000602084013e610bc2565b606091505b5050905080610c055760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b6044820152606401610995565b506001600855565b61093c8383836040518060200160405280600081525061129e565b60606000610c3583610df3565b905060008167ffffffffffffffff811115610c5257610c5261214d565b604051908082528060200260200182016040528015610c7b578160200160208202803683370190505b50905060005b82811015610cc257610c9385826109be565b828281518110610ca557610ca56122e2565b602090810291909101015280610cba8161230e565b915050610c81565b509392505050565b600080546001600160801b031681805b82811015610d5b57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610d525785831415610d4b5750949350505050565b6001909201915b50600101610cda565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610d9f5760405162461bcd60e51b8152600401610995906122ad565b61093c60098383611e6e565b6000610db682611919565b5192915050565b6007546001600160a01b03163314610de75760405162461bcd60e51b8152600401610995906122ad565b61093c600c8383611e6e565b60006001600160a01b038216610e1c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610e6c5760405162461bcd60e51b8152600401610995906122ad565b610e766000611a3d565b565b6060600280546107ec90612272565b600e54610100900460ff16610ed75760405162461bcd60e51b81526020600482015260166024820152755075626c69632073616c65206e6f742061637469766560501b6044820152606401610995565b601154610ee49082612329565b3414610f285760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610995565b6064811115610f795760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e6720746f6f206d616e7920617420612074696d650000000000006044820152606401610995565b612710610f84610941565b610f8e9083612348565b1115610fd65760405162461bcd60e51b8152602060048201526017602482015276576f756c6420657863656564206d617820737570706c7960481b6044820152606401610995565b610ff23382604051806020016040528060008152506000611a8f565b50565b6001600160a01b03821633141561101f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146110b55760405162461bcd60e51b8152600401610995906122ad565b61093c600b8383611e6e565b806110cb81610dab565b6001600160a01b0316336001600160a01b03161461112b5760405162461bcd60e51b815260206004820152601d60248201527f53656e646572206973206e6f742074686520746f6b656e206f776e65720000006044820152606401610995565b60008281526010602052604090205460ff161561117a5760405162461bcd60e51b815260206004820152600d60248201526c11d85d1bdc881a5cc819195859609a1b6044820152606401610995565b6000828152600f6020526040902054600281106111d95760405162461bcd60e51b815260206004820152601760248201527f4761746f7220616c7265616479206d6178206c6576656c0000000000000000006044820152606401610995565b60006111e484611c1a565b90508161124957600981101561121e576000848152600f60205260408120805460019290611213908490612348565b909155506112989050565b6000848152600f6020908152604080832083905560109091529020805460ff19166001179055611298565b6003811015611271576000848152600f60205260408120805460019290611213908490612348565b6000848152600f6020908152604080832083905560109091529020805460ff191660011790555b50505050565b6112a98484846116fa565b6112b584848484611c61565b611298576040516368d2bf6b60e11b815260040160405180910390fd5b600e5460609060ff1661137157600a80546112ec90612272565b80601f016020809104026020016040519081016040528092919081815260200182805461131890612272565b80156113655780601f1061133a57610100808354040283529160200191611365565b820191906000526020600020905b81548152906001019060200180831161134857829003601f168201915b50505050509050919050565b60008281526010602052604090205460ff16156113b157611393600283612376565b6113a457600b80546112ec90612272565b600c80546112ec90612272565b60006113bb611d61565b6000848152600f6020526040902054909150816113d785611d70565b6113e083611d70565b6040516020016113f29392919061238a565b60405160208183030381529060405292505050919050565b6007546001600160a01b031633146114345760405162461bcd60e51b8152600401610995906122ad565b61271061143f610941565b6114499083612348565b11156114915760405162461bcd60e51b8152602060048201526017602482015276576f756c6420657863656564206d617820737570706c7960481b6044820152606401610995565b603281600d546114a19190612348565b11156114ef5760405162461bcd60e51b815260206004820181905260248201527f576f756c6420657863656564206d617820726573657276656420616d6f756e746044820152606401610995565b61150b8282604051806020016040528060008152506000611a8f565b80600d600082825461151d9190612348565b90915550505050565b6007546001600160a01b031633146115505760405162461bcd60e51b8152600401610995906122ad565b600e805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146115975760405162461bcd60e51b8152600401610995906122ad565b6001600160a01b0381166115fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610995565b610ff281611a3d565b6007546001600160a01b0316331461162f5760405162461bcd60e51b8152600401610995906122ad565b601155565b6007546001600160a01b0316331461165e5760405162461bcd60e51b8152600401610995906122ad565b61093c600a8383611e6e565b600080546001600160801b0316821080156107d7575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061170582611919565b80519091506000906001600160a01b0316336001600160a01b03161480611733575081516117339033610688565b8061174e5750336117438461086f565b6001600160a01b0316145b90508061176e57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117a35760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166117ca57604051633a954ecd60e21b815260040160405180910390fd5b6117da600084846000015161169e565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166118cf576000546001600160801b03168110156118cf578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611a2457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611a225780516001600160a01b0316156119b8579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611a1d579392505050565b6119b8565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160801b03166001600160a01b038516611ac157604051622e076360e81b815260040160405180910390fd5b83611adf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611bf25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611bc85750611bc66000888488611c61565b155b15611be6576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611b71565b50600080546001600160801b0319166001600160801b03929092169190911781556119129050565b6040805144602080830191909152428284015260608083018590528351808403909101815260809092019092528051910120600090611c5a600a82612376565b9392505050565b60006001600160a01b0384163b15611d5557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ca59033908990889088906004016123da565b6020604051808303816000875af1925050508015611ce0575060408051601f3d908101601f19168201909252611cdd91810190612417565b60015b611d3b573d808015611d0e576040519150601f19603f3d011682016040523d82523d6000602084013e611d13565b606091505b508051611d33576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d59565b5060015b949350505050565b6060600980546107ec90612272565b606081611d945750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dbe5780611da88161230e565b9150611db79050600a83612434565b9150611d98565b60008167ffffffffffffffff811115611dd957611dd961214d565b6040519080825280601f01601f191660200182016040528015611e03576020820181803683370190505b5090505b8415611d5957611e18600183612448565b9150611e25600a86612376565b611e30906030612348565b60f81b818381518110611e4557611e456122e2565b60200101906001600160f81b031916908160001a905350611e67600a86612434565b9450611e07565b828054611e7a90612272565b90600052602060002090601f016020900481019282611e9c5760008555611ee2565b82601f10611eb55782800160ff19823516178555611ee2565b82800160010185558215611ee2579182015b82811115611ee2578235825591602001919060010190611ec7565b50611eee929150611ef2565b5090565b5b80821115611eee5760008155600101611ef3565b6001600160e01b031981168114610ff257600080fd5b600060208284031215611f2f57600080fd5b8135611c5a81611f07565b60005b83811015611f55578181015183820152602001611f3d565b838111156112985750506000910152565b60008151808452611f7e816020860160208601611f3a565b601f01601f19169290920160200192915050565b602081526000611c5a6020830184611f66565b600060208284031215611fb757600080fd5b5035919050565b80356001600160a01b0381168114611fd557600080fd5b919050565b60008060408385031215611fed57600080fd5b611ff683611fbe565b946020939093013593505050565b60008060006060848603121561201957600080fd5b61202284611fbe565b925061203060208501611fbe565b9150604084013590509250925092565b60006020828403121561205257600080fd5b611c5a82611fbe565b6020808252825182820181905260009190848201906040850190845b8181101561209357835183529284019291840191600101612077565b50909695505050505050565b600080602083850312156120b257600080fd5b823567ffffffffffffffff808211156120ca57600080fd5b818501915085601f8301126120de57600080fd5b8135818111156120ed57600080fd5b8660208285010111156120ff57600080fd5b60209290920196919550909350505050565b6000806040838503121561212457600080fd5b61212d83611fbe565b91506020830135801515811461214257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561217957600080fd5b61218285611fbe565b935061219060208601611fbe565b925060408501359150606085013567ffffffffffffffff808211156121b457600080fd5b818701915087601f8301126121c857600080fd5b8135818111156121da576121da61214d565b604051601f8201601f19908116603f011681019083821181831017156122025761220261214d565b816040528281528a602084870101111561221b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561225257600080fd5b61225b83611fbe565b915061226960208401611fbe565b90509250929050565b600181811c9082168061228657607f821691505b602082108114156122a757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612322576123226122f8565b5060010190565b6000816000190483118215151615612343576123436122f8565b500290565b6000821982111561235b5761235b6122f8565b500190565b634e487b7160e01b600052601260045260246000fd5b60008261238557612385612360565b500690565b6000845161239c818460208901611f3a565b8451908301906123b0818360208901611f3a565b602d60f81b910190815283516123cd816001840160208801611f3a565b0160010195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061240d90830184611f66565b9695505050505050565b60006020828403121561242957600080fd5b8151611c5a81611f07565b60008261244357612443612360565b500490565b60008282101561245a5761245a6122f8565b50039056fea26469706673582212206966b4c9ea94163a3d9e1a2e7e6e448eb45fa823bfde0f5b3ad522d84e8efa6c64736f6c634300080c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d4e526647514e3656347761716e326135355a74337937336258544268797667676a46423364644247643478430000000000000000000000000000000000000000000000000000000000000000000000000000000000000668656176656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000468656c6c00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : unrevealedURI (string): ipfs://QmNRfGQN6V4waqn2a55Zt3y73bXTBhyvggjFB3ddBGd4xC
Arg [1] : lockedURIHeaven (string): heaven
Arg [2] : lockedURIHell (string): hell

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [4] : 697066733a2f2f516d4e526647514e3656347761716e326135355a7433793733
Arg [5] : 6258544268797667676a46423364644247643478430000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 68656176656e0000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 68656c6c00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49136:5501:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30080:372;;;;;;;;;;-1:-1:-1;30080:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30080:372:0;;;;;;;;32690:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34193:204::-;;;;;;;;;;-1:-1:-1;34193:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;34193:204:0;1528:203:1;33756:371:0;;;;;;;;;;-1:-1:-1;33756:371:0;;;;;:::i;:::-;;:::i;:::-;;27317:280;;;;;;;;;;;;;:::i;:::-;;;2319:25:1;;;2307:2;2292:18;27317:280:0;2173:177:1;35050:170:0;;;;;;;;;;-1:-1:-1;35050:170:0;;;;;:::i;:::-;;:::i;51880:115::-;;;;;;;;;;-1:-1:-1;51880:115:0;;;;;:::i;:::-;;:::i;28903:1105::-;;;;;;;;;;-1:-1:-1;28903:1105:0;;;;;:::i;:::-;;:::i;49668:49::-;;;;;;;;;;;;49711:6;49668:49;;51794:78;;;;;;;;;;;;;:::i;52003:185::-;;;;;;;;;;;;;:::i;35291:::-;;;;;;;;;;-1:-1:-1;35291:185:0;;;;;:::i;:::-;;:::i;54015:343::-;;;;;;;;;;-1:-1:-1;54015:343:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27890:713::-;;;;;;;;;;-1:-1:-1;27890:713:0;;;;;:::i;:::-;;:::i;49418:20::-;;;;;;;;;;-1:-1:-1;49418:20:0;;;;;;;;51056:106;;;;;;;;;;-1:-1:-1;51056:106:0;;;;;:::i;:::-;;:::i;32499:124::-;;;;;;;;;;-1:-1:-1;32499:124:0;;;;;:::i;:::-;;:::i;49578:37::-;;;;;;;;;;;;;;;;49445:22;;;;;;;;;;-1:-1:-1;49445:22:0;;;;;;;;;;;51444:125;;;;;;;;;;-1:-1:-1;51444:125:0;;;;;:::i;:::-;;:::i;30516:206::-;;;;;;;;;;-1:-1:-1;30516:206:0;;;;;:::i;:::-;;:::i;48255:103::-;;;;;;;;;;;;;:::i;47604:87::-;;;;;;;;;;-1:-1:-1;47677:6:0;;-1:-1:-1;;;;;47677:6:0;47604:87;;32859:104;;;;;;;;;;;;;:::i;52224:402::-;;;;;;:::i;:::-;;:::i;34469:279::-;;;;;;;;;;-1:-1:-1;34469:279:0;;;;;:::i;:::-;;:::i;51303:133::-;;;;;;;;;;-1:-1:-1;51303:133:0;;;;;:::i;:::-;;:::i;49624:37::-;;;;;;;;;;;;49660:1;49624:37;;53063:919;;;;;;;;;;-1:-1:-1;53063:919:0;;;;;:::i;:::-;;:::i;35547:342::-;;;;;;;;;;-1:-1:-1;35547:342:0;;;;;:::i;:::-;;:::i;50462:560::-;;;;;;;;;;-1:-1:-1;50462:560:0;;;;;:::i;:::-;;:::i;52701:327::-;;;;;;;;;;-1:-1:-1;52701:327:0;;;;;:::i;:::-;;:::i;51675:111::-;;;;;;;;;;;;;:::i;49476:46::-;;;;;;;;;;-1:-1:-1;49476:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;34819:164;;;;;;;;;;-1:-1:-1;34819:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34940:25:0;;;34916:4;34940:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34819:164;49780:48;;;;;;;;;;;;49826:2;49780:48;;48513:201;;;;;;;;;;-1:-1:-1;48513:201:0;;;;;:::i;:::-;;:::i;49724:49::-;;;;;;;;;;;;49770:3;49724:49;;51577:90;;;;;;;;;;-1:-1:-1;51577:90:0;;;;;:::i;:::-;;:::i;49529:40::-;;;;;;;;;;-1:-1:-1;49529:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;51170:125;;;;;;;;;;-1:-1:-1;51170:125:0;;;;;:::i;:::-;;:::i;30080:372::-;30182:4;-1:-1:-1;;;;;;30219:40:0;;-1:-1:-1;;;30219:40:0;;:105;;-1:-1:-1;;;;;;;30276:48:0;;-1:-1:-1;;;30276:48:0;30219:105;:172;;;-1:-1:-1;;;;;;;30341:50:0;;-1:-1:-1;;;30341:50:0;30219:172;:225;;;-1:-1:-1;;;;;;;;;;11425:40:0;;;30408:36;30199:245;30080:372;-1:-1:-1;;30080:372:0:o;32690:100::-;32744:13;32777:5;32770:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32690:100;:::o;34193:204::-;34261:7;34286:16;34294:7;34286;:16::i;:::-;34281:64;;34311:34;;-1:-1:-1;;;34311:34:0;;;;;;;;;;;34281:64;-1:-1:-1;34365:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34365:24:0;;34193:204::o;33756:371::-;33829:13;33845:24;33861:7;33845:15;:24::i;:::-;33829:40;;33890:5;-1:-1:-1;;;;;33884:11:0;:2;-1:-1:-1;;;;;33884:11:0;;33880:48;;;33904:24;;-1:-1:-1;;;33904:24:0;;;;;;;;;;;33880:48;23877:10;-1:-1:-1;;;;;33945:21:0;;;;;;:63;;-1:-1:-1;33971:37:0;33988:5;23877:10;34819:164;:::i;33971:37::-;33970:38;33945:63;33941:138;;;34032:35;;-1:-1:-1;;;34032:35:0;;;;;;;;;;;33941:138;34091:28;34100:2;34104:7;34113:5;34091:8;:28::i;:::-;33818:309;33756:371;;:::o;27317:280::-;27370:7;27562:12;-1:-1:-1;;;;;;;;27562:12:0;;;;27546:13;;;:28;;;;27539:35;;27317:280::o;35050:170::-;35184:28;35194:4;35200:2;35204:7;35184:9;:28::i;51880:115::-;47677:6;;-1:-1:-1;;;;;47677:6:0;23877:10;47824:23;47816:68;;;;-1:-1:-1;;;47816:68:0;;;;;;;:::i;:::-;;;;;;;;;51970:17:::1;::::0;;;:8:::1;:17;::::0;;;;;;-1:-1:-1;;51949:38:0;::::1;51970:17;::::0;;::::1;51969:18;51949:38;::::0;;51880:115::o;28903:1105::-;28992:7;29025:16;29035:5;29025:9;:16::i;:::-;29016:5;:25;29012:61;;29050:23;;-1:-1:-1;;;29050:23:0;;;;;;;;;;;29012:61;29084:22;29109:13;;-1:-1:-1;;;;;29109:13:0;;29084:22;;29359:557;29379:14;29375:1;:18;29359:557;;;29419:31;29453:14;;;:11;:14;;;;;;;;;29419:48;;;;;;;;;-1:-1:-1;;;;;29419:48:0;;;;-1:-1:-1;;;29419:48:0;;;;;;;;;;;-1:-1:-1;;;29419:48:0;;;;;;;;;;;;;;;;29486:73;;29531:8;;;29486:73;29581:14;;-1:-1:-1;;;;;29581:28:0;;29577:111;;29654:14;;;-1:-1:-1;29577:111:0;29731:5;-1:-1:-1;;;;;29710:26:0;:17;-1:-1:-1;;;;;29710:26:0;;29706:195;;;29780:5;29765:11;:20;29761:85;;;-1:-1:-1;29821:1:0;-1:-1:-1;29814:8:0;;-1:-1:-1;;;29814:8:0;29761:85;29868:13;;;;;29706:195;29400:516;29359:557;29395:3;;29359:557;;;;29992:8;;;51794:78;47677:6;;-1:-1:-1;;;;;47677:6:0;23877:10;47824:23;47816:68;;;;-1:-1:-1;;;47816:68:0;;;;;;;:::i;:::-;51856:8:::1;::::0;;-1:-1:-1;;51844:20:0;::::1;51856:8;::::0;;::::1;51855:9;51844:20;::::0;;51794:78::o;52003:185::-;47677:6;;-1:-1:-1;;;;;47677:6:0;23877:10;47824:23;47816:68;;;;-1:-1:-1;;;47816:68:0;;;;;;;:::i;:::-;20047:1:::1;20645:7;;:19;;20637:63;;;::::0;-1:-1:-1;;;20637:63:0;;6953:2:1;20637:63:0::1;::::0;::::1;6935:21:1::0;6992:2;6972:18;;;6965:30;7031:33;7011:18;;;7004:61;7082:18;;20637:63:0::1;6751:355:1::0;20637:63:0::1;20047:1;20778:7;:18:::0;52085:49:::2;::::0;52067:12:::2;::::0;52085:10:::2;::::0;52108:21:::2;::::0;52067:12;52085:49;52067:12;52085:49;52108:21;52085:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52066:68;;;52153:7;52145:35;;;::::0;-1:-1:-1;;;52145:35:0;;7523:2:1;52145:35:0::2;::::0;::::2;7505:21:1::0;7562:2;7542:18;;;7535:30;-1:-1:-1;;;7581:18:1;;;7574:45;7636:18;;52145:35:0::2;7321:339:1::0;52145:35:0::2;-1:-1:-1::0;20003:1:0::1;20957:7;:22:::0;52003:185::o;35291:::-;35429:39;35446:4;35452:2;35456:7;35429:39;;;;;;;;;;;;:16;:39::i;54015:343::-;54075:16;54104:18;54125:17;54135:6;54125:9;:17::i;:::-;54104:38;;54153:25;54195:10;54181:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54181:25:0;;54153:53;;54222:9;54217:108;54237:10;54233:1;:14;54217:108;;;54283:30;54303:6;54311:1;54283:19;:30::i;:::-;54269:8;54278:1;54269:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;54249:3;;;;:::i;:::-;;;;54217:108;;;-1:-1:-1;54342:8:0;54015:343;-1:-1:-1;;;54015:343:0:o;27890:713::-;27957:7;28002:13;;-1:-1:-1;;;;;28002:13:0;27957:7;;28216:328;28236:14;28232:1;:18;28216:328;;;28276:31;28310:14;;;:11;:14;;;;;;;;;28276:48;;;;;;;;;-1:-1:-1;;;;;28276:48:0;;;;-1:-1:-1;;;28276:48:0;;;;;;;;;;;-1:-1:-1;;;28276:48:0;;;;;;;;;;;;;;28343:186;;28408:5;28393:11;:20;28389:85;;;-1:-1:-1;28449:1:0;27890:713;-1:-1:-1;;;;27890:713:0:o;28389:85::-;28496:13;;;;;28343:186;-1:-1:-1;28252:3:0;;28216:328;;;;28572:23;;-1:-1:-1;;;28572:23:0;;;;;;;;;;;51056:106;47677:6;;-1:-1:-1;;;;;47677:6:0;23877:10;47824:23;47816:68;;;;-1:-1:-1;;;47816:68:0;;;;;;;:::i;:::-;51131:23:::1;:13;51147:7:::0;;51131:23:::1;:::i;32499:124::-:0;32563:7;32590:20;32602:7;32590:11;:20::i;:::-;:25;;32499:124;-1:-1:-1;;32499:124:0:o;51444:125::-;47677:6;;-1:-1:-1;;;;;47677:6:0;23877:10;47824:23;47816:68;;;;-1:-1:-1;;;47816:68:0;;;;;;;:::i;:::-;51531:30:::1;:14;51548:13:::0;;51531:30:::1;:::i;30516:206::-:0;30580:7;-1:-1:-1;;;;;30604:19:0;;30600:60;;30632:28;;-1:-1:-1;;;30632:28:0;;;;;;;;;;;30600:60;-1:-1:-1;;;;;;30686:19:0;;;;;:12;:19;;;;;:27;;;;30516:206::o;48255:103::-;47677:6;;-1:-1:-1;;;;;47677:6:0;23877:10;47824:23;47816:68;;;;-1:-1:-1;;;47816:68:0;;;;;;;:::i;:::-;48320:30:::1;48347:1;48320:18;:30::i;:::-;48255:103::o:0;32859:104::-;32915:13;32948:7;32941:14;;;;;:::i;52224:402::-;52290:10;;;;;;;52282:45;;;;-1:-1:-1;;;52282:45:0;;8271:2:1;52282:45:0;;;8253:21:1;8310:2;8290:18;;;8283:30;-1:-1:-1;;;8329:18:1;;;8322:52;8391:18;;52282:45:0;8069:346:1;52282:45:0;52368:9;;52359:18;;:6;:18;:::i;:::-;52346:9;:31;52338:63;;;;-1:-1:-1;;;52338:63:0;;8795:2:1;52338:63:0;;;8777:21:1;8834:2;8814:18;;;8807:30;-1:-1:-1;;;8853:18:1;;;8846:49;8912:18;;52338:63:0;8593:343:1;52338:63:0;49770:3;52420:6;:29;;52412:68;;;;-1:-1:-1;;;52412:68:0;;9143:2:1;52412:68:0;;;9125:21:1;9182:2;9162:18;;;9155:30;9221:28;9201:18;;;9194:56;9267:18;;52412:68:0;8941:350:1;52412:68:0;49711:6;52508:13;:11;:13::i;:::-;52499:22;;:6;:22;:::i;:::-;:42;;52491:78;;;;-1:-1:-1;;;52491:78:0;;9631:2:1;52491:78:0;;;9613:21:1;9670:2;9650:18;;;9643:30;-1:-1:-1;;;9689:18:1;;;9682:53;9752:18;;52491:78:0;9429:347:1;52491:78:0;52582:36;52588:10;52600:6;52582:36;;;;;;;;;;;;52612:5;52582;:36::i;:::-;52224:402;:::o;34469:279::-;-1:-1:-1;;;;;34560:24:0;;23877:10;34560:24;34556:54;;;34593:17;;-1:-1:-1;;;34593:17:0;;;;;;;;;;;34556:54;23877:10;34623:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34623:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34623:53:0;;;;;;;;;;34692:48;;540:41:1;;;34623:42:0;;23877:10;34692:48;;513:18:1;34692:48:0;;;;;;;34469:279;;:::o;51303:133::-;47677:6;;-1:-1:-1;;;;;47677:6:0;23877:10;47824:23;47816:68;;;;-1:-1:-1;;;47816:68:0;;;;;;;:::i;:::-;51394:34:::1;:16;51413:15:::0;;51394:34:::1;:::i;53063:919::-:0;53118:7;50238:16;50246:7;50238;:16::i;:::-;-1:-1:-1;;;;;50224:30:0;:10;-1:-1:-1;;;;;50224:30:0;;50216:72;;;;-1:-1:-1;;;50216:72:0;;9983:2:1;50216:72:0;;;9965:21:1;10022:2;10002:18;;;9995:30;10061:31;10041:18;;;10034:59;10110:18;;50216:72:0;9781:353:1;50216:72:0;53147:17:::1;::::0;;;:8:::1;:17;::::0;;;;;::::1;;53146:18;53138:44;;;::::0;-1:-1:-1;;;53138:44:0;;10341:2:1;53138:44:0::1;::::0;::::1;10323:21:1::0;10380:2;10360:18;;;10353:30;-1:-1:-1;;;10399:18:1;;;10392:43;10452:18;;53138:44:0::1;10139:337:1::0;53138:44:0::1;53195:20;53218::::0;;;:11:::1;:20;::::0;;;;;49660:1:::1;53257:24:::0;::::1;53249:60;;;::::0;-1:-1:-1;;;53249:60:0;;10683:2:1;53249:60:0::1;::::0;::::1;10665:21:1::0;10722:2;10702:18;;;10695:30;10761:25;10741:18;;;10734:53;10804:18;;53249:60:0::1;10481:347:1::0;53249:60:0::1;53322:26;53351:31;53374:7;53351:22;:31::i;:::-;53322:60:::0;-1:-1:-1;53399:17:0;53395:580:::1;;53511:1;53490:18;:22;53486:196;;;53533:20;::::0;;;:11:::1;:20;::::0;;;;:25;;53557:1:::1;::::0;53533:20;:25:::1;::::0;53557:1;;53533:25:::1;:::i;:::-;::::0;;;-1:-1:-1;53395:580:0::1;::::0;-1:-1:-1;53395:580:0::1;53486:196;53622:1;53599:20:::0;;;:11:::1;:20;::::0;;;;;;;:24;;;53642:8:::1;:17:::0;;;;;:24;;-1:-1:-1;;53642:24:0::1;53662:4;53642:24;::::0;;53395:580:::1;;;53793:1;53772:18;:22;53768:196;;;53815:20;::::0;;;:11:::1;:20;::::0;;;;:25;;53839:1:::1;::::0;53815:20;:25:::1;::::0;53839:1;;53815:25:::1;:::i;53768:196::-;53904:1;53881:20:::0;;;:11:::1;:20;::::0;;;;;;;:24;;;53924:8:::1;:17:::0;;;;;:24;;-1:-1:-1;;53924:24:0::1;53944:4;53924:24;::::0;;53768:196:::1;53127:855;;53063:919:::0;;:::o;35547:342::-;35714:28;35724:4;35730:2;35734:7;35714:9;:28::i;:::-;35758:48;35781:4;35787:2;35791:7;35800:5;35758:22;:48::i;:::-;35753:129;;35830:40;;-1:-1:-1;;;35830:40:0;;;;;;;;;;;50462:560;50566:8;;50535:13;;50566:8;;50561:63;;50598:14;50591:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50462:560;;;:::o;50561:63::-;50640:17;;;;:8;:17;;;;;;;;50636:191;;;50678:11;50688:1;50678:7;:11;:::i;:::-;50674:142;;50722:16;50715:23;;;;;:::i;50674:142::-;50786:14;50779:21;;;;;:::i;50674:142::-;50839:21;50863:10;:8;:10::i;:::-;50884:13;50900:20;;;:11;:20;;;;;;50839:34;;-1:-1:-1;50839:34:0;50971:18;50912:7;50971:16;:18::i;:::-;50996:16;:5;:14;:16::i;:::-;50945:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50931:83;;;;50462:560;;;:::o;52701:327::-;47677:6;;-1:-1:-1;;;;;47677:6:0;23877:10;47824:23;47816:68;;;;-1:-1:-1;;;47816:68:0;;;;;;;:::i;:::-;49711:6:::1;52793:13;:11;:13::i;:::-;52784:22;::::0;:6;:22:::1;:::i;:::-;:42;;52776:78;;;::::0;-1:-1:-1;;;52776:78:0;;9631:2:1;52776:78:0::1;::::0;::::1;9613:21:1::0;9670:2;9650:18;;;9643:30;-1:-1:-1;;;9689:18:1;;;9682:53;9752:18;;52776:78:0::1;9429:347:1::0;52776:78:0::1;49826:2;52884:6;52873:8;;:17;;;;:::i;:::-;:40;;52865:85;;;::::0;-1:-1:-1;;;52865:85:0;;12097:2:1;52865:85:0::1;::::0;::::1;12079:21:1::0;;;12116:18;;;12109:30;12175:34;12155:18;;;12148:62;12227:18;;52865:85:0::1;11895:356:1::0;52865:85:0::1;52963:28;52969:2;52973:6;52963:28;;;;;;;;;;;::::0;52985:5:::1;52963;:28::i;:::-;53014:6;53002:8;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;52701:327:0:o;51675:111::-;47677:6;;-1:-1:-1;;;;;47677:6:0;23877:10;47824:23;47816:68;;;;-1:-1:-1;;;47816:68:0;;;;;;;:::i;:::-;51768:10:::1;::::0;;-1:-1:-1;;51754:24:0;::::1;51768:10;::::0;;;::::1;;;51767:11;51754:24:::0;;::::1;;::::0;;51675:111::o;48513:201::-;47677:6;;-1:-1:-1;;;;;47677:6:0;23877:10;47824:23;47816:68;;;;-1:-1:-1;;;47816:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48602:22:0;::::1;48594:73;;;::::0;-1:-1:-1;;;48594:73:0;;12458:2:1;48594:73:0::1;::::0;::::1;12440:21:1::0;12497:2;12477:18;;;12470:30;12536:34;12516:18;;;12509:62;-1:-1:-1;;;12587:18:1;;;12580:36;12633:19;;48594:73:0::1;12256:402:1::0;48594:73:0::1;48678:28;48697:8;48678:18;:28::i;51577:90::-:0;47677:6;;-1:-1:-1;;;;;47677:6:0;23877:10;47824:23;47816:68;;;;-1:-1:-1;;;47816:68:0;;;;;;;:::i;:::-;51642:9:::1;:17:::0;51577:90::o;51170:125::-;47677:6;;-1:-1:-1;;;;;47677:6:0;23877:10;47824:23;47816:68;;;;-1:-1:-1;;;47816:68:0;;;;;;;:::i;:::-;51257:30:::1;:14;51274:13:::0;;51257:30:::1;:::i;36144:144::-:0;36201:4;36235:13;;-1:-1:-1;;;;;36235:13:0;36225:23;;:55;;;;-1:-1:-1;;36253:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36253:27:0;;;;36252:28;;36144:144::o;43360:196::-;43475:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43475:29:0;-1:-1:-1;;;;;43475:29:0;;;;;;;;;43520:28;;43475:24;;43520:28;;;;;;;43360:196;;;:::o;38861:2112::-;38976:35;39014:20;39026:7;39014:11;:20::i;:::-;39089:18;;38976:58;;-1:-1:-1;39047:22:0;;-1:-1:-1;;;;;39073:34:0;23877:10;-1:-1:-1;;;;;39073:34:0;;:101;;;-1:-1:-1;39141:18:0;;39124:50;;23877:10;34819:164;:::i;39124:50::-;39073:154;;;-1:-1:-1;23877:10:0;39191:20;39203:7;39191:11;:20::i;:::-;-1:-1:-1;;;;;39191:36:0;;39073:154;39047:181;;39246:17;39241:66;;39272:35;;-1:-1:-1;;;39272:35:0;;;;;;;;;;;39241:66;39344:4;-1:-1:-1;;;;;39322:26:0;:13;:18;;;-1:-1:-1;;;;;39322:26:0;;39318:67;;39357:28;;-1:-1:-1;;;39357:28:0;;;;;;;;;;;39318:67;-1:-1:-1;;;;;39400:16:0;;39396:52;;39425:23;;-1:-1:-1;;;39425:23:0;;;;;;;;;;;39396:52;39569:49;39586:1;39590:7;39599:13;:18;;;39569:8;:49::i;:::-;-1:-1:-1;;;;;39914:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39914:31:0;;;;;;;-1:-1:-1;;39914:31:0;;;;;;;39960:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39960:29:0;;;;;;;;;;;40006:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;40051:61:0;;;;-1:-1:-1;;;40096:15:0;40051:61;;;;;;;;;;;40386:11;;;40416:24;;;;;:29;40386:11;;40416:29;40412:445;;40641:13;;-1:-1:-1;;;;;40641:13:0;40627:27;;40623:219;;;40711:18;;;40679:24;;;:11;:24;;;;;;;;:50;;40794:28;;;;40752:70;;-1:-1:-1;;;40752:70:0;-1:-1:-1;;;;;;40752:70:0;;;-1:-1:-1;;;;;40679:50:0;;;40752:70;;;;;;;40623:219;39889:979;40904:7;40900:2;-1:-1:-1;;;;;40885:27:0;40894:4;-1:-1:-1;;;;;40885:27:0;;;;;;;;;;;40923:42;38965:2008;;38861:2112;;;:::o;31354:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;31520:13:0;;31464:7;;-1:-1:-1;;;;;31520:13:0;31513:20;;31509:861;;;31554:31;31588:17;;;:11;:17;;;;;;;;;31554:51;;;;;;;;;-1:-1:-1;;;;;31554:51:0;;;;-1:-1:-1;;;31554:51:0;;;;;;;;;;;-1:-1:-1;;;31554:51:0;;;;;;;;;;;;;;31624:731;;31674:14;;-1:-1:-1;;;;;31674:28:0;;31670:101;;31738:9;31354:1083;-1:-1:-1;;;31354:1083:0:o;31670:101::-;-1:-1:-1;;;32115:6:0;32160:17;;;;:11;:17;;;;;;;;;32148:29;;;;;;;;;-1:-1:-1;;;;;32148:29:0;;;;;-1:-1:-1;;;32148:29:0;;;;;;;;;;;-1:-1:-1;;;32148:29:0;;;;;;;;;;;;;32208:28;32204:109;;32276:9;31354:1083;-1:-1:-1;;;31354:1083:0:o;32204:109::-;32075:261;;;31535:835;31509:861;32398:31;;-1:-1:-1;;;32398:31:0;;;;;;;;;;;48874:191;48967:6;;;-1:-1:-1;;;;;48984:17:0;;;-1:-1:-1;;;;;;48984:17:0;;;;;;;49017:40;;48967:6;;;48984:17;48967:6;;49017:40;;48948:16;;49017:40;48937:128;48874:191;:::o;37185:1422::-;37324:20;37347:13;-1:-1:-1;;;;;37347:13:0;-1:-1:-1;;;;;37375:16:0;;37371:48;;37400:19;;-1:-1:-1;;;37400:19:0;;;;;;;;;;;37371:48;37434:13;37430:44;;37456:18;;-1:-1:-1;;;37456:18:0;;;;;;;;;;;37430:44;-1:-1:-1;;;;;37826:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;37885:49:0;;37826:44;;;;;;;;37885:49;;;;-1:-1:-1;;37826:44:0;;;;;;37885:49;;;;;;;;;;;;;;;;37951:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;38001:66:0;;;;-1:-1:-1;;;38051:15:0;38001:66;;;;;;;;;;;37951:25;;38136:328;38156:8;38152:1;:12;38136:328;;;38195:38;;38220:12;;-1:-1:-1;;;;;38195:38:0;;;38212:1;;38195:38;;38212:1;;38195:38;38256:4;:68;;;;;38265:59;38296:1;38300:2;38304:12;38318:5;38265:22;:59::i;:::-;38264:60;38256:68;38252:164;;;38356:40;;-1:-1:-1;;;38356:40:0;;;;;;;;;;;38252:164;38434:14;;;;;38166:3;38136:328;;;-1:-1:-1;38480:13:0;:37;;-1:-1:-1;;;;;;38480:37:0;-1:-1:-1;;;;;38480:37:0;;;;;;;;;;38539:60;;53063:919;;54366:268;54525:60;;;54542:16;54525:60;;;;12848:19:1;;;;54560:15:0;12883:12:1;;;12876:28;12920:12;;;;12913:28;;;54525:60:0;;;;;;;;;;12957:12:1;;;;54525:60:0;;;54515:71;;;;;-1:-1:-1;;54605:21:0;54624:2;54515:71;54605:21;:::i;:::-;54598:28;54366:268;-1:-1:-1;;;54366:268:0:o;44121:790::-;44276:4;-1:-1:-1;;;;;44297:13:0;;1528:19;:23;44293:611;;44333:72;;-1:-1:-1;;;44333:72:0;;-1:-1:-1;;;;;44333:36:0;;;;;:72;;23877:10;;44384:4;;44390:7;;44399:5;;44333:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44333:72:0;;;;;;;;-1:-1:-1;;44333:72:0;;;;;;;;;;;;:::i;:::-;;;44329:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44579:13:0;;44575:259;;44629:40;;-1:-1:-1;;;44629:40:0;;;;;;;;;;;44575:259;44784:6;44778:13;44769:6;44765:2;44761:15;44754:38;44329:520;-1:-1:-1;;;;;;44456:55:0;-1:-1:-1;;;44456:55:0;;-1:-1:-1;44449:62:0;;44293:611;-1:-1:-1;44888:4:0;44293:611;44121:790;;;;;;:::o;50340:114::-;50400:13;50433;50426:20;;;;;:::i;21359:723::-;21415:13;21636:10;21632:53;;-1:-1:-1;;21663:10:0;;;;;;;;;;;;-1:-1:-1;;;21663:10:0;;;;;21359:723::o;21632:53::-;21710:5;21695:12;21751:78;21758:9;;21751:78;;21784:8;;;;:::i;:::-;;-1:-1:-1;21807:10:0;;-1:-1:-1;21815:2:0;21807:10;;:::i;:::-;;;21751:78;;;21839:19;21871:6;21861:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21861:17:0;;21839:39;;21889:154;21896:10;;21889:154;;21923:11;21933:1;21923:11;;:::i;:::-;;-1:-1:-1;21992:10:0;22000:2;21992:5;:10;:::i;:::-;21979:24;;:2;:24;:::i;:::-;21966:39;;21949:6;21956;21949:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21949:56:0;;;;;;;;-1:-1:-1;22020:11:0;22029:2;22020:11;;:::i;:::-;;;21889:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592: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:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:632::-;3050:2;3102:21;;;3172:13;;3075:18;;;3194:22;;;3021:4;;3050:2;3273:15;;;;3247:2;3232:18;;;3021:4;3316:169;3330:6;3327:1;3324:13;3316:169;;;3391:13;;3379:26;;3460:15;;;;3425:12;;;;3352:1;3345:9;3316:169;;;-1:-1:-1;3502:3:1;;2879:632;-1:-1:-1;;;;;;2879:632:1:o;3516:592::-;3587:6;3595;3648:2;3636:9;3627:7;3623:23;3619:32;3616:52;;;3664:1;3661;3654:12;3616:52;3704:9;3691:23;3733:18;3774:2;3766:6;3763:14;3760:34;;;3790:1;3787;3780:12;3760:34;3828:6;3817:9;3813:22;3803:32;;3873:7;3866:4;3862:2;3858:13;3854:27;3844:55;;3895:1;3892;3885:12;3844:55;3935:2;3922:16;3961:2;3953:6;3950:14;3947:34;;;3977:1;3974;3967:12;3947:34;4022:7;4017:2;4008:6;4004:2;4000:15;3996:24;3993:37;3990:57;;;4043:1;4040;4033:12;3990:57;4074:2;4066:11;;;;;4096:6;;-1:-1:-1;3516:592:1;;-1:-1:-1;;;;3516:592:1:o;4113:347::-;4178:6;4186;4239:2;4227:9;4218:7;4214:23;4210:32;4207:52;;;4255:1;4252;4245:12;4207:52;4278:29;4297:9;4278:29;:::i;:::-;4268:39;;4357:2;4346:9;4342:18;4329:32;4404:5;4397:13;4390:21;4383:5;4380:32;4370:60;;4426:1;4423;4416:12;4370:60;4449:5;4439:15;;;4113:347;;;;;:::o;4465:127::-;4526:10;4521:3;4517:20;4514:1;4507:31;4557:4;4554:1;4547:15;4581:4;4578:1;4571:15;4597:1138;4692:6;4700;4708;4716;4769:3;4757:9;4748:7;4744:23;4740:33;4737:53;;;4786:1;4783;4776:12;4737:53;4809:29;4828:9;4809:29;:::i;:::-;4799:39;;4857:38;4891:2;4880:9;4876:18;4857:38;:::i;:::-;4847:48;;4942:2;4931:9;4927:18;4914:32;4904:42;;4997:2;4986:9;4982:18;4969:32;5020:18;5061:2;5053:6;5050:14;5047:34;;;5077:1;5074;5067:12;5047:34;5115:6;5104:9;5100:22;5090:32;;5160:7;5153:4;5149:2;5145:13;5141:27;5131:55;;5182:1;5179;5172:12;5131:55;5218:2;5205:16;5240:2;5236;5233:10;5230:36;;;5246:18;;:::i;:::-;5321:2;5315:9;5289:2;5375:13;;-1:-1:-1;;5371:22:1;;;5395:2;5367:31;5363:40;5351:53;;;5419:18;;;5439:22;;;5416:46;5413:72;;;5465:18;;:::i;:::-;5505:10;5501:2;5494:22;5540:2;5532:6;5525:18;5580:7;5575:2;5570;5566;5562:11;5558:20;5555:33;5552:53;;;5601:1;5598;5591:12;5552:53;5657:2;5652;5648;5644:11;5639:2;5631:6;5627:15;5614:46;5702:1;5697:2;5692;5684:6;5680:15;5676:24;5669:35;5723:6;5713:16;;;;;;;4597:1138;;;;;;;:::o;5740:260::-;5808:6;5816;5869:2;5857:9;5848:7;5844:23;5840:32;5837:52;;;5885:1;5882;5875:12;5837:52;5908:29;5927:9;5908:29;:::i;:::-;5898:39;;5956:38;5990:2;5979:9;5975:18;5956:38;:::i;:::-;5946:48;;5740:260;;;;;:::o;6005:380::-;6084:1;6080:12;;;;6127;;;6148:61;;6202:4;6194:6;6190:17;6180:27;;6148:61;6255:2;6247:6;6244:14;6224:18;6221:38;6218:161;;;6301:10;6296:3;6292:20;6289:1;6282:31;6336:4;6333:1;6326:15;6364:4;6361:1;6354:15;6218:161;;6005:380;;;:::o;6390:356::-;6592:2;6574:21;;;6611:18;;;6604:30;6670:34;6665:2;6650:18;;6643:62;6737:2;6722:18;;6390:356::o;7665:127::-;7726:10;7721:3;7717:20;7714:1;7707:31;7757:4;7754:1;7747:15;7781:4;7778:1;7771:15;7797:127;7858:10;7853:3;7849:20;7846:1;7839:31;7889:4;7886:1;7879:15;7913:4;7910:1;7903:15;7929:135;7968:3;-1:-1:-1;;7989:17:1;;7986:43;;;8009:18;;:::i;:::-;-1:-1:-1;8056:1:1;8045:13;;7929:135::o;8420:168::-;8460:7;8526:1;8522;8518:6;8514:14;8511:1;8508:21;8503:1;8496:9;8489:17;8485:45;8482:71;;;8533:18;;:::i;:::-;-1:-1:-1;8573:9:1;;8420:168::o;9296:128::-;9336:3;9367:1;9363:6;9360:1;9357:13;9354:39;;;9373:18;;:::i;:::-;-1:-1:-1;9409:9:1;;9296:128::o;10833:127::-;10894:10;10889:3;10885:20;10882:1;10875:31;10925:4;10922:1;10915:15;10949:4;10946:1;10939:15;10965:112;10997:1;11023;11013:35;;11028:18;;:::i;:::-;-1:-1:-1;11062:9:1;;10965:112::o;11082:808::-;11410:3;11448:6;11442:13;11464:53;11510:6;11505:3;11498:4;11490:6;11486:17;11464:53;:::i;:::-;11580:13;;11539:16;;;;11602:57;11580:13;11539:16;11636:4;11624:17;;11602:57;:::i;:::-;-1:-1:-1;;;11681:20:1;;11710:18;;;11753:13;;11775:65;11753:13;11827:1;11816:13;;11809:4;11797:17;;11775:65;:::i;:::-;11860:20;11882:1;11856:28;;11082:808;-1:-1:-1;;;;;11082:808:1:o;12980:489::-;-1:-1:-1;;;;;13249:15:1;;;13231:34;;13301:15;;13296:2;13281:18;;13274:43;13348:2;13333:18;;13326:34;;;13396:3;13391:2;13376:18;;13369:31;;;13174:4;;13417:46;;13443:19;;13435:6;13417:46;:::i;:::-;13409:54;12980:489;-1:-1:-1;;;;;;12980:489:1:o;13474:249::-;13543:6;13596:2;13584:9;13575:7;13571:23;13567:32;13564:52;;;13612:1;13609;13602:12;13564:52;13644:9;13638:16;13663:30;13687:5;13663:30;:::i;13728:120::-;13768:1;13794;13784:35;;13799:18;;:::i;:::-;-1:-1:-1;13833:9:1;;13728:120::o;13853:125::-;13893:4;13921:1;13918;13915:8;13912:34;;;13926:18;;:::i;:::-;-1:-1:-1;13963:9:1;;13853:125::o

Swarm Source

ipfs://6966b4c9ea94163a3d9e1a2e7e6e448eb45fa823bfde0f5b3ad522d84e8efa6c
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.