ETH Price: $3,433.80 (+5.47%)
Gas: 11 Gwei

Token

Womanoid (WND)
 

Overview

Max Total Supply

0 WND

Holders

201

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 WND
0xfb558c25b89388a7b8f9dfe58f9557f5909e281a
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:
Womanoid

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-03-24
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees 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.
 */
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 Returns the rebuilt hash obtained by traversing a Merklee 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

// File: contracts/Womanoid.sol


pragma solidity >=0.8.0;







/**
 * @title WOMANOID ERC-721 Contract
 * @author DegenDeveloper.eth
 *
 * The contract owner has the following permissions:
 * - Toggle whitelist minting
 * - Toggle public minting
 * - Set the URI for the revealed tokens
 * - Set the merkle root for the whitelist
 * - Withdraw the funds from the contract
 */
contract Womanoid is ERC721, Ownable, ReentrancyGuard {
  /// ============ SETUP ============ ///

  using Counters for Counters.Counter;
  using Strings for uint256;

  Counters.Counter private totalMinted;

  string private URI;

  bytes32 private merkleRoot;

  bool private WHITELIST_SALE_ACTIVE = false;
  bool private PUBLIC_SALE_ACTIVE = false;
  bool private REVEALED = false;

  /// mapping from each address to number of white list claims minted
  mapping(address => Counters.Counter) private whitelistClaims;

  uint256 private constant WL_PRICE = 80000000000000000; // 0.08 ETH
  uint256 private constant P_PRICE = 90000000000000000; // 0.09 ETH
  uint256 private constant MAXSUPPLY = 8888;
  uint256 private constant MAXMINT = 10;

  /// ============ CONSTRUCTOR ============ ///

  /**
   * @param _URI The ipfs hash for unrevealed tokens
   * @param _merkleRoot The root hash of the whitelist merkle tree
   */
  constructor(string memory _URI, bytes32 _merkleRoot)
    ERC721("Womanoid", "WND")
  {
    URI = _URI;
    merkleRoot = _merkleRoot;
  }

  /// ============ PUBLIC ============ ///

  /**
   * @param _minting The number of tokens to mint
   */
  function publicMint(uint256 _minting) public payable nonReentrant {
    require(PUBLIC_SALE_ACTIVE, "WND: public minting not active");
    require(_minting > 0, "WND: cannot mint 0 tokens");
    require(_minting <= MAXMINT, "WND: too many mints per txn");
    require(
      _minting + totalMinted.current() <= MAXSUPPLY,
      "WND: would exceed MAXSUPPLY"
    );
    require(msg.value >= P_PRICE * _minting, "WND: insufficient funds");

    for (uint256 i = 0; i < _minting; ++i) {
      totalMinted.increment();
      _safeMint(msg.sender, totalMinted.current());
    }
  }

  /**
   * @param _merkleProof The first part of caller's proof
   * @param _allowed The max number of tokens caller is allowed to mint
   * @param _minting The number of tokens caller is trying to mint
   */
  function whiteListMint(
    bytes32[] calldata _merkleProof,
    uint256 _allowed,
    uint256 _minting
  ) public payable nonReentrant {
    require(WHITELIST_SALE_ACTIVE, "WND: whitelist minting not active");
    require(_minting > 0, "WND: cannot mint 0 tokens");
    require(
      _verifyProof(msg.sender, _merkleProof, _allowed),
      "WND: invalid proof"
    );
    require(
      _minting + whitelistClaims[msg.sender].current() <= _allowed,
      "WND: not enough claims left"
    );
    require(
      _minting + totalMinted.current() <= MAXSUPPLY,
      "WND: would exceed MAXSUPPLY"
    );
    require(msg.value >= WL_PRICE * _minting, "WND: insufficient funds");

    for (uint256 i = 0; i < _minting; ++i) {
      whitelistClaims[msg.sender].increment();
      totalMinted.increment();
      _safeMint(msg.sender, totalMinted.current());
    }
  }

  /// ============ OWNER ============ ///

  /**
   * Open/close whitelist minting
   */
  function toggleWhitelistSale() public onlyOwner {
    WHITELIST_SALE_ACTIVE = !WHITELIST_SALE_ACTIVE;
  }

  /**
   * Open/close public minting
   */
  function togglePublicSale() public onlyOwner {
    PUBLIC_SALE_ACTIVE = !PUBLIC_SALE_ACTIVE;
  }

  /**
   * Reveal tokens with new baseURI
   * @param _newURI The ipfs folder of collection URIs
   */
  function toggleReveal(string memory _newURI) public onlyOwner {
    REVEALED = true;
    URI = _newURI;
  }

  /**
   * Change (base) URI if needed
   */
  function setURI(string memory _newURI) public onlyOwner {
    URI = _newURI;
  }

  /**
   * Set new root hash for merkle tree if whitelist changes after deployment
   * @param _merkleRoot New root hash of whitelist merkle tree
   */
  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  /**
   * Withdraw contract balance to contract owner
   */
  function withdrawFunds() public onlyOwner {
    payable(owner()).transfer(address(this).balance);
  }

  /// ============ PRIVATE ============ ///

  /**
   * Determines if _whitelister can prove whitelist placement
   * @param _whitelister The address proving
   * @param _merkleProof The _whitelisters proof
   * @param _allowed The number of whitelist claims _whitelister has
   * @return _b If _whitelister's proof is true
   */
  function _verifyProof(
    address _whitelister,
    bytes32[] calldata _merkleProof,
    uint256 _allowed
  ) private view returns (bool _b) {
    _b = MerkleProof.verify(
      _merkleProof,
      merkleRoot,
      keccak256(abi.encodePacked(_whitelister, _allowed))
    );
  }

  /// ============ PUBLIC ============ ///

  /**
   * @param _tokenId The token id to lookup
   * @return _uri The URI for _tokenId
   */
  function tokenURI(uint256 _tokenId)
    public
    view
    override
    returns (string memory _uri)
  {
    if (REVEALED) {
      _uri = string(abi.encodePacked(URI, _tokenId.toString(), ".json"));
    } else {
      _uri = URI;
    }
  }

  /**
   * @return _b If whitelist minting is active
   */
  function isWhitelistMint() public view returns (bool _b) {
    _b = WHITELIST_SALE_ACTIVE;
  }

  /**
   * @return _b If public minting is active
   */
  function isPublicMint() public view returns (bool _b) {
    _b = PUBLIC_SALE_ACTIVE;
  }

  /**
   * @return _b If tokens are revealed
   */
  function isRevealed() public view returns (bool _b) {
    _b = REVEALED;
  }

  /**
   * @return _s The base URI of tokens
   */
  function getBaseURI() public view returns (string memory _s) {
    _s = URI;
  }

  /**
   * @return _i The price to mint 1 token (in wei) for a whitelister
   */
  function getWhiteListPrice() public pure returns (uint256 _i) {
    _i = WL_PRICE;
  }

  /**
   * @return _i The price to mint 1 token (in wei) for public
   */
  function getPublicMintPrice() public pure returns (uint256 _i) {
    _i = P_PRICE;
  }

  /**
   * @return _i The max supply of the collection
   */
  function getTotalSupply() public pure returns (uint256 _i) {
    _i = MAXSUPPLY;
  }

  /**
   * @return _i The max number of tokens to mint per txn
   */
  function getMaxMint() public pure returns (uint256 _i) {
    _i = MAXMINT;
  }

  /**
   * @return _i The number of tokens that have currently been minted
   */
  function getTokensMinted() public view returns (uint256 _i) {
    _i = totalMinted.current();
  }

  /**
   * @return _b The merkle root of the whitelist
   */
  function getMerkleRoot() public view returns (bytes32 _b) {
    _b = merkleRoot;
  }

  /**
   * @param _operator The address to lookup
   * @return _i Then number of whitelist claims _operator has used
   */
  function getWhiteListClaims(address _operator)
    public
    view
    returns (uint256 _i)
  {
    _i = whitelistClaims[_operator].current();
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_URI","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"getBaseURI","outputs":[{"internalType":"string","name":"_s","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxMint","outputs":[{"internalType":"uint256","name":"_i","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"_b","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicMintPrice","outputs":[{"internalType":"uint256","name":"_i","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getTokensMinted","outputs":[{"internalType":"uint256","name":"_i","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"_i","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"getWhiteListClaims","outputs":[{"internalType":"uint256","name":"_i","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhiteListPrice","outputs":[{"internalType":"uint256","name":"_i","type":"uint256"}],"stateMutability":"pure","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":"isPublicMint","outputs":[{"internalType":"bool","name":"_b","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"_b","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistMint","outputs":[{"internalType":"bool","name":"_b","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minting","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"_newURI","type":"string"}],"name":"setURI","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":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_allowed","type":"uint256"},{"internalType":"uint256","name":"_minting","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b805462ffffff191690553480156200001d57600080fd5b50604051620026aa380380620026aa8339810160408190526200004091620001df565b604080518082018252600881526715dbdb585b9bda5960c21b60208083019182528351808501909452600384526215d39160ea1b9084015281519192916200008b9160009162000139565b508051620000a190600190602084019062000139565b505050620000be620000b8620000e360201b60201c565b620000e7565b60016007558151620000d890600990602085019062000139565b50600a555062000317565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014790620002c4565b90600052602060002090601f0160209004810192826200016b5760008555620001b6565b82601f106200018657805160ff1916838001178555620001b6565b82800160010185558215620001b6579182015b82811115620001b657825182559160200191906001019062000199565b50620001c4929150620001c8565b5090565b5b80821115620001c45760008155600101620001c9565b60008060408385031215620001f357600080fd5b82516001600160401b03808211156200020b57600080fd5b818501915085601f8301126200022057600080fd5b81518181111562000235576200023562000301565b604051601f8201601f19908116603f0116810190838211818310171562000260576200026062000301565b816040528281526020935088848487010111156200027d57600080fd5b600091505b82821015620002a1578482018401518183018501529083019062000282565b82821115620002b35760008484830101525b969092015195979596505050505050565b600181811c90821680620002d957607f821691505b60208210811415620002fb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61238380620003276000396000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461057c578063d69f6bae1461059c578063e222c7f9146105b1578063e985e9c5146105c6578063f2fde38b1461060f57600080fd5b8063a22cb4651461050f578063b88d4fde1461052f578063c4e41b221461054f578063c754da331461056457600080fd5b8063715018a6116100e7578063715018a61461048c578063744dab38146104a15780637cb64759146104bc5780638da5cb5b146104dc57806395d89b41146104fa57600080fd5b80636352211e1461042457806369d307251461044457806370a0823114610457578063714c53981461047757600080fd5b806324600fc31161019b578063495906571161016a57806349590657146103a15780634d85c61c146103b657806354214f69146103d157806359eda1b5146103ef5780635d8c2efd1461040457600080fd5b806324600fc31461033c5780632db11544146103515780633057931f1461036457806342842e0e1461038157600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806316217113146102da5780631f46452f1461030857806323b872dd1461031c57600080fd5b806301ffc9a71461020957806302fe53051461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611f42565b61062f565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611f7c565b610681565b005b34801561026c57600080fd5b506102756106cb565b60405161023591906120fc565b34801561028e57600080fd5b506102a261029d366004611f29565b61075d565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061025e6102d5366004611e7d565b6107f2565b3480156102e657600080fd5b506102fa6102f5366004611d34565b610908565b604051908152602001610235565b34801561031457600080fd5b50600a6102fa565b34801561032857600080fd5b5061025e610337366004611d89565b610926565b34801561034857600080fd5b5061025e610957565b61025e61035f366004611f29565b6109bd565b34801561037057600080fd5b50600b54610100900460ff16610229565b34801561038d57600080fd5b5061025e61039c366004611d89565b610c0c565b3480156103ad57600080fd5b50600a546102fa565b3480156103c257600080fd5b5067011c37937e0800006102fa565b3480156103dd57600080fd5b50600b5462010000900460ff16610229565b3480156103fb57600080fd5b5061025e610c27565b34801561041057600080fd5b5061025e61041f366004611f7c565b610c65565b34801561043057600080fd5b506102a261043f366004611f29565b610cb3565b61025e610452366004611ea7565b610d2a565b34801561046357600080fd5b506102fa610472366004611d34565b610ff8565b34801561048357600080fd5b5061027561107f565b34801561049857600080fd5b5061025e61108e565b3480156104ad57600080fd5b5067013fbe85edc900006102fa565b3480156104c857600080fd5b5061025e6104d7366004611f29565b6110c4565b3480156104e857600080fd5b506006546001600160a01b03166102a2565b34801561050657600080fd5b506102756110f3565b34801561051b57600080fd5b5061025e61052a366004611e41565b611102565b34801561053b57600080fd5b5061025e61054a366004611dc5565b61110d565b34801561055b57600080fd5b506122b86102fa565b34801561057057600080fd5b50600b5460ff16610229565b34801561058857600080fd5b50610275610597366004611f29565b611145565b3480156105a857600080fd5b506102fa61121e565b3480156105bd57600080fd5b5061025e61122e565b3480156105d257600080fd5b506102296105e1366004611d56565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061b57600080fd5b5061025e61062a366004611d34565b611275565b60006001600160e01b031982166380ac58cd60e01b148061066057506001600160e01b03198216635b5e139f60e01b145b8061067b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106b45760405162461bcd60e51b81526004016106ab90612161565b60405180910390fd5b80516106c7906009906020840190611c0e565b5050565b6060600080546106da90612275565b80601f016020809104026020016040519081016040528092919081815260200182805461070690612275565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107d65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ab565b506000908152600460205260409020546001600160a01b031690565b60006107fd82610cb3565b9050806001600160a01b0316836001600160a01b0316141561086b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ab565b336001600160a01b0382161480610887575061088781336105e1565b6108f95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ab565b610903838361130d565b505050565b6001600160a01b0381166000908152600c602052604081205461067b565b610930338261137b565b61094c5760405162461bcd60e51b81526004016106ab90612196565b610903838383611472565b6006546001600160a01b031633146109815760405162461bcd60e51b81526004016106ab90612161565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156109ba573d6000803e3d6000fd5b50565b60026007541415610a105760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ab565b6002600755600b54610100900460ff16610a6c5760405162461bcd60e51b815260206004820152601e60248201527f574e443a207075626c6963206d696e74696e67206e6f7420616374697665000060448201526064016106ab565b60008111610ab85760405162461bcd60e51b8152602060048201526019602482015278574e443a2063616e6e6f74206d696e74203020746f6b656e7360381b60448201526064016106ab565b600a811115610b095760405162461bcd60e51b815260206004820152601b60248201527f574e443a20746f6f206d616e79206d696e7473207065722074786e000000000060448201526064016106ab565b6122b8610b1560085490565b610b1f90836121e7565b1115610b6d5760405162461bcd60e51b815260206004820152601b60248201527f574e443a20776f756c6420657863656564204d4158535550504c59000000000060448201526064016106ab565b610b7f8167013fbe85edc90000612213565b341015610bc85760405162461bcd60e51b8152602060048201526017602482015276574e443a20696e73756666696369656e742066756e647360481b60448201526064016106ab565b60005b81811015610c0357610be1600880546001019055565b610bf333610bee60085490565b61160e565b610bfc816122b0565b9050610bcb565b50506001600755565b6109038383836040518060200160405280600081525061110d565b6006546001600160a01b03163314610c515760405162461bcd60e51b81526004016106ab90612161565b600b805460ff19811660ff90911615179055565b6006546001600160a01b03163314610c8f5760405162461bcd60e51b81526004016106ab90612161565b600b805462ff000019166201000017905580516106c7906009906020840190611c0e565b6000818152600260205260408120546001600160a01b03168061067b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ab565b60026007541415610d7d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ab565b6002600755600b5460ff16610dde5760405162461bcd60e51b815260206004820152602160248201527f574e443a2077686974656c697374206d696e74696e67206e6f742061637469766044820152606560f81b60648201526084016106ab565b60008111610e2a5760405162461bcd60e51b8152602060048201526019602482015278574e443a2063616e6e6f74206d696e74203020746f6b656e7360381b60448201526064016106ab565b610e3633858585611628565b610e775760405162461bcd60e51b81526020600482015260126024820152712ba7221d1034b73b30b634b210383937b7b360711b60448201526064016106ab565b336000908152600c60205260409020548290610e9390836121e7565b1115610ee15760405162461bcd60e51b815260206004820152601b60248201527f574e443a206e6f7420656e6f75676820636c61696d73206c656674000000000060448201526064016106ab565b6122b8610eed60085490565b610ef790836121e7565b1115610f455760405162461bcd60e51b815260206004820152601b60248201527f574e443a20776f756c6420657863656564204d4158535550504c59000000000060448201526064016106ab565b610f578167011c37937e080000612213565b341015610fa05760405162461bcd60e51b8152602060048201526017602482015276574e443a20696e73756666696369656e742066756e647360481b60448201526064016106ab565b60005b81811015610fec57336000908152600c6020526040902080546001019055610fcf600880546001019055565b610fdc33610bee60085490565b610fe5816122b0565b9050610fa3565b50506001600755505050565b60006001600160a01b0382166110635760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ab565b506001600160a01b031660009081526003602052604090205490565b6060600980546106da90612275565b6006546001600160a01b031633146110b85760405162461bcd60e51b81526004016106ab90612161565b6110c260006116b0565b565b6006546001600160a01b031633146110ee5760405162461bcd60e51b81526004016106ab90612161565b600a55565b6060600180546106da90612275565b6106c7338383611702565b611117338361137b565b6111335760405162461bcd60e51b81526004016106ab90612196565b61113f848484846117d1565b50505050565b600b5460609062010000900460ff161561118b57600961116483611804565b60405160200161117592919061200d565b6040516020818303038152906040529050919050565b6009805461119890612275565b80601f01602080910402602001604051908101604052809291908181526020018280546111c490612275565b80156112115780601f106111e657610100808354040283529160200191611211565b820191906000526020600020905b8154815290600101906020018083116111f457829003601f168201915b505050505090505b919050565b600061122960085490565b905090565b6006546001600160a01b031633146112585760405162461bcd60e51b81526004016106ab90612161565b600b805461ff001981166101009182900460ff1615909102179055565b6006546001600160a01b0316331461129f5760405162461bcd60e51b81526004016106ab90612161565b6001600160a01b0381166113045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ab565b6109ba816116b0565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061134282610cb3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113f45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ab565b60006113ff83610cb3565b9050806001600160a01b0316846001600160a01b0316148061143a5750836001600160a01b031661142f8461075d565b6001600160a01b0316145b8061146a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661148582610cb3565b6001600160a01b0316146114e95760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106ab565b6001600160a01b03821661154b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ab565b61155660008261130d565b6001600160a01b038316600090815260036020526040812080546001929061157f908490612232565b90915550506001600160a01b03821660009081526003602052604081208054600192906115ad9084906121e7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6106c7828260405180602001604052806000815250611902565b60006116a784848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a546040516bffffffffffffffffffffffff1960608c901b16602082015260348101889052909250605401905060405160208183030381529060405280519060200120611935565b95945050505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117645760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ab565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117dc848484611472565b6117e88484848461194b565b61113f5760405162461bcd60e51b81526004016106ab9061210f565b6060816118285750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611852578061183c816122b0565b915061184b9050600a836121ff565b915061182c565b60008167ffffffffffffffff81111561186d5761186d612321565b6040519080825280601f01601f191660200182016040528015611897576020820181803683370190505b5090505b841561146a576118ac600183612232565b91506118b9600a866122cb565b6118c49060306121e7565b60f81b8183815181106118d9576118d961230b565b60200101906001600160f81b031916908160001a9053506118fb600a866121ff565b945061189b565b61190c8383611a58565b611919600084848461194b565b6109035760405162461bcd60e51b81526004016106ab9061210f565b6000826119428584611b9a565b14949350505050565b60006001600160a01b0384163b15611a4d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061198f9033908990889088906004016120bf565b602060405180830381600087803b1580156119a957600080fd5b505af19250505080156119d9575060408051601f3d908101601f191682019092526119d691810190611f5f565b60015b611a33573d808015611a07576040519150601f19603f3d011682016040523d82523d6000602084013e611a0c565b606091505b508051611a2b5760405162461bcd60e51b81526004016106ab9061210f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061146a565b506001949350505050565b6001600160a01b038216611aae5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ab565b6000818152600260205260409020546001600160a01b031615611b135760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ab565b6001600160a01b0382166000908152600360205260408120805460019290611b3c9084906121e7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b8451811015611c06576000858281518110611bbc57611bbc61230b565b60200260200101519050808311611be25760008381526020829052604090209250611bf3565b600081815260208490526040902092505b5080611bfe816122b0565b915050611b9f565b509392505050565b828054611c1a90612275565b90600052602060002090601f016020900481019282611c3c5760008555611c82565b82601f10611c5557805160ff1916838001178555611c82565b82800160010185558215611c82579182015b82811115611c82578251825591602001919060010190611c67565b50611c8e929150611c92565b5090565b5b80821115611c8e5760008155600101611c93565b600067ffffffffffffffff80841115611cc257611cc2612321565b604051601f8501601f19908116603f01168101908282118183101715611cea57611cea612321565b81604052809350858152868686011115611d0357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461121957600080fd5b600060208284031215611d4657600080fd5b611d4f82611d1d565b9392505050565b60008060408385031215611d6957600080fd5b611d7283611d1d565b9150611d8060208401611d1d565b90509250929050565b600080600060608486031215611d9e57600080fd5b611da784611d1d565b9250611db560208501611d1d565b9150604084013590509250925092565b60008060008060808587031215611ddb57600080fd5b611de485611d1d565b9350611df260208601611d1d565b925060408501359150606085013567ffffffffffffffff811115611e1557600080fd5b8501601f81018713611e2657600080fd5b611e3587823560208401611ca7565b91505092959194509250565b60008060408385031215611e5457600080fd5b611e5d83611d1d565b915060208301358015158114611e7257600080fd5b809150509250929050565b60008060408385031215611e9057600080fd5b611e9983611d1d565b946020939093013593505050565b60008060008060608587031215611ebd57600080fd5b843567ffffffffffffffff80821115611ed557600080fd5b818701915087601f830112611ee957600080fd5b813581811115611ef857600080fd5b8860208260051b8501011115611f0d57600080fd5b6020928301999098509187013596604001359550909350505050565b600060208284031215611f3b57600080fd5b5035919050565b600060208284031215611f5457600080fd5b8135611d4f81612337565b600060208284031215611f7157600080fd5b8151611d4f81612337565b600060208284031215611f8e57600080fd5b813567ffffffffffffffff811115611fa557600080fd5b8201601f81018413611fb657600080fd5b61146a84823560208401611ca7565b60008151808452611fdd816020860160208601612249565b601f01601f19169290920160200192915050565b60008151612003818560208601612249565b9290920192915050565b600080845481600182811c91508083168061202957607f831692505b602080841082141561204957634e487b7160e01b86526022600452602486fd5b81801561205d576001811461206e5761209b565b60ff1986168952848901965061209b565b60008b81526020902060005b868110156120935781548b82015290850190830161207a565b505084890196505b5050505050506116a76120ae8286611ff1565b64173539b7b760d91b815260050190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120f290830184611fc5565b9695505050505050565b602081526000611d4f6020830184611fc5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121fa576121fa6122df565b500190565b60008261220e5761220e6122f5565b500490565b600081600019048311821515161561222d5761222d6122df565b500290565b600082821015612244576122446122df565b500390565b60005b8381101561226457818101518382015260200161224c565b8381111561113f5750506000910152565b600181811c9082168061228957607f821691505b602082108114156122aa57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122c4576122c46122df565b5060010190565b6000826122da576122da6122f5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109ba57600080fdfea26469706673582212201e79d39b87a6aa1e7809b2aa6d1d628d732700607e9bc85dd6119de67a45142664736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000401aed21261a766f743e2549e3d7849a3ff4f49318747ab0d5365a9e80faaa95b90000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d4e4e6b4e474a374d31664d5a6757517948474d796b71364b615a45314455666f7168704747546955534356310000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461057c578063d69f6bae1461059c578063e222c7f9146105b1578063e985e9c5146105c6578063f2fde38b1461060f57600080fd5b8063a22cb4651461050f578063b88d4fde1461052f578063c4e41b221461054f578063c754da331461056457600080fd5b8063715018a6116100e7578063715018a61461048c578063744dab38146104a15780637cb64759146104bc5780638da5cb5b146104dc57806395d89b41146104fa57600080fd5b80636352211e1461042457806369d307251461044457806370a0823114610457578063714c53981461047757600080fd5b806324600fc31161019b578063495906571161016a57806349590657146103a15780634d85c61c146103b657806354214f69146103d157806359eda1b5146103ef5780635d8c2efd1461040457600080fd5b806324600fc31461033c5780632db11544146103515780633057931f1461036457806342842e0e1461038157600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806316217113146102da5780631f46452f1461030857806323b872dd1461031c57600080fd5b806301ffc9a71461020957806302fe53051461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611f42565b61062f565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611f7c565b610681565b005b34801561026c57600080fd5b506102756106cb565b60405161023591906120fc565b34801561028e57600080fd5b506102a261029d366004611f29565b61075d565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061025e6102d5366004611e7d565b6107f2565b3480156102e657600080fd5b506102fa6102f5366004611d34565b610908565b604051908152602001610235565b34801561031457600080fd5b50600a6102fa565b34801561032857600080fd5b5061025e610337366004611d89565b610926565b34801561034857600080fd5b5061025e610957565b61025e61035f366004611f29565b6109bd565b34801561037057600080fd5b50600b54610100900460ff16610229565b34801561038d57600080fd5b5061025e61039c366004611d89565b610c0c565b3480156103ad57600080fd5b50600a546102fa565b3480156103c257600080fd5b5067011c37937e0800006102fa565b3480156103dd57600080fd5b50600b5462010000900460ff16610229565b3480156103fb57600080fd5b5061025e610c27565b34801561041057600080fd5b5061025e61041f366004611f7c565b610c65565b34801561043057600080fd5b506102a261043f366004611f29565b610cb3565b61025e610452366004611ea7565b610d2a565b34801561046357600080fd5b506102fa610472366004611d34565b610ff8565b34801561048357600080fd5b5061027561107f565b34801561049857600080fd5b5061025e61108e565b3480156104ad57600080fd5b5067013fbe85edc900006102fa565b3480156104c857600080fd5b5061025e6104d7366004611f29565b6110c4565b3480156104e857600080fd5b506006546001600160a01b03166102a2565b34801561050657600080fd5b506102756110f3565b34801561051b57600080fd5b5061025e61052a366004611e41565b611102565b34801561053b57600080fd5b5061025e61054a366004611dc5565b61110d565b34801561055b57600080fd5b506122b86102fa565b34801561057057600080fd5b50600b5460ff16610229565b34801561058857600080fd5b50610275610597366004611f29565b611145565b3480156105a857600080fd5b506102fa61121e565b3480156105bd57600080fd5b5061025e61122e565b3480156105d257600080fd5b506102296105e1366004611d56565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061b57600080fd5b5061025e61062a366004611d34565b611275565b60006001600160e01b031982166380ac58cd60e01b148061066057506001600160e01b03198216635b5e139f60e01b145b8061067b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106b45760405162461bcd60e51b81526004016106ab90612161565b60405180910390fd5b80516106c7906009906020840190611c0e565b5050565b6060600080546106da90612275565b80601f016020809104026020016040519081016040528092919081815260200182805461070690612275565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107d65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ab565b506000908152600460205260409020546001600160a01b031690565b60006107fd82610cb3565b9050806001600160a01b0316836001600160a01b0316141561086b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ab565b336001600160a01b0382161480610887575061088781336105e1565b6108f95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ab565b610903838361130d565b505050565b6001600160a01b0381166000908152600c602052604081205461067b565b610930338261137b565b61094c5760405162461bcd60e51b81526004016106ab90612196565b610903838383611472565b6006546001600160a01b031633146109815760405162461bcd60e51b81526004016106ab90612161565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156109ba573d6000803e3d6000fd5b50565b60026007541415610a105760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ab565b6002600755600b54610100900460ff16610a6c5760405162461bcd60e51b815260206004820152601e60248201527f574e443a207075626c6963206d696e74696e67206e6f7420616374697665000060448201526064016106ab565b60008111610ab85760405162461bcd60e51b8152602060048201526019602482015278574e443a2063616e6e6f74206d696e74203020746f6b656e7360381b60448201526064016106ab565b600a811115610b095760405162461bcd60e51b815260206004820152601b60248201527f574e443a20746f6f206d616e79206d696e7473207065722074786e000000000060448201526064016106ab565b6122b8610b1560085490565b610b1f90836121e7565b1115610b6d5760405162461bcd60e51b815260206004820152601b60248201527f574e443a20776f756c6420657863656564204d4158535550504c59000000000060448201526064016106ab565b610b7f8167013fbe85edc90000612213565b341015610bc85760405162461bcd60e51b8152602060048201526017602482015276574e443a20696e73756666696369656e742066756e647360481b60448201526064016106ab565b60005b81811015610c0357610be1600880546001019055565b610bf333610bee60085490565b61160e565b610bfc816122b0565b9050610bcb565b50506001600755565b6109038383836040518060200160405280600081525061110d565b6006546001600160a01b03163314610c515760405162461bcd60e51b81526004016106ab90612161565b600b805460ff19811660ff90911615179055565b6006546001600160a01b03163314610c8f5760405162461bcd60e51b81526004016106ab90612161565b600b805462ff000019166201000017905580516106c7906009906020840190611c0e565b6000818152600260205260408120546001600160a01b03168061067b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ab565b60026007541415610d7d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ab565b6002600755600b5460ff16610dde5760405162461bcd60e51b815260206004820152602160248201527f574e443a2077686974656c697374206d696e74696e67206e6f742061637469766044820152606560f81b60648201526084016106ab565b60008111610e2a5760405162461bcd60e51b8152602060048201526019602482015278574e443a2063616e6e6f74206d696e74203020746f6b656e7360381b60448201526064016106ab565b610e3633858585611628565b610e775760405162461bcd60e51b81526020600482015260126024820152712ba7221d1034b73b30b634b210383937b7b360711b60448201526064016106ab565b336000908152600c60205260409020548290610e9390836121e7565b1115610ee15760405162461bcd60e51b815260206004820152601b60248201527f574e443a206e6f7420656e6f75676820636c61696d73206c656674000000000060448201526064016106ab565b6122b8610eed60085490565b610ef790836121e7565b1115610f455760405162461bcd60e51b815260206004820152601b60248201527f574e443a20776f756c6420657863656564204d4158535550504c59000000000060448201526064016106ab565b610f578167011c37937e080000612213565b341015610fa05760405162461bcd60e51b8152602060048201526017602482015276574e443a20696e73756666696369656e742066756e647360481b60448201526064016106ab565b60005b81811015610fec57336000908152600c6020526040902080546001019055610fcf600880546001019055565b610fdc33610bee60085490565b610fe5816122b0565b9050610fa3565b50506001600755505050565b60006001600160a01b0382166110635760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ab565b506001600160a01b031660009081526003602052604090205490565b6060600980546106da90612275565b6006546001600160a01b031633146110b85760405162461bcd60e51b81526004016106ab90612161565b6110c260006116b0565b565b6006546001600160a01b031633146110ee5760405162461bcd60e51b81526004016106ab90612161565b600a55565b6060600180546106da90612275565b6106c7338383611702565b611117338361137b565b6111335760405162461bcd60e51b81526004016106ab90612196565b61113f848484846117d1565b50505050565b600b5460609062010000900460ff161561118b57600961116483611804565b60405160200161117592919061200d565b6040516020818303038152906040529050919050565b6009805461119890612275565b80601f01602080910402602001604051908101604052809291908181526020018280546111c490612275565b80156112115780601f106111e657610100808354040283529160200191611211565b820191906000526020600020905b8154815290600101906020018083116111f457829003601f168201915b505050505090505b919050565b600061122960085490565b905090565b6006546001600160a01b031633146112585760405162461bcd60e51b81526004016106ab90612161565b600b805461ff001981166101009182900460ff1615909102179055565b6006546001600160a01b0316331461129f5760405162461bcd60e51b81526004016106ab90612161565b6001600160a01b0381166113045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ab565b6109ba816116b0565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061134282610cb3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113f45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ab565b60006113ff83610cb3565b9050806001600160a01b0316846001600160a01b0316148061143a5750836001600160a01b031661142f8461075d565b6001600160a01b0316145b8061146a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661148582610cb3565b6001600160a01b0316146114e95760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106ab565b6001600160a01b03821661154b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ab565b61155660008261130d565b6001600160a01b038316600090815260036020526040812080546001929061157f908490612232565b90915550506001600160a01b03821660009081526003602052604081208054600192906115ad9084906121e7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6106c7828260405180602001604052806000815250611902565b60006116a784848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a546040516bffffffffffffffffffffffff1960608c901b16602082015260348101889052909250605401905060405160208183030381529060405280519060200120611935565b95945050505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117645760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ab565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117dc848484611472565b6117e88484848461194b565b61113f5760405162461bcd60e51b81526004016106ab9061210f565b6060816118285750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611852578061183c816122b0565b915061184b9050600a836121ff565b915061182c565b60008167ffffffffffffffff81111561186d5761186d612321565b6040519080825280601f01601f191660200182016040528015611897576020820181803683370190505b5090505b841561146a576118ac600183612232565b91506118b9600a866122cb565b6118c49060306121e7565b60f81b8183815181106118d9576118d961230b565b60200101906001600160f81b031916908160001a9053506118fb600a866121ff565b945061189b565b61190c8383611a58565b611919600084848461194b565b6109035760405162461bcd60e51b81526004016106ab9061210f565b6000826119428584611b9a565b14949350505050565b60006001600160a01b0384163b15611a4d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061198f9033908990889088906004016120bf565b602060405180830381600087803b1580156119a957600080fd5b505af19250505080156119d9575060408051601f3d908101601f191682019092526119d691810190611f5f565b60015b611a33573d808015611a07576040519150601f19603f3d011682016040523d82523d6000602084013e611a0c565b606091505b508051611a2b5760405162461bcd60e51b81526004016106ab9061210f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061146a565b506001949350505050565b6001600160a01b038216611aae5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ab565b6000818152600260205260409020546001600160a01b031615611b135760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ab565b6001600160a01b0382166000908152600360205260408120805460019290611b3c9084906121e7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b8451811015611c06576000858281518110611bbc57611bbc61230b565b60200260200101519050808311611be25760008381526020829052604090209250611bf3565b600081815260208490526040902092505b5080611bfe816122b0565b915050611b9f565b509392505050565b828054611c1a90612275565b90600052602060002090601f016020900481019282611c3c5760008555611c82565b82601f10611c5557805160ff1916838001178555611c82565b82800160010185558215611c82579182015b82811115611c82578251825591602001919060010190611c67565b50611c8e929150611c92565b5090565b5b80821115611c8e5760008155600101611c93565b600067ffffffffffffffff80841115611cc257611cc2612321565b604051601f8501601f19908116603f01168101908282118183101715611cea57611cea612321565b81604052809350858152868686011115611d0357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461121957600080fd5b600060208284031215611d4657600080fd5b611d4f82611d1d565b9392505050565b60008060408385031215611d6957600080fd5b611d7283611d1d565b9150611d8060208401611d1d565b90509250929050565b600080600060608486031215611d9e57600080fd5b611da784611d1d565b9250611db560208501611d1d565b9150604084013590509250925092565b60008060008060808587031215611ddb57600080fd5b611de485611d1d565b9350611df260208601611d1d565b925060408501359150606085013567ffffffffffffffff811115611e1557600080fd5b8501601f81018713611e2657600080fd5b611e3587823560208401611ca7565b91505092959194509250565b60008060408385031215611e5457600080fd5b611e5d83611d1d565b915060208301358015158114611e7257600080fd5b809150509250929050565b60008060408385031215611e9057600080fd5b611e9983611d1d565b946020939093013593505050565b60008060008060608587031215611ebd57600080fd5b843567ffffffffffffffff80821115611ed557600080fd5b818701915087601f830112611ee957600080fd5b813581811115611ef857600080fd5b8860208260051b8501011115611f0d57600080fd5b6020928301999098509187013596604001359550909350505050565b600060208284031215611f3b57600080fd5b5035919050565b600060208284031215611f5457600080fd5b8135611d4f81612337565b600060208284031215611f7157600080fd5b8151611d4f81612337565b600060208284031215611f8e57600080fd5b813567ffffffffffffffff811115611fa557600080fd5b8201601f81018413611fb657600080fd5b61146a84823560208401611ca7565b60008151808452611fdd816020860160208601612249565b601f01601f19169290920160200192915050565b60008151612003818560208601612249565b9290920192915050565b600080845481600182811c91508083168061202957607f831692505b602080841082141561204957634e487b7160e01b86526022600452602486fd5b81801561205d576001811461206e5761209b565b60ff1986168952848901965061209b565b60008b81526020902060005b868110156120935781548b82015290850190830161207a565b505084890196505b5050505050506116a76120ae8286611ff1565b64173539b7b760d91b815260050190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120f290830184611fc5565b9695505050505050565b602081526000611d4f6020830184611fc5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121fa576121fa6122df565b500190565b60008261220e5761220e6122f5565b500490565b600081600019048311821515161561222d5761222d6122df565b500290565b600082821015612244576122446122df565b500390565b60005b8381101561226457818101518382015260200161224c565b8381111561113f5750506000910152565b600181811c9082168061228957607f821691505b602082108114156122aa57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122c4576122c46122df565b5060010190565b6000826122da576122da6122f5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109ba57600080fdfea26469706673582212201e79d39b87a6aa1e7809b2aa6d1d628d732700607e9bc85dd6119de67a45142664736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000401aed21261a766f743e2549e3d7849a3ff4f49318747ab0d5365a9e80faaa95b90000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d4e4e6b4e474a374d31664d5a6757517948474d796b71364b615a45314455666f7168704747546955534356310000000000000000000000

-----Decoded View---------------
Arg [0] : _URI (string): ipfs://QmNNkNGJ7M1fMZgWQyHGMykq6KaZE1DUfoqhpGGTiUSCV1
Arg [1] : _merkleRoot (bytes32): 0x1aed21261a766f743e2549e3d7849a3ff4f49318747ab0d5365a9e80faaa95b9

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 1aed21261a766f743e2549e3d7849a3ff4f49318747ab0d5365a9e80faaa95b9
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [3] : 697066733a2f2f516d4e4e6b4e474a374d31664d5a6757517948474d796b7136
Arg [4] : 4b615a45314455666f7168704747546955534356310000000000000000000000


Deployed Bytecode Sourcemap

44237:6994:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30722:305;;;;;;;;;;-1:-1:-1;30722:305:0;;;;;:::i;:::-;;:::i;:::-;;;8031:14:1;;8024:22;8006:41;;7994:2;7979:18;30722:305:0;;;;;;;;47785:82;;;;;;;;;;-1:-1:-1;47785:82:0;;;;;:::i;:::-;;:::i;:::-;;31667:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33226:221::-;;;;;;;;;;-1:-1:-1;33226:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7329:32:1;;;7311:51;;7299:2;7284:18;33226:221:0;7165:203:1;32749:411:0;;;;;;;;;;-1:-1:-1;32749:411:0;;;;;:::i;:::-;;:::i;51076:152::-;;;;;;;;;;-1:-1:-1;51076:152:0;;;;;:::i;:::-;;:::i;:::-;;;8204:25:1;;;8192:2;8177:18;51076:152:0;8058:177:1;50518:80:0;;;;;;;;;;-1:-1:-1;44999:2:0;50518:80;;33976:339;;;;;;;;;;-1:-1:-1;33976:339:0;;;;;:::i;:::-;;:::i;48197:103::-;;;;;;;;;;;;;:::i;45453:590::-;;;;;;:::i;:::-;;:::i;49565:90::-;;;;;;;;;;-1:-1:-1;49631:18:0;;;;;;;49565:90;;34386:185;;;;;;;;;;-1:-1:-1;34386:185:0;;;;;:::i;:::-;;:::i;50857:86::-;;;;;;;;;;-1:-1:-1;50927:10:0;;50857:86;;50025:88;;;;;;;;;;-1:-1:-1;44815:17:0;50025:88;;49715:78;;;;;;;;;;-1:-1:-1;49779:8:0;;;;;;;49715:78;;47251:107;;;;;;;;;;;;;:::i;47621:110::-;;;;;;;;;;-1:-1:-1;47621:110:0;;;;;:::i;:::-;;:::i;31361:239::-;;;;;;;;;;-1:-1:-1;31361:239:0;;;;;:::i;:::-;;:::i;46263:888::-;;;;;;:::i;:::-;;:::i;31091:208::-;;;;;;;;;;-1:-1:-1;31091:208:0;;;;;:::i;:::-;;:::i;49853:82::-;;;;;;;;;;;;;:::i;11343:103::-;;;;;;;;;;;;;:::i;50196:88::-;;;;;;;;;;-1:-1:-1;44884:17:0;50196:88;;48029:98;;;;;;;;;;-1:-1:-1;48029:98:0;;;;;:::i;:::-;;:::i;10692:87::-;;;;;;;;;;-1:-1:-1;10765:6:0;;-1:-1:-1;;;;;10765:6:0;10692:87;;31836:104;;;;;;;;;;;;;:::i;33519:155::-;;;;;;;;;;-1:-1:-1;33519:155:0;;;;;:::i;:::-;;:::i;34642:328::-;;;;;;;;;;-1:-1:-1;34642:328:0;;;;;:::i;:::-;;:::i;50354:86::-;;;;;;;;;;-1:-1:-1;44955:4:0;50354:86;;49404:96;;;;;;;;;;-1:-1:-1;49473:21:0;;;;49404:96;;49085:251;;;;;;;;;;-1:-1:-1;49085:251:0;;;;;:::i;:::-;;:::i;50688:99::-;;;;;;;;;;;;;:::i;47410:98::-;;;;;;;;;;;;;:::i;33745:164::-;;;;;;;;;;-1:-1:-1;33745:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33866:25:0;;;33842:4;33866:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33745:164;11601:201;;;;;;;;;;-1:-1:-1;11601:201:0;;;;;:::i;:::-;;:::i;30722:305::-;30824:4;-1:-1:-1;;;;;;30861:40:0;;-1:-1:-1;;;30861:40:0;;:105;;-1:-1:-1;;;;;;;30918:48:0;;-1:-1:-1;;;30918:48:0;30861:105;:158;;;-1:-1:-1;;;;;;;;;;23585:40:0;;;30983:36;30841:178;30722:305;-1:-1:-1;;30722:305:0:o;47785:82::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;;;;;;;;;47848:13;;::::1;::::0;:3:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47785:82:::0;:::o;31667:100::-;31721:13;31754:5;31747:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31667:100;:::o;33226:221::-;33302:7;36569:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36569:16:0;33322:73;;;;-1:-1:-1;;;33322:73:0;;14101:2:1;33322:73:0;;;14083:21:1;14140:2;14120:18;;;14113:30;14179:34;14159:18;;;14152:62;-1:-1:-1;;;14230:18:1;;;14223:42;14282:19;;33322:73:0;13899:408:1;33322:73:0;-1:-1:-1;33415:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33415:24:0;;33226:221::o;32749:411::-;32830:13;32846:23;32861:7;32846:14;:23::i;:::-;32830:39;;32894:5;-1:-1:-1;;;;;32888:11:0;:2;-1:-1:-1;;;;;32888:11:0;;;32880:57;;;;-1:-1:-1;;;32880:57:0;;15624:2:1;32880:57:0;;;15606:21:1;15663:2;15643:18;;;15636:30;15702:34;15682:18;;;15675:62;-1:-1:-1;;;15753:18:1;;;15746:31;15794:19;;32880:57:0;15422:397:1;32880:57:0;9496:10;-1:-1:-1;;;;;32972:21:0;;;;:62;;-1:-1:-1;32997:37:0;33014:5;9496:10;33745:164;:::i;32997:37::-;32950:168;;;;-1:-1:-1;;;32950:168:0;;12135:2:1;32950:168:0;;;12117:21:1;12174:2;12154:18;;;12147:30;12213:34;12193:18;;;12186:62;12284:26;12264:18;;;12257:54;12328:19;;32950:168:0;11933:420:1;32950:168:0;33131:21;33140:2;33144:7;33131:8;:21::i;:::-;32819:341;32749:411;;:::o;51076:152::-;-1:-1:-1;;;;;51186:26:0;;51159:10;51186:26;;;:15;:26;;;;;6112:14;51186:36;6020:114;33976:339;34171:41;9496:10;34204:7;34171:18;:41::i;:::-;34163:103;;;;-1:-1:-1;;;34163:103:0;;;;;;;:::i;:::-;34279:28;34289:4;34295:2;34299:7;34279:9;:28::i;48197:103::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;10765:6;;48246:48:::1;::::0;-1:-1:-1;;;;;10765:6:0;;;;48272:21:::1;48246:48:::0;::::1;;;::::0;::::1;::::0;;;48272:21;10765:6;48246:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48197:103::o:0;45453:590::-;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;17154:2:1;2402:63:0;;;17136:21:1;17193:2;17173:18;;;17166:30;17232:33;17212:18;;;17205:61;17283:18;;2402:63:0;16952:355:1;2402:63:0;1812:1;2543:7;:18;45534::::1;::::0;::::1;::::0;::::1;;;45526:61;;;::::0;-1:-1:-1;;;45526:61:0;;12560:2:1;45526:61:0::1;::::0;::::1;12542:21:1::0;12599:2;12579:18;;;12572:30;12638:32;12618:18;;;12611:60;12688:18;;45526:61:0::1;12358:354:1::0;45526:61:0::1;45613:1;45602:8;:12;45594:50;;;::::0;-1:-1:-1;;;45594:50:0;;16026:2:1;45594:50:0::1;::::0;::::1;16008:21:1::0;16065:2;16045:18;;;16038:30;-1:-1:-1;;;16084:18:1;;;16077:55;16149:18;;45594:50:0::1;15824:349:1::0;45594:50:0::1;44999:2;45659:8;:19;;45651:59;;;::::0;-1:-1:-1;;;45651:59:0;;16380:2:1;45651:59:0::1;::::0;::::1;16362:21:1::0;16419:2;16399:18;;;16392:30;16458:29;16438:18;;;16431:57;16505:18;;45651:59:0::1;16178:351:1::0;45651:59:0::1;44955:4;45744:21;:11;6112:14:::0;;6020:114;45744:21:::1;45733:32;::::0;:8;:32:::1;:::i;:::-;:45;;45717:106;;;::::0;-1:-1:-1;;;45717:106:0;;11366:2:1;45717:106:0::1;::::0;::::1;11348:21:1::0;11405:2;11385:18;;;11378:30;11444:29;11424:18;;;11417:57;11491:18;;45717:106:0::1;11164:351:1::0;45717:106:0::1;45851:18;45861:8:::0;44884:17:::1;45851:18;:::i;:::-;45838:9;:31;;45830:67;;;::::0;-1:-1:-1;;;45830:67:0;;10255:2:1;45830:67:0::1;::::0;::::1;10237:21:1::0;10294:2;10274:18;;;10267:30;-1:-1:-1;;;10313:18:1;;;10306:53;10376:18;;45830:67:0::1;10053:347:1::0;45830:67:0::1;45911:9;45906:132;45930:8;45926:1;:12;45906:132;;;45954:23;:11;6231:19:::0;;6249:1;6231:19;;;6142:127;45954:23:::1;45986:44;45996:10;46008:21;:11;6112:14:::0;;6020:114;46008:21:::1;45986:9;:44::i;:::-;45940:3;::::0;::::1;:::i;:::-;;;45906:132;;;-1:-1:-1::0;;1768:1:0;2722:7;:22;45453:590::o;34386:185::-;34524:39;34541:4;34547:2;34551:7;34524:39;;;;;;;;;;;;:16;:39::i;47251:107::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;47331:21:::1;::::0;;-1:-1:-1;;47306:46:0;::::1;47331:21;::::0;;::::1;47330:22;47306:46;::::0;;47251:107::o;47621:110::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;47690:8:::1;:15:::0;;-1:-1:-1;;47690:15:0::1;::::0;::::1;::::0;;47712:13;;::::1;::::0;:3:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;31361:239::-:0;31433:7;31469:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31469:16:0;31504:19;31496:73;;;;-1:-1:-1;;;31496:73:0;;13330:2:1;31496:73:0;;;13312:21:1;13369:2;13349:18;;;13342:30;13408:34;13388:18;;;13381:62;-1:-1:-1;;;13459:18:1;;;13452:39;13508:19;;31496:73:0;13128:405:1;46263:888:0;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;17154:2:1;2402:63:0;;;17136:21:1;17193:2;17173:18;;;17166:30;17232:33;17212:18;;;17205:61;17283:18;;2402:63:0;16952:355:1;2402:63:0;1812:1;2543:7;:18;46418:21:::1;::::0;::::1;;46410:67;;;::::0;-1:-1:-1;;;46410:67:0;;14875:2:1;46410:67:0::1;::::0;::::1;14857:21:1::0;14914:2;14894:18;;;14887:30;14953:34;14933:18;;;14926:62;-1:-1:-1;;;15004:18:1;;;14997:31;15045:19;;46410:67:0::1;14673:397:1::0;46410:67:0::1;46503:1;46492:8;:12;46484:50;;;::::0;-1:-1:-1;;;46484:50:0;;16026:2:1;46484:50:0::1;::::0;::::1;16008:21:1::0;16065:2;16045:18;;;16038:30;-1:-1:-1;;;16084:18:1;;;16077:55;16149:18;;46484:50:0::1;15824:349:1::0;46484:50:0::1;46557:48;46570:10;46582:12;;46596:8;46557:12;:48::i;:::-;46541:100;;;::::0;-1:-1:-1;;;46541:100:0;;15277:2:1;46541:100:0::1;::::0;::::1;15259:21:1::0;15316:2;15296:18;;;15289:30;-1:-1:-1;;;15335:18:1;;;15328:48;15393:18;;46541:100:0::1;15075:342:1::0;46541:100:0::1;46691:10;46675:27;::::0;;;:15:::1;:27;::::0;;;;6112:14;46716:8;;46664:48:::1;::::0;:8;:48:::1;:::i;:::-;:60;;46648:121;;;::::0;-1:-1:-1;;;46648:121:0;;17514:2:1;46648:121:0::1;::::0;::::1;17496:21:1::0;17553:2;17533:18;;;17526:30;17592:29;17572:18;;;17565:57;17639:18;;46648:121:0::1;17312:351:1::0;46648:121:0::1;44955:4;46803:21;:11;6112:14:::0;;6020:114;46803:21:::1;46792:32;::::0;:8;:32:::1;:::i;:::-;:45;;46776:106;;;::::0;-1:-1:-1;;;46776:106:0;;11366:2:1;46776:106:0::1;::::0;::::1;11348:21:1::0;11405:2;11385:18;;;11378:30;11444:29;11424:18;;;11417:57;11491:18;;46776:106:0::1;11164:351:1::0;46776:106:0::1;46910:19;46921:8:::0;44815:17:::1;46910:19;:::i;:::-;46897:9;:32;;46889:68;;;::::0;-1:-1:-1;;;46889:68:0;;10255:2:1;46889:68:0::1;::::0;::::1;10237:21:1::0;10294:2;10274:18;;;10267:30;-1:-1:-1;;;10313:18:1;;;10306:53;10376:18;;46889:68:0::1;10053:347:1::0;46889:68:0::1;46971:9;46966:180;46990:8;46986:1;:12;46966:180;;;47030:10;47014:27;::::0;;;:15:::1;:27;::::0;;;;6231:19;;6249:1;6231:19;;;47062:23:::1;:11;6231:19:::0;;6249:1;6231:19;;;6142:127;47062:23:::1;47094:44;47104:10;47116:21;:11;6112:14:::0;;6020:114;47094:44:::1;47000:3;::::0;::::1;:::i;:::-;;;46966:180;;;-1:-1:-1::0;;1768:1:0;2722:7;:22;-1:-1:-1;;;46263:888:0:o;31091:208::-;31163:7;-1:-1:-1;;;;;31191:19:0;;31183:74;;;;-1:-1:-1;;;31183:74:0;;12919:2:1;31183:74:0;;;12901:21:1;12958:2;12938:18;;;12931:30;12997:34;12977:18;;;12970:62;-1:-1:-1;;;13048:18:1;;;13041:40;13098:19;;31183:74:0;12717:406:1;31183:74:0;-1:-1:-1;;;;;;31275:16:0;;;;;:9;:16;;;;;;;31091:208::o;49853:82::-;49896:16;49926:3;49921:8;;;;;:::i;11343:103::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;11408:30:::1;11435:1;11408:18;:30::i;:::-;11343:103::o:0;48029:98::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;48097:10:::1;:24:::0;48029:98::o;31836:104::-;31892:13;31925:7;31918:14;;;;;:::i;33519:155::-;33614:52;9496:10;33647:8;33657;33614:18;:52::i;34642:328::-;34817:41;9496:10;34850:7;34817:18;:41::i;:::-;34809:103;;;;-1:-1:-1;;;34809:103:0;;;;;;;:::i;:::-;34923:39;34937:4;34943:2;34947:7;34956:5;34923:13;:39::i;:::-;34642:328;;;;:::o;49085:251::-;49205:8;;49171:18;;49205:8;;;;;49201:130;;;49255:3;49260:19;:8;:17;:19::i;:::-;49238:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49224:66;;49085:251;;;:::o;49201:130::-;49320:3;49313:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49201:130;49085:251;;;:::o;50688:99::-;50736:10;50760:21;:11;6112:14;;6020:114;50760:21;50755:26;;50688:99;:::o;47410:98::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;47484:18:::1;::::0;;-1:-1:-1;;47462:40:0;::::1;47484:18;::::0;;;::::1;;;47483:19;47462:40:::0;;::::1;;::::0;;47410:98::o;11601:201::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11690:22:0;::::1;11682:73;;;::::0;-1:-1:-1;;;11682:73:0;;9085:2:1;11682:73:0::1;::::0;::::1;9067:21:1::0;9124:2;9104:18;;;9097:30;9163:34;9143:18;;;9136:62;-1:-1:-1;;;9214:18:1;;;9207:36;9260:19;;11682:73:0::1;8883:402:1::0;11682:73:0::1;11766:28;11785:8;11766:18;:28::i;40626:174::-:0;40701:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40701:29:0;-1:-1:-1;;;;;40701:29:0;;;;;;;;:24;;40755:23;40701:24;40755:14;:23::i;:::-;-1:-1:-1;;;;;40746:46:0;;;;;;;;;;;40626:174;;:::o;36774:348::-;36867:4;36569:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36569:16:0;36884:73;;;;-1:-1:-1;;;36884:73:0;;11722:2:1;36884:73:0;;;11704:21:1;11761:2;11741:18;;;11734:30;11800:34;11780:18;;;11773:62;-1:-1:-1;;;11851:18:1;;;11844:42;11903:19;;36884:73:0;11520:408:1;36884:73:0;36968:13;36984:23;36999:7;36984:14;:23::i;:::-;36968:39;;37037:5;-1:-1:-1;;;;;37026:16:0;:7;-1:-1:-1;;;;;37026:16:0;;:51;;;;37070:7;-1:-1:-1;;;;;37046:31:0;:20;37058:7;37046:11;:20::i;:::-;-1:-1:-1;;;;;37046:31:0;;37026:51;:87;;;-1:-1:-1;;;;;;33866:25:0;;;33842:4;33866:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37081:32;37018:96;36774:348;-1:-1:-1;;;;36774:348:0:o;39883:625::-;40042:4;-1:-1:-1;;;;;40015:31:0;:23;40030:7;40015:14;:23::i;:::-;-1:-1:-1;;;;;40015:31:0;;40007:81;;;;-1:-1:-1;;;40007:81:0;;9492:2:1;40007:81:0;;;9474:21:1;9531:2;9511:18;;;9504:30;9570:34;9550:18;;;9543:62;-1:-1:-1;;;9621:18:1;;;9614:35;9666:19;;40007:81:0;9290:401:1;40007:81:0;-1:-1:-1;;;;;40107:16:0;;40099:65;;;;-1:-1:-1;;;40099:65:0;;10607:2:1;40099:65:0;;;10589:21:1;10646:2;10626:18;;;10619:30;10685:34;10665:18;;;10658:62;-1:-1:-1;;;10736:18:1;;;10729:34;10780:19;;40099:65:0;10405:400:1;40099:65:0;40281:29;40298:1;40302:7;40281:8;:29::i;:::-;-1:-1:-1;;;;;40323:15:0;;;;;;:9;:15;;;;;:20;;40342:1;;40323:15;:20;;40342:1;;40323:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40354:13:0;;;;;;:9;:13;;;;;:18;;40371:1;;40354:13;:18;;40371:1;;40354:18;:::i;:::-;;;;-1:-1:-1;;40383:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40383:21:0;-1:-1:-1;;;;;40383:21:0;;;;;;;;;40422:27;;40383:16;;40422:27;;;;;;;32819:341;32749:411;;:::o;37464:110::-;37540:26;37550:2;37554:7;37540:26;;;;;;;;;;;;:9;:26::i;48645:289::-;48782:7;48803:125;48830:12;;48803:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48851:10:0;;48880:40;;-1:-1:-1;;5737:2:1;5733:15;;;5729:53;48880:40:0;;;5717:66:1;5799:12;;;5792:28;;;48851:10:0;;-1:-1:-1;5836:12:1;;;-1:-1:-1;48880:40:0;;;;;;;;;;;;48870:51;;;;;;48803:18;:125::i;:::-;48798:130;48645:289;-1:-1:-1;;;;;48645:289:0:o;11962:191::-;12055:6;;;-1:-1:-1;;;;;12072:17:0;;;-1:-1:-1;;;;;;12072:17:0;;;;;;;12105:40;;12055:6;;;12072:17;12055:6;;12105:40;;12036:16;;12105:40;12025:128;11962:191;:::o;40942:315::-;41097:8;-1:-1:-1;;;;;41088:17:0;:5;-1:-1:-1;;;;;41088:17:0;;;41080:55;;;;-1:-1:-1;;;41080:55:0;;11012:2:1;41080:55:0;;;10994:21:1;11051:2;11031:18;;;11024:30;11090:27;11070:18;;;11063:55;11135:18;;41080:55:0;10810:349:1;41080:55:0;-1:-1:-1;;;;;41146:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41146:46:0;;;;;;;;;;41208:41;;8006::1;;;41208::0;;7979:18:1;41208:41:0;;;;;;;40942:315;;;:::o;35852:::-;36009:28;36019:4;36025:2;36029:7;36009:9;:28::i;:::-;36056:48;36079:4;36085:2;36089:7;36098:5;36056:22;:48::i;:::-;36048:111;;;;-1:-1:-1;;;36048:111:0;;;;;;;:::i;6978:723::-;7034:13;7255:10;7251:53;;-1:-1:-1;;7282:10:0;;;;;;;;;;;;-1:-1:-1;;;7282:10:0;;;;;6978:723::o;7251:53::-;7329:5;7314:12;7370:78;7377:9;;7370:78;;7403:8;;;;:::i;:::-;;-1:-1:-1;7426:10:0;;-1:-1:-1;7434:2:0;7426:10;;:::i;:::-;;;7370:78;;;7458:19;7490:6;7480:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7480:17:0;;7458:39;;7508:154;7515:10;;7508:154;;7542:11;7552:1;7542:11;;:::i;:::-;;-1:-1:-1;7611:10:0;7619:2;7611:5;:10;:::i;:::-;7598:24;;:2;:24;:::i;:::-;7585:39;;7568:6;7575;7568:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7568:56:0;;;;;;;;-1:-1:-1;7639:11:0;7648:2;7639:11;;:::i;:::-;;;7508:154;;37801:321;37931:18;37937:2;37941:7;37931:5;:18::i;:::-;37982:54;38013:1;38017:2;38021:7;38030:5;37982:22;:54::i;:::-;37960:154;;;;-1:-1:-1;;;37960:154:0;;;;;;;:::i;3682:190::-;3807:4;3860;3831:25;3844:5;3851:4;3831:12;:25::i;:::-;:33;;3682:190;-1:-1:-1;;;;3682:190:0:o;41822:799::-;41977:4;-1:-1:-1;;;;;41998:13:0;;13688:19;:23;41994:620;;42034:72;;-1:-1:-1;;;42034:72:0;;-1:-1:-1;;;;;42034:36:0;;;;;:72;;9496:10;;42085:4;;42091:7;;42100:5;;42034:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42034:72:0;;;;;;;;-1:-1:-1;;42034:72:0;;;;;;;;;;;;:::i;:::-;;;42030:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42276:13:0;;42272:272;;42319:60;;-1:-1:-1;;;42319:60:0;;;;;;;:::i;42272:272::-;42494:6;42488:13;42479:6;42475:2;42471:15;42464:38;42030:529;-1:-1:-1;;;;;;42157:51:0;-1:-1:-1;;;42157:51:0;;-1:-1:-1;42150:58:0;;41994:620;-1:-1:-1;42598:4:0;41822:799;;;;;;:::o;38458:439::-;-1:-1:-1;;;;;38538:16:0;;38530:61;;;;-1:-1:-1;;;38530:61:0;;13740:2:1;38530:61:0;;;13722:21:1;;;13759:18;;;13752:30;13818:34;13798:18;;;13791:62;13870:18;;38530:61:0;13538:356:1;38530:61:0;36545:4;36569:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36569:16:0;:30;38602:58;;;;-1:-1:-1;;;38602:58:0;;9898:2:1;38602:58:0;;;9880:21:1;9937:2;9917:18;;;9910:30;9976;9956:18;;;9949:58;10024:18;;38602:58:0;9696:352:1;38602:58:0;-1:-1:-1;;;;;38731:13:0;;;;;;:9;:13;;;;;:18;;38748:1;;38731:13;:18;;38748:1;;38731:18;:::i;:::-;;;;-1:-1:-1;;38760:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38760:21:0;-1:-1:-1;;;;;38760:21:0;;;;;;;;38799:33;;38760:16;;;38799:33;;38760:16;;38799:33;47848:13:::1;47785:82:::0;:::o;4234:675::-;4317:7;4360:4;4317:7;4375:497;4399:5;:12;4395:1;:16;4375:497;;;4433:20;4456:5;4462:1;4456:8;;;;;;;;:::i;:::-;;;;;;;4433:31;;4499:12;4483;:28;4479:382;;4985:13;5035:15;;;5071:4;5064:15;;;5118:4;5102:21;;4611:57;;4479:382;;;4985:13;5035:15;;;5071:4;5064:15;;;5118:4;5102:21;;4788:57;;4479:382;-1:-1:-1;4413:3:0;;;;:::i;:::-;;;;4375:497;;;-1:-1:-1;4889:12:0;4234:675;-1:-1:-1;;;4234:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:186;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:757::-;3003:6;3011;3019;3027;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3136:9;3123:23;3165:18;3206:2;3198:6;3195:14;3192:34;;;3222:1;3219;3212:12;3192:34;3260:6;3249:9;3245:22;3235:32;;3305:7;3298:4;3294:2;3290:13;3286:27;3276:55;;3327:1;3324;3317:12;3276:55;3367:2;3354:16;3393:2;3385:6;3382:14;3379:34;;;3409:1;3406;3399:12;3379:34;3464:7;3457:4;3447:6;3444:1;3440:14;3436:2;3432:23;3428:34;3425:47;3422:67;;;3485:1;3482;3475:12;3422:67;3516:4;3508:13;;;;3540:6;;-1:-1:-1;3578:20:1;;;3565:34;;3646:2;3631:18;3618:32;;-1:-1:-1;2899:757:1;;-1:-1:-1;;;;2899:757:1:o;3661:180::-;3720:6;3773:2;3761:9;3752:7;3748:23;3744:32;3741:52;;;3789:1;3786;3779:12;3741:52;-1:-1:-1;3812:23:1;;3661:180;-1:-1:-1;3661:180:1:o;3846:245::-;3904:6;3957:2;3945:9;3936:7;3932:23;3928:32;3925:52;;;3973:1;3970;3963:12;3925:52;4012:9;3999:23;4031:30;4055:5;4031:30;:::i;4096:249::-;4165:6;4218:2;4206:9;4197:7;4193:23;4189:32;4186:52;;;4234:1;4231;4224:12;4186:52;4266:9;4260:16;4285:30;4309:5;4285:30;:::i;4350:450::-;4419:6;4472:2;4460:9;4451:7;4447:23;4443:32;4440:52;;;4488:1;4485;4478:12;4440:52;4528:9;4515:23;4561:18;4553:6;4550:30;4547:50;;;4593:1;4590;4583:12;4547:50;4616:22;;4669:4;4661:13;;4657:27;-1:-1:-1;4647:55:1;;4698:1;4695;4688:12;4647:55;4721:73;4786:7;4781:2;4768:16;4763:2;4759;4755:11;4721:73;:::i;4990:257::-;5031:3;5069:5;5063:12;5096:6;5091:3;5084:19;5112:63;5168:6;5161:4;5156:3;5152:14;5145:4;5138:5;5134:16;5112:63;:::i;:::-;5229:2;5208:15;-1:-1:-1;;5204:29:1;5195:39;;;;5236:4;5191:50;;4990:257;-1:-1:-1;;4990:257:1:o;5252:185::-;5294:3;5332:5;5326:12;5347:52;5392:6;5387:3;5380:4;5373:5;5369:16;5347:52;:::i;:::-;5415:16;;;;;5252:185;-1:-1:-1;;5252:185:1:o;5859:1301::-;6136:3;6165:1;6198:6;6192:13;6228:3;6250:1;6278:9;6274:2;6270:18;6260:28;;6338:2;6327:9;6323:18;6360;6350:61;;6404:4;6396:6;6392:17;6382:27;;6350:61;6430:2;6478;6470:6;6467:14;6447:18;6444:38;6441:165;;;-1:-1:-1;;;6505:33:1;;6561:4;6558:1;6551:15;6591:4;6512:3;6579:17;6441:165;6622:18;6649:104;;;;6767:1;6762:320;;;;6615:467;;6649:104;-1:-1:-1;;6682:24:1;;6670:37;;6727:16;;;;-1:-1:-1;6649:104:1;;6762:320;17923:1;17916:14;;;17960:4;17947:18;;6857:1;6871:165;6885:6;6882:1;6879:13;6871:165;;;6963:14;;6950:11;;;6943:35;7006:16;;;;6900:10;;6871:165;;;6875:3;;7065:6;7060:3;7056:16;7049:23;;6615:467;;;;;;;7098:56;7123:30;7149:3;7141:6;7123:30;:::i;:::-;-1:-1:-1;;;5502:20:1;;5547:1;5538:11;;5442:113;7373:488;-1:-1:-1;;;;;7642:15:1;;;7624:34;;7694:15;;7689:2;7674:18;;7667:43;7741:2;7726:18;;7719:34;;;7789:3;7784:2;7769:18;;7762:31;;;7567:4;;7810:45;;7835:19;;7827:6;7810:45;:::i;:::-;7802:53;7373:488;-1:-1:-1;;;;;;7373:488:1:o;8240:219::-;8389:2;8378:9;8371:21;8352:4;8409:44;8449:2;8438:9;8434:18;8426:6;8409:44;:::i;8464:414::-;8666:2;8648:21;;;8705:2;8685:18;;;8678:30;8744:34;8739:2;8724:18;;8717:62;-1:-1:-1;;;8810:2:1;8795:18;;8788:48;8868:3;8853:19;;8464:414::o;14312:356::-;14514:2;14496:21;;;14533:18;;;14526:30;14592:34;14587:2;14572:18;;14565:62;14659:2;14644:18;;14312:356::o;16534:413::-;16736:2;16718:21;;;16775:2;16755:18;;;16748:30;16814:34;16809:2;16794:18;;16787:62;-1:-1:-1;;;16880:2:1;16865:18;;16858:47;16937:3;16922:19;;16534:413::o;17976:128::-;18016:3;18047:1;18043:6;18040:1;18037:13;18034:39;;;18053:18;;:::i;:::-;-1:-1:-1;18089:9:1;;17976:128::o;18109:120::-;18149:1;18175;18165:35;;18180:18;;:::i;:::-;-1:-1:-1;18214:9:1;;18109:120::o;18234:168::-;18274:7;18340:1;18336;18332:6;18328:14;18325:1;18322:21;18317:1;18310:9;18303:17;18299:45;18296:71;;;18347:18;;:::i;:::-;-1:-1:-1;18387:9:1;;18234:168::o;18407:125::-;18447:4;18475:1;18472;18469:8;18466:34;;;18480:18;;:::i;:::-;-1:-1:-1;18517:9:1;;18407:125::o;18537:258::-;18609:1;18619:113;18633:6;18630:1;18627:13;18619:113;;;18709:11;;;18703:18;18690:11;;;18683:39;18655:2;18648:10;18619:113;;;18750:6;18747:1;18744:13;18741:48;;;-1:-1:-1;;18785:1:1;18767:16;;18760:27;18537:258::o;18800:380::-;18879:1;18875:12;;;;18922;;;18943:61;;18997:4;18989:6;18985:17;18975:27;;18943:61;19050:2;19042:6;19039:14;19019:18;19016:38;19013:161;;;19096:10;19091:3;19087:20;19084:1;19077:31;19131:4;19128:1;19121:15;19159:4;19156:1;19149:15;19013:161;;18800:380;;;:::o;19185:135::-;19224:3;-1:-1:-1;;19245:17:1;;19242:43;;;19265:18;;:::i;:::-;-1:-1:-1;19312:1:1;19301:13;;19185:135::o;19325:112::-;19357:1;19383;19373:35;;19388:18;;:::i;:::-;-1:-1:-1;19422:9:1;;19325:112::o;19442:127::-;19503:10;19498:3;19494:20;19491:1;19484:31;19534:4;19531:1;19524:15;19558:4;19555:1;19548:15;19574:127;19635:10;19630:3;19626:20;19623:1;19616:31;19666:4;19663:1;19656:15;19690:4;19687:1;19680:15;19706:127;19767:10;19762:3;19758:20;19755:1;19748:31;19798:4;19795:1;19788:15;19822:4;19819:1;19812:15;19838:127;19899:10;19894:3;19890:20;19887:1;19880:31;19930:4;19927:1;19920:15;19954:4;19951:1;19944:15;19970:131;-1:-1:-1;;;;;;20044:32:1;;20034:43;;20024:71;;20091:1;20088;20081:12

Swarm Source

ipfs://1e79d39b87a6aa1e7809b2aa6d1d628d732700607e9bc85dd6119de67a451426
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.