ETH Price: $3,458.91 (-0.70%)
Gas: 2 Gwei

Token

mems (MEMS)
 

Overview

Max Total Supply

6,000 MEMS

Holders

2,841

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
radnftv.eth
Balance
4 MEMS
0xb7d725753a300fed6d13f3951d890856ef0c6e30
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

mems is an NFT project founded to promote the creation of new memories and inspire the world to foster a deeper relationship with their past & present.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Mems

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-04-22
*/

// SPDX-License-Identifier: MIT

// 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/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/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/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/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/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/Mems.sol



pragma solidity ^0.8.0;







 /*
  _ __ ___   ___ _ __ ___  ___ 
 | '_ ` _ \ / _ \ '_ ` _ \/ __|
 | | | | | |  __/ | | | | \__ \
 |_| |_| |_|\___|_| |_| |_|___/
 */

contract Mems is ERC721, Ownable, ReentrancyGuard {
    string public baseURI;

    uint256 public constant MAX_SUPPLY = 6000;

    uint256 public cost = 0.1 ether;
    uint256 public maxPerWallet = 1;

    // used to validate whitelists
    bytes32 public whitelistMerkleRoot;

    bool public isAllowListActive;
    bool public isMainSaleActive;

    mapping(address => uint256) internal walletCap;

    using Counters for Counters.Counter;
    Counters.Counter private _tokenSupply;

    constructor(string memory _baseURI) ERC721("mems", "MEMS") {
        baseURI = _baseURI;
        isAllowListActive = false;
        isMainSaleActive = false;
    }

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

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

    // ============ PUBLIC FUNCTIONS FOR MINTING ============

    /**
    * @dev mints 1 token per whitelisted address, does not charge a fee
    */
    function mintAllowlist(
        bytes32[] calldata merkleProof
    )
        public
        payable
        isValidMerkleProof(merkleProof, whitelistMerkleRoot)
        isCorrectPayment(cost)
        nonReentrant
    {
        require(isAllowListActive && !isMainSaleActive, "Whitelist must be active to mint tokens");
        require(walletCap[msg.sender] + 1 <= maxPerWallet, "Purchase would exceed max number of mints per wallet.");
        require(_tokenSupply.current() + 1 <= MAX_SUPPLY, "Purchase would exceed max number of tokens");
        
        _tokenSupply.increment();
        _mint(msg.sender, _tokenSupply.current());
        walletCap[msg.sender] += 1;
    }

    /**
    * @dev mints specified # of tokens to sender address
    */
    function mint()
        public
        payable
        isCorrectPayment(cost)
        nonReentrant
    {
        require(!isAllowListActive && isMainSaleActive, "Main sale must be active to mint.");
        require(walletCap[msg.sender] + 1 <= maxPerWallet, "Purchase would exceed max number of mints per wallet.");
        require(_tokenSupply.current() + 1 <= MAX_SUPPLY, "Purchase would exceed max number of tokens");

        _tokenSupply.increment();
        _mint(msg.sender, _tokenSupply.current());
        walletCap[msg.sender] += 1;
    }

    // ============ PUBLIC READ-ONLY FUNCTIONS ============
    function tokenURI(uint256 tokenId)
      public
      view
      virtual
      override
      returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: query for nonexistent token");
        return string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json"));
    }

    function totalSupply() public view returns (uint256) {
        return _tokenSupply.current();
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============
    // @dev Private mint function reserved for company.
    // @param _to The user receiving the tokens
    // @param _mintAmount The number of tokens to distribute
    function mintToAddress(address _to, uint256 _mintAmount) external onlyOwner {
        require(_mintAmount > 0, "You can only mint more than 0 tokens");
        require(_tokenSupply.current() + _mintAmount <= MAX_SUPPLY, "Can't mint more than max supply");
        for (uint256 i = 0; i < _mintAmount; i++) {
            _tokenSupply.increment();
            _mint(_to, _tokenSupply.current());
        }
    }

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

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

    function flipAllowListState() external onlyOwner {
        isAllowListActive = !isAllowListActive;
    }

    function flipMainSaleState() external onlyOwner {
        isMainSaleActive = !isMainSaleActive;
    }

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

    /**
     * @dev withdraw funds for to specified account
     */
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipAllowListState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipMainSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMainSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintAllowlist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267016345785d8a00006009556001600a553480156200002257600080fd5b5060405162002687380380620026878339810160408190526200004591620001f3565b604051806040016040528060048152602001636d656d7360e01b815250604051806040016040528060048152602001634d454d5360e01b8152508160009080519060200190620000979291906200014d565b508051620000ad9060019060208401906200014d565b505050620000ca620000c4620000f760201b60201c565b620000fb565b60016007558051620000e49060089060208401906200014d565b5050600c805461ffff1916905562000322565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015b90620002cf565b90600052602060002090601f0160209004810192826200017f5760008555620001ca565b82601f106200019a57805160ff1916838001178555620001ca565b82800160010185558215620001ca579182015b82811115620001ca578251825591602001919060010190620001ad565b50620001d8929150620001dc565b5090565b5b80821115620001d85760008155600101620001dd565b600060208083850312156200020757600080fd5b82516001600160401b03808211156200021f57600080fd5b818501915085601f8301126200023457600080fd5b8151818111156200024957620002496200030c565b604051601f8201601f19908116603f011681019083821181831017156200027457620002746200030c565b8160405282815288868487010111156200028d57600080fd5b600093505b82841015620002b1578484018601518185018701529285019262000292565b82841115620002c35760008684830101525b98975050505050505050565b600181811c90821680620002e457607f821691505b602082108114156200030657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61235580620003326000396000f3fe6080604052600436106101ee5760003560e01c806355f804b31161010d578063a22cb465116100a0578063bd32fb661161006f578063bd32fb661461051a578063c87b56dd1461053a578063e985e9c51461055a578063f2fde38b146105a3578063feb309ad146105c357600080fd5b8063a22cb465146104a5578063aa98e0c6146104c5578063b3b2cb7a146104db578063b88d4fde146104fa57600080fd5b806370a08231116100dc57806370a082311461043d578063715018a61461045d5780638da5cb5b1461047257806395d89b411461049057600080fd5b806355f804b3146103d55780636352211e146103f55780636c0360eb146104155780636c96b0831461042a57600080fd5b806323b872dd116101855780633ccfd60b116101545780633ccfd60b1461036a57806342842e0e1461037f57806344a0d68a1461039f578063453c2310146103bf57600080fd5b806323b872dd1461030557806329fc6bae146103255780632aea3d231461033f57806332cb6b0c1461035457600080fd5b80631249c58b116101c15780631249c58b146102a457806313faede6146102ac57806318160ddd146102d057806321ca4236146102e557600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611e8b565b6105d8565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61062a565b60405161021f919061204e565b34801561025657600080fd5b5061026a610265366004611e72565b6106bc565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611dd3565b610756565b005b6102a261086c565b3480156102b857600080fd5b506102c260095481565b60405190815260200161021f565b3480156102dc57600080fd5b506102c2610a3f565b3480156102f157600080fd5b506102a2610300366004611dd3565b610a4f565b34801561031157600080fd5b506102a2610320366004611cdf565b610b72565b34801561033157600080fd5b50600c546102139060ff1681565b34801561034b57600080fd5b506102a2610ba3565b34801561036057600080fd5b506102c261177081565b34801561037657600080fd5b506102a2610bea565b34801561038b57600080fd5b506102a261039a366004611cdf565b610c47565b3480156103ab57600080fd5b506102a26103ba366004611e72565b610c62565b3480156103cb57600080fd5b506102c2600a5481565b3480156103e157600080fd5b506102a26103f0366004611ec5565b610c91565b34801561040157600080fd5b5061026a610410366004611e72565b610cce565b34801561042157600080fd5b5061023d610d45565b6102a2610438366004611dfd565b610dd3565b34801561044957600080fd5b506102c2610458366004611c8a565b61106f565b34801561046957600080fd5b506102a26110f6565b34801561047e57600080fd5b506006546001600160a01b031661026a565b34801561049c57600080fd5b5061023d61112c565b3480156104b157600080fd5b506102a26104c0366004611d97565b61113b565b3480156104d157600080fd5b506102c2600b5481565b3480156104e757600080fd5b50600c5461021390610100900460ff1681565b34801561050657600080fd5b506102a2610515366004611d1b565b611146565b34801561052657600080fd5b506102a2610535366004611e72565b61117e565b34801561054657600080fd5b5061023d610555366004611e72565b6111ad565b34801561056657600080fd5b50610213610575366004611cac565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105af57600080fd5b506102a26105be366004611c8a565b61125a565b3480156105cf57600080fd5b506102a26112f5565b60006001600160e01b031982166380ac58cd60e01b148061060957506001600160e01b03198216635b5e139f60e01b145b8061062457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461063990612247565b80601f016020809104026020016040519081016040528092919081815260200182805461066590612247565b80156106b25780601f10610687576101008083540402835291602001916106b2565b820191906000526020600020905b81548152906001019060200180831161069557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661073a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076182610cce565b9050806001600160a01b0316836001600160a01b031614156107cf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610731565b336001600160a01b03821614806107eb57506107eb8133610575565b61085d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610731565b6108678383611333565b505050565b6009543481146108b95760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610731565b6002600754141561090c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610731565b6002600755600c5460ff1615801561092b5750600c54610100900460ff165b6109815760405162461bcd60e51b815260206004820152602160248201527f4d61696e2073616c65206d7573742062652061637469766520746f206d696e746044820152601760f91b6064820152608401610731565b600a54336000908152600d602052604090205461099f9060016121d8565b11156109bd5760405162461bcd60e51b8152600401610731906120fd565b6117706109c9600e5490565b6109d49060016121d8565b11156109f25760405162461bcd60e51b815260040161073190612061565b610a00600e80546001019055565b610a1233610a0d600e5490565b6113a1565b336000908152600d60205260408120805460019290610a329084906121d8565b9091555050600160075550565b6000610a4a600e5490565b905090565b6006546001600160a01b03163314610a795760405162461bcd60e51b815260040161073190612152565b60008111610ad55760405162461bcd60e51b8152602060048201526024808201527f596f752063616e206f6e6c79206d696e74206d6f7265207468616e203020746f6044820152636b656e7360e01b6064820152608401610731565b61177081610ae2600e5490565b610aec91906121d8565b1115610b3a5760405162461bcd60e51b815260206004820152601f60248201527f43616e2774206d696e74206d6f7265207468616e206d617820737570706c79006044820152606401610731565b60005b8181101561086757610b53600e80546001019055565b610b6083610a0d600e5490565b80610b6a81612282565b915050610b3d565b610b7c33826114e3565b610b985760405162461bcd60e51b815260040161073190612187565b6108678383836115da565b6006546001600160a01b03163314610bcd5760405162461bcd60e51b815260040161073190612152565b600c805461ff001981166101009182900460ff1615909102179055565b6006546001600160a01b03163314610c145760405162461bcd60e51b815260040161073190612152565b6040514790339082156108fc029083906000818181858888f19350505050158015610c43573d6000803e3d6000fd5b5050565b61086783838360405180602001604052806000815250611146565b6006546001600160a01b03163314610c8c5760405162461bcd60e51b815260040161073190612152565b600955565b6006546001600160a01b03163314610cbb5760405162461bcd60e51b815260040161073190612152565b8051610c43906008906020840190611b5f565b6000818152600260205260408120546001600160a01b0316806106245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610731565b60088054610d5290612247565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7e90612247565b8015610dcb5780601f10610da057610100808354040283529160200191610dcb565b820191906000526020600020905b815481529060010190602001808311610dae57829003601f168201915b505050505081565b8181600b54610e4a838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152859250603401905060405160208183030381529060405280519060200120611776565b610e965760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610731565b600954348114610ee35760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610731565b60026007541415610f365760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610731565b6002600755600c5460ff168015610f555750600c54610100900460ff16155b610fb15760405162461bcd60e51b815260206004820152602760248201527f57686974656c697374206d7573742062652061637469766520746f206d696e7460448201526620746f6b656e7360c81b6064820152608401610731565b600a54336000908152600d6020526040902054610fcf9060016121d8565b1115610fed5760405162461bcd60e51b8152600401610731906120fd565b611770610ff9600e5490565b6110049060016121d8565b11156110225760405162461bcd60e51b815260040161073190612061565b611030600e80546001019055565b61103d33610a0d600e5490565b336000908152600d6020526040812080546001929061105d9084906121d8565b90915550506001600755505050505050565b60006001600160a01b0382166110da5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610731565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146111205760405162461bcd60e51b815260040161073190612152565b61112a600061178c565b565b60606001805461063990612247565b610c433383836117de565b61115033836114e3565b61116c5760405162461bcd60e51b815260040161073190612187565b611178848484846118ad565b50505050565b6006546001600160a01b031633146111a85760405162461bcd60e51b815260040161073190612152565b600b55565b6000818152600260205260409020546060906001600160a01b03166112285760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20717565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b6064820152608401610731565b6008611233836118e0565b604051602001611244929190611f56565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146112845760405162461bcd60e51b815260040161073190612152565b6001600160a01b0381166112e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610731565b6112f28161178c565b50565b6006546001600160a01b0316331461131f5760405162461bcd60e51b815260040161073190612152565b600c805460ff19811660ff90911615179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061136882610cce565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b0382166113f75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610731565b6000818152600260205260409020546001600160a01b03161561145c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610731565b6001600160a01b03821660009081526003602052604081208054600192906114859084906121d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b031661155c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610731565b600061156783610cce565b9050806001600160a01b0316846001600160a01b031614806115a25750836001600160a01b0316611597846106bc565b6001600160a01b0316145b806115d257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115ed82610cce565b6001600160a01b0316146116515760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610731565b6001600160a01b0382166116b35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610731565b6116be600082611333565b6001600160a01b03831660009081526003602052604081208054600192906116e7908490612204565b90915550506001600160a01b03821660009081526003602052604081208054600192906117159084906121d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008261178385846119de565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118405760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610731565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118b88484846115da565b6118c484848484611a52565b6111785760405162461bcd60e51b8152600401610731906120ab565b6060816119045750506040805180820190915260018152600360fc1b602082015290565b8160005b811561192e578061191881612282565b91506119279050600a836121f0565b9150611908565b60008167ffffffffffffffff811115611949576119496122f3565b6040519080825280601f01601f191660200182016040528015611973576020820181803683370190505b5090505b84156115d257611988600183612204565b9150611995600a8661229d565b6119a09060306121d8565b60f81b8183815181106119b5576119b56122dd565b60200101906001600160f81b031916908160001a9053506119d7600a866121f0565b9450611977565b600081815b8451811015611a4a576000858281518110611a0057611a006122dd565b60200260200101519050808311611a265760008381526020829052604090209250611a37565b600081815260208490526040902092505b5080611a4281612282565b9150506119e3565b509392505050565b60006001600160a01b0384163b15611b5457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a96903390899088908890600401612011565b602060405180830381600087803b158015611ab057600080fd5b505af1925050508015611ae0575060408051601f3d908101601f19168201909252611add91810190611ea8565b60015b611b3a573d808015611b0e576040519150601f19603f3d011682016040523d82523d6000602084013e611b13565b606091505b508051611b325760405162461bcd60e51b8152600401610731906120ab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115d2565b506001949350505050565b828054611b6b90612247565b90600052602060002090601f016020900481019282611b8d5760008555611bd3565b82601f10611ba657805160ff1916838001178555611bd3565b82800160010185558215611bd3579182015b82811115611bd3578251825591602001919060010190611bb8565b50611bdf929150611be3565b5090565b5b80821115611bdf5760008155600101611be4565b600067ffffffffffffffff80841115611c1357611c136122f3565b604051601f8501601f19908116603f01168101908282118183101715611c3b57611c3b6122f3565b81604052809350858152868686011115611c5457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c8557600080fd5b919050565b600060208284031215611c9c57600080fd5b611ca582611c6e565b9392505050565b60008060408385031215611cbf57600080fd5b611cc883611c6e565b9150611cd660208401611c6e565b90509250929050565b600080600060608486031215611cf457600080fd5b611cfd84611c6e565b9250611d0b60208501611c6e565b9150604084013590509250925092565b60008060008060808587031215611d3157600080fd5b611d3a85611c6e565b9350611d4860208601611c6e565b925060408501359150606085013567ffffffffffffffff811115611d6b57600080fd5b8501601f81018713611d7c57600080fd5b611d8b87823560208401611bf8565b91505092959194509250565b60008060408385031215611daa57600080fd5b611db383611c6e565b915060208301358015158114611dc857600080fd5b809150509250929050565b60008060408385031215611de657600080fd5b611def83611c6e565b946020939093013593505050565b60008060208385031215611e1057600080fd5b823567ffffffffffffffff80821115611e2857600080fd5b818501915085601f830112611e3c57600080fd5b813581811115611e4b57600080fd5b8660208260051b8501011115611e6057600080fd5b60209290920196919550909350505050565b600060208284031215611e8457600080fd5b5035919050565b600060208284031215611e9d57600080fd5b8135611ca581612309565b600060208284031215611eba57600080fd5b8151611ca581612309565b600060208284031215611ed757600080fd5b813567ffffffffffffffff811115611eee57600080fd5b8201601f81018413611eff57600080fd5b6115d284823560208401611bf8565b60008151808452611f2681602086016020860161221b565b601f01601f19169290920160200192915050565b60008151611f4c81856020860161221b565b9290920192915050565b600080845481600182811c915080831680611f7257607f831692505b6020808410821415611f9257634e487b7160e01b86526022600452602486fd5b818015611fa65760018114611fb757611fe4565b60ff19861689528489019650611fe4565b60008b81526020902060005b86811015611fdc5781548b820152908501908301611fc3565b505084890196505b505050505050612008611ff78286611f3a565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061204490830184611f0e565b9695505050505050565b602081526000611ca56020830184611f0e565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d6178206e756d626572604082015269206f6620746f6b656e7360b01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526035908201527f507572636861736520776f756c6420657863656564206d6178206e756d6265726040820152741037b31036b4b73a39903832b9103bb0b63632ba1760591b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121eb576121eb6122b1565b500190565b6000826121ff576121ff6122c7565b500490565b600082821015612216576122166122b1565b500390565b60005b8381101561223657818101518382015260200161221e565b838111156111785750506000910152565b600181811c9082168061225b57607f821691505b6020821081141561227c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612296576122966122b1565b5060010190565b6000826122ac576122ac6122c7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112f257600080fdfea2646970667358221220b7569e00a5dbbd4d20cdfc5426a286a72a92e515b9cb199178fdda3acd18d3ad64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d576d68754171513736425a50444d5a754d7946794c557a3976793974574a616258336f7a7638487a7a4c75502f00000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806355f804b31161010d578063a22cb465116100a0578063bd32fb661161006f578063bd32fb661461051a578063c87b56dd1461053a578063e985e9c51461055a578063f2fde38b146105a3578063feb309ad146105c357600080fd5b8063a22cb465146104a5578063aa98e0c6146104c5578063b3b2cb7a146104db578063b88d4fde146104fa57600080fd5b806370a08231116100dc57806370a082311461043d578063715018a61461045d5780638da5cb5b1461047257806395d89b411461049057600080fd5b806355f804b3146103d55780636352211e146103f55780636c0360eb146104155780636c96b0831461042a57600080fd5b806323b872dd116101855780633ccfd60b116101545780633ccfd60b1461036a57806342842e0e1461037f57806344a0d68a1461039f578063453c2310146103bf57600080fd5b806323b872dd1461030557806329fc6bae146103255780632aea3d231461033f57806332cb6b0c1461035457600080fd5b80631249c58b116101c15780631249c58b146102a457806313faede6146102ac57806318160ddd146102d057806321ca4236146102e557600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611e8b565b6105d8565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61062a565b60405161021f919061204e565b34801561025657600080fd5b5061026a610265366004611e72565b6106bc565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611dd3565b610756565b005b6102a261086c565b3480156102b857600080fd5b506102c260095481565b60405190815260200161021f565b3480156102dc57600080fd5b506102c2610a3f565b3480156102f157600080fd5b506102a2610300366004611dd3565b610a4f565b34801561031157600080fd5b506102a2610320366004611cdf565b610b72565b34801561033157600080fd5b50600c546102139060ff1681565b34801561034b57600080fd5b506102a2610ba3565b34801561036057600080fd5b506102c261177081565b34801561037657600080fd5b506102a2610bea565b34801561038b57600080fd5b506102a261039a366004611cdf565b610c47565b3480156103ab57600080fd5b506102a26103ba366004611e72565b610c62565b3480156103cb57600080fd5b506102c2600a5481565b3480156103e157600080fd5b506102a26103f0366004611ec5565b610c91565b34801561040157600080fd5b5061026a610410366004611e72565b610cce565b34801561042157600080fd5b5061023d610d45565b6102a2610438366004611dfd565b610dd3565b34801561044957600080fd5b506102c2610458366004611c8a565b61106f565b34801561046957600080fd5b506102a26110f6565b34801561047e57600080fd5b506006546001600160a01b031661026a565b34801561049c57600080fd5b5061023d61112c565b3480156104b157600080fd5b506102a26104c0366004611d97565b61113b565b3480156104d157600080fd5b506102c2600b5481565b3480156104e757600080fd5b50600c5461021390610100900460ff1681565b34801561050657600080fd5b506102a2610515366004611d1b565b611146565b34801561052657600080fd5b506102a2610535366004611e72565b61117e565b34801561054657600080fd5b5061023d610555366004611e72565b6111ad565b34801561056657600080fd5b50610213610575366004611cac565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105af57600080fd5b506102a26105be366004611c8a565b61125a565b3480156105cf57600080fd5b506102a26112f5565b60006001600160e01b031982166380ac58cd60e01b148061060957506001600160e01b03198216635b5e139f60e01b145b8061062457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461063990612247565b80601f016020809104026020016040519081016040528092919081815260200182805461066590612247565b80156106b25780601f10610687576101008083540402835291602001916106b2565b820191906000526020600020905b81548152906001019060200180831161069557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661073a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076182610cce565b9050806001600160a01b0316836001600160a01b031614156107cf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610731565b336001600160a01b03821614806107eb57506107eb8133610575565b61085d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610731565b6108678383611333565b505050565b6009543481146108b95760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610731565b6002600754141561090c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610731565b6002600755600c5460ff1615801561092b5750600c54610100900460ff165b6109815760405162461bcd60e51b815260206004820152602160248201527f4d61696e2073616c65206d7573742062652061637469766520746f206d696e746044820152601760f91b6064820152608401610731565b600a54336000908152600d602052604090205461099f9060016121d8565b11156109bd5760405162461bcd60e51b8152600401610731906120fd565b6117706109c9600e5490565b6109d49060016121d8565b11156109f25760405162461bcd60e51b815260040161073190612061565b610a00600e80546001019055565b610a1233610a0d600e5490565b6113a1565b336000908152600d60205260408120805460019290610a329084906121d8565b9091555050600160075550565b6000610a4a600e5490565b905090565b6006546001600160a01b03163314610a795760405162461bcd60e51b815260040161073190612152565b60008111610ad55760405162461bcd60e51b8152602060048201526024808201527f596f752063616e206f6e6c79206d696e74206d6f7265207468616e203020746f6044820152636b656e7360e01b6064820152608401610731565b61177081610ae2600e5490565b610aec91906121d8565b1115610b3a5760405162461bcd60e51b815260206004820152601f60248201527f43616e2774206d696e74206d6f7265207468616e206d617820737570706c79006044820152606401610731565b60005b8181101561086757610b53600e80546001019055565b610b6083610a0d600e5490565b80610b6a81612282565b915050610b3d565b610b7c33826114e3565b610b985760405162461bcd60e51b815260040161073190612187565b6108678383836115da565b6006546001600160a01b03163314610bcd5760405162461bcd60e51b815260040161073190612152565b600c805461ff001981166101009182900460ff1615909102179055565b6006546001600160a01b03163314610c145760405162461bcd60e51b815260040161073190612152565b6040514790339082156108fc029083906000818181858888f19350505050158015610c43573d6000803e3d6000fd5b5050565b61086783838360405180602001604052806000815250611146565b6006546001600160a01b03163314610c8c5760405162461bcd60e51b815260040161073190612152565b600955565b6006546001600160a01b03163314610cbb5760405162461bcd60e51b815260040161073190612152565b8051610c43906008906020840190611b5f565b6000818152600260205260408120546001600160a01b0316806106245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610731565b60088054610d5290612247565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7e90612247565b8015610dcb5780601f10610da057610100808354040283529160200191610dcb565b820191906000526020600020905b815481529060010190602001808311610dae57829003601f168201915b505050505081565b8181600b54610e4a838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152859250603401905060405160208183030381529060405280519060200120611776565b610e965760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610731565b600954348114610ee35760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610731565b60026007541415610f365760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610731565b6002600755600c5460ff168015610f555750600c54610100900460ff16155b610fb15760405162461bcd60e51b815260206004820152602760248201527f57686974656c697374206d7573742062652061637469766520746f206d696e7460448201526620746f6b656e7360c81b6064820152608401610731565b600a54336000908152600d6020526040902054610fcf9060016121d8565b1115610fed5760405162461bcd60e51b8152600401610731906120fd565b611770610ff9600e5490565b6110049060016121d8565b11156110225760405162461bcd60e51b815260040161073190612061565b611030600e80546001019055565b61103d33610a0d600e5490565b336000908152600d6020526040812080546001929061105d9084906121d8565b90915550506001600755505050505050565b60006001600160a01b0382166110da5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610731565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146111205760405162461bcd60e51b815260040161073190612152565b61112a600061178c565b565b60606001805461063990612247565b610c433383836117de565b61115033836114e3565b61116c5760405162461bcd60e51b815260040161073190612187565b611178848484846118ad565b50505050565b6006546001600160a01b031633146111a85760405162461bcd60e51b815260040161073190612152565b600b55565b6000818152600260205260409020546060906001600160a01b03166112285760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20717565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b6064820152608401610731565b6008611233836118e0565b604051602001611244929190611f56565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146112845760405162461bcd60e51b815260040161073190612152565b6001600160a01b0381166112e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610731565b6112f28161178c565b50565b6006546001600160a01b0316331461131f5760405162461bcd60e51b815260040161073190612152565b600c805460ff19811660ff90911615179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061136882610cce565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b0382166113f75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610731565b6000818152600260205260409020546001600160a01b03161561145c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610731565b6001600160a01b03821660009081526003602052604081208054600192906114859084906121d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b031661155c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610731565b600061156783610cce565b9050806001600160a01b0316846001600160a01b031614806115a25750836001600160a01b0316611597846106bc565b6001600160a01b0316145b806115d257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115ed82610cce565b6001600160a01b0316146116515760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610731565b6001600160a01b0382166116b35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610731565b6116be600082611333565b6001600160a01b03831660009081526003602052604081208054600192906116e7908490612204565b90915550506001600160a01b03821660009081526003602052604081208054600192906117159084906121d8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008261178385846119de565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118405760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610731565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118b88484846115da565b6118c484848484611a52565b6111785760405162461bcd60e51b8152600401610731906120ab565b6060816119045750506040805180820190915260018152600360fc1b602082015290565b8160005b811561192e578061191881612282565b91506119279050600a836121f0565b9150611908565b60008167ffffffffffffffff811115611949576119496122f3565b6040519080825280601f01601f191660200182016040528015611973576020820181803683370190505b5090505b84156115d257611988600183612204565b9150611995600a8661229d565b6119a09060306121d8565b60f81b8183815181106119b5576119b56122dd565b60200101906001600160f81b031916908160001a9053506119d7600a866121f0565b9450611977565b600081815b8451811015611a4a576000858281518110611a0057611a006122dd565b60200260200101519050808311611a265760008381526020829052604090209250611a37565b600081815260208490526040902092505b5080611a4281612282565b9150506119e3565b509392505050565b60006001600160a01b0384163b15611b5457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a96903390899088908890600401612011565b602060405180830381600087803b158015611ab057600080fd5b505af1925050508015611ae0575060408051601f3d908101601f19168201909252611add91810190611ea8565b60015b611b3a573d808015611b0e576040519150601f19603f3d011682016040523d82523d6000602084013e611b13565b606091505b508051611b325760405162461bcd60e51b8152600401610731906120ab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115d2565b506001949350505050565b828054611b6b90612247565b90600052602060002090601f016020900481019282611b8d5760008555611bd3565b82601f10611ba657805160ff1916838001178555611bd3565b82800160010185558215611bd3579182015b82811115611bd3578251825591602001919060010190611bb8565b50611bdf929150611be3565b5090565b5b80821115611bdf5760008155600101611be4565b600067ffffffffffffffff80841115611c1357611c136122f3565b604051601f8501601f19908116603f01168101908282118183101715611c3b57611c3b6122f3565b81604052809350858152868686011115611c5457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c8557600080fd5b919050565b600060208284031215611c9c57600080fd5b611ca582611c6e565b9392505050565b60008060408385031215611cbf57600080fd5b611cc883611c6e565b9150611cd660208401611c6e565b90509250929050565b600080600060608486031215611cf457600080fd5b611cfd84611c6e565b9250611d0b60208501611c6e565b9150604084013590509250925092565b60008060008060808587031215611d3157600080fd5b611d3a85611c6e565b9350611d4860208601611c6e565b925060408501359150606085013567ffffffffffffffff811115611d6b57600080fd5b8501601f81018713611d7c57600080fd5b611d8b87823560208401611bf8565b91505092959194509250565b60008060408385031215611daa57600080fd5b611db383611c6e565b915060208301358015158114611dc857600080fd5b809150509250929050565b60008060408385031215611de657600080fd5b611def83611c6e565b946020939093013593505050565b60008060208385031215611e1057600080fd5b823567ffffffffffffffff80821115611e2857600080fd5b818501915085601f830112611e3c57600080fd5b813581811115611e4b57600080fd5b8660208260051b8501011115611e6057600080fd5b60209290920196919550909350505050565b600060208284031215611e8457600080fd5b5035919050565b600060208284031215611e9d57600080fd5b8135611ca581612309565b600060208284031215611eba57600080fd5b8151611ca581612309565b600060208284031215611ed757600080fd5b813567ffffffffffffffff811115611eee57600080fd5b8201601f81018413611eff57600080fd5b6115d284823560208401611bf8565b60008151808452611f2681602086016020860161221b565b601f01601f19169290920160200192915050565b60008151611f4c81856020860161221b565b9290920192915050565b600080845481600182811c915080831680611f7257607f831692505b6020808410821415611f9257634e487b7160e01b86526022600452602486fd5b818015611fa65760018114611fb757611fe4565b60ff19861689528489019650611fe4565b60008b81526020902060005b86811015611fdc5781548b820152908501908301611fc3565b505084890196505b505050505050612008611ff78286611f3a565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061204490830184611f0e565b9695505050505050565b602081526000611ca56020830184611f0e565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d6178206e756d626572604082015269206f6620746f6b656e7360b01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526035908201527f507572636861736520776f756c6420657863656564206d6178206e756d6265726040820152741037b31036b4b73a39903832b9103bb0b63632ba1760591b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121eb576121eb6122b1565b500190565b6000826121ff576121ff6122c7565b500490565b600082821015612216576122166122b1565b500390565b60005b8381101561223657818101518382015260200161221e565b838111156111785750506000910152565b600181811c9082168061225b57607f821691505b6020821081141561227c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612296576122966122b1565b5060010190565b6000826122ac576122ac6122c7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112f257600080fdfea2646970667358221220b7569e00a5dbbd4d20cdfc5426a286a72a92e515b9cb199178fdda3acd18d3ad64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d576d68754171513736425a50444d5a754d7946794c557a3976793974574a616258336f7a7638487a7a4c75502f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://QmWmhuAqQ76BZPDMZuMyFyLUz9vy9tWJabX3ozv8HzzLuP/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d576d68754171513736425a50444d5a754d7946794c557a
Arg [3] : 3976793974574a616258336f7a7638487a7a4c75502f00000000000000000000


Deployed Bytecode Sourcemap

44089:4659:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30757:305;;;;;;;;;;-1:-1:-1;30757:305:0;;;;;:::i;:::-;;:::i;:::-;;;7824:14:1;;7817:22;7799:41;;7787:2;7772:18;30757:305:0;;;;;;;;31702:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33261:221::-;;;;;;;;;;-1:-1:-1;33261:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7122:32:1;;;7104:51;;7092:2;7077:18;33261:221:0;6958:203:1;32784:411:0;;;;;;;;;;-1:-1:-1;32784:411:0;;;;;:::i;:::-;;:::i;:::-;;46266:561;;;:::i;44226:31::-;;;;;;;;;;;;;;;;;;;7997:25:1;;;7985:2;7970:18;44226:31:0;7851:177:1;47210:101:0;;;;;;;;;;;;;:::i;47548:416::-;;;;;;;;;;-1:-1:-1;47548:416:0;;;;;:::i;:::-;;:::i;34011:339::-;;;;;;;;;;-1:-1:-1;34011:339:0;;;;;:::i;:::-;;:::i;44383:29::-;;;;;;;;;;-1:-1:-1;44383:29:0;;;;;;;;48324:103;;;;;;;;;;;;;:::i;44176:41::-;;;;;;;;;;;;44213:4;44176:41;;48602:143;;;;;;;;;;;;;:::i;34421:185::-;;;;;;;;;;-1:-1:-1;34421:185:0;;;;;:::i;:::-;;:::i;48435:88::-;;;;;;;;;;-1:-1:-1;48435:88:0;;;;;:::i;:::-;;:::i;44264:31::-;;;;;;;;;;;;;;;;47972:100;;;;;;;;;;-1:-1:-1;47972:100:0;;;;;:::i;:::-;;:::i;31396:239::-;;;;;;;;;;-1:-1:-1;31396:239:0;;;;;:::i;:::-;;:::i;44146:21::-;;;;;;;;;;;;;:::i;45491:692::-;;;;;;:::i;:::-;;:::i;31126:208::-;;;;;;;;;;-1:-1:-1;31126:208:0;;;;;:::i;:::-;;:::i;9254:103::-;;;;;;;;;;;;;:::i;8603:87::-;;;;;;;;;;-1:-1:-1;8676:6:0;;-1:-1:-1;;;;;8676:6:0;8603:87;;31871:104;;;;;;;;;;;;;:::i;33554:155::-;;;;;;;;;;-1:-1:-1;33554:155:0;;;;;:::i;:::-;;:::i;44340:34::-;;;;;;;;;;;;;;;;44419:28;;;;;;;;;;-1:-1:-1;44419:28:0;;;;;;;;;;;34677:328;;;;;;;;;;-1:-1:-1;34677:328:0;;;;;:::i;:::-;;:::i;48080:122::-;;;;;;;;;;-1:-1:-1;48080:122:0;;;;;:::i;:::-;;:::i;46896:306::-;;;;;;;;;;-1:-1:-1;46896:306:0;;;;;:::i;:::-;;:::i;33780:164::-;;;;;;;;;;-1:-1:-1;33780:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33901:25:0;;;33877:4;33901:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33780:164;9512:201;;;;;;;;;;-1:-1:-1;9512:201:0;;;;;:::i;:::-;;:::i;48210:106::-;;;;;;;;;;;;;:::i;30757:305::-;30859:4;-1:-1:-1;;;;;;30896:40:0;;-1:-1:-1;;;30896:40:0;;:105;;-1:-1:-1;;;;;;;30953:48:0;;-1:-1:-1;;;30953:48:0;30896:105;:158;;;-1:-1:-1;;;;;;;;;;21496:40:0;;;31018:36;30876:178;30757:305;-1:-1:-1;;30757:305:0:o;31702:100::-;31756:13;31789:5;31782:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31702:100;:::o;33261:221::-;33337:7;36604:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36604:16:0;33357:73;;;;-1:-1:-1;;;33357:73:0;;16006:2:1;33357:73:0;;;15988:21:1;16045:2;16025:18;;;16018:30;16084:34;16064:18;;;16057:62;-1:-1:-1;;;16135:18:1;;;16128:42;16187:19;;33357:73:0;;;;;;;;;-1:-1:-1;33450:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33450:24:0;;33261:221::o;32784:411::-;32865:13;32881:23;32896:7;32881:14;:23::i;:::-;32865:39;;32929:5;-1:-1:-1;;;;;32923:11:0;:2;-1:-1:-1;;;;;32923:11:0;;;32915:57;;;;-1:-1:-1;;;32915:57:0;;16780:2:1;32915:57:0;;;16762:21:1;16819:2;16799:18;;;16792:30;16858:34;16838:18;;;16831:62;-1:-1:-1;;;16909:18:1;;;16902:31;16950:19;;32915:57:0;16578:397:1;32915:57:0;7407:10;-1:-1:-1;;;;;33007:21:0;;;;:62;;-1:-1:-1;33032:37:0;33049:5;7407:10;33780:164;:::i;33032:37::-;32985:168;;;;-1:-1:-1;;;32985:168:0;;13565:2:1;32985:168:0;;;13547:21:1;13604:2;13584:18;;;13577:30;13643:34;13623:18;;;13616:62;13714:26;13694:18;;;13687:54;13758:19;;32985:168:0;13363:420:1;32985:168:0;33166:21;33175:2;33179:7;33166:8;:21::i;:::-;32854:341;32784:411;;:::o;46266:561::-;46341:4;;45247:9;45238:5;:18;45216:92;;;;-1:-1:-1;;;45216:92:0;;17600:2:1;45216:92:0;;;17582:21:1;17639:2;17619:18;;;17612:30;-1:-1:-1;;;17658:18:1;;;17651:54;17722:18;;45216:92:0;17398:348:1;45216:92:0;5701:1:::1;6299:7;;:19;;6291:63;;;::::0;-1:-1:-1;;;6291:63:0;;17953:2:1;6291:63:0::1;::::0;::::1;17935:21:1::0;17992:2;17972:18;;;17965:30;18031:33;18011:18;;;18004:61;18082:18;;6291:63:0::1;17751:355:1::0;6291:63:0::1;5701:1;6432:7;:18:::0;46394:17:::2;::::0;::::2;;46393:18;:38:::0;::::2;;;-1:-1:-1::0;46415:16:0::2;::::0;::::2;::::0;::::2;;;46393:38;46385:84;;;::::0;-1:-1:-1;;;46385:84:0;;12804:2:1;46385:84:0::2;::::0;::::2;12786:21:1::0;12843:2;12823:18;;;12816:30;12882:34;12862:18;;;12855:62;-1:-1:-1;;;12933:18:1;;;12926:31;12974:19;;46385:84:0::2;12602:397:1::0;46385:84:0::2;46517:12;::::0;46498:10:::2;46488:21;::::0;;;:9:::2;:21;::::0;;;;;:25:::2;::::0;46512:1:::2;46488:25;:::i;:::-;:41;;46480:107;;;;-1:-1:-1::0;;;46480:107:0::2;;;;;;;:::i;:::-;44213:4;46606:22;:12;999:14:::0;;907:114;46606:22:::2;:26;::::0;46631:1:::2;46606:26;:::i;:::-;:40;;46598:95;;;;-1:-1:-1::0;;;46598:95:0::2;;;;;;;:::i;:::-;46706:24;:12;1118:19:::0;;1136:1;1118:19;;;1029:127;46706:24:::2;46741:41;46747:10;46759:22;:12;999:14:::0;;907:114;46759:22:::2;46741:5;:41::i;:::-;46803:10;46793:21;::::0;;;:9:::2;:21;::::0;;;;:26;;46818:1:::2;::::0;46793:21;:26:::2;::::0;46818:1;;46793:26:::2;:::i;:::-;::::0;;;-1:-1:-1;;5657:1:0::1;6611:7;:22:::0;-1:-1:-1;46266:561:0:o;47210:101::-;47254:7;47281:22;:12;999:14;;907:114;47281:22;47274:29;;47210:101;:::o;47548:416::-;8676:6;;-1:-1:-1;;;;;8676:6:0;7407:10;8823:23;8815:68;;;;-1:-1:-1;;;8815:68:0;;;;;;;:::i;:::-;47657:1:::1;47643:11;:15;47635:64;;;::::0;-1:-1:-1;;;47635:64:0;;10867:2:1;47635:64:0::1;::::0;::::1;10849:21:1::0;10906:2;10886:18;;;10879:30;10945:34;10925:18;;;10918:62;-1:-1:-1;;;10996:18:1;;;10989:34;11040:19;;47635:64:0::1;10665:400:1::0;47635:64:0::1;44213:4;47743:11;47718:22;:12;999:14:::0;;907:114;47718:22:::1;:36;;;;:::i;:::-;:50;;47710:94;;;::::0;-1:-1:-1;;;47710:94:0;;11272:2:1;47710:94:0::1;::::0;::::1;11254:21:1::0;11311:2;11291:18;;;11284:30;11350:33;11330:18;;;11323:61;11401:18;;47710:94:0::1;11070:355:1::0;47710:94:0::1;47820:9;47815:142;47839:11;47835:1;:15;47815:142;;;47872:24;:12;1118:19:::0;;1136:1;1118:19;;;1029:127;47872:24:::1;47911:34;47917:3;47922:22;:12;999:14:::0;;907:114;47911:34:::1;47852:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47815:142;;34011:339:::0;34206:41;7407:10;34239:7;34206:18;:41::i;:::-;34198:103;;;;-1:-1:-1;;;34198:103:0;;;;;;;:::i;:::-;34314:28;34324:4;34330:2;34334:7;34314:9;:28::i;48324:103::-;8676:6;;-1:-1:-1;;;;;8676:6:0;7407:10;8823:23;8815:68;;;;-1:-1:-1;;;8815:68:0;;;;;;;:::i;:::-;48403:16:::1;::::0;;-1:-1:-1;;48383:36:0;::::1;48403:16;::::0;;;::::1;;;48402:17;48383:36:::0;;::::1;;::::0;;48324:103::o;48602:143::-;8676:6;;-1:-1:-1;;;;;8676:6:0;7407:10;8823:23;8815:68;;;;-1:-1:-1;;;8815:68:0;;;;;;;:::i;:::-;48700:37:::1;::::0;48668:21:::1;::::0;48708:10:::1;::::0;48700:37;::::1;;;::::0;48668:21;;48650:15:::1;48700:37:::0;48650:15;48700:37;48668:21;48708:10;48700:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48639:106;48602:143::o:0;34421:185::-;34559:39;34576:4;34582:2;34586:7;34559:39;;;;;;;;;;;;:16;:39::i;48435:88::-;8676:6;;-1:-1:-1;;;;;8676:6:0;7407:10;8823:23;8815:68;;;;-1:-1:-1;;;8815:68:0;;;;;;;:::i;:::-;48500:4:::1;:15:::0;48435:88::o;47972:100::-;8676:6;;-1:-1:-1;;;;;8676:6:0;7407:10;8823:23;8815:68;;;;-1:-1:-1;;;8815:68:0;;;;;;;:::i;:::-;48046:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;31396:239::-:0;31468:7;31504:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31504:16:0;31539:19;31531:73;;;;-1:-1:-1;;;31531:73:0;;14401:2:1;31531:73:0;;;14383:21:1;14440:2;14420:18;;;14413:30;14479:34;14459:18;;;14452:62;-1:-1:-1;;;14530:18:1;;;14523:39;14579:19;;31531:73:0;14199:405:1;44146:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45491:692::-;45623:11;;45636:19;;44934:144;44971:11;;44934:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45034:28:0;;-1:-1:-1;;45051:10:0;5567:2:1;5563:15;5559:53;45034:28:0;;;5547:66:1;45001:4:0;;-1:-1:-1;5629:12:1;;;-1:-1:-1;45034:28:0;;;;;;;;;;;;45024:39;;;;;;44934:18;:144::i;:::-;44912:224;;;;-1:-1:-1;;;44912:224:0;;13206:2:1;44912:224:0;;;13188:21:1;13245:2;13225:18;;;13218:30;13284:32;13264:18;;;13257:60;13334:18;;44912:224:0;13004:354:1;44912:224:0;45683:4:::1;;45247:9;45238:5;:18;45216:92;;;::::0;-1:-1:-1;;;45216:92:0;;17600:2:1;45216:92:0::1;::::0;::::1;17582:21:1::0;17639:2;17619:18;;;17612:30;-1:-1:-1;;;17658:18:1;;;17651:54;17722:18;;45216:92:0::1;17398:348:1::0;45216:92:0::1;5701:1:::2;6299:7;;:19;;6291:63;;;::::0;-1:-1:-1;;;6291:63:0;;17953:2:1;6291:63:0::2;::::0;::::2;17935:21:1::0;17992:2;17972:18;;;17965:30;18031:33;18011:18;;;18004:61;18082:18;;6291:63:0::2;17751:355:1::0;6291:63:0::2;5701:1;6432:7;:18:::0;45735:17:::3;::::0;::::3;;:38:::0;::::3;;;-1:-1:-1::0;45757:16:0::3;::::0;::::3;::::0;::::3;;;45756:17;45735:38;45727:90;;;::::0;-1:-1:-1;;;45727:90:0;;8870:2:1;45727:90:0::3;::::0;::::3;8852:21:1::0;8909:2;8889:18;;;8882:30;8948:34;8928:18;;;8921:62;-1:-1:-1;;;8999:18:1;;;8992:37;9046:19;;45727:90:0::3;8668:403:1::0;45727:90:0::3;45865:12;::::0;45846:10:::3;45836:21;::::0;;;:9:::3;:21;::::0;;;;;:25:::3;::::0;45860:1:::3;45836:25;:::i;:::-;:41;;45828:107;;;;-1:-1:-1::0;;;45828:107:0::3;;;;;;;:::i;:::-;44213:4;45954:22;:12;999:14:::0;;907:114;45954:22:::3;:26;::::0;45979:1:::3;45954:26;:::i;:::-;:40;;45946:95;;;;-1:-1:-1::0;;;45946:95:0::3;;;;;;;:::i;:::-;46062:24;:12;1118:19:::0;;1136:1;1118:19;;;1029:127;46062:24:::3;46097:41;46103:10;46115:22;:12;999:14:::0;;907:114;46097:41:::3;46159:10;46149:21;::::0;;;:9:::3;:21;::::0;;;;:26;;46174:1:::3;::::0;46149:21;:26:::3;::::0;46174:1;;46149:26:::3;:::i;:::-;::::0;;;-1:-1:-1;;5657:1:0::2;6611:7;:22:::0;-1:-1:-1;;;;;;45491:692:0:o;31126:208::-;31198:7;-1:-1:-1;;;;;31226:19:0;;31218:74;;;;-1:-1:-1;;;31218:74:0;;13990:2:1;31218:74:0;;;13972:21:1;14029:2;14009:18;;;14002:30;14068:34;14048:18;;;14041:62;-1:-1:-1;;;14119:18:1;;;14112:40;14169:19;;31218:74:0;13788:406:1;31218:74:0;-1:-1:-1;;;;;;31310:16:0;;;;;:9;:16;;;;;;;31126:208::o;9254:103::-;8676:6;;-1:-1:-1;;;;;8676:6:0;7407:10;8823:23;8815:68;;;;-1:-1:-1;;;8815:68:0;;;;;;;:::i;:::-;9319:30:::1;9346:1;9319:18;:30::i;:::-;9254:103::o:0;31871:104::-;31927:13;31960:7;31953:14;;;;;:::i;33554:155::-;33649:52;7407:10;33682:8;33692;33649:18;:52::i;34677:328::-;34852:41;7407:10;34885:7;34852:18;:41::i;:::-;34844:103;;;;-1:-1:-1;;;34844:103:0;;;;;;;:::i;:::-;34958:39;34972:4;34978:2;34982:7;34991:5;34958:13;:39::i;:::-;34677:328;;;;:::o;48080:122::-;8676:6;;-1:-1:-1;;;;;8676:6:0;7407:10;8823:23;8815:68;;;;-1:-1:-1;;;8815:68:0;;;;;;;:::i;:::-;48162:19:::1;:32:::0;48080:122::o;46896:306::-;36580:4;36604:16;;;:7;:16;;;;;;47004:13;;-1:-1:-1;;;;;36604:16:0;47035:72;;;;-1:-1:-1;;;47035:72:0;;15594:2:1;47035:72:0;;;15576:21:1;15633:2;15613:18;;;15606:30;15672:34;15652:18;;;15645:62;-1:-1:-1;;;15723:18:1;;;15716:41;15774:19;;47035:72:0;15392:407:1;47035:72:0;47149:7;47158:25;47175:7;47158:16;:25::i;:::-;47132:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47118:76;;46896:306;;;:::o;9512:201::-;8676:6;;-1:-1:-1;;;;;8676:6:0;7407:10;8823:23;8815:68;;;;-1:-1:-1;;;8815:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9601:22:0;::::1;9593:73;;;::::0;-1:-1:-1;;;9593:73:0;;9697:2:1;9593:73:0::1;::::0;::::1;9679:21:1::0;9736:2;9716:18;;;9709:30;9775:34;9755:18;;;9748:62;-1:-1:-1;;;9826:18:1;;;9819:36;9872:19;;9593:73:0::1;9495:402:1::0;9593:73:0::1;9677:28;9696:8;9677:18;:28::i;:::-;9512:201:::0;:::o;48210:106::-;8676:6;;-1:-1:-1;;;;;8676:6:0;7407:10;8823:23;8815:68;;;;-1:-1:-1;;;8815:68:0;;;;;;;:::i;:::-;48291:17:::1;::::0;;-1:-1:-1;;48270:38:0;::::1;48291:17;::::0;;::::1;48290:18;48270:38;::::0;;48210:106::o;40661:174::-;40736:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40736:29:0;-1:-1:-1;;;;;40736:29:0;;;;;;;;:24;;40790:23;40736:24;40790:14;:23::i;:::-;-1:-1:-1;;;;;40781:46:0;;;;;;;;;;;40661:174;;:::o;38493:439::-;-1:-1:-1;;;;;38573:16:0;;38565:61;;;;-1:-1:-1;;;38565:61:0;;14811:2:1;38565:61:0;;;14793:21:1;;;14830:18;;;14823:30;14889:34;14869:18;;;14862:62;14941:18;;38565:61:0;14609:356:1;38565:61:0;36580:4;36604:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36604:16:0;:30;38637:58;;;;-1:-1:-1;;;38637:58:0;;10510:2:1;38637:58:0;;;10492:21:1;10549:2;10529:18;;;10522:30;10588;10568:18;;;10561:58;10636:18;;38637:58:0;10308:352:1;38637:58:0;-1:-1:-1;;;;;38766:13:0;;;;;;:9;:13;;;;;:18;;38783:1;;38766:13;:18;;38783:1;;38766:18;:::i;:::-;;;;-1:-1:-1;;38795:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38795:21:0;-1:-1:-1;;;;;38795:21:0;;;;;;;;38834:33;;38795:16;;;38834:33;;38795:16;;38834:33;48700:37:::1;48639:106;48602:143::o:0;36809:348::-;36902:4;36604:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36604:16:0;36919:73;;;;-1:-1:-1;;;36919:73:0;;12391:2:1;36919:73:0;;;12373:21:1;12430:2;12410:18;;;12403:30;12469:34;12449:18;;;12442:62;-1:-1:-1;;;12520:18:1;;;12513:42;12572:19;;36919:73:0;12189:408:1;36919:73:0;37003:13;37019:23;37034:7;37019:14;:23::i;:::-;37003:39;;37072:5;-1:-1:-1;;;;;37061:16:0;:7;-1:-1:-1;;;;;37061:16:0;;:51;;;;37105:7;-1:-1:-1;;;;;37081:31:0;:20;37093:7;37081:11;:20::i;:::-;-1:-1:-1;;;;;37081:31:0;;37061:51;:87;;;-1:-1:-1;;;;;;33901:25:0;;;33877:4;33901:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37116:32;37053:96;36809:348;-1:-1:-1;;;;36809:348:0:o;39918:625::-;40077:4;-1:-1:-1;;;;;40050:31:0;:23;40065:7;40050:14;:23::i;:::-;-1:-1:-1;;;;;40050:31:0;;40042:81;;;;-1:-1:-1;;;40042:81:0;;10104:2:1;40042:81:0;;;10086:21:1;10143:2;10123:18;;;10116:30;10182:34;10162:18;;;10155:62;-1:-1:-1;;;10233:18:1;;;10226:35;10278:19;;40042:81:0;9902:401:1;40042:81:0;-1:-1:-1;;;;;40142:16:0;;40134:65;;;;-1:-1:-1;;;40134:65:0;;11632:2:1;40134:65:0;;;11614:21:1;11671:2;11651:18;;;11644:30;11710:34;11690:18;;;11683:62;-1:-1:-1;;;11761:18:1;;;11754:34;11805:19;;40134:65:0;11430:400:1;40134:65:0;40316:29;40333:1;40337:7;40316:8;:29::i;:::-;-1:-1:-1;;;;;40358:15:0;;;;;;:9;:15;;;;;:20;;40377:1;;40358:15;:20;;40377:1;;40358:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40389:13:0;;;;;;:9;:13;;;;;:18;;40406:1;;40389:13;:18;;40406:1;;40389:18;:::i;:::-;;;;-1:-1:-1;;40418:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40418:21:0;-1:-1:-1;;;;;40418:21:0;;;;;;;;;40457:27;;40418:16;;40457:27;;;;;;;32854:341;32784:411;;:::o;2423:190::-;2548:4;2601;2572:25;2585:5;2592:4;2572:12;:25::i;:::-;:33;;2423:190;-1:-1:-1;;;;2423:190:0:o;9873:191::-;9966:6;;;-1:-1:-1;;;;;9983:17:0;;;-1:-1:-1;;;;;;9983:17:0;;;;;;;10016:40;;9966:6;;;9983:17;9966:6;;10016:40;;9947:16;;10016:40;9936:128;9873:191;:::o;40977:315::-;41132:8;-1:-1:-1;;;;;41123:17:0;:5;-1:-1:-1;;;;;41123:17:0;;;41115:55;;;;-1:-1:-1;;;41115:55:0;;12037:2:1;41115:55:0;;;12019:21:1;12076:2;12056:18;;;12049:30;12115:27;12095:18;;;12088:55;12160:18;;41115:55:0;11835:349:1;41115:55:0;-1:-1:-1;;;;;41181:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41181:46:0;;;;;;;;;;41243:41;;7799::1;;;41243::0;;7772:18:1;41243:41:0;;;;;;;40977:315;;;:::o;35887:::-;36044:28;36054:4;36060:2;36064:7;36044:9;:28::i;:::-;36091:48;36114:4;36120:2;36124:7;36133:5;36091:22;:48::i;:::-;36083:111;;;;-1:-1:-1;;;36083:111:0;;;;;;;:::i;27591:723::-;27647:13;27868:10;27864:53;;-1:-1:-1;;27895:10:0;;;;;;;;;;;;-1:-1:-1;;;27895:10:0;;;;;27591:723::o;27864:53::-;27942:5;27927:12;27983:78;27990:9;;27983:78;;28016:8;;;;:::i;:::-;;-1:-1:-1;28039:10:0;;-1:-1:-1;28047:2:0;28039:10;;:::i;:::-;;;27983:78;;;28071:19;28103:6;28093:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28093:17:0;;28071:39;;28121:154;28128:10;;28121:154;;28155:11;28165:1;28155:11;;:::i;:::-;;-1:-1:-1;28224:10:0;28232:2;28224:5;:10;:::i;:::-;28211:24;;:2;:24;:::i;:::-;28198:39;;28181:6;28188;28181:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;28181:56:0;;;;;;;;-1:-1:-1;28252:11:0;28261:2;28252:11;;:::i;:::-;;;28121:154;;2975:675;3058:7;3101:4;3058:7;3116:497;3140:5;:12;3136:1;:16;3116:497;;;3174:20;3197:5;3203:1;3197:8;;;;;;;;:::i;:::-;;;;;;;3174:31;;3240:12;3224;:28;3220:382;;3726:13;3776:15;;;3812:4;3805:15;;;3859:4;3843:21;;3352:57;;3220:382;;;3726:13;3776:15;;;3812:4;3805:15;;;3859:4;3843:21;;3529:57;;3220:382;-1:-1:-1;3154:3:0;;;;:::i;:::-;;;;3116:497;;;-1:-1:-1;3630:12:0;2975:675;-1:-1:-1;;;2975:675:0:o;41857:799::-;42012:4;-1:-1:-1;;;;;42033:13:0;;11599:19;:23;42029:620;;42069:72;;-1:-1:-1;;;42069:72:0;;-1:-1:-1;;;;;42069:36:0;;;;;:72;;7407:10;;42120:4;;42126:7;;42135:5;;42069:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42069:72:0;;;;;;;;-1:-1:-1;;42069:72:0;;;;;;;;;;;;:::i;:::-;;;42065:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42311:13:0;;42307:272;;42354:60;;-1:-1:-1;;;42354:60:0;;;;;;;:::i;42307:272::-;42529:6;42523:13;42514:6;42510:2;42506:15;42499:38;42065:529;-1:-1:-1;;;;;;42192:51:0;-1:-1:-1;;;42192:51:0;;-1:-1:-1;42185:58:0;;42029:620;-1:-1:-1;42633:4:0;41857:799;;;;;;:::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;747:70;650:173;;;:::o;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:615::-;2985:6;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:52;;;3062:1;3059;3052:12;3014:52;3102:9;3089:23;3131:18;3172:2;3164:6;3161:14;3158:34;;;3188:1;3185;3178:12;3158:34;3226:6;3215:9;3211:22;3201:32;;3271:7;3264:4;3260:2;3256:13;3252:27;3242:55;;3293:1;3290;3283:12;3242:55;3333:2;3320:16;3359:2;3351:6;3348:14;3345:34;;;3375:1;3372;3365:12;3345:34;3428:7;3423:2;3413:6;3410:1;3406:14;3402:2;3398:23;3394:32;3391:45;3388:65;;;3449:1;3446;3439:12;3388:65;3480:2;3472:11;;;;;3502:6;;-1:-1:-1;2899:615:1;;-1:-1:-1;;;;2899:615:1:o;3519:180::-;3578:6;3631:2;3619:9;3610:7;3606:23;3602:32;3599:52;;;3647:1;3644;3637:12;3599:52;-1:-1:-1;3670:23:1;;3519:180;-1:-1:-1;3519:180:1:o;3704:245::-;3762:6;3815:2;3803:9;3794:7;3790:23;3786:32;3783:52;;;3831:1;3828;3821:12;3783:52;3870:9;3857:23;3889:30;3913:5;3889:30;:::i;3954:249::-;4023:6;4076:2;4064:9;4055:7;4051:23;4047:32;4044:52;;;4092:1;4089;4082:12;4044:52;4124:9;4118:16;4143:30;4167:5;4143:30;:::i;4208:450::-;4277:6;4330:2;4318:9;4309:7;4305:23;4301:32;4298:52;;;4346:1;4343;4336:12;4298:52;4386:9;4373:23;4419:18;4411:6;4408:30;4405:50;;;4451:1;4448;4441:12;4405:50;4474:22;;4527:4;4519:13;;4515:27;-1:-1:-1;4505:55:1;;4556:1;4553;4546:12;4505:55;4579:73;4644:7;4639:2;4626:16;4621:2;4617;4613:11;4579:73;:::i;4848:257::-;4889:3;4927:5;4921:12;4954:6;4949:3;4942:19;4970:63;5026:6;5019:4;5014:3;5010:14;5003:4;4996:5;4992:16;4970:63;:::i;:::-;5087:2;5066:15;-1:-1:-1;;5062:29:1;5053:39;;;;5094:4;5049:50;;4848:257;-1:-1:-1;;4848:257:1:o;5110:185::-;5152:3;5190:5;5184:12;5205:52;5250:6;5245:3;5238:4;5231:5;5227:16;5205:52;:::i;:::-;5273:16;;;;;5110:185;-1:-1:-1;;5110:185:1:o;5652:1301::-;5929:3;5958:1;5991:6;5985:13;6021:3;6043:1;6071:9;6067:2;6063:18;6053:28;;6131:2;6120:9;6116:18;6153;6143:61;;6197:4;6189:6;6185:17;6175:27;;6143:61;6223:2;6271;6263:6;6260:14;6240:18;6237:38;6234:165;;;-1:-1:-1;;;6298:33:1;;6354:4;6351:1;6344:15;6384:4;6305:3;6372:17;6234:165;6415:18;6442:104;;;;6560:1;6555:320;;;;6408:467;;6442:104;-1:-1:-1;;6475:24:1;;6463:37;;6520:16;;;;-1:-1:-1;6442:104:1;;6555:320;18366:1;18359:14;;;18403:4;18390:18;;6650:1;6664:165;6678:6;6675:1;6672:13;6664:165;;;6756:14;;6743:11;;;6736:35;6799:16;;;;6693:10;;6664:165;;;6668:3;;6858:6;6853:3;6849:16;6842:23;;6408:467;;;;;;;6891:56;6916:30;6942:3;6934:6;6916:30;:::i;:::-;-1:-1:-1;;;5360:20:1;;5405:1;5396:11;;5300:113;6891:56;6884:63;5652:1301;-1:-1:-1;;;;;5652:1301:1:o;7166:488::-;-1:-1:-1;;;;;7435:15:1;;;7417:34;;7487:15;;7482:2;7467:18;;7460:43;7534:2;7519:18;;7512:34;;;7582:3;7577:2;7562:18;;7555:31;;;7360:4;;7603:45;;7628:19;;7620:6;7603:45;:::i;:::-;7595:53;7166:488;-1:-1:-1;;;;;;7166:488:1:o;8033:219::-;8182:2;8171:9;8164:21;8145:4;8202:44;8242:2;8231:9;8227:18;8219:6;8202:44;:::i;8257:406::-;8459:2;8441:21;;;8498:2;8478:18;;;8471:30;8537:34;8532:2;8517:18;;8510:62;-1:-1:-1;;;8603:2:1;8588:18;;8581:40;8653:3;8638:19;;8257:406::o;9076:414::-;9278:2;9260:21;;;9317:2;9297:18;;;9290:30;9356:34;9351:2;9336:18;;9329:62;-1:-1:-1;;;9422:2:1;9407:18;;9400:48;9480:3;9465:19;;9076:414::o;14970:417::-;15172:2;15154:21;;;15211:2;15191:18;;;15184:30;15250:34;15245:2;15230:18;;15223:62;-1:-1:-1;;;15316:2:1;15301:18;;15294:51;15377:3;15362:19;;14970:417::o;16217:356::-;16419:2;16401:21;;;16438:18;;;16431:30;16497:34;16492:2;16477:18;;16470:62;16564:2;16549:18;;16217:356::o;16980:413::-;17182:2;17164:21;;;17221:2;17201:18;;;17194:30;17260:34;17255:2;17240:18;;17233:62;-1:-1:-1;;;17326:2:1;17311:18;;17304:47;17383:3;17368:19;;16980:413::o;18419:128::-;18459:3;18490:1;18486:6;18483:1;18480:13;18477:39;;;18496:18;;:::i;:::-;-1:-1:-1;18532:9:1;;18419:128::o;18552:120::-;18592:1;18618;18608:35;;18623:18;;:::i;:::-;-1:-1:-1;18657:9:1;;18552:120::o;18677:125::-;18717:4;18745:1;18742;18739:8;18736:34;;;18750:18;;:::i;:::-;-1:-1:-1;18787:9:1;;18677:125::o;18807:258::-;18879:1;18889:113;18903:6;18900:1;18897:13;18889:113;;;18979:11;;;18973:18;18960:11;;;18953:39;18925:2;18918:10;18889:113;;;19020:6;19017:1;19014:13;19011:48;;;-1:-1:-1;;19055:1:1;19037:16;;19030:27;18807:258::o;19070:380::-;19149:1;19145:12;;;;19192;;;19213:61;;19267:4;19259:6;19255:17;19245:27;;19213:61;19320:2;19312:6;19309:14;19289:18;19286:38;19283:161;;;19366:10;19361:3;19357:20;19354:1;19347:31;19401:4;19398:1;19391:15;19429:4;19426:1;19419:15;19283:161;;19070:380;;;:::o;19455:135::-;19494:3;-1:-1:-1;;19515:17:1;;19512:43;;;19535:18;;:::i;:::-;-1:-1:-1;19582:1:1;19571:13;;19455:135::o;19595:112::-;19627:1;19653;19643:35;;19658:18;;:::i;:::-;-1:-1:-1;19692:9:1;;19595:112::o;19712:127::-;19773:10;19768:3;19764:20;19761:1;19754:31;19804:4;19801:1;19794:15;19828:4;19825:1;19818:15;19844:127;19905:10;19900:3;19896:20;19893:1;19886:31;19936:4;19933:1;19926:15;19960:4;19957:1;19950:15;19976:127;20037:10;20032:3;20028:20;20025:1;20018:31;20068:4;20065:1;20058:15;20092:4;20089:1;20082:15;20108:127;20169:10;20164:3;20160:20;20157:1;20150:31;20200:4;20197:1;20190:15;20224:4;20221:1;20214:15;20240:131;-1:-1:-1;;;;;;20314:32:1;;20304:43;;20294:71;;20361:1;20358;20351:12

Swarm Source

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