Token NFT

 

Overview ERC-721

Total Supply:
2 NFT

Holders:
1 addresses
 
Balance
2 NFT
0xc03c79ce39fbae587a97cdcaa581d482818f97ce
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
NFT

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

// 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/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @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) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/m00se.sol



pragma solidity >=0.7.0 <0.9.0;




contract NFT is ERC721Enumerable, Ownable {
    using Strings for uint256;
    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
    uint256 public cost = 0 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmount = 20;
    uint256 public nftPerAddressLimit = 3;
    bool public paused = false;
    bool public onlyWhitelisted = true;
   
    bool public revealed = false;

    mapping(address => uint256) public addressMintedBalance;

    
    bytes32 public whitelistMerkleRoot;



    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }

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

   
    function mint(uint256 _mintAmount) public payable {
        require(!paused, "the contract is paused");
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(
            _mintAmount <= maxMintAmount,
            "max mint amount per session exceeded"
        );
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

        if (msg.sender != owner()) {
            require(msg.value >= cost * _mintAmount, "insufficient funds");
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
    }

    
    modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address does not exist in list"
        );
        _;
    }

    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        require(
            price * numberOfTokens == msg.value,
            "Incorrect ETH value sent"
        );
        _;
    }

    function mintWhitelist(bytes32[] calldata merkleProof)
    
        public
        payable
        isValidMerkleProof(merkleProof, whitelistMerkleRoot)
        isCorrectPayment(cost, 1)

        
      
         {
             if(onlyWhitelisted == true) {
             
        uint256 supply = totalSupply();
        require(supply + 1 <= maxSupply, "max NFT limit exceeded");
        _safeMint(msg.sender, supply + 1); 
    } 
      }

    function setWhitelistMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        whitelistMerkleRoot = merkleRoot;
    }

    //////////////////////////////////////

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return notRevealedUri;
        }

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }

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

    function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
        nftPerAddressLimit = _limit;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }

   

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function withdraw() public payable onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001e3565b506000600e55612710600f55601460105560036011556012805462ffffff19166101001790553480156200005b57600080fd5b5060405162002c5738038062002c578339810160408190526200007e9162000356565b83518490849062000097906000906020850190620001e3565b508051620000ad906001906020840190620001e3565b505050620000ca620000c4620000ea60201b60201c565b620000ee565b620000d58262000140565b620000e08162000163565b505050506200044c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200014a62000182565b80516200015f90600b906020840190620001e3565b5050565b6200016d62000182565b80516200015f90600d906020840190620001e3565b600a546001600160a01b03163314620001e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620001f1906200040f565b90600052602060002090601f01602090048101928262000215576000855562000260565b82601f106200023057805160ff191683800117855562000260565b8280016001018555821562000260579182015b828111156200026057825182559160200191906001019062000243565b506200026e92915062000272565b5090565b5b808211156200026e576000815560010162000273565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002b157600080fd5b81516001600160401b0380821115620002ce57620002ce62000289565b604051601f8301601f19908116603f01168101908282118183101715620002f957620002f962000289565b816040528381526020925086838588010111156200031657600080fd5b600091505b838210156200033a57858201830151818301840152908201906200031b565b838211156200034c5760008385830101525b9695505050505050565b600080600080608085870312156200036d57600080fd5b84516001600160401b03808211156200038557600080fd5b62000393888389016200029f565b95506020870151915080821115620003aa57600080fd5b620003b8888389016200029f565b94506040870151915080821115620003cf57600080fd5b620003dd888389016200029f565b93506060870151915080821115620003f457600080fd5b5062000403878288016200029f565b91505092959194509250565b600181811c908216806200042457607f821691505b602082108114156200044657634e487b7160e01b600052602260045260246000fd5b50919050565b6127fb806200045c6000396000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063aa98e0c6116100c1578063d0eb26b01161007a578063d0eb26b014610700578063d5abeb0114610720578063da3ef23f14610736578063e985e9c514610756578063f2c4ce1e1461079f578063f2fde38b146107bf57600080fd5b8063aa98e0c61461065f578063b88d4fde14610675578063ba7d2c7614610695578063bd32fb66146106ab578063c6682862146106cb578063c87b56dd146106e057600080fd5b80638da5cb5b116101135780638da5cb5b146105c557806395d89b41146105e35780639c70b512146105f8578063a0712d6814610617578063a22cb4651461062a578063a475b5dd1461064a57600080fd5b80636352211e1461053b5780636c0360eb1461055b57806370a0823114610570578063715018a6146105905780637f00c7a6146105a557600080fd5b80632f745c59116101e857806344a0d68a116101ac57806344a0d68a1461048e57806344d84381146104ae5780634f6ccce7146104c157806351830227146104e157806355f804b3146105015780635c975abb1461052157600080fd5b80632f745c59146103f95780633c952764146104195780633ccfd60b1461043957806342842e0e14610441578063438b63001461046157600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd1461038157806318cae26914610396578063239c70ae146103c357806323b872dd146103d957600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b50610297610292366004612113565b6107df565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004612145565b61080a565b005b3480156102da57600080fd5b506102e3610825565b6040516102a391906121b8565b3480156102fc57600080fd5b5061031061030b3660046121cb565b6108b7565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e36108de565b34801561034957600080fd5b506102cc6103583660046121fb565b61096c565b34801561036957600080fd5b50610373600e5481565b6040519081526020016102a3565b34801561038d57600080fd5b50600854610373565b3480156103a257600080fd5b506103736103b1366004612225565b60136020526000908152604090205481565b3480156103cf57600080fd5b5061037360105481565b3480156103e557600080fd5b506102cc6103f4366004612240565b610a87565b34801561040557600080fd5b506103736104143660046121fb565b610ab8565b34801561042557600080fd5b506102cc610434366004612145565b610b4e565b6102cc610b70565b34801561044d57600080fd5b506102cc61045c366004612240565b610bec565b34801561046d57600080fd5b5061048161047c366004612225565b610c07565b6040516102a3919061227c565b34801561049a57600080fd5b506102cc6104a93660046121cb565b610ca9565b6102cc6104bc3660046122c0565b610cb6565b3480156104cd57600080fd5b506103736104dc3660046121cb565b610e6e565b3480156104ed57600080fd5b506012546102979062010000900460ff1681565b34801561050d57600080fd5b506102cc61051c3660046123c1565b610f01565b34801561052d57600080fd5b506012546102979060ff1681565b34801561054757600080fd5b506103106105563660046121cb565b610f20565b34801561056757600080fd5b506102e3610f80565b34801561057c57600080fd5b5061037361058b366004612225565b610f8d565b34801561059c57600080fd5b506102cc611013565b3480156105b157600080fd5b506102cc6105c03660046121cb565b611027565b3480156105d157600080fd5b50600a546001600160a01b0316610310565b3480156105ef57600080fd5b506102e3611034565b34801561060457600080fd5b5060125461029790610100900460ff1681565b6102cc6106253660046121cb565b611043565b34801561063657600080fd5b506102cc61064536600461240a565b61124d565b34801561065657600080fd5b506102cc611258565b34801561066b57600080fd5b5061037360145481565b34801561068157600080fd5b506102cc61069036600461243d565b611273565b3480156106a157600080fd5b5061037360115481565b3480156106b757600080fd5b506102cc6106c63660046121cb565b6112ab565b3480156106d757600080fd5b506102e36112b8565b3480156106ec57600080fd5b506102e36106fb3660046121cb565b6112c5565b34801561070c57600080fd5b506102cc61071b3660046121cb565b611445565b34801561072c57600080fd5b50610373600f5481565b34801561074257600080fd5b506102cc6107513660046123c1565b611452565b34801561076257600080fd5b506102976107713660046124b9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107ab57600080fd5b506102cc6107ba3660046123c1565b61146d565b3480156107cb57600080fd5b506102cc6107da366004612225565b611488565b60006001600160e01b0319821663780e9d6360e01b14806108045750610804826114fe565b92915050565b61081261154e565b6012805460ff1916911515919091179055565b606060008054610834906124e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610860906124e3565b80156108ad5780601f10610882576101008083540402835291602001916108ad565b820191906000526020600020905b81548152906001019060200180831161089057829003601f168201915b5050505050905090565b60006108c2826115a8565b506000908152600460205260409020546001600160a01b031690565b600d80546108eb906124e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610917906124e3565b80156109645780601f1061093957610100808354040283529160200191610964565b820191906000526020600020905b81548152906001019060200180831161094757829003601f168201915b505050505081565b600061097782610f20565b9050806001600160a01b0316836001600160a01b031614156109ea5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610a065750610a068133610771565b610a785760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016109e1565b610a828383611607565b505050565b610a913382611675565b610aad5760405162461bcd60e51b81526004016109e19061251e565b610a828383836116f4565b6000610ac383610f8d565b8210610b255760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109e1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b5661154e565b601280549115156101000261ff0019909216919091179055565b610b7861154e565b6000610b8c600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bd6576040519150601f19603f3d011682016040523d82523d6000602084013e610bdb565b606091505b5050905080610be957600080fd5b50565b610a8283838360405180602001604052806000815250611273565b60606000610c1483610f8d565b905060008167ffffffffffffffff811115610c3157610c31612335565b604051908082528060200260200182016040528015610c5a578160200160208202803683370190505b50905060005b82811015610ca157610c728582610ab8565b828281518110610c8457610c8461256c565b602090810291909101015280610c9981612598565b915050610c60565b509392505050565b610cb161154e565b600e55565b8181601454610d2d838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b16602082015285925060340190506040516020818303038152906040528051906020012061189b565b610d795760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c697374000060448201526064016109e1565b600e54600134610d8982846125b3565b14610dd65760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e74000000000000000060448201526064016109e1565b60125460ff61010090910416151560011415610e65576000610df760085490565b600f54909150610e088260016125d2565b1115610e4f5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016109e1565b610e6333610e5e8360016125d2565b6118b1565b505b50505050505050565b6000610e7960085490565b8210610edc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109e1565b60088281548110610eef57610eef61256c565b90600052602060002001549050919050565b610f0961154e565b8051610f1c90600b906020840190612064565b5050565b6000818152600260205260408120546001600160a01b0316806108045760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016109e1565b600b80546108eb906124e3565b60006001600160a01b038216610ff75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016109e1565b506001600160a01b031660009081526003602052604090205490565b61101b61154e565b61102560006118cb565b565b61102f61154e565b601055565b606060018054610834906124e3565b60125460ff161561108f5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016109e1565b600061109a60085490565b9050600082116110ec5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016109e1565b60105482111561114a5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016109e1565b600f5461115783836125d2565b111561119e5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016109e1565b600a546001600160a01b031633146112025781600e546111be91906125b3565b3410156112025760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016109e1565b60015b828111610a825733600090815260136020526040812080549161122783612598565b9091555061123b905033610e5e83856125d2565b8061124581612598565b915050611205565b610f1c33838361191d565b61126061154e565b6012805462ff0000191662010000179055565b61127d3383611675565b6112995760405162461bcd60e51b81526004016109e19061251e565b6112a5848484846119ec565b50505050565b6112b361154e565b601455565b600c80546108eb906124e3565b6000818152600260205260409020546060906001600160a01b03166113445760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109e1565b60125462010000900460ff166113e657600d8054611361906124e3565b80601f016020809104026020016040519081016040528092919081815260200182805461138d906124e3565b80156113da5780601f106113af576101008083540402835291602001916113da565b820191906000526020600020905b8154815290600101906020018083116113bd57829003601f168201915b50505050509050919050565b60006113f0611a1f565b90506000815111611410576040518060200160405280600081525061143e565b8061141a84611a2e565b600c60405160200161142e939291906125ea565b6040516020818303038152906040525b9392505050565b61144d61154e565b601155565b61145a61154e565b8051610f1c90600c906020840190612064565b61147561154e565b8051610f1c90600d906020840190612064565b61149061154e565b6001600160a01b0381166114f55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e1565b610be9816118cb565b60006001600160e01b031982166380ac58cd60e01b148061152f57506001600160e01b03198216635b5e139f60e01b145b8061080457506301ffc9a760e01b6001600160e01b0319831614610804565b600a546001600160a01b031633146110255760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109e1565b6000818152600260205260409020546001600160a01b0316610be95760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016109e1565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061163c82610f20565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061168183610f20565b9050806001600160a01b0316846001600160a01b031614806116c857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806116ec5750836001600160a01b03166116e1846108b7565b6001600160a01b0316145b949350505050565b826001600160a01b031661170782610f20565b6001600160a01b03161461176b5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016109e1565b6001600160a01b0382166117cd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109e1565b6117d8838383611b2c565b6117e3600082611607565b6001600160a01b038316600090815260036020526040812080546001929061180c9084906126ae565b90915550506001600160a01b038216600090815260036020526040812080546001929061183a9084906125d2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826118a88584611be4565b14949350505050565b610f1c828260405180602001604052806000815250611c29565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561197f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109e1565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119f78484846116f4565b611a0384848484611c5c565b6112a55760405162461bcd60e51b81526004016109e1906126c5565b6060600b8054610834906124e3565b606081611a525750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a7c5780611a6681612598565b9150611a759050600a8361272d565b9150611a56565b60008167ffffffffffffffff811115611a9757611a97612335565b6040519080825280601f01601f191660200182016040528015611ac1576020820181803683370190505b5090505b84156116ec57611ad66001836126ae565b9150611ae3600a86612741565b611aee9060306125d2565b60f81b818381518110611b0357611b0361256c565b60200101906001600160f81b031916908160001a905350611b25600a8661272d565b9450611ac5565b6001600160a01b038316611b8757611b8281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611baa565b816001600160a01b0316836001600160a01b031614611baa57611baa8382611d5a565b6001600160a01b038216611bc157610a8281611df7565b826001600160a01b0316826001600160a01b031614610a8257610a828282611ea6565b600081815b8451811015610ca157611c1582868381518110611c0857611c0861256c565b6020026020010151611eea565b915080611c2181612598565b915050611be9565b611c338383611f16565b611c406000848484611c5c565b610a825760405162461bcd60e51b81526004016109e1906126c5565b60006001600160a01b0384163b15611d4f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ca0903390899088908890600401612755565b6020604051808303816000875af1925050508015611cdb575060408051601f3d908101601f19168201909252611cd891810190612792565b60015b611d35573d808015611d09576040519150601f19603f3d011682016040523d82523d6000602084013e611d0e565b606091505b508051611d2d5760405162461bcd60e51b81526004016109e1906126c5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116ec565b506001949350505050565b60006001611d6784610f8d565b611d7191906126ae565b600083815260076020526040902054909150808214611dc4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e09906001906126ae565b60008381526009602052604081205460088054939450909284908110611e3157611e3161256c565b906000526020600020015490508060088381548110611e5257611e5261256c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e8a57611e8a6127af565b6001900381819060005260206000200160009055905550505050565b6000611eb183610f8d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000818310611f0657600082815260208490526040902061143e565b5060009182526020526040902090565b6001600160a01b038216611f6c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109e1565b6000818152600260205260409020546001600160a01b031615611fd15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109e1565b611fdd60008383611b2c565b6001600160a01b03821660009081526003602052604081208054600192906120069084906125d2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612070906124e3565b90600052602060002090601f01602090048101928261209257600085556120d8565b82601f106120ab57805160ff19168380011785556120d8565b828001600101855582156120d8579182015b828111156120d85782518255916020019190600101906120bd565b506120e49291506120e8565b5090565b5b808211156120e457600081556001016120e9565b6001600160e01b031981168114610be957600080fd5b60006020828403121561212557600080fd5b813561143e816120fd565b8035801515811461214057600080fd5b919050565b60006020828403121561215757600080fd5b61143e82612130565b60005b8381101561217b578181015183820152602001612163565b838111156112a55750506000910152565b600081518084526121a4816020860160208601612160565b601f01601f19169290920160200192915050565b60208152600061143e602083018461218c565b6000602082840312156121dd57600080fd5b5035919050565b80356001600160a01b038116811461214057600080fd5b6000806040838503121561220e57600080fd5b612217836121e4565b946020939093013593505050565b60006020828403121561223757600080fd5b61143e826121e4565b60008060006060848603121561225557600080fd5b61225e846121e4565b925061226c602085016121e4565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156122b457835183529284019291840191600101612298565b50909695505050505050565b600080602083850312156122d357600080fd5b823567ffffffffffffffff808211156122eb57600080fd5b818501915085601f8301126122ff57600080fd5b81358181111561230e57600080fd5b8660208260051b850101111561232357600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561236657612366612335565b604051601f8501601f19908116603f0116810190828211818310171561238e5761238e612335565b816040528093508581528686860111156123a757600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123d357600080fd5b813567ffffffffffffffff8111156123ea57600080fd5b8201601f810184136123fb57600080fd5b6116ec8482356020840161234b565b6000806040838503121561241d57600080fd5b612426836121e4565b915061243460208401612130565b90509250929050565b6000806000806080858703121561245357600080fd5b61245c856121e4565b935061246a602086016121e4565b925060408501359150606085013567ffffffffffffffff81111561248d57600080fd5b8501601f8101871361249e57600080fd5b6124ad8782356020840161234b565b91505092959194509250565b600080604083850312156124cc57600080fd5b6124d5836121e4565b9150612434602084016121e4565b600181811c908216806124f757607f821691505b6020821081141561251857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156125ac576125ac612582565b5060010190565b60008160001904831182151516156125cd576125cd612582565b500290565b600082198211156125e5576125e5612582565b500190565b6000845160206125fd8285838a01612160565b8551918401916126108184848a01612160565b8554920191600090600181811c908083168061262d57607f831692505b85831081141561264b57634e487b7160e01b85526022600452602485fd5b80801561265f57600181146126705761269d565b60ff1985168852838801955061269d565b60008b81526020902060005b858110156126955781548a82015290840190880161267c565b505083880195505b50939b9a5050505050505050505050565b6000828210156126c0576126c0612582565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261273c5761273c612717565b500490565b60008261275057612750612717565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127889083018461218c565b9695505050505050565b6000602082840312156127a457600080fd5b815161143e816120fd565b634e487b7160e01b600052603160045260246000fdfea26469706673582212203393662fe4556dd20e24da458fd94d67034be1d3ba2c48b8f702402dd117e93d64736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000034e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e46540000000000000000000000000000000000000000000000000000000000

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000034e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e46540000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): NFT
Arg [1] : _symbol (string): NFT
Arg [2] : _initBaseURI (string): NFT
Arg [3] : _initNotRevealedUri (string): NFT

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4e46540000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4e46540000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 4e46540000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [11] : 4e46540000000000000000000000000000000000000000000000000000000000


