ETH Price: $3,243.53 (-0.50%)
Gas: 2 Gwei

Token

MetamorphosisNFT (MORPH)
 

Overview

Max Total Supply

397 MORPH

Holders

35

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MORPH
0x31c0fe5ed07714cb1f40c619a55f58dd99a6fe42
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MetaMorphosis

Compiler Version
v0.8.7+commit.e28d00a7

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-23
*/

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


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

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

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

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

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

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

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

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert UnableDetermineTokenOwner();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: contracts/MetaMorphosis.sol


pragma solidity ^0.8.0;




contract MetaMorphosis is ERC721A, Ownable{
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 3333;
    uint256 public constant MAX_PUBLIC_MINT = 2;
    uint256 public constant MAX_WHITELIST_MINT = 2;
    uint256 public constant PUBLIC_SALE_PRICE = .039 ether;
    uint256 public constant WHITELIST_SALE_PRICE = .039 ether;

    string private  baseTokenUri;
    string public   placeholderTokenUri;

    //deploy smart contract, toggle WL, toggle WL when done, toggle publicSale 
    bool public isRevealed;
    bool public publicSale;
    bool public whiteListSale;
    bool public pause;
    bool public teamMinted;

    bytes32 private merkleRoot;

    mapping(address => uint256) public totalPublicMint;
    mapping(address => uint256) public totalWhitelistMint;

    constructor(string memory _name, string memory _symbol) ERC721A(_name, _symbol){

    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Metamorphosis NFT :: Cannot be called by a contract");
        _;
    }

    function mint(uint256 _quantity) external payable callerIsUser{
        require(publicSale, "Metamorphosis NFT :: Not Yet Active.");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Metamorphosis NFT :: Beyond Max Supply");
        require((totalPublicMint[msg.sender] +_quantity) <= MAX_PUBLIC_MINT, "Metamorphosis NFT :: Already minted 3 times!");
        require(msg.value >= (PUBLIC_SALE_PRICE * _quantity), "Metamorphosis NFT :: Below ");

        totalPublicMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function whitelistMint(bytes32[] memory _merkleProof, uint256 _quantity) external payable callerIsUser{
        require(whiteListSale, "Metamorphosis NFT :: Minting is on Pause");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Metamorphosis NFT :: Cannot mint beyond max supply");
        require((totalWhitelistMint[msg.sender] + _quantity)  <= MAX_WHITELIST_MINT, "Metamorphosis NFT :: Cannot mint beyond whitelist max mint!");
        require(msg.value >= (WHITELIST_SALE_PRICE * _quantity), "Metamorphosis NFT :: Payment is below the price");
        //create leaf node
        bytes32 sender = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, sender), "Metamorphosis NFT :: You are not whitelisted");

        totalWhitelistMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function teamMint() external onlyOwner{
        require(!teamMinted, "Metamorphosis NFT :: Team already minted");
        teamMinted = true;
        _safeMint(msg.sender, 70);
    }

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

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

        uint256 trueId = tokenId + 1;

        if(!isRevealed){
            return placeholderTokenUri;
        }
        //string memory baseURI = _baseURI();
        return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : "";
    }

    /// @dev walletOf() function shouldn't be called on-chain due to gas consumption
    function walletOf() external view returns(uint256[] memory){
        address _owner = msg.sender;
        uint256 numberOfOwnedNFT = balanceOf(_owner);
        uint256[] memory ownerIds = new uint256[](numberOfOwnedNFT);

        for(uint256 index = 0; index < numberOfOwnedNFT; index++){
            ownerIds[index] = tokenOfOwnerByIndex(_owner, index);
        }

        return ownerIds;
    }

    function setTokenUri(string memory _baseTokenUri) external onlyOwner{
        baseTokenUri = _baseTokenUri;
    }
    function setPlaceHolderUri(string memory _placeholderTokenUri) external onlyOwner{
        placeholderTokenUri = _placeholderTokenUri;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner{
        merkleRoot = _merkleRoot;
    }

    function getMerkleRoot() external view returns (bytes32){
        return merkleRoot;
    }

    function togglePause() external onlyOwner{
        pause = !pause;
    }

    function toggleWhiteListSale() external onlyOwner{
        whiteListSale = !whiteListSale;
    }

    function togglePublicSale() external onlyOwner{
        publicSale = !publicSale;
    }

    function toggleReveal() external onlyOwner{
        isRevealed = !isRevealed;
    }

    function withdraw() external onlyOwner{
        uint256 withdrawAmount_100 = address(this).balance * 100/100;
        payable(0xC9b10E81525ddCd2E50f55B395351FA3919d62AB).transfer(withdrawAmount_100);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholderTokenUri","type":"string"}],"name":"setPlaceHolderUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteListSale","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalWhitelistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620028373803806200283783398101604081905262000034916200023b565b8151829082906200004d906001906020850190620000de565b50805162000063906002906020840190620000de565b505050620000806200007a6200008860201b60201c565b6200008c565b5050620002f8565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000ec90620002a5565b90600052602060002090601f0160209004810192826200011057600085556200015b565b82601f106200012b57805160ff19168380011785556200015b565b828001600101855582156200015b579182015b828111156200015b5782518255916020019190600101906200013e565b50620001699291506200016d565b5090565b5b808211156200016957600081556001016200016e565b600082601f8301126200019657600080fd5b81516001600160401b0380821115620001b357620001b3620002e2565b604051601f8301601f19908116603f01168101908282118183101715620001de57620001de620002e2565b81604052838152602092508683858801011115620001fb57600080fd5b600091505b838210156200021f578582018301518183018401529082019062000200565b83821115620002315760008385830101525b9695505050505050565b600080604083850312156200024f57600080fd5b82516001600160401b03808211156200026757600080fd5b620002758683870162000184565b935060208501519150808211156200028c57600080fd5b506200029b8582860162000184565b9150509250929050565b600181811c90821680620002ba57607f821691505b60208210811415620002dc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61252f80620003086000396000f3fe6080604052600436106102725760003560e01c806365f130971161014f578063a22cb465116100c1578063c4ae31681161007a578063c4ae3168146106d3578063c87b56dd146106e8578063e222c7f914610708578063e8b5498d1461071d578063e985e9c51461073f578063f2fde38b1461078857600080fd5b8063a22cb4651461065e578063b0962c531461067e578063b88d4fde1461069e578063ba7a86b8146106be578063bc912e1a1461032b578063c08dfd3c1461053657600080fd5b80638456cb59116101135780638456cb59146105c257806386a173ee146105e35780638bb64a8c146106035780638da5cb5b1461061857806395d89b4114610636578063a0712d681461064b57600080fd5b806365f130971461053657806370a082311461054b578063715018a61461056b5780637cb647591461058057806383a974a2146105a057600080fd5b80632f745c59116101e857806349590657116101ac578063495906571461049d5780634cf5f7a4146104b25780634f6ccce7146104c757806354214f69146104e75780635b8ad429146105015780636352211e1461051657600080fd5b80632f745c591461041357806332cb6b0c1461043357806333bc1c5c146104495780633ccfd60b1461046857806342842e0e1461047d57600080fd5b8063081812fc1161023a578063081812fc14610346578063095ea7b31461037e57806318160ddd1461039e5780631c16521c146103b357806323b872dd146103e05780632904e6d91461040057600080fd5b806301ffc9a7146102775780630345e3cb146102ac5780630675b7c6146102e757806306fdde031461030957806307e89ec01461032b575b600080fd5b34801561028357600080fd5b506102976102923660046120df565b6107a8565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102d96102c7366004611ea7565b600d6020526000908152604090205481565b6040519081526020016102a3565b3480156102f357600080fd5b50610307610302366004612119565b610815565b005b34801561031557600080fd5b5061031e610834565b6040516102a391906122e6565b34801561033757600080fd5b506102d9668a8e4b1a3d800081565b34801561035257600080fd5b506103666103613660046120c6565b6108c6565b6040516001600160a01b0390911681526020016102a3565b34801561038a57600080fd5b50610307610399366004611fe9565b61090c565b3480156103aa57600080fd5b506000546102d9565b3480156103bf57600080fd5b506102d96103ce366004611ea7565b600c6020526000908152604090205481565b3480156103ec57600080fd5b506103076103fb366004611ef5565b61099a565b61030761040e366004612013565b6109a5565b34801561041f57600080fd5b506102d961042e366004611fe9565b610c96565b34801561043f57600080fd5b506102d9610d0581565b34801561045557600080fd5b50600a5461029790610100900460ff1681565b34801561047457600080fd5b50610307610d6b565b34801561048957600080fd5b50610307610498366004611ef5565b610dcf565b3480156104a957600080fd5b50600b546102d9565b3480156104be57600080fd5b5061031e610dea565b3480156104d357600080fd5b506102d96104e23660046120c6565b610e78565b3480156104f357600080fd5b50600a546102979060ff1681565b34801561050d57600080fd5b50610307610e9f565b34801561052257600080fd5b506103666105313660046120c6565b610ebb565b34801561054257600080fd5b506102d9600281565b34801561055757600080fd5b506102d9610566366004611ea7565b610ecd565b34801561057757600080fd5b50610307610f1b565b34801561058c57600080fd5b5061030761059b3660046120c6565b610f2f565b3480156105ac57600080fd5b506105b5610f3c565b6040516102a391906122a2565b3480156105ce57600080fd5b50600a54610297906301000000900460ff1681565b3480156105ef57600080fd5b50600a546102979062010000900460ff1681565b34801561060f57600080fd5b50610307610fdf565b34801561062457600080fd5b506007546001600160a01b0316610366565b34801561064257600080fd5b5061031e611006565b6103076106593660046120c6565b611015565b34801561066a57600080fd5b50610307610679366004611fad565b61121e565b34801561068a57600080fd5b50610307610699366004612119565b6112b4565b3480156106aa57600080fd5b506103076106b9366004611f31565b6112cf565b3480156106ca57600080fd5b50610307611309565b3480156106df57600080fd5b5061030761139d565b3480156106f457600080fd5b5061031e6107033660046120c6565b6113c6565b34801561071457600080fd5b50610307611542565b34801561072957600080fd5b50600a5461029790640100000000900460ff1681565b34801561074b57600080fd5b5061029761075a366004611ec2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561079457600080fd5b506103076107a3366004611ea7565b611567565b60006001600160e01b031982166380ac58cd60e01b14806107d957506001600160e01b03198216635b5e139f60e01b145b806107f457506001600160e01b0319821663780e9d6360e01b145b8061080f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b61081d6115dd565b8051610830906008906020840190611da3565b5050565b6060600180546108439061240b565b80601f016020809104026020016040519081016040528092919081815260200182805461086f9061240b565b80156108bc5780601f10610891576101008083540402835291602001916108bc565b820191906000526020600020905b81548152906001019060200180831161089f57829003601f168201915b5050505050905090565b60006108d3826000541190565b6108f0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061091782610ebb565b9050806001600160a01b0316836001600160a01b0316141561094c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061096c575061096a813361075a565b155b1561098a576040516367d9dca160e11b815260040160405180910390fd5b610995838383611637565b505050565b610995838383611693565b3233146109cd5760405162461bcd60e51b81526004016109c4906122f9565b60405180910390fd5b600a5462010000900460ff16610a365760405162461bcd60e51b815260206004820152602860248201527f4d6574616d6f7270686f736973204e4654203a3a204d696e74696e67206973206044820152676f6e20506175736560c01b60648201526084016109c4565b610d0581610a4360005490565b610a4d919061237d565b1115610ab65760405162461bcd60e51b815260206004820152603260248201527f4d6574616d6f7270686f736973204e4654203a3a2043616e6e6f74206d696e74604482015271206265796f6e64206d617820737570706c7960701b60648201526084016109c4565b336000908152600d6020526040902054600290610ad490839061237d565b1115610b485760405162461bcd60e51b815260206004820152603b60248201527f4d6574616d6f7270686f736973204e4654203a3a2043616e6e6f74206d696e7460448201527f206265796f6e642077686974656c697374206d6178206d696e7421000000000060648201526084016109c4565b610b5981668a8e4b1a3d80006123a9565b341015610bc05760405162461bcd60e51b815260206004820152602f60248201527f4d6574616d6f7270686f736973204e4654203a3a205061796d656e742069732060448201526e62656c6f772074686520707269636560881b60648201526084016109c4565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610c0683600b54836118b2565b610c675760405162461bcd60e51b815260206004820152602c60248201527f4d6574616d6f7270686f736973204e4654203a3a20596f7520617265206e6f7460448201526b081dda1a5d195b1a5cdd195960a21b60648201526084016109c4565b336000908152600d602052604081208054849290610c8690849061237d565b90915550610995905033836118c8565b6000610ca183610ecd565b8210610cc0576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610d59576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d1b57805192505b876001600160a01b0316836001600160a01b03161415610d505786841415610d495750935061080f92505050565b6001909301925b50600101610cc8565b50610d62612475565b50505092915050565b610d736115dd565b60006064610d8147826123a9565b610d8b9190612395565b60405190915073c9b10e81525ddcd2e50f55b395351fa3919d62ab9082156108fc029083906000818181858888f19350505050158015610830573d6000803e3d6000fd5b610995838383604051806020016040528060008152506112cf565b60098054610df79061240b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e239061240b565b8015610e705780601f10610e4557610100808354040283529160200191610e70565b820191906000526020600020905b815481529060010190602001808311610e5357829003601f168201915b505050505081565b600080548210610e9b576040516329c8c00760e21b815260040160405180910390fd5b5090565b610ea76115dd565b600a805460ff19811660ff90911615179055565b6000610ec6826118e2565b5192915050565b60006001600160a01b038216610ef6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610f236115dd565b610f2d6000611977565b565b610f376115dd565b600b55565b6060336000610f4a82610ecd565b905060008167ffffffffffffffff811115610f6757610f676124cd565b604051908082528060200260200182016040528015610f90578160200160208202803683370190505b50905060005b82811015610fd757610fa88482610c96565b828281518110610fba57610fba6124b7565b602090810291909101015280610fcf81612446565b915050610f96565b509392505050565b610fe76115dd565b600a805462ff0000198116620100009182900460ff1615909102179055565b6060600280546108439061240b565b3233146110345760405162461bcd60e51b81526004016109c4906122f9565b600a54610100900460ff166110975760405162461bcd60e51b8152602060048201526024808201527f4d6574616d6f7270686f736973204e4654203a3a204e6f74205965742041637460448201526334bb329760e11b60648201526084016109c4565b610d05816110a460005490565b6110ae919061237d565b111561110b5760405162461bcd60e51b815260206004820152602660248201527f4d6574616d6f7270686f736973204e4654203a3a204265796f6e64204d617820604482015265537570706c7960d01b60648201526084016109c4565b336000908152600c602052604090205460029061112990839061237d565b111561118c5760405162461bcd60e51b815260206004820152602c60248201527f4d6574616d6f7270686f736973204e4654203a3a20416c7265616479206d696e60448201526b74656420332074696d65732160a01b60648201526084016109c4565b61119d81668a8e4b1a3d80006123a9565b3410156111ec5760405162461bcd60e51b815260206004820152601b60248201527f4d6574616d6f7270686f736973204e4654203a3a2042656c6f7720000000000060448201526064016109c4565b336000908152600c60205260408120805483929061120b90849061237d565b9091555061121b905033826118c8565b50565b6001600160a01b0382163314156112485760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112bc6115dd565b8051610830906009906020840190611da3565b6112da848484611693565b6112e6848484846119c9565b611303576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6113116115dd565b600a54640100000000900460ff161561137d5760405162461bcd60e51b815260206004820152602860248201527f4d6574616d6f7270686f736973204e4654203a3a205465616d20616c726561646044820152671e481b5a5b9d195960c21b60648201526084016109c4565b600a805464ff000000001916640100000000179055610f2d3360466118c8565b6113a56115dd565b600a805463ff00000019811663010000009182900460ff1615909102179055565b60606113d3826000541190565b6114375760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c4565b600061144483600161237d565b600a5490915060ff166114e4576009805461145e9061240b565b80601f016020809104026020016040519081016040528092919081815260200182805461148a9061240b565b80156114d75780601f106114ac576101008083540402835291602001916114d7565b820191906000526020600020905b8154815290600101906020018083116114ba57829003601f168201915b5050505050915050919050565b6000600880546114f39061240b565b90501161150f576040518060200160405280600081525061153b565b600861151a82611ad8565b60405160200161152b9291906121aa565b6040516020818303038152906040525b9392505050565b61154a6115dd565b600a805461ff001981166101009182900460ff1615909102179055565b61156f6115dd565b6001600160a01b0381166115d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c4565b61121b81611977565b6007546001600160a01b03163314610f2d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c4565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061169e826118e2565b80519091506000906001600160a01b0316336001600160a01b031614806116d55750336116ca846108c6565b6001600160a01b0316145b806116e7575081516116e7903361075a565b90508061170757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461173c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661176357604051633a954ecd60e21b815260040160405180910390fd5b6117736000848460000151611637565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166118685761181b816000541190565b15611868578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000826118bf8584611bd6565b14949350505050565b610830828260405180602001604052806000815250611c1b565b6040805180820190915260008082526020820152611901826000541190565b61191e57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561196d579392505050565b5060001901611920565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611acc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a0d903390899088908890600401612265565b602060405180830381600087803b158015611a2757600080fd5b505af1925050508015611a57575060408051601f3d908101601f19168201909252611a54918101906120fc565b60015b611ab2573d808015611a85576040519150601f19603f3d011682016040523d82523d6000602084013e611a8a565b606091505b508051611aaa576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ad0565b5060015b949350505050565b606081611afc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b265780611b1081612446565b9150611b1f9050600a83612395565b9150611b00565b60008167ffffffffffffffff811115611b4157611b416124cd565b6040519080825280601f01601f191660200182016040528015611b6b576020820181803683370190505b5090505b8415611ad057611b806001836123c8565b9150611b8d600a86612461565b611b9890603061237d565b60f81b818381518110611bad57611bad6124b7565b60200101906001600160f81b031916908160001a905350611bcf600a86612395565b9450611b6f565b600081815b8451811015610fd757611c0782868381518110611bfa57611bfa6124b7565b6020026020010151611c28565b915080611c1381612446565b915050611bdb565b6109958383836001611c54565b6000818310611c4457600082815260208490526040902061153b565b5060009182526020526040902090565b6000546001600160a01b038516611c7d57604051622e076360e81b815260040160405180910390fd5b83611c9b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d9a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611d705750611d6e60008884886119c9565b155b15611d8e576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611d19565b506000556118ab565b828054611daf9061240b565b90600052602060002090601f016020900481019282611dd15760008555611e17565b82601f10611dea57805160ff1916838001178555611e17565b82800160010185558215611e17579182015b82811115611e17578251825591602001919060010190611dfc565b50610e9b9291505b80821115610e9b5760008155600101611e1f565b600067ffffffffffffffff831115611e4d57611e4d6124cd565b611e60601f8401601f191660200161234c565b9050828152838383011115611e7457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611ea257600080fd5b919050565b600060208284031215611eb957600080fd5b61153b82611e8b565b60008060408385031215611ed557600080fd5b611ede83611e8b565b9150611eec60208401611e8b565b90509250929050565b600080600060608486031215611f0a57600080fd5b611f1384611e8b565b9250611f2160208501611e8b565b9150604084013590509250925092565b60008060008060808587031215611f4757600080fd5b611f5085611e8b565b9350611f5e60208601611e8b565b925060408501359150606085013567ffffffffffffffff811115611f8157600080fd5b8501601f81018713611f9257600080fd5b611fa187823560208401611e33565b91505092959194509250565b60008060408385031215611fc057600080fd5b611fc983611e8b565b915060208301358015158114611fde57600080fd5b809150509250929050565b60008060408385031215611ffc57600080fd5b61200583611e8b565b946020939093013593505050565b6000806040838503121561202657600080fd5b823567ffffffffffffffff8082111561203e57600080fd5b818501915085601f83011261205257600080fd5b8135602082821115612066576120666124cd565b8160051b925061207781840161234c565b8281528181019085830185870184018b101561209257600080fd5b600096505b848710156120b5578035835260019690960195918301918301612097565b509997909101359750505050505050565b6000602082840312156120d857600080fd5b5035919050565b6000602082840312156120f157600080fd5b813561153b816124e3565b60006020828403121561210e57600080fd5b815161153b816124e3565b60006020828403121561212b57600080fd5b813567ffffffffffffffff81111561214257600080fd5b8201601f8101841361215357600080fd5b611ad084823560208401611e33565b6000815180845261217a8160208601602086016123df565b601f01601f19169290920160200192915050565b600081516121a08185602086016123df565b9290920192915050565b600080845481600182811c9150808316806121c657607f831692505b60208084108214156121e657634e487b7160e01b86526022600452602486fd5b8180156121fa576001811461220b57612238565b60ff19861689528489019650612238565b60008b81526020902060005b868110156122305781548b820152908501908301612217565b505084890196505b50505050505061225c61224b828661218e565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061229890830184612162565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122da578351835292840192918401916001016122be565b50909695505050505050565b60208152600061153b6020830184612162565b60208082526033908201527f4d6574616d6f7270686f736973204e4654203a3a2043616e6e6f742062652063604082015272185b1b195908189e48184818dbdb9d1c9858dd606a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612375576123756124cd565b604052919050565b600082198211156123905761239061248b565b500190565b6000826123a4576123a46124a1565b500490565b60008160001904831182151516156123c3576123c361248b565b500290565b6000828210156123da576123da61248b565b500390565b60005b838110156123fa5781810151838201526020016123e2565b838111156113035750506000910152565b600181811c9082168061241f57607f821691505b6020821081141561244057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561245a5761245a61248b565b5060010190565b600082612470576124706124a1565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461121b57600080fdfea2646970667358221220085f8391a44a8c9a2c7250390d12f1fb2119b169c6058c809fc29aa35e6630ac64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000104d6574616d6f7270686f7369734e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d4f525048000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c806365f130971161014f578063a22cb465116100c1578063c4ae31681161007a578063c4ae3168146106d3578063c87b56dd146106e8578063e222c7f914610708578063e8b5498d1461071d578063e985e9c51461073f578063f2fde38b1461078857600080fd5b8063a22cb4651461065e578063b0962c531461067e578063b88d4fde1461069e578063ba7a86b8146106be578063bc912e1a1461032b578063c08dfd3c1461053657600080fd5b80638456cb59116101135780638456cb59146105c257806386a173ee146105e35780638bb64a8c146106035780638da5cb5b1461061857806395d89b4114610636578063a0712d681461064b57600080fd5b806365f130971461053657806370a082311461054b578063715018a61461056b5780637cb647591461058057806383a974a2146105a057600080fd5b80632f745c59116101e857806349590657116101ac578063495906571461049d5780634cf5f7a4146104b25780634f6ccce7146104c757806354214f69146104e75780635b8ad429146105015780636352211e1461051657600080fd5b80632f745c591461041357806332cb6b0c1461043357806333bc1c5c146104495780633ccfd60b1461046857806342842e0e1461047d57600080fd5b8063081812fc1161023a578063081812fc14610346578063095ea7b31461037e57806318160ddd1461039e5780631c16521c146103b357806323b872dd146103e05780632904e6d91461040057600080fd5b806301ffc9a7146102775780630345e3cb146102ac5780630675b7c6146102e757806306fdde031461030957806307e89ec01461032b575b600080fd5b34801561028357600080fd5b506102976102923660046120df565b6107a8565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102d96102c7366004611ea7565b600d6020526000908152604090205481565b6040519081526020016102a3565b3480156102f357600080fd5b50610307610302366004612119565b610815565b005b34801561031557600080fd5b5061031e610834565b6040516102a391906122e6565b34801561033757600080fd5b506102d9668a8e4b1a3d800081565b34801561035257600080fd5b506103666103613660046120c6565b6108c6565b6040516001600160a01b0390911681526020016102a3565b34801561038a57600080fd5b50610307610399366004611fe9565b61090c565b3480156103aa57600080fd5b506000546102d9565b3480156103bf57600080fd5b506102d96103ce366004611ea7565b600c6020526000908152604090205481565b3480156103ec57600080fd5b506103076103fb366004611ef5565b61099a565b61030761040e366004612013565b6109a5565b34801561041f57600080fd5b506102d961042e366004611fe9565b610c96565b34801561043f57600080fd5b506102d9610d0581565b34801561045557600080fd5b50600a5461029790610100900460ff1681565b34801561047457600080fd5b50610307610d6b565b34801561048957600080fd5b50610307610498366004611ef5565b610dcf565b3480156104a957600080fd5b50600b546102d9565b3480156104be57600080fd5b5061031e610dea565b3480156104d357600080fd5b506102d96104e23660046120c6565b610e78565b3480156104f357600080fd5b50600a546102979060ff1681565b34801561050d57600080fd5b50610307610e9f565b34801561052257600080fd5b506103666105313660046120c6565b610ebb565b34801561054257600080fd5b506102d9600281565b34801561055757600080fd5b506102d9610566366004611ea7565b610ecd565b34801561057757600080fd5b50610307610f1b565b34801561058c57600080fd5b5061030761059b3660046120c6565b610f2f565b3480156105ac57600080fd5b506105b5610f3c565b6040516102a391906122a2565b3480156105ce57600080fd5b50600a54610297906301000000900460ff1681565b3480156105ef57600080fd5b50600a546102979062010000900460ff1681565b34801561060f57600080fd5b50610307610fdf565b34801561062457600080fd5b506007546001600160a01b0316610366565b34801561064257600080fd5b5061031e611006565b6103076106593660046120c6565b611015565b34801561066a57600080fd5b50610307610679366004611fad565b61121e565b34801561068a57600080fd5b50610307610699366004612119565b6112b4565b3480156106aa57600080fd5b506103076106b9366004611f31565b6112cf565b3480156106ca57600080fd5b50610307611309565b3480156106df57600080fd5b5061030761139d565b3480156106f457600080fd5b5061031e6107033660046120c6565b6113c6565b34801561071457600080fd5b50610307611542565b34801561072957600080fd5b50600a5461029790640100000000900460ff1681565b34801561074b57600080fd5b5061029761075a366004611ec2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561079457600080fd5b506103076107a3366004611ea7565b611567565b60006001600160e01b031982166380ac58cd60e01b14806107d957506001600160e01b03198216635b5e139f60e01b145b806107f457506001600160e01b0319821663780e9d6360e01b145b8061080f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b61081d6115dd565b8051610830906008906020840190611da3565b5050565b6060600180546108439061240b565b80601f016020809104026020016040519081016040528092919081815260200182805461086f9061240b565b80156108bc5780601f10610891576101008083540402835291602001916108bc565b820191906000526020600020905b81548152906001019060200180831161089f57829003601f168201915b5050505050905090565b60006108d3826000541190565b6108f0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061091782610ebb565b9050806001600160a01b0316836001600160a01b0316141561094c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061096c575061096a813361075a565b155b1561098a576040516367d9dca160e11b815260040160405180910390fd5b610995838383611637565b505050565b610995838383611693565b3233146109cd5760405162461bcd60e51b81526004016109c4906122f9565b60405180910390fd5b600a5462010000900460ff16610a365760405162461bcd60e51b815260206004820152602860248201527f4d6574616d6f7270686f736973204e4654203a3a204d696e74696e67206973206044820152676f6e20506175736560c01b60648201526084016109c4565b610d0581610a4360005490565b610a4d919061237d565b1115610ab65760405162461bcd60e51b815260206004820152603260248201527f4d6574616d6f7270686f736973204e4654203a3a2043616e6e6f74206d696e74604482015271206265796f6e64206d617820737570706c7960701b60648201526084016109c4565b336000908152600d6020526040902054600290610ad490839061237d565b1115610b485760405162461bcd60e51b815260206004820152603b60248201527f4d6574616d6f7270686f736973204e4654203a3a2043616e6e6f74206d696e7460448201527f206265796f6e642077686974656c697374206d6178206d696e7421000000000060648201526084016109c4565b610b5981668a8e4b1a3d80006123a9565b341015610bc05760405162461bcd60e51b815260206004820152602f60248201527f4d6574616d6f7270686f736973204e4654203a3a205061796d656e742069732060448201526e62656c6f772074686520707269636560881b60648201526084016109c4565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610c0683600b54836118b2565b610c675760405162461bcd60e51b815260206004820152602c60248201527f4d6574616d6f7270686f736973204e4654203a3a20596f7520617265206e6f7460448201526b081dda1a5d195b1a5cdd195960a21b60648201526084016109c4565b336000908152600d602052604081208054849290610c8690849061237d565b90915550610995905033836118c8565b6000610ca183610ecd565b8210610cc0576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610d59576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d1b57805192505b876001600160a01b0316836001600160a01b03161415610d505786841415610d495750935061080f92505050565b6001909301925b50600101610cc8565b50610d62612475565b50505092915050565b610d736115dd565b60006064610d8147826123a9565b610d8b9190612395565b60405190915073c9b10e81525ddcd2e50f55b395351fa3919d62ab9082156108fc029083906000818181858888f19350505050158015610830573d6000803e3d6000fd5b610995838383604051806020016040528060008152506112cf565b60098054610df79061240b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e239061240b565b8015610e705780601f10610e4557610100808354040283529160200191610e70565b820191906000526020600020905b815481529060010190602001808311610e5357829003601f168201915b505050505081565b600080548210610e9b576040516329c8c00760e21b815260040160405180910390fd5b5090565b610ea76115dd565b600a805460ff19811660ff90911615179055565b6000610ec6826118e2565b5192915050565b60006001600160a01b038216610ef6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610f236115dd565b610f2d6000611977565b565b610f376115dd565b600b55565b6060336000610f4a82610ecd565b905060008167ffffffffffffffff811115610f6757610f676124cd565b604051908082528060200260200182016040528015610f90578160200160208202803683370190505b50905060005b82811015610fd757610fa88482610c96565b828281518110610fba57610fba6124b7565b602090810291909101015280610fcf81612446565b915050610f96565b509392505050565b610fe76115dd565b600a805462ff0000198116620100009182900460ff1615909102179055565b6060600280546108439061240b565b3233146110345760405162461bcd60e51b81526004016109c4906122f9565b600a54610100900460ff166110975760405162461bcd60e51b8152602060048201526024808201527f4d6574616d6f7270686f736973204e4654203a3a204e6f74205965742041637460448201526334bb329760e11b60648201526084016109c4565b610d05816110a460005490565b6110ae919061237d565b111561110b5760405162461bcd60e51b815260206004820152602660248201527f4d6574616d6f7270686f736973204e4654203a3a204265796f6e64204d617820604482015265537570706c7960d01b60648201526084016109c4565b336000908152600c602052604090205460029061112990839061237d565b111561118c5760405162461bcd60e51b815260206004820152602c60248201527f4d6574616d6f7270686f736973204e4654203a3a20416c7265616479206d696e60448201526b74656420332074696d65732160a01b60648201526084016109c4565b61119d81668a8e4b1a3d80006123a9565b3410156111ec5760405162461bcd60e51b815260206004820152601b60248201527f4d6574616d6f7270686f736973204e4654203a3a2042656c6f7720000000000060448201526064016109c4565b336000908152600c60205260408120805483929061120b90849061237d565b9091555061121b905033826118c8565b50565b6001600160a01b0382163314156112485760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112bc6115dd565b8051610830906009906020840190611da3565b6112da848484611693565b6112e6848484846119c9565b611303576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6113116115dd565b600a54640100000000900460ff161561137d5760405162461bcd60e51b815260206004820152602860248201527f4d6574616d6f7270686f736973204e4654203a3a205465616d20616c726561646044820152671e481b5a5b9d195960c21b60648201526084016109c4565b600a805464ff000000001916640100000000179055610f2d3360466118c8565b6113a56115dd565b600a805463ff00000019811663010000009182900460ff1615909102179055565b60606113d3826000541190565b6114375760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c4565b600061144483600161237d565b600a5490915060ff166114e4576009805461145e9061240b565b80601f016020809104026020016040519081016040528092919081815260200182805461148a9061240b565b80156114d75780601f106114ac576101008083540402835291602001916114d7565b820191906000526020600020905b8154815290600101906020018083116114ba57829003601f168201915b5050505050915050919050565b6000600880546114f39061240b565b90501161150f576040518060200160405280600081525061153b565b600861151a82611ad8565b60405160200161152b9291906121aa565b6040516020818303038152906040525b9392505050565b61154a6115dd565b600a805461ff001981166101009182900460ff1615909102179055565b61156f6115dd565b6001600160a01b0381166115d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c4565b61121b81611977565b6007546001600160a01b03163314610f2d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c4565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061169e826118e2565b80519091506000906001600160a01b0316336001600160a01b031614806116d55750336116ca846108c6565b6001600160a01b0316145b806116e7575081516116e7903361075a565b90508061170757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461173c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661176357604051633a954ecd60e21b815260040160405180910390fd5b6117736000848460000151611637565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166118685761181b816000541190565b15611868578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000826118bf8584611bd6565b14949350505050565b610830828260405180602001604052806000815250611c1b565b6040805180820190915260008082526020820152611901826000541190565b61191e57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561196d579392505050565b5060001901611920565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611acc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a0d903390899088908890600401612265565b602060405180830381600087803b158015611a2757600080fd5b505af1925050508015611a57575060408051601f3d908101601f19168201909252611a54918101906120fc565b60015b611ab2573d808015611a85576040519150601f19603f3d011682016040523d82523d6000602084013e611a8a565b606091505b508051611aaa576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ad0565b5060015b949350505050565b606081611afc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b265780611b1081612446565b9150611b1f9050600a83612395565b9150611b00565b60008167ffffffffffffffff811115611b4157611b416124cd565b6040519080825280601f01601f191660200182016040528015611b6b576020820181803683370190505b5090505b8415611ad057611b806001836123c8565b9150611b8d600a86612461565b611b9890603061237d565b60f81b818381518110611bad57611bad6124b7565b60200101906001600160f81b031916908160001a905350611bcf600a86612395565b9450611b6f565b600081815b8451811015610fd757611c0782868381518110611bfa57611bfa6124b7565b6020026020010151611c28565b915080611c1381612446565b915050611bdb565b6109958383836001611c54565b6000818310611c4457600082815260208490526040902061153b565b5060009182526020526040902090565b6000546001600160a01b038516611c7d57604051622e076360e81b815260040160405180910390fd5b83611c9b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d9a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611d705750611d6e60008884886119c9565b155b15611d8e576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611d19565b506000556118ab565b828054611daf9061240b565b90600052602060002090601f016020900481019282611dd15760008555611e17565b82601f10611dea57805160ff1916838001178555611e17565b82800160010185558215611e17579182015b82811115611e17578251825591602001919060010190611dfc565b50610e9b9291505b80821115610e9b5760008155600101611e1f565b600067ffffffffffffffff831115611e4d57611e4d6124cd565b611e60601f8401601f191660200161234c565b9050828152838383011115611e7457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611ea257600080fd5b919050565b600060208284031215611eb957600080fd5b61153b82611e8b565b60008060408385031215611ed557600080fd5b611ede83611e8b565b9150611eec60208401611e8b565b90509250929050565b600080600060608486031215611f0a57600080fd5b611f1384611e8b565b9250611f2160208501611e8b565b9150604084013590509250925092565b60008060008060808587031215611f4757600080fd5b611f5085611e8b565b9350611f5e60208601611e8b565b925060408501359150606085013567ffffffffffffffff811115611f8157600080fd5b8501601f81018713611f9257600080fd5b611fa187823560208401611e33565b91505092959194509250565b60008060408385031215611fc057600080fd5b611fc983611e8b565b915060208301358015158114611fde57600080fd5b809150509250929050565b60008060408385031215611ffc57600080fd5b61200583611e8b565b946020939093013593505050565b6000806040838503121561202657600080fd5b823567ffffffffffffffff8082111561203e57600080fd5b818501915085601f83011261205257600080fd5b8135602082821115612066576120666124cd565b8160051b925061207781840161234c565b8281528181019085830185870184018b101561209257600080fd5b600096505b848710156120b5578035835260019690960195918301918301612097565b509997909101359750505050505050565b6000602082840312156120d857600080fd5b5035919050565b6000602082840312156120f157600080fd5b813561153b816124e3565b60006020828403121561210e57600080fd5b815161153b816124e3565b60006020828403121561212b57600080fd5b813567ffffffffffffffff81111561214257600080fd5b8201601f8101841361215357600080fd5b611ad084823560208401611e33565b6000815180845261217a8160208601602086016123df565b601f01601f19169290920160200192915050565b600081516121a08185602086016123df565b9290920192915050565b600080845481600182811c9150808316806121c657607f831692505b60208084108214156121e657634e487b7160e01b86526022600452602486fd5b8180156121fa576001811461220b57612238565b60ff19861689528489019650612238565b60008b81526020902060005b868110156122305781548b820152908501908301612217565b505084890196505b50505050505061225c61224b828661218e565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061229890830184612162565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122da578351835292840192918401916001016122be565b50909695505050505050565b60208152600061153b6020830184612162565b60208082526033908201527f4d6574616d6f7270686f736973204e4654203a3a2043616e6e6f742062652063604082015272185b1b195908189e48184818dbdb9d1c9858dd606a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612375576123756124cd565b604052919050565b600082198211156123905761239061248b565b500190565b6000826123a4576123a46124a1565b500490565b60008160001904831182151516156123c3576123c361248b565b500290565b6000828210156123da576123da61248b565b500390565b60005b838110156123fa5781810151838201526020016123e2565b838111156113035750506000910152565b600181811c9082168061241f57607f821691505b6020821081141561244057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561245a5761245a61248b565b5060010190565b600082612470576124706124a1565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461121b57600080fdfea2646970667358221220085f8391a44a8c9a2c7250390d12f1fb2119b169c6058c809fc29aa35e6630ac64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000104d6574616d6f7270686f7369734e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d4f525048000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MetamorphosisNFT
Arg [1] : _symbol (string): MORPH

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [3] : 4d6574616d6f7270686f7369734e465400000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4d4f525048000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50094:4932:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37298:372;;;;;;;;;;-1:-1:-1;37298:372:0;;;;;:::i;:::-;;:::i;:::-;;;8648:14:1;;8641:22;8623:41;;8611:2;8596:18;37298:372:0;;;;;;;;50852:53;;;;;;;;;;-1:-1:-1;50852:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;8821:25:1;;;8809:2;8794:18;50852:53:0;8675:177:1;53953:115:0;;;;;;;;;;-1:-1:-1;53953:115:0;;;;;:::i;:::-;;:::i;:::-;;39114:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;50328:54::-;;;;;;;;;;;;50372:10;50328:54;;40591:204;;;;;;;;;;-1:-1:-1;40591:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7309:32:1;;;7291:51;;7279:2;7264:18;40591:204:0;7145:203:1;40180:345:0;;;;;;;;;;-1:-1:-1;40180:345:0;;;;;:::i;:::-;;:::i;35565:101::-;;;;;;;;;;-1:-1:-1;35618:7:0;35645:13;35565:101;;50795:50;;;;;;;;;;-1:-1:-1;50795:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;41448:170;;;;;;;;;;-1:-1:-1;41448:170:0;;;;;:::i;:::-;;:::i;51730:884::-;;;;;;:::i;:::-;;:::i;36219:1007::-;;;;;;;;;;-1:-1:-1;36219:1007:0;;;;;:::i;:::-;;:::i;50177:41::-;;;;;;;;;;;;50214:4;50177:41;;50644:22;;;;;;;;;;-1:-1:-1;50644:22:0;;;;;;;;;;;54815:208;;;;;;;;;;;;;:::i;41689:185::-;;;;;;;;;;-1:-1:-1;41689:185:0;;;;;:::i;:::-;;:::i;54337:92::-;;;;;;;;;;-1:-1:-1;54411:10:0;;54337:92;;50490:35;;;;;;;;;;;;;:::i;35743:176::-;;;;;;;;;;-1:-1:-1;35743:176:0;;;;;:::i;:::-;;:::i;50615:22::-;;;;;;;;;;-1:-1:-1;50615:22:0;;;;;;;;54722:85;;;;;;;;;;;;;:::i;38923:124::-;;;;;;;;;;-1:-1:-1;38923:124:0;;;;;:::i;:::-;;:::i;50225:43::-;;;;;;;;;;;;50267:1;50225:43;;37734:206;;;;;;;;;;-1:-1:-1;37734:206:0;;;;;:::i;:::-;;:::i;13998:103::-;;;;;;;;;;;;;:::i;54224:105::-;;;;;;;;;;-1:-1:-1;54224:105:0;;;;;:::i;:::-;;:::i;53539:406::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;50705:17::-;;;;;;;;;;-1:-1:-1;50705:17:0;;;;;;;;;;;50673:25;;;;;;;;;;-1:-1:-1;50673:25:0;;;;;;;;;;;54519:98;;;;;;;;;;;;;:::i;13350:87::-;;;;;;;;;;-1:-1:-1;13423:6:0;;-1:-1:-1;;;;;13423:6:0;13350:87;;39283:104;;;;;;;;;;;;;:::i;51161:561::-;;;;;;:::i;:::-;;:::i;40867:279::-;;;;;;;;;;-1:-1:-1;40867:279:0;;;;;:::i;:::-;;:::i;54074:142::-;;;;;;;;;;-1:-1:-1;54074:142:0;;;;;:::i;:::-;;:::i;41945:308::-;;;;;;;;;;-1:-1:-1;41945:308:0;;;;;:::i;:::-;;:::i;52622:185::-;;;;;;;;;;;;;:::i;54437:74::-;;;;;;;;;;;;;:::i;52972:473::-;;;;;;;;;;-1:-1:-1;52972:473:0;;;;;:::i;:::-;;:::i;54625:89::-;;;;;;;;;;;;;:::i;50729:22::-;;;;;;;;;;-1:-1:-1;50729:22:0;;;;;;;;;;;41217:164;;;;;;;;;;-1:-1:-1;41217:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41338:25:0;;;41314:4;41338:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41217:164;14256:201;;;;;;;;;;-1:-1:-1;14256:201:0;;;;;:::i;:::-;;:::i;37298:372::-;37400:4;-1:-1:-1;;;;;;37437:40:0;;-1:-1:-1;;;37437:40:0;;:105;;-1:-1:-1;;;;;;;37494:48:0;;-1:-1:-1;;;37494:48:0;37437:105;:172;;;-1:-1:-1;;;;;;;37559:50:0;;-1:-1:-1;;;37559:50:0;37437:172;:225;;;-1:-1:-1;;;;;;;;;;26313:40:0;;;37626:36;37417:245;37298:372;-1:-1:-1;;37298:372:0:o;53953:115::-;13236:13;:11;:13::i;:::-;54032:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53953:115:::0;:::o;39114:100::-;39168:13;39201:5;39194:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39114:100;:::o;40591:204::-;40659:7;40684:16;40692:7;42565:4;42599:13;-1:-1:-1;42589:23:0;42508:112;40684:16;40679:64;;40709:34;;-1:-1:-1;;;40709:34:0;;;;;;;;;;;40679:64;-1:-1:-1;40763:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40763:24:0;;40591:204::o;40180:345::-;40253:13;40269:24;40285:7;40269:15;:24::i;:::-;40253:40;;40314:5;-1:-1:-1;;;;;40308:11:0;:2;-1:-1:-1;;;;;40308:11:0;;40304:48;;;40328:24;;-1:-1:-1;;;40328:24:0;;;;;;;;;;;40304:48;11981:10;-1:-1:-1;;;;;40369:21:0;;;;;;:63;;-1:-1:-1;40395:37:0;40412:5;11981:10;41217:164;:::i;40395:37::-;40394:38;40369:63;40365:111;;;40441:35;;-1:-1:-1;;;40441:35:0;;;;;;;;;;;40365:111;40489:28;40498:2;40502:7;40511:5;40489:8;:28::i;:::-;40242:283;40180:345;;:::o;41448:170::-;41582:28;41592:4;41598:2;41602:7;41582:9;:28::i;51730:884::-;51054:9;51067:10;51054:23;51046:87;;;;-1:-1:-1;;;51046:87:0;;;;;;;:::i;:::-;;;;;;;;;51851:13:::1;::::0;;;::::1;;;51843:66;;;::::0;-1:-1:-1;;;51843:66:0;;12904:2:1;51843:66:0::1;::::0;::::1;12886:21:1::0;12943:2;12923:18;;;12916:30;12982:34;12962:18;;;12955:62;-1:-1:-1;;;13033:18:1;;;13026:38;13081:19;;51843:66:0::1;12702:404:1::0;51843:66:0::1;50214:4;51945:9;51929:13;35618:7:::0;35645:13;;35565:101;51929:13:::1;:25;;;;:::i;:::-;51928:41;;51920:104;;;::::0;-1:-1:-1;;;51920:104:0;;12069:2:1;51920:104:0::1;::::0;::::1;12051:21:1::0;12108:2;12088:18;;;12081:30;12147:34;12127:18;;;12120:62;-1:-1:-1;;;12198:18:1;;;12191:48;12256:19;;51920:104:0::1;11867:414:1::0;51920:104:0::1;52063:10;52044:30;::::0;;;:18:::1;:30;::::0;;;;;50320:1:::1;::::0;52044:42:::1;::::0;52077:9;;52044:42:::1;:::i;:::-;52043:67;;52035:139;;;::::0;-1:-1:-1;;;52035:139:0;;10451:2:1;52035:139:0::1;::::0;::::1;10433:21:1::0;10490:2;10470:18;;;10463:30;10529:34;10509:18;;;10502:62;10600:29;10580:18;;;10573:57;10647:19;;52035:139:0::1;10249:423:1::0;52035:139:0::1;52207:32;52230:9:::0;50436:10:::1;52207:32;:::i;:::-;52193:9;:47;;52185:107;;;::::0;-1:-1:-1;;;52185:107:0;;11292:2:1;52185:107:0::1;::::0;::::1;11274:21:1::0;11331:2;11311:18;;;11304:30;11370:34;11350:18;;;11343:62;-1:-1:-1;;;11421:18:1;;;11414:45;11476:19;;52185:107:0::1;11090:411:1::0;52185:107:0::1;52358:28;::::0;-1:-1:-1;;52375:10:0::1;5754:2:1::0;5750:15;5746:53;52358:28:0::1;::::0;::::1;5734:66:1::0;52331:14:0::1;::::0;5816:12:1;;52358:28:0::1;;;;;;;;;;;;52348:39;;;;;;52331:56;;52406:52;52425:12;52439:10;;52451:6;52406:18;:52::i;:::-;52398:109;;;::::0;-1:-1:-1;;;52398:109:0;;10879:2:1;52398:109:0::1;::::0;::::1;10861:21:1::0;10918:2;10898:18;;;10891:30;10957:34;10937:18;;;10930:62;-1:-1:-1;;;11008:18:1;;;11001:42;11060:19;;52398:109:0::1;10677:408:1::0;52398:109:0::1;52539:10;52520:30;::::0;;;:18:::1;:30;::::0;;;;:43;;52554:9;;52520:30;:43:::1;::::0;52554:9;;52520:43:::1;:::i;:::-;::::0;;;-1:-1:-1;52574:32:0::1;::::0;-1:-1:-1;52584:10:0::1;52596:9:::0;52574::::1;:32::i;36219:1007::-:0;36308:7;36341:16;36351:5;36341:9;:16::i;:::-;36332:5;:25;36328:61;;36366:23;;-1:-1:-1;;;36366:23:0;;;;;;;;;;;36328:61;36400:22;35645:13;;;36400:22;;36663:466;36683:14;36679:1;:18;36663:466;;;36723:31;36757:14;;;:11;:14;;;;;;;;;36723:48;;;;;;;;;-1:-1:-1;;;;;36723:48:0;;;;;-1:-1:-1;;;36723:48:0;;;;;;;;;;;;36794:28;36790:111;;36867:14;;;-1:-1:-1;36790:111:0;36944:5;-1:-1:-1;;;;;36923:26:0;:17;-1:-1:-1;;;;;36923:26:0;;36919:195;;;36993:5;36978:11;:20;36974:85;;;-1:-1:-1;37034:1:0;-1:-1:-1;37027:8:0;;-1:-1:-1;;;37027:8:0;36974:85;37081:13;;;;;36919:195;-1:-1:-1;36699:3:0;;36663:466;;;-1:-1:-1;37205:13:0;;:::i;:::-;36317:909;;;36219:1007;;;;:::o;54815:208::-;13236:13;:11;:13::i;:::-;54864:26:::1;54921:3;54893:27;:21;54921:3:::0;54893:27:::1;:::i;:::-;:31;;;;:::i;:::-;54935:80;::::0;54864:60;;-1:-1:-1;54943:42:0::1;::::0;54935:80;::::1;;;::::0;54864:60;;54935:80:::1;::::0;;;54864:60;54943:42;54935:80;::::1;;;;;;;;;;;;;::::0;::::1;;;;41689:185:::0;41827:39;41844:4;41850:2;41854:7;41827:39;;;;;;;;;;;;:16;:39::i;50490:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35743:176::-;35810:7;35645:13;;35834:5;:22;35830:58;;35865:23;;-1:-1:-1;;;35865:23:0;;;;;;;;;;;35830:58;-1:-1:-1;35906:5:0;35743:176::o;54722:85::-;13236:13;:11;:13::i;:::-;54789:10:::1;::::0;;-1:-1:-1;;54775:24:0;::::1;54789:10;::::0;;::::1;54788:11;54775:24;::::0;;54722:85::o;38923:124::-;38987:7;39014:20;39026:7;39014:11;:20::i;:::-;:25;;38923:124;-1:-1:-1;;38923:124:0:o;37734:206::-;37798:7;-1:-1:-1;;;;;37822:19:0;;37818:60;;37850:28;;-1:-1:-1;;;37850:28:0;;;;;;;;;;;37818:60;-1:-1:-1;;;;;;37904:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37904:27:0;;37734:206::o;13998:103::-;13236:13;:11;:13::i;:::-;14063:30:::1;14090:1;14063:18;:30::i;:::-;13998:103::o:0;54224:105::-;13236:13;:11;:13::i;:::-;54297:10:::1;:24:::0;54224:105::o;53539:406::-;53581:16;53626:10;53609:14;53674:17;53626:10;53674:9;:17::i;:::-;53647:44;;53702:25;53744:16;53730:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53730:31:0;;53702:59;;53778:13;53774:136;53805:16;53797:5;:24;53774:136;;;53864:34;53884:6;53892:5;53864:19;:34::i;:::-;53846:8;53855:5;53846:15;;;;;;;;:::i;:::-;;;;;;;;;;:52;53823:7;;;;:::i;:::-;;;;53774:136;;;-1:-1:-1;53929:8:0;53539:406;-1:-1:-1;;;53539:406:0:o;54519:98::-;13236:13;:11;:13::i;:::-;54596::::1;::::0;;-1:-1:-1;;54579:30:0;::::1;54596:13:::0;;;;::::1;;;54595:14;54579:30:::0;;::::1;;::::0;;54519:98::o;39283:104::-;39339:13;39372:7;39365:14;;;;;:::i;51161:561::-;51054:9;51067:10;51054:23;51046:87;;;;-1:-1:-1;;;51046:87:0;;;;;;;:::i;:::-;51242:10:::1;::::0;::::1;::::0;::::1;;;51234:59;;;::::0;-1:-1:-1;;;51234:59:0;;10046:2:1;51234:59:0::1;::::0;::::1;10028:21:1::0;10085:2;10065:18;;;10058:30;10124:34;10104:18;;;10097:62;-1:-1:-1;;;10175:18:1;;;10168:34;10219:19;;51234:59:0::1;9844:400:1::0;51234:59:0::1;50214:4;51329:9;51313:13;35618:7:::0;35645:13;;35565:101;51313:13:::1;:25;;;;:::i;:::-;51312:41;;51304:92;;;::::0;-1:-1:-1;;;51304:92:0;;14146:2:1;51304:92:0::1;::::0;::::1;14128:21:1::0;14185:2;14165:18;;;14158:30;14224:34;14204:18;;;14197:62;-1:-1:-1;;;14275:18:1;;;14268:36;14321:19;;51304:92:0::1;13944:402:1::0;51304:92:0::1;51432:10;51416:27;::::0;;;:15:::1;:27;::::0;;;;;50267:1:::1;::::0;51416:38:::1;::::0;51445:9;;51416:38:::1;:::i;:::-;51415:59;;51407:116;;;::::0;-1:-1:-1;;;51407:116:0;;13733:2:1;51407:116:0::1;::::0;::::1;13715:21:1::0;13772:2;13752:18;;;13745:30;13811:34;13791:18;;;13784:62;-1:-1:-1;;;13862:18:1;;;13855:42;13914:19;;51407:116:0::1;13531:408:1::0;51407:116:0::1;51556:29;51576:9:::0;50372:10:::1;51556:29;:::i;:::-;51542:9;:44;;51534:84;;;::::0;-1:-1:-1;;;51534:84:0;;9690:2:1;51534:84:0::1;::::0;::::1;9672:21:1::0;9729:2;9709:18;;;9702:30;9768:29;9748:18;;;9741:57;9815:18;;51534:84:0::1;9488:351:1::0;51534:84:0::1;51647:10;51631:27;::::0;;;:15:::1;:27;::::0;;;;:40;;51662:9;;51631:27;:40:::1;::::0;51662:9;;51631:40:::1;:::i;:::-;::::0;;;-1:-1:-1;51682:32:0::1;::::0;-1:-1:-1;51692:10:0::1;51704:9:::0;51682::::1;:32::i;:::-;51161:561:::0;:::o;40867:279::-;-1:-1:-1;;;;;40958:24:0;;11981:10;40958:24;40954:54;;;40991:17;;-1:-1:-1;;;40991:17:0;;;;;;;;;;;40954:54;11981:10;41021:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;41021:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;41021:53:0;;;;;;;;;;41090:48;;8623:41:1;;;41021:42:0;;11981:10;41090:48;;8596:18:1;41090:48:0;;;;;;;40867:279;;:::o;54074:142::-;13236:13;:11;:13::i;:::-;54166:42;;::::1;::::0;:19:::1;::::0;:42:::1;::::0;::::1;::::0;::::1;:::i;41945:308::-:0;42104:28;42114:4;42120:2;42124:7;42104:9;:28::i;:::-;42148:48;42171:4;42177:2;42181:7;42190:5;42148:22;:48::i;:::-;42143:102;;42205:40;;-1:-1:-1;;;42205:40:0;;;;;;;;;;;42143:102;41945:308;;;;:::o;52622:185::-;13236:13;:11;:13::i;:::-;52680:10:::1;::::0;;;::::1;;;52679:11;52671:64;;;::::0;-1:-1:-1;;;52671:64:0;;14553:2:1;52671:64:0::1;::::0;::::1;14535:21:1::0;14592:2;14572:18;;;14565:30;14631:34;14611:18;;;14604:62;-1:-1:-1;;;14682:18:1;;;14675:38;14730:19;;52671:64:0::1;14351:404:1::0;52671:64:0::1;52746:10;:17:::0;;-1:-1:-1;;52746:17:0::1;::::0;::::1;::::0;;52774:25:::1;52784:10;52796:2;52774:9;:25::i;54437:74::-:0;13236:13;:11;:13::i;:::-;54498:5:::1;::::0;;-1:-1:-1;;54489:14:0;::::1;54498:5:::0;;;;::::1;;;54497:6;54489:14:::0;;::::1;;::::0;;54437:74::o;52972:473::-;53045:13;53079:16;53087:7;42565:4;42599:13;-1:-1:-1;42589:23:0;42508:112;53079:16;53071:76;;;;-1:-1:-1;;;53071:76:0;;12488:2:1;53071:76:0;;;12470:21:1;12527:2;12507:18;;;12500:30;12566:34;12546:18;;;12539:62;-1:-1:-1;;;12617:18:1;;;12610:45;12672:19;;53071:76:0;12286:411:1;53071:76:0;53160:14;53177:11;:7;53187:1;53177:11;:::i;:::-;53205:10;;53160:28;;-1:-1:-1;53205:10:0;;53201:68;;53238:19;53231:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52972:473;;;:::o;53201:68::-;53362:1;53339:12;53333:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;53390:12;53404:17;:6;:15;:17::i;:::-;53373:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53333:104;53326:111;52972:473;-1:-1:-1;;;52972:473:0:o;54625:89::-;13236:13;:11;:13::i;:::-;54696:10:::1;::::0;;-1:-1:-1;;54682:24:0;::::1;54696:10;::::0;;;::::1;;;54695:11;54682:24:::0;;::::1;;::::0;;54625:89::o;14256:201::-;13236:13;:11;:13::i;:::-;-1:-1:-1;;;;;14345:22:0;::::1;14337:73;;;::::0;-1:-1:-1;;;14337:73:0;;9283:2:1;14337:73:0::1;::::0;::::1;9265:21:1::0;9322:2;9302:18;;;9295:30;9361:34;9341:18;;;9334:62;-1:-1:-1;;;9412:18:1;;;9405:36;9458:19;;14337:73:0::1;9081:402:1::0;14337:73:0::1;14421:28;14440:8;14421:18;:28::i;13515:132::-:0;13423:6;;-1:-1:-1;;;;;13423:6:0;11981:10;13579:23;13571:68;;;;-1:-1:-1;;;13571:68:0;;11708:2:1;13571:68:0;;;11690:21:1;;;11727:18;;;11720:30;11786:34;11766:18;;;11759:62;11838:18;;13571:68:0;11506:356:1;47271:196:0;47386:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47386:29:0;-1:-1:-1;;;;;47386:29:0;;;;;;;;;47431:28;;47386:24;;47431:28;;;;;;;47271:196;;;:::o;45191:1962::-;45306:35;45344:20;45356:7;45344:11;:20::i;:::-;45419:18;;45306:58;;-1:-1:-1;45377:22:0;;-1:-1:-1;;;;;45403:34:0;11981:10;-1:-1:-1;;;;;45403:34:0;;:87;;;-1:-1:-1;11981:10:0;45454:20;45466:7;45454:11;:20::i;:::-;-1:-1:-1;;;;;45454:36:0;;45403:87;:154;;;-1:-1:-1;45524:18:0;;45507:50;;11981:10;41217:164;:::i;45507:50::-;45377:181;;45576:17;45571:66;;45602:35;;-1:-1:-1;;;45602:35:0;;;;;;;;;;;45571:66;45674:4;-1:-1:-1;;;;;45652:26:0;:13;:18;;;-1:-1:-1;;;;;45652:26:0;;45648:67;;45687:28;;-1:-1:-1;;;45687:28:0;;;;;;;;;;;45648:67;-1:-1:-1;;;;;45730:16:0;;45726:52;;45755:23;;-1:-1:-1;;;45755:23:0;;;;;;;;;;;45726:52;45899:49;45916:1;45920:7;45929:13;:18;;;45899:8;:49::i;:::-;-1:-1:-1;;;;;46244:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;46244:31:0;;;-1:-1:-1;;;;;46244:31:0;;;-1:-1:-1;;46244:31:0;;;;;;;46290:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;46290:29:0;;;;;;;;;;;;;46336:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;46381:61:0;;;;-1:-1:-1;;;46426:15:0;46381:61;;;;;;46716:11;;;46746:24;;;;;:29;46716:11;;46746:29;46742:295;;46814:20;46822:11;42565:4;42599:13;-1:-1:-1;42589:23:0;42508:112;46814:20;46810:212;;;46891:18;;;46859:24;;;:11;:24;;;;;;;;:50;;46974:28;;;;46932:70;;-1:-1:-1;;;46932:70:0;-1:-1:-1;;;;;;46932:70:0;;;-1:-1:-1;;;;;46859:50:0;;;46932:70;;;;;;;46810:212;46219:829;47084:7;47080:2;-1:-1:-1;;;;;47065:27:0;47074:4;-1:-1:-1;;;;;47065:27:0;;;;;;;;;;;47103:42;45295:1858;;45191:1962;;;:::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;42628:104::-;42697:27;42707:2;42711:8;42697:27;;;;;;;;;;;;:9;:27::i;38357:504::-;-1:-1:-1;;;;;;;;;;;;;;;;;38457:16:0;38465:7;42565:4;42599:13;-1:-1:-1;42589:23:0;42508:112;38457:16;38452:61;;38482:31;;-1:-1:-1;;;38482:31:0;;;;;;;;;;;38452:61;38571:7;38551:245;38618:31;38652:17;;;:11;:17;;;;;;;;;38618:51;;;;;;;;;-1:-1:-1;;;;;38618:51:0;;;;;-1:-1:-1;;;38618:51:0;;;;;;;;;;;;38692:28;38688:93;;38752:9;38357:504;-1:-1:-1;;;38357:504:0:o;38688:93::-;-1:-1:-1;;;38591:6:0;38551:245;;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;48032:765::-;48187:4;-1:-1:-1;;;;;48208:13:0;;16343:19;:23;48204:586;;48244:72;;-1:-1:-1;;;48244:72:0;;-1:-1:-1;;;;;48244:36:0;;;;;:72;;11981:10;;48295:4;;48301:7;;48310:5;;48244:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48244:72:0;;;;;;;;-1:-1:-1;;48244:72:0;;;;;;;;;;;;:::i;:::-;;;48240:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48490:13:0;;48486:234;;48517:40;;-1:-1:-1;;;48517:40:0;;;;;;;;;;;48486:234;48670:6;48664:13;48655:6;48651:2;48647:15;48640:38;48240:495;-1:-1:-1;;;;;;48367:55:0;-1:-1:-1;;;48367:55:0;;-1:-1:-1;48360:62:0;;48204:586;-1:-1:-1;48774:4:0;48204:586;48032:765;;;;;;:::o;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;;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;;43095:163;43218:32;43224:2;43228:8;43238:5;43245:4;43218:5;:32::i;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;43517:1420::-;43656:20;43679:13;-1:-1:-1;;;;;43707:16:0;;43703:48;;43732:19;;-1:-1:-1;;;43732:19:0;;;;;;;;;;;43703:48;43766:13;43762:44;;43788:18;;-1:-1:-1;;;43788:18:0;;;;;;;;;;;43762:44;-1:-1:-1;;;;;44159:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;44159:45:0;;-1:-1:-1;;;;;44159:45:0;;;;;;;;;;44219:50;;;;;;;;;;;;;;44286:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;44336:66:0;;;;-1:-1:-1;;;44386:15:0;44336:66;;;;;;;44286:25;;44471:330;44491:8;44487:1;:12;44471:330;;;44530:38;;44555:12;;-1:-1:-1;;;;;44530:38:0;;;44547:1;;44530:38;;44547:1;;44530:38;44591:4;:68;;;;;44600:59;44631:1;44635:2;44639:12;44653:5;44600:22;:59::i;:::-;44599:60;44591:68;44587:164;;;44691:40;;-1:-1:-1;;;44691:40:0;;;;;;;;;;;44587:164;44771:14;;;;;44501:3;44471:330;;;-1:-1:-1;44817:13:0;:28;44869:60;41945:308;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:1027::-;2767:6;2775;2828:2;2816:9;2807:7;2803:23;2799:32;2796:52;;;2844:1;2841;2834:12;2796:52;2884:9;2871:23;2913:18;2954:2;2946:6;2943:14;2940:34;;;2970:1;2967;2960:12;2940:34;3008:6;2997:9;2993:22;2983:32;;3053:7;3046:4;3042:2;3038:13;3034:27;3024:55;;3075:1;3072;3065:12;3024:55;3111:2;3098:16;3133:4;3156:2;3152;3149:10;3146:36;;;3162:18;;:::i;:::-;3208:2;3205:1;3201:10;3191:20;;3231:28;3255:2;3251;3247:11;3231:28;:::i;:::-;3293:15;;;3324:12;;;;3356:11;;;3386;;;3382:20;;3379:33;-1:-1:-1;3376:53:1;;;3425:1;3422;3415:12;3376:53;3447:1;3438:10;;3457:163;3471:2;3468:1;3465:9;3457:163;;;3528:17;;3516:30;;3489:1;3482:9;;;;;3566:12;;;;3598;;3457:163;;;-1:-1:-1;3639:5:1;3676:18;;;;3663:32;;-1:-1:-1;;;;;;;2674:1027:1:o;3706:180::-;3765:6;3818:2;3806:9;3797:7;3793:23;3789:32;3786:52;;;3834:1;3831;3824:12;3786:52;-1:-1:-1;3857:23:1;;3706:180;-1:-1:-1;3706:180:1:o;3891:245::-;3949:6;4002:2;3990:9;3981:7;3977:23;3973:32;3970:52;;;4018:1;4015;4008:12;3970:52;4057:9;4044:23;4076:30;4100:5;4076:30;:::i;4141:249::-;4210:6;4263:2;4251:9;4242:7;4238:23;4234:32;4231:52;;;4279:1;4276;4269:12;4231:52;4311:9;4305:16;4330:30;4354:5;4330:30;:::i;4395:450::-;4464:6;4517:2;4505:9;4496:7;4492:23;4488:32;4485:52;;;4533:1;4530;4523:12;4485:52;4573:9;4560:23;4606:18;4598:6;4595:30;4592:50;;;4638:1;4635;4628:12;4592:50;4661:22;;4714:4;4706:13;;4702:27;-1:-1:-1;4692:55:1;;4743:1;4740;4733:12;4692:55;4766:73;4831:7;4826:2;4813:16;4808:2;4804;4800:11;4766:73;:::i;5035:257::-;5076:3;5114:5;5108:12;5141:6;5136:3;5129:19;5157:63;5213:6;5206:4;5201:3;5197:14;5190:4;5183:5;5179:16;5157:63;:::i;:::-;5274:2;5253:15;-1:-1:-1;;5249:29:1;5240:39;;;;5281:4;5236:50;;5035:257;-1:-1:-1;;5035:257:1:o;5297:185::-;5339:3;5377:5;5371:12;5392:52;5437:6;5432:3;5425:4;5418:5;5414:16;5392:52;:::i;:::-;5460:16;;;;;5297:185;-1:-1:-1;;5297:185:1:o;5839:1301::-;6116:3;6145:1;6178:6;6172:13;6208:3;6230:1;6258:9;6254:2;6250:18;6240:28;;6318:2;6307:9;6303:18;6340;6330:61;;6384:4;6376:6;6372:17;6362:27;;6330:61;6410:2;6458;6450:6;6447:14;6427:18;6424:38;6421:165;;;-1:-1:-1;;;6485:33:1;;6541:4;6538:1;6531:15;6571:4;6492:3;6559:17;6421:165;6602:18;6629:104;;;;6747:1;6742:320;;;;6595:467;;6629:104;-1:-1:-1;;6662:24:1;;6650:37;;6707:16;;;;-1:-1:-1;6629:104:1;;6742:320;15295:1;15288:14;;;15332:4;15319:18;;6837:1;6851:165;6865:6;6862:1;6859:13;6851:165;;;6943:14;;6930:11;;;6923:35;6986:16;;;;6880:10;;6851:165;;;6855:3;;7045:6;7040:3;7036:16;7029:23;;6595:467;;;;;;;7078:56;7103:30;7129:3;7121:6;7103:30;:::i;:::-;-1:-1:-1;;;5547:20:1;;5592:1;5583:11;;5487:113;7078:56;7071:63;5839:1301;-1:-1:-1;;;;;5839:1301:1:o;7353:488::-;-1:-1:-1;;;;;7622:15:1;;;7604:34;;7674:15;;7669:2;7654:18;;7647:43;7721:2;7706:18;;7699:34;;;7769:3;7764:2;7749:18;;7742:31;;;7547:4;;7790:45;;7815:19;;7807:6;7790:45;:::i;:::-;7782:53;7353:488;-1:-1:-1;;;;;;7353:488:1:o;7846:632::-;8017:2;8069:21;;;8139:13;;8042:18;;;8161:22;;;7988:4;;8017:2;8240:15;;;;8214:2;8199:18;;;7988:4;8283:169;8297:6;8294:1;8291:13;8283:169;;;8358:13;;8346:26;;8427:15;;;;8392:12;;;;8319:1;8312:9;8283:169;;;-1:-1:-1;8469:3:1;;7846:632;-1:-1:-1;;;;;;7846:632:1:o;8857:219::-;9006:2;8995:9;8988:21;8969:4;9026:44;9066:2;9055:9;9051:18;9043:6;9026:44;:::i;13111:415::-;13313:2;13295:21;;;13352:2;13332:18;;;13325:30;13391:34;13386:2;13371:18;;13364:62;-1:-1:-1;;;13457:2:1;13442:18;;13435:49;13516:3;13501:19;;13111:415::o;14942:275::-;15013:2;15007:9;15078:2;15059:13;;-1:-1:-1;;15055:27:1;15043:40;;15113:18;15098:34;;15134:22;;;15095:62;15092:88;;;15160:18;;:::i;:::-;15196:2;15189:22;14942:275;;-1:-1:-1;14942:275:1:o;15348:128::-;15388:3;15419:1;15415:6;15412:1;15409:13;15406:39;;;15425:18;;:::i;:::-;-1:-1:-1;15461:9:1;;15348:128::o;15481:120::-;15521:1;15547;15537:35;;15552:18;;:::i;:::-;-1:-1:-1;15586:9:1;;15481:120::o;15606:168::-;15646:7;15712:1;15708;15704:6;15700:14;15697:1;15694:21;15689:1;15682:9;15675:17;15671:45;15668:71;;;15719:18;;:::i;:::-;-1:-1:-1;15759:9:1;;15606:168::o;15779:125::-;15819:4;15847:1;15844;15841:8;15838:34;;;15852:18;;:::i;:::-;-1:-1:-1;15889:9:1;;15779:125::o;15909:258::-;15981:1;15991:113;16005:6;16002:1;15999:13;15991:113;;;16081:11;;;16075:18;16062:11;;;16055:39;16027:2;16020:10;15991:113;;;16122:6;16119:1;16116:13;16113:48;;;-1:-1:-1;;16157:1:1;16139:16;;16132:27;15909:258::o;16172:380::-;16251:1;16247:12;;;;16294;;;16315:61;;16369:4;16361:6;16357:17;16347:27;;16315:61;16422:2;16414:6;16411:14;16391:18;16388:38;16385:161;;;16468:10;16463:3;16459:20;16456:1;16449:31;16503:4;16500:1;16493:15;16531:4;16528:1;16521:15;16385:161;;16172:380;;;:::o;16557:135::-;16596:3;-1:-1:-1;;16617:17:1;;16614:43;;;16637:18;;:::i;:::-;-1:-1:-1;16684:1:1;16673:13;;16557:135::o;16697:112::-;16729:1;16755;16745:35;;16760:18;;:::i;:::-;-1:-1:-1;16794:9:1;;16697:112::o;16814:127::-;16875:10;16870:3;16866:20;16863:1;16856:31;16906:4;16903:1;16896:15;16930:4;16927:1;16920:15;16946:127;17007:10;17002:3;16998:20;16995:1;16988:31;17038:4;17035:1;17028:15;17062:4;17059:1;17052:15;17078:127;17139:10;17134:3;17130:20;17127:1;17120:31;17170:4;17167:1;17160:15;17194:4;17191:1;17184:15;17210:127;17271:10;17266:3;17262:20;17259:1;17252:31;17302:4;17299:1;17292:15;17326:4;17323:1;17316:15;17342:127;17403:10;17398:3;17394:20;17391:1;17384:31;17434:4;17431:1;17424:15;17458:4;17455:1;17448:15;17474:131;-1:-1:-1;;;;;;17548:32:1;;17538:43;;17528:71;;17595:1;17592;17585:12

Swarm Source

ipfs://085f8391a44a8c9a2c7250390d12f1fb2119b169c6058c809fc29aa35e6630ac
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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