Deployed ByteCode Sourcemap

54960:5232:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48735:224;;;;;;;;;;-1:-1:-1;48735:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;48735:224:0;;;;;;;;59947:79;;;;;;;;;;-1:-1:-1;59947:79:0;;;;;:::i;:::-;;:::i;:::-;;35469:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36982:171::-;;;;;;;;;;-1:-1:-1;36982:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;36982:171:0;1878:203:1;55113:28:0;;;;;;;;;;;;;:::i;36499:417::-;;;;;;;;;;-1:-1:-1;36499:417:0;;;;;:::i;:::-;;:::i;55148:29::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;55148:29:0;2523:177:1;49375:113:0;;;;;;;;;;-1:-1:-1;49463:10:0;:17;49375:113;;55423:55;;;;;;;;;;-1:-1:-1;55423:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;55223:33;;;;;;;;;;;;;;;;37682:336;;;;;;;;;;-1:-1:-1;37682:336:0;;;;;:::i;:::-;;:::i;49043:256::-;;;;;;;;;;-1:-1:-1;49043:256:0;;;;;:::i;:::-;;:::i;59302:95::-;;;;;;;;;;-1:-1:-1;59302:95:0;;;;;:::i;:::-;;:::i;60034:155::-;;;:::i;38089:185::-;;;;;;;;;;-1:-1:-1;38089:185:0;;;;;:::i;:::-;;:::i;57864:390::-;;;;;;;;;;-1:-1:-1;57864:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;59208:86::-;;;;;;;;;;-1:-1:-1;59208:86:0;;;;;:::i;:::-;;:::i;57227:453::-;;;;;;:::i;:::-;;:::i;49565:233::-;;;;;;;;;;-1:-1:-1;49565:233:0;;;;;:::i;:::-;;:::i;55386:28::-;;;;;;;;;;-1:-1:-1;55386:28:0;;;;;;;;;;;59542:104;;;;;;;;;;-1:-1:-1;59542:104:0;;;;;:::i;:::-;;:::i;55307:26::-;;;;;;;;;;-1:-1:-1;55307:26:0;;;;;;;;35180:222;;;;;;;;;;-1:-1:-1;35180:222:0;;;;;:::i;:::-;;:::i;55041:21::-;;;;;;;;;;;;;:::i;34911:207::-;;;;;;;;;;-1:-1:-1;34911:207:0;;;;;:::i;:::-;;:::i;13998:103::-;;;;;;;;;;;;;:::i;59412:122::-;;;;;;;;;;-1:-1:-1;59412:122:0;;;;;:::i;:::-;;:::i;13350:87::-;;;;;;;;;;-1:-1:-1;13423:6:0;;-1:-1:-1;;;;;13423:6:0;13350:87;;35638:104;;;;;;;;;;;;;:::i;55340:34::-;;;;;;;;;;-1:-1:-1;55340:34:0;;;;;;;;;;;55949:714;;;;;;:::i;:::-;;:::i;37225:155::-;;;;;;;;;;-1:-1:-1;37225:155:0;;;;;:::i;:::-;;:::i;59013:69::-;;;;;;;;;;;;;:::i;55493:34::-;;;;;;;;;;;;;;;;38345:323;;;;;;;;;;-1:-1:-1;38345:323:0;;;;;:::i;:::-;;:::i;55263:37::-;;;;;;;;;;;;;;;;57688:122;;;;;;;;;;-1:-1:-1;57688:122:0;;;;;:::i;:::-;;:::i;55069:37::-;;;;;;;;;;;;;:::i;58262:725::-;;;;;;;;;;-1:-1:-1;58262:725:0;;;;;:::i;:::-;;:::i;59090:110::-;;;;;;;;;;-1:-1:-1;59090:110:0;;;;;:::i;:::-;;:::i;55184:32::-;;;;;;;;;;;;;;;;59654:151;;;;;;;;;;-1:-1:-1;59654:151:0;;;;;:::i;:::-;;:::i;37451:164::-;;;;;;;;;;-1:-1:-1;37451:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37572:25:0;;;37548:4;37572:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37451:164;59813:126;;;;;;;;;;-1:-1:-1;59813:126:0;;;;;:::i;:::-;;:::i;14256:201::-;;;;;;;;;;-1:-1:-1;14256:201:0;;;;;:::i;:::-;;:::i;48735:224::-;48837:4;-1:-1:-1;;;;;;48861:50:0;;-1:-1:-1;;;48861:50:0;;:90;;;48915:36;48939:11;48915:23;:36::i;:::-;48854:97;48735:224;-1:-1:-1;;48735:224:0:o;59947:79::-;13236:13;:11;:13::i;:::-;60003:6:::1;:15:::0;;-1:-1:-1;;60003:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59947:79::o;35469:100::-;35523:13;35556:5;35549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35469:100;:::o;36982:171::-;37058:7;37078:23;37093:7;37078:14;:23::i;:::-;-1:-1:-1;37121:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37121:24:0;;36982:171::o;55113:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36499:417::-;36580:13;36596:23;36611:7;36596:14;:23::i;:::-;36580:39;;36644:5;-1:-1:-1;;;;;36638:11:0;:2;-1:-1:-1;;;;;36638:11:0;;;36630:57;;;;-1:-1:-1;;;36630:57:0;;7861:2:1;36630:57:0;;;7843:21:1;7900:2;7880:18;;;7873:30;7939:34;7919:18;;;7912:62;-1:-1:-1;;;7990:18:1;;;7983:31;8031:19;;36630:57:0;;;;;;;;;11981:10;-1:-1:-1;;;;;36722:21:0;;;;:62;;-1:-1:-1;36747:37:0;36764:5;11981:10;37451:164;:::i;36747:37::-;36700:174;;;;-1:-1:-1;;;36700:174:0;;8263:2:1;36700:174:0;;;8245:21:1;8302:2;8282:18;;;8275:30;8341:34;8321:18;;;8314:62;8412:32;8392:18;;;8385:60;8462:19;;36700:174:0;8061:426:1;36700:174:0;36887:21;36896:2;36900:7;36887:8;:21::i;:::-;36569:347;36499:417;;:::o;37682:336::-;37877:41;11981:10;37910:7;37877:18;:41::i;:::-;37869:100;;;;-1:-1:-1;;;37869:100:0;;;;;;;:::i;:::-;37982:28;37992:4;37998:2;38002:7;37982:9;:28::i;49043:256::-;49140:7;49176:23;49193:5;49176:16;:23::i;:::-;49168:5;:31;49160:87;;;;-1:-1:-1;;;49160:87:0;;9109:2:1;49160:87:0;;;9091:21:1;9148:2;9128:18;;;9121:30;9187:34;9167:18;;;9160:62;-1:-1:-1;;;9238:18:1;;;9231:41;9289:19;;49160:87:0;8907:407:1;49160:87:0;-1:-1:-1;;;;;;49265:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;49043:256::o;59302:95::-;13236:13;:11;:13::i;:::-;59367:15:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;59367:24:0;;::::1;::::0;;;::::1;::::0;;59302:95::o;60034:155::-;13236:13;:11;:13::i;:::-;60091:7:::1;60112;13423:6:::0;;-1:-1:-1;;;;;13423:6:0;;13350:87;60112:7:::1;-1:-1:-1::0;;;;;60104:21:0::1;60133;60104:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60090:69;;;60178:2;60170:11;;;::::0;::::1;;60079:110;60034:155::o:0;38089:185::-;38227:39;38244:4;38250:2;38254:7;38227:39;;;;;;;;;;;;:16;:39::i;57864:390::-;57951:16;57985:23;58011:17;58021:6;58011:9;:17::i;:::-;57985:43;;58039:25;58081:15;58067:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58067:30:0;;58039:58;;58113:9;58108:113;58128:15;58124:1;:19;58108:113;;;58179:30;58199:6;58207:1;58179:19;:30::i;:::-;58165:8;58174:1;58165:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;58145:3;;;;:::i;:::-;;;;58108:113;;;-1:-1:-1;58238:8:0;57864:390;-1:-1:-1;;;57864:390:0:o;59208:86::-;13236:13;:11;:13::i;:::-;59271:4:::1;:15:::0;59208:86::o;57227:453::-;57349:11;;57362:19;;56784:144;56821:11;;56784:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56884:28:0;;-1:-1:-1;;56901:10:0;10082:2:1;10078:15;10074:53;56884:28:0;;;10062:66:1;56851:4:0;;-1:-1:-1;10144:12:1;;;-1:-1:-1;56884:28:0;;;;;;;;;;;;56874:39;;;;;;56784:18;:144::i;:::-;56762:224;;;;-1:-1:-1;;;56762:224:0;;10369:2:1;56762:224:0;;;10351:21:1;10408:2;10388:18;;;10381:30;10447:32;10427:18;;;10420:60;10497:18;;56762:224:0;10167:354:1;56762:224:0;57409:4:::1;::::0;57415:1:::1;57138:9;57112:22;57415:1:::0;57409:4;57112:22:::1;:::i;:::-;:35;57090:109;;;::::0;-1:-1:-1;;;57090:109:0;;10901:2:1;57090:109:0::1;::::0;::::1;10883:21:1::0;10940:2;10920:18;;;10913:30;10979:26;10959:18;;;10952:54;11023:18;;57090:109:0::1;10699:348:1::0;57090:109:0::1;57467:15:::2;::::0;::::2;;::::0;;::::2;;:23;;:15;:23;57464:206;;;57518:14;57535:13;49463:10:::0;:17;;49375:113;57535:13:::2;57581:9;::::0;57518:30;;-1:-1:-1;57567:10:0::2;57518:30:::0;57576:1:::2;57567:10;:::i;:::-;:23;;57559:58;;;::::0;-1:-1:-1;;;57559:58:0;;11387:2:1;57559:58:0::2;::::0;::::2;11369:21:1::0;11426:2;11406:18;;;11399:30;-1:-1:-1;;;11445:18:1;;;11438:52;11507:18;;57559:58:0::2;11185:346:1::0;57559:58:0::2;57628:33;57638:10;57650;:6:::0;57659:1:::2;57650:10;:::i;:::-;57628:9;:33::i;:::-;57492:178;57464:206;56997:1:::1;;57227:453:::0;;;;;:::o;49565:233::-;49640:7;49676:30;49463:10;:17;;49375:113;49676:30;49668:5;:38;49660:95;;;;-1:-1:-1;;;49660:95:0;;11738:2:1;49660:95:0;;;11720:21:1;11777:2;11757:18;;;11750:30;11816:34;11796:18;;;11789:62;-1:-1:-1;;;11867:18:1;;;11860:42;11919:19;;49660:95:0;11536:408:1;49660:95:0;49773:10;49784:5;49773:17;;;;;;;;:::i;:::-;;;;;;;;;49766:24;;49565:233;;;:::o;59542:104::-;13236:13;:11;:13::i;:::-;59617:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;59542:104:::0;:::o;35180:222::-;35252:7;35288:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35288:16:0;35323:19;35315:56;;;;-1:-1:-1;;;35315:56:0;;12151:2:1;35315:56:0;;;12133:21:1;12190:2;12170:18;;;12163:30;-1:-1:-1;;;12209:18:1;;;12202:54;12273:18;;35315:56:0;11949:348:1;55041:21:0;;;;;;;:::i;34911:207::-;34983:7;-1:-1:-1;;;;;35011:19:0;;35003:73;;;;-1:-1:-1;;;35003:73:0;;12504:2:1;35003:73:0;;;12486:21:1;12543:2;12523:18;;;12516:30;12582:34;12562:18;;;12555:62;-1:-1:-1;;;12633:18:1;;;12626:39;12682:19;;35003:73:0;12302:405:1;35003:73:0;-1:-1:-1;;;;;;35094:16:0;;;;;:9;:16;;;;;;;34911:207::o;13998:103::-;13236:13;:11;:13::i;:::-;14063:30:::1;14090:1;14063:18;:30::i;:::-;13998:103::o:0;59412:122::-;13236:13;:11;:13::i;:::-;59493::::1;:33:::0;59412:122::o;35638:104::-;35694:13;35727:7;35720:14;;;;;:::i;55949:714::-;56019:6;;;;56018:7;56010:42;;;;-1:-1:-1;;;56010:42:0;;12914:2:1;56010:42:0;;;12896:21:1;12953:2;12933:18;;;12926:30;-1:-1:-1;;;12972:18:1;;;12965:52;13034:18;;56010:42:0;12712:346:1;56010:42:0;56063:14;56080:13;49463:10;:17;;49375:113;56080:13;56063:30;;56126:1;56112:11;:15;56104:55;;;;-1:-1:-1;;;56104:55:0;;13265:2:1;56104:55:0;;;13247:21:1;13304:2;13284:18;;;13277:30;13343:29;13323:18;;;13316:57;13390:18;;56104:55:0;13063:351:1;56104:55:0;56207:13;;56192:11;:28;;56170:114;;;;-1:-1:-1;;;56170:114:0;;13621:2:1;56170:114:0;;;13603:21:1;13660:2;13640:18;;;13633:30;13699:34;13679:18;;;13672:62;-1:-1:-1;;;13750:18:1;;;13743:34;13794:19;;56170:114:0;13419:400:1;56170:114:0;56327:9;;56303:20;56312:11;56303:6;:20;:::i;:::-;:33;;56295:68;;;;-1:-1:-1;;;56295:68:0;;11387:2:1;56295:68:0;;;11369:21:1;11426:2;11406:18;;;11399:30;-1:-1:-1;;;11445:18:1;;;11438:52;11507:18;;56295:68:0;11185:346:1;56295:68:0;13423:6;;-1:-1:-1;;;;;13423:6:0;56380:10;:21;56376:116;;56446:11;56439:4;;:18;;;;:::i;:::-;56426:9;:31;;56418:62;;;;-1:-1:-1;;;56418:62:0;;14026:2:1;56418:62:0;;;14008:21:1;14065:2;14045:18;;;14038:30;-1:-1:-1;;;14084:18:1;;;14077:48;14142:18;;56418:62:0;13824:342:1;56418:62:0;56521:1;56504:152;56529:11;56524:1;:16;56504:152;;56583:10;56562:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;56611:33:0;;-1:-1:-1;56621:10:0;56633;56642:1;56633:6;:10;:::i;56611:33::-;56542:3;;;;:::i;:::-;;;;56504:152;;37225:155;37320:52;11981:10;37353:8;37363;37320:18;:52::i;59013:69::-;13236:13;:11;:13::i;:::-;59059:8:::1;:15:::0;;-1:-1:-1;;59059:15:0::1;::::0;::::1;::::0;;59013:69::o;38345:323::-;38519:41;11981:10;38552:7;38519:18;:41::i;:::-;38511:100;;;;-1:-1:-1;;;38511:100:0;;;;;;;:::i;:::-;38622:38;38636:4;38642:2;38646:7;38655:4;38622:13;:38::i;:::-;38345:323;;;;:::o;57688:122::-;13236:13;:11;:13::i;:::-;57770:19:::1;:32:::0;57688:122::o;55069:37::-;;;;;;;:::i;58262:725::-;40240:4;40264:16;;;:7;:16;;;;;;58380:13;;-1:-1:-1;;;;;40264:16:0;58411:113;;;;-1:-1:-1;;;58411:113:0;;14373:2:1;58411:113:0;;;14355:21:1;14412:2;14392:18;;;14385:30;14451:34;14431:18;;;14424:62;-1:-1:-1;;;14502:18:1;;;14495:45;14557:19;;58411:113:0;14171:411:1;58411:113:0;58541:8;;;;;;;58537:71;;58582:14;58575:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58262:725;;;:::o;58537:71::-;58620:28;58651:10;:8;:10::i;:::-;58620:41;;58723:1;58698:14;58692:28;:32;:287;;;;;;;;;;;;;;;;;58816:14;58857:18;:7;:16;:18::i;:::-;58902:13;58773:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58692:287;58672:307;58262:725;-1:-1:-1;;;58262:725:0:o;59090:110::-;13236:13;:11;:13::i;:::-;59165:18:::1;:27:::0;59090:110::o;59654:151::-;13236:13;:11;:13::i;:::-;59764:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;59813:126::-:0;13236:13;:11;:13::i;:::-;59899:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;14256:201::-:0;13236:13;:11;:13::i;:::-;-1:-1:-1;;;;;14345:22:0;::::1;14337:73;;;::::0;-1:-1:-1;;;14337:73:0;;16447:2:1;14337:73:0::1;::::0;::::1;16429:21:1::0;16486:2;16466:18;;;16459:30;16525:34;16505:18;;;16498:62;-1:-1:-1;;;16576:18:1;;;16569:36;16622:19;;14337:73:0::1;16245:402:1::0;14337:73:0::1;14421:28;14440:8;14421:18;:28::i;34542:305::-:0;34644:4;-1:-1:-1;;;;;;34681:40:0;;-1:-1:-1;;;34681:40:0;;:105;;-1:-1:-1;;;;;;;34738:48:0;;-1:-1:-1;;;34738:48:0;34681:105;:158;;;-1:-1:-1;;;;;;;;;;26313:40:0;;;34803:36;26204:157;13515:132;13423:6;;-1:-1:-1;;;;;13423:6:0;11981:10;13579:23;13571:68;;;;-1:-1:-1;;;13571:68:0;;16854:2:1;13571:68:0;;;16836:21:1;;;16873:18;;;16866:30;16932:34;16912:18;;;16905:62;16984:18;;13571:68:0;16652:356:1;44957:135:0;40240:4;40264:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40264:16:0;45031:53;;;;-1:-1:-1;;;45031:53:0;;12151:2:1;45031:53:0;;;12133:21:1;12190:2;12170:18;;;12163:30;-1:-1:-1;;;12209:18:1;;;12202:54;12273:18;;45031:53:0;11949:348:1;44236:174:0;44311:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44311:29:0;-1:-1:-1;;;;;44311:29:0;;;;;;;;:24;;44365:23;44311:24;44365:14;:23::i;:::-;-1:-1:-1;;;;;44356:46:0;;;;;;;;;;;44236:174;;:::o;40469:264::-;40562:4;40579:13;40595:23;40610:7;40595:14;:23::i;:::-;40579:39;;40648:5;-1:-1:-1;;;;;40637:16:0;:7;-1:-1:-1;;;;;40637:16:0;;:52;;;-1:-1:-1;;;;;;37572:25:0;;;37548:4;37572:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40657:32;40637:87;;;;40717:7;-1:-1:-1;;;;;40693:31:0;:20;40705:7;40693:11;:20::i;:::-;-1:-1:-1;;;;;40693:31:0;;40637:87;40629:96;40469:264;-1:-1:-1;;;;40469:264:0:o;43492:625::-;43651:4;-1:-1:-1;;;;;43624:31:0;:23;43639:7;43624:14;:23::i;:::-;-1:-1:-1;;;;;43624:31:0;;43616:81;;;;-1:-1:-1;;;43616:81:0;;17215:2:1;43616:81:0;;;17197:21:1;17254:2;17234:18;;;17227:30;17293:34;17273:18;;;17266:62;-1:-1:-1;;;17344:18:1;;;17337:35;17389:19;;43616:81:0;17013:401:1;43616:81:0;-1:-1:-1;;;;;43716:16:0;;43708:65;;;;-1:-1:-1;;;43708:65:0;;17621:2:1;43708:65:0;;;17603:21:1;17660:2;17640:18;;;17633:30;17699:34;17679:18;;;17672:62;-1:-1:-1;;;17750:18:1;;;17743:34;17794:19;;43708:65:0;17419:400:1;43708:65:0;43786:39;43807:4;43813:2;43817:7;43786:20;:39::i;:::-;43890:29;43907:1;43911:7;43890:8;:29::i;:::-;-1:-1:-1;;;;;43932:15:0;;;;;;:9;:15;;;;;:20;;43951:1;;43932:15;:20;;43951:1;;43932:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43963:13:0;;;;;;:9;:13;;;;;:18;;43980:1;;43963:13;:18;;43980:1;;43963:18;:::i;:::-;;;;-1:-1:-1;;43992:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43992:21:0;-1:-1:-1;;;;;43992:21:0;;;;;;;;;44031:27;;43992:16;;44031:27;;;;;;;36569:347;36499:417;;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;;1219:190;-1:-1:-1;;;;1219:190:0:o;41075:110::-;41151:26;41161:2;41165:7;41151:26;;;;;;;;;;;;:9;:26::i;14617:191::-;14710:6;;;-1:-1:-1;;;;;14727:17:0;;;-1:-1:-1;;;;;;14727:17:0;;;;;;;14760:40;;14710:6;;;14727:17;14710:6;;14760:40;;14691:16;;14760:40;14680:128;14617:191;:::o;44553:315::-;44708:8;-1:-1:-1;;;;;44699:17:0;:5;-1:-1:-1;;;;;44699:17:0;;;44691:55;;;;-1:-1:-1;;;44691:55:0;;18156:2:1;44691:55:0;;;18138:21:1;18195:2;18175:18;;;18168:30;18234:27;18214:18;;;18207:55;18279:18;;44691:55:0;17954:349:1;44691:55:0;-1:-1:-1;;;;;44757:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;44757:46:0;;;;;;;;;;44819:41;;540::1;;;44819::0;;513:18:1;44819:41:0;;;;;;;44553:315;;;:::o;39549:313::-;39705:28;39715:4;39721:2;39725:7;39705:9;:28::i;:::-;39752:47;39775:4;39781:2;39785:7;39794:4;39752:22;:47::i;:::-;39744:110;;;;-1:-1:-1;;;39744:110:0;;;;;;;:::i;55828:108::-;55888:13;55921:7;55914:14;;;;;:::i;9155:723::-;9211:13;9432:10;9428:53;;-1:-1:-1;;9459:10:0;;;;;;;;;;;;-1:-1:-1;;;9459:10:0;;;;;9155:723::o;9428:53::-;9506:5;9491:12;9547:78;9554:9;;9547:78;;9580:8;;;;:::i;:::-;;-1:-1:-1;9603:10:0;;-1:-1:-1;9611:2:0;9603:10;;:::i;:::-;;;9547:78;;;9635:19;9667:6;9657:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9657:17:0;;9635:39;;9685:154;9692:10;;9685:154;;9719:11;9729:1;9719:11;;:::i;:::-;;-1:-1:-1;9788:10:0;9796:2;9788:5;:10;:::i;:::-;9775:24;;:2;:24;:::i;:::-;9762:39;;9745:6;9752;9745:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9745:56:0;;;;;;;;-1:-1:-1;9816:11:0;9825:2;9816:11;;:::i;:::-;;;9685:154;;50411:589;-1:-1:-1;;;;;50617:18:0;;50613:187;;50652:40;50684:7;51827:10;:17;;51800:24;;;;:15;:24;;;;;:44;;;51855:24;;;;;;;;;;;;51723:164;50652:40;50613:187;;;50722:2;-1:-1:-1;;;;;50714:10:0;:4;-1:-1:-1;;;;;50714:10:0;;50710:90;;50741:47;50774:4;50780:7;50741:32;:47::i;:::-;-1:-1:-1;;;;;50814:16:0;;50810:183;;50847:45;50884:7;50847:36;:45::i;50810:183::-;50920:4;-1:-1:-1;;;;;50914:10:0;:2;-1:-1:-1;;;;;50914:10:0;;50910:83;;50941:40;50969:2;50973:7;50941:27;:40::i;2086:296::-;2169:7;2212:4;2169:7;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;2300:9;:33::i;:::-;2285:48;-1:-1:-1;2265:3:0;;;;:::i;:::-;;;;2227:118;;41412:319;41541:18;41547:2;41551:7;41541:5;:18::i;:::-;41592:53;41623:1;41627:2;41631:7;41640:4;41592:22;:53::i;:::-;41570:153;;;;-1:-1:-1;;;41570:153:0;;;;;;;:::i;45656:853::-;45810:4;-1:-1:-1;;;;;45831:13:0;;16343:19;:23;45827:675;;45867:71;;-1:-1:-1;;;45867:71:0;;-1:-1:-1;;;;;45867:36:0;;;;;:71;;11981:10;;45918:4;;45924:7;;45933:4;;45867:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45867:71:0;;;;;;;;-1:-1:-1;;45867:71:0;;;;;;;;;;;;:::i;:::-;;;45863:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46108:13:0;;46104:328;;46151:60;;-1:-1:-1;;;46151:60:0;;;;;;;:::i;46104:328::-;46382:6;46376:13;46367:6;46363:2;46359:15;46352:38;45863:584;-1:-1:-1;;;;;;45989:51:0;-1:-1:-1;;;45989:51:0;;-1:-1:-1;45982:58:0;;45827:675;-1:-1:-1;46486:4:0;45656:853;;;;;;:::o;52514:988::-;52780:22;52830:1;52805:22;52822:4;52805:16;:22::i;:::-;:26;;;;:::i;:::-;52842:18;52863:26;;;:17;:26;;;;;;52780:51;;-1:-1:-1;52996:28:0;;;52992:328;;-1:-1:-1;;;;;53063:18:0;;53041:19;53063:18;;;:12;:18;;;;;;;;:34;;;;;;;;;53114:30;;;;;;:44;;;53231:30;;:17;:30;;;;;:43;;;52992:328;-1:-1:-1;53416:26:0;;;;:17;:26;;;;;;;;53409:33;;;-1:-1:-1;;;;;53460:18:0;;;;;:12;:18;;;;;:34;;;;;;;53453:41;52514:988::o;53797:1079::-;54075:10;:17;54050:22;;54075:21;;54095:1;;54075:21;:::i;:::-;54107:18;54128:24;;;:15;:24;;;;;;54501:10;:26;;54050:46;;-1:-1:-1;54128:24:0;;54050:46;;54501:26;;;;;;:::i;:::-;;;;;;;;;54479:48;;54565:11;54540:10;54551;54540:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;54645:28;;;:15;:28;;;;;;;:41;;;54817:24;;;;;54810:31;54852:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;53868:1008;;;53797:1079;:::o;51301:221::-;51386:14;51403:20;51420:2;51403:16;:20::i;:::-;-1:-1:-1;;;;;51434:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;51479:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;51301:221:0:o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8383:51;;;-1:-1:-1;8518:13:0;8612:15;;;8648:4;8641:15;8695:4;8679:21;;;8293:149::o;42067:439::-;-1:-1:-1;;;;;42147:16:0;;42139:61;;;;-1:-1:-1;;;42139:61:0;;20183:2:1;42139:61:0;;;20165:21:1;;;20202:18;;;20195:30;20261:34;20241:18;;;20234:62;20313:18;;42139:61:0;19981:356:1;42139:61:0;40240:4;40264:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40264:16:0;:30;42211:58;;;;-1:-1:-1;;;42211:58:0;;20544:2:1;42211:58:0;;;20526:21:1;20583:2;20563:18;;;20556:30;20622;20602:18;;;20595:58;20670:18;;42211:58:0;20342:352:1;42211:58:0;42282:45;42311:1;42315:2;42319:7;42282:20;:45::i;:::-;-1:-1:-1;;;;;42340:13:0;;;;;;:9;:13;;;;;:18;;42357:1;;42340:13;:18;;42357:1;;42340:18;:::i;:::-;;;;-1:-1:-1;;42369:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42369:21:0;-1:-1:-1;;;;;42369:21:0;;;;;;;;42408:33;;42369:16;;;42408:33;;42369:16;;42408:33;59617:21:::1;59542:104:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:186::-;2764:6;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;2856:29;2875:9;2856:29;:::i;2896:328::-;2973:6;2981;2989;3042:2;3030:9;3021:7;3017:23;3013:32;3010:52;;;3058:1;3055;3048:12;3010:52;3081:29;3100:9;3081:29;:::i;:::-;3071:39;;3129:38;3163:2;3152:9;3148:18;3129:38;:::i;:::-;3119:48;;3214:2;3203:9;3199:18;3186:32;3176:42;;2896:328;;;;;:::o;3229:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:1;;3229:632;-1:-1:-1;;;;;;3229:632:1:o;3866:615::-;3952:6;3960;4013:2;4001:9;3992:7;3988:23;3984:32;3981:52;;;4029:1;4026;4019:12;3981:52;4069:9;4056:23;4098:18;4139:2;4131:6;4128:14;4125:34;;;4155:1;4152;4145:12;4125:34;4193:6;4182:9;4178:22;4168:32;;4238:7;4231:4;4227:2;4223:13;4219:27;4209:55;;4260:1;4257;4250:12;4209:55;4300:2;4287:16;4326:2;4318:6;4315:14;4312:34;;;4342:1;4339;4332:12;4312:34;4395:7;4390:2;4380:6;4377:1;4373:14;4369:2;4365:23;4361:32;4358:45;4355:65;;;4416:1;4413;4406:12;4355:65;4447:2;4439:11;;;;;4469:6;;-1:-1:-1;3866:615:1;;-1:-1:-1;;;;3866:615:1:o;4486:127::-;4547:10;4542:3;4538:20;4535:1;4528:31;4578:4;4575:1;4568:15;4602:4;4599:1;4592:15;4618:632;4683:5;4713:18;4754:2;4746:6;4743:14;4740:40;;;4760:18;;:::i;:::-;4835:2;4829:9;4803:2;4889:15;;-1:-1:-1;;4885:24:1;;;4911:2;4881:33;4877:42;4865:55;;;4935:18;;;4955:22;;;4932:46;4929:72;;;4981:18;;:::i;:::-;5021:10;5017:2;5010:22;5050:6;5041:15;;5080:6;5072;5065:22;5120:3;5111:6;5106:3;5102:16;5099:25;5096:45;;;5137:1;5134;5127:12;5096:45;5187:6;5182:3;5175:4;5167:6;5163:17;5150:44;5242:1;5235:4;5226:6;5218;5214:19;5210:30;5203:41;;;;4618:632;;;;;:::o;5255:451::-;5324:6;5377:2;5365:9;5356:7;5352:23;5348:32;5345:52;;;5393:1;5390;5383:12;5345:52;5433:9;5420:23;5466:18;5458:6;5455:30;5452:50;;;5498:1;5495;5488:12;5452:50;5521:22;;5574:4;5566:13;;5562:27;-1:-1:-1;5552:55:1;;5603:1;5600;5593:12;5552:55;5626:74;5692:7;5687:2;5674:16;5669:2;5665;5661:11;5626:74;:::i;5711:254::-;5776:6;5784;5837:2;5825:9;5816:7;5812:23;5808:32;5805:52;;;5853:1;5850;5843:12;5805:52;5876:29;5895:9;5876:29;:::i;:::-;5866:39;;5924:35;5955:2;5944:9;5940:18;5924:35;:::i;:::-;5914:45;;5711:254;;;;;:::o;6152:667::-;6247:6;6255;6263;6271;6324:3;6312:9;6303:7;6299:23;6295:33;6292:53;;;6341:1;6338;6331:12;6292:53;6364:29;6383:9;6364:29;:::i;:::-;6354:39;;6412:38;6446:2;6435:9;6431:18;6412:38;:::i;:::-;6402:48;;6497:2;6486:9;6482:18;6469:32;6459:42;;6552:2;6541:9;6537:18;6524:32;6579:18;6571:6;6568:30;6565:50;;;6611:1;6608;6601:12;6565:50;6634:22;;6687:4;6679:13;;6675:27;-1:-1:-1;6665:55:1;;6716:1;6713;6706:12;6665:55;6739:74;6805:7;6800:2;6787:16;6782:2;6778;6774:11;6739:74;:::i;:::-;6729:84;;;6152:667;;;;;;;:::o;7009:260::-;7077:6;7085;7138:2;7126:9;7117:7;7113:23;7109:32;7106:52;;;7154:1;7151;7144:12;7106:52;7177:29;7196:9;7177:29;:::i;:::-;7167:39;;7225:38;7259:2;7248:9;7244:18;7225:38;:::i;7274:380::-;7353:1;7349:12;;;;7396;;;7417:61;;7471:4;7463:6;7459:17;7449:27;;7417:61;7524:2;7516:6;7513:14;7493:18;7490:38;7487:161;;;7570:10;7565:3;7561:20;7558:1;7551:31;7605:4;7602:1;7595:15;7633:4;7630:1;7623:15;7487:161;;7274:380;;;:::o;8492:410::-;8694:2;8676:21;;;8733:2;8713:18;;;8706:30;8772:34;8767:2;8752:18;;8745:62;-1:-1:-1;;;8838:2:1;8823:18;;8816:44;8892:3;8877:19;;8492:410::o;9529:127::-;9590:10;9585:3;9581:20;9578:1;9571:31;9621:4;9618:1;9611:15;9645:4;9642:1;9635:15;9661:127;9722:10;9717:3;9713:20;9710:1;9703:31;9753:4;9750:1;9743:15;9777:4;9774:1;9767:15;9793:135;9832:3;-1:-1:-1;;9853:17:1;;9850:43;;;9873:18;;:::i;:::-;-1:-1:-1;9920:1:1;9909:13;;9793:135::o;10526:168::-;10566:7;10632:1;10628;10624:6;10620:14;10617:1;10614:21;10609:1;10602:9;10595:17;10591:45;10588:71;;;10639:18;;:::i;:::-;-1:-1:-1;10679:9:1;;10526:168::o;11052:128::-;11092:3;11123:1;11119:6;11116:1;11113:13;11110:39;;;11129:18;;:::i;:::-;-1:-1:-1;11165:9:1;;11052:128::o;14713:1527::-;14937:3;14975:6;14969:13;15001:4;15014:51;15058:6;15053:3;15048:2;15040:6;15036:15;15014:51;:::i;:::-;15128:13;;15087:16;;;;15150:55;15128:13;15087:16;15172:15;;;15150:55;:::i;:::-;15294:13;;15227:20;;;15267:1;;15354;15376:18;;;;15429;;;;15456:93;;15534:4;15524:8;15520:19;15508:31;;15456:93;15597:2;15587:8;15584:16;15564:18;15561:40;15558:167;;;-1:-1:-1;;;15624:33:1;;15680:4;15677:1;15670:15;15710:4;15631:3;15698:17;15558:167;15741:18;15768:110;;;;15892:1;15887:328;;;;15734:481;;15768:110;-1:-1:-1;;15803:24:1;;15789:39;;15848:20;;;;-1:-1:-1;15768:110:1;;15887:328;14660:1;14653:14;;;14697:4;14684:18;;15982:1;15996:169;16010:8;16007:1;16004:15;15996:169;;;16092:14;;16077:13;;;16070:37;16135:16;;;;16027:10;;15996:169;;;16000:3;;16196:8;16189:5;16185:20;16178:27;;15734:481;-1:-1:-1;16231:3:1;;14713:1527;-1:-1:-1;;;;;;;;;;;14713:1527:1:o;17824:125::-;17864:4;17892:1;17889;17886:8;17883:34;;;17897:18;;:::i;:::-;-1:-1:-1;17934:9:1;;17824:125::o;18308:414::-;18510:2;18492:21;;;18549:2;18529:18;;;18522:30;18588:34;18583:2;18568:18;;18561:62;-1:-1:-1;;;18654:2:1;18639:18;;18632:48;18712:3;18697:19;;18308:414::o;18727:127::-;18788:10;18783:3;18779:20;18776:1;18769:31;18819:4;18816:1;18809:15;18843:4;18840:1;18833:15;18859:120;18899:1;18925;18915:35;;18930:18;;:::i;:::-;-1:-1:-1;18964:9:1;;18859:120::o;18984:112::-;19016:1;19042;19032:35;;19047:18;;:::i;:::-;-1:-1:-1;19081:9:1;;18984:112::o;19101:489::-;-1:-1:-1;;;;;19370:15:1;;;19352:34;;19422:15;;19417:2;19402:18;;19395:43;19469:2;19454:18;;19447:34;;;19517:3;19512:2;19497:18;;19490:31;;;19295:4;;19538:46;;19564:19;;19556:6;19538:46;:::i;:::-;19530:54;19101:489;-1:-1:-1;;;;;;19101:489:1:o;19595:249::-;19664:6;19717:2;19705:9;19696:7;19692:23;19688:32;19685:52;;;19733:1;19730;19723:12;19685:52;19765:9;19759:16;19784:30;19808:5;19784:30;:::i;19849:127::-;19910:10;19905:3;19901:20;19898:1;19891:31;19941:4;19938:1;19931:15;19965:4;19962:1;19955:15

Swarm Source

ipfs://3393662fe4556dd20e24da458fd94d67034be1d3ba2c48b8f702402dd117e93d
Loading