ETH Price: $3,460.29 (+0.26%)

Token

Adventure Roos (ADVR)
 

Overview

Max Total Supply

927 ADVR

Holders

380

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
AdventureRoos

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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

// File: AdventureRoos.sol


pragma solidity >=0.7.0 <0.9.0;


contract AdventureRoos is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string private uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.07 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmountPerTx = 5;

  bool public paused = true;
  bool public revealed = false;
  bool public partialRevealed = false;
  bool public presaleActive = false;
  bool public saleActive = false;
  mapping(address => uint256) private addressMintedBalance;
  bytes32 private merkleRoot = "";
  uint256 public revealUntil = 0;

  constructor() ERC721("Adventure Roos", "ADVR") {
    setUriPrefix("");
    setHiddenMetadataUri("https://ipfs.io/ipfs/QmSnrPL6epPx7NZ2ihXaVpPzYg42k8k8Pg8Ngxi6XByyDh/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

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

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(saleActive, "Sale is not Active" );
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    require(addressMintedBalance[msg.sender] + _mintAmount <= maxMintAmountPerTx, "Max mint amount per wallet reached");
    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function mintForSelf(uint256 _mintAmount) public onlyOwner {
    require(_mintAmount > 0, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _mintLoop(msg.sender, _mintAmount);
  }

  function whitelistMint(uint _mintAmount, bytes32 leaf, bytes32[] memory proof) external payable mintCompliance(_mintAmount) {
    require(presaleActive, "Sale is not Active" );
    // Verify that (msg.sender, amount) correspond to Merkle leaf
    require(keccak256(abi.encodePacked(msg.sender)) == leaf, "Sender and amount don't match Merkle leaf");

     // Verify that (leaf, proof) matches the Merkle root
    require(verify(merkleRoot, leaf, proof), "Not a valid leaf in the Merkle tree");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    require(addressMintedBalance[msg.sender] + _mintAmount <= maxMintAmountPerTx, "Max mint amount per wallet reached");
    _mintLoop(msg.sender, _mintAmount);
  }

  function verify(bytes32 _merkleRoot, bytes32 leaf, bytes32[] memory proof) internal pure returns (bool) {
        return MerkleProof.verify(proof, _merkleRoot, leaf);
    }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    string memory currentBaseURI = _baseURI();
    
    if(partialRevealed && _tokenId <= revealUntil) { 
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
            : "";
    }

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

    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }
  function setPartialRevealed(bool _state) public onlyOwner {
    partialRevealed = _state;
  }

  function setRevealedUntil(uint256 _state) public onlyOwner {
    revealUntil = _state;
  }

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

  function setPublicSale(bool _sale) public onlyOwner {
    saleActive = _sale;
  }

  function setPreSale(bool _sale) public onlyOwner {
    presaleActive = _sale;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

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

  function withdraw() public onlyOwner {
    require(address(this).balance > 0, "Balance is 0");
    payable(owner()).transfer(address(this).balance);
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    addressMintedBalance[_receiver]+= _mintAmount;
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForSelf","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":"partialRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealUntil","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPartialRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_sale","type":"bool"}],"name":"setPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_sale","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setRevealedUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b916008916200026c565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a916009916200026c565b5066f8b0a10e470000600b55612710600c556005600d55600e805464ffffffffff19166001179055600060108190556011553480156200008957600080fd5b50604080518082018252600e81526d416476656e7475726520526f6f7360901b60208083019182528351808501909452600484526320a22b2960e11b908401528151919291620000dc916000916200026c565b508051620000f29060019060208401906200026c565b5050506200010f620001096200015360201b60201c565b62000157565b6040805160208101909152600081526200012990620001a9565b6200014d6040518060800160405280604f815260200162002e64604f913962000211565b6200034f565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001f85760405162461bcd60e51b8152602060048201819052602482015260008051602062002eb383398151915260448201526064015b60405180910390fd5b80516200020d9060089060208401906200026c565b5050565b6006546001600160a01b031633146200025c5760405162461bcd60e51b8152602060048201819052602482015260008051602062002eb38339815191526044820152606401620001ef565b80516200020d90600a9060208401905b8280546200027a9062000312565b90600052602060002090601f0160209004810192826200029e5760008555620002e9565b82601f10620002b957805160ff1916838001178555620002e9565b82800160010185558215620002e9579182015b82811115620002e9578251825591602001919060010190620002cc565b50620002f7929150620002fb565b5090565b5b80821115620002f75760008155600101620002fc565b600181811c908216806200032757607f821691505b602082108114156200034957634e487b7160e01b600052602260045260246000fd5b50919050565b612b05806200035f6000396000f3fe60806040526004361061027d5760003560e01c806370a082311161014f578063b071401b116100c1578063cebbaf551161007a578063cebbaf551461075b578063d5abeb011461076e578063e0a8085314610784578063e985e9c5146107a4578063efbd73f4146107ed578063f2fde38b1461080d57600080fd5b8063b071401b1461069b578063b88d4fde146106bb578063bacdc0a0146106db578063c49b3d54146106fb578063c87b56dd1461071b578063cbefeb311461073b57600080fd5b80638f428fc8116101135780638f428fc81461061257806394354fd01461062857806395d89b411461063e578063a0712d6814610653578063a22cb46514610666578063a45ba8e71461068657600080fd5b806370a082311461057f578063715018a61461059f5780637cb64759146105b45780637ec4a659146105d45780638da5cb5b146105f457600080fd5b80633ccfd60b116101f357806353135ca0116101ac57806353135ca0146104cd5780635503a0e8146104ee5780635aca1bb6146105035780635c975abb146105235780636352211e1461053d57806368428a1b1461055d57600080fd5b80633ccfd60b1461040c57806342842e0e14610421578063438b63001461044157806344a0d68a1461046e5780634fdd43cb1461048e57806351830227146104ae57600080fd5b806313faede61161024557806313faede61461035357806316ba10e01461037757806316c38b3c1461039757806318160ddd146103b757806323b872dd146103cc57806331d68c9f146103ec57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b3146103115780630d95ccc914610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046124d6565b61082d565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61087f565b6040516102ae91906127af565b3480156102e557600080fd5b506102f96102f43660046124bd565b610911565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c366004612478565b6109ab565b005b34801561033f57600080fd5b5061033161034e3660046124a2565b610ac1565b34801561035f57600080fd5b50610369600b5481565b6040519081526020016102ae565b34801561038357600080fd5b50610331610392366004612510565b610b09565b3480156103a357600080fd5b506103316103b23660046124a2565b610b4a565b3480156103c357600080fd5b50610369610b87565b3480156103d857600080fd5b506103316103e7366004612396565b610b97565b3480156103f857600080fd5b506103316104073660046124bd565b610bc8565b34801561041857600080fd5b50610331610bf7565b34801561042d57600080fd5b5061033161043c366004612396565b610c9c565b34801561044d57600080fd5b5061046161045c366004612348565b610cb7565b6040516102ae919061276b565b34801561047a57600080fd5b506103316104893660046124bd565b610d98565b34801561049a57600080fd5b506103316104a9366004612510565b610dc7565b3480156104ba57600080fd5b50600e546102a290610100900460ff1681565b3480156104d957600080fd5b50600e546102a2906301000000900460ff1681565b3480156104fa57600080fd5b506102cc610e04565b34801561050f57600080fd5b5061033161051e3660046124a2565b610e92565b34801561052f57600080fd5b50600e546102a29060ff1681565b34801561054957600080fd5b506102f96105583660046124bd565b610edc565b34801561056957600080fd5b50600e546102a290640100000000900460ff1681565b34801561058b57600080fd5b5061036961059a366004612348565b610f53565b3480156105ab57600080fd5b50610331610fda565b3480156105c057600080fd5b506103316105cf3660046124bd565b611010565b3480156105e057600080fd5b506103316105ef366004612510565b61103f565b34801561060057600080fd5b506006546001600160a01b03166102f9565b34801561061e57600080fd5b5061036960115481565b34801561063457600080fd5b50610369600d5481565b34801561064a57600080fd5b506102cc61107c565b6103316106613660046124bd565b61108b565b34801561067257600080fd5b5061033161068136600461244e565b61122a565b34801561069257600080fd5b506102cc611235565b3480156106a757600080fd5b506103316106b63660046124bd565b611242565b3480156106c757600080fd5b506103316106d63660046123d2565b611271565b3480156106e757600080fd5b506103316106f63660046124a2565b6112a9565b34801561070757600080fd5b506103316107163660046124bd565b6112ef565b34801561072757600080fd5b506102cc6107363660046124bd565b611378565b34801561074757600080fd5b50600e546102a29062010000900460ff1681565b61033161076936600461257c565b611536565b34801561077a57600080fd5b50610369600c5481565b34801561079057600080fd5b5061033161079f3660046124a2565b61177b565b3480156107b057600080fd5b506102a26107bf366004612363565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107f957600080fd5b50610331610808366004612559565b6117bf565b34801561081957600080fd5b50610331610828366004612348565b611857565b60006001600160e01b031982166380ac58cd60e01b148061085e57506001600160e01b03198216635b5e139f60e01b145b8061087957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461088e906129f7565b80601f01602080910402602001604051908101604052809291908181526020018280546108ba906129f7565b80156109075780601f106108dc57610100808354040283529160200191610907565b820191906000526020600020905b8154815290600101906020018083116108ea57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661098f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109b682610edc565b9050806001600160a01b0316836001600160a01b03161415610a245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610986565b336001600160a01b0382161480610a405750610a4081336107bf565b610ab25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610986565b610abc83836118ef565b505050565b6006546001600160a01b03163314610aeb5760405162461bcd60e51b815260040161098690612842565b600e805491151563010000000263ff00000019909216919091179055565b6006546001600160a01b03163314610b335760405162461bcd60e51b815260040161098690612842565b8051610b4690600990602084019061222b565b5050565b6006546001600160a01b03163314610b745760405162461bcd60e51b815260040161098690612842565b600e805460ff1916911515919091179055565b6000610b9260075490565b905090565b610ba1338261195d565b610bbd5760405162461bcd60e51b8152600401610986906128a5565b610abc838383611a54565b6006546001600160a01b03163314610bf25760405162461bcd60e51b815260040161098690612842565b601155565b6006546001600160a01b03163314610c215760405162461bcd60e51b815260040161098690612842565b60004711610c605760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b6044820152606401610986565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c99573d6000803e3d6000fd5b50565b610abc83838360405180602001604052806000815250611271565b60606000610cc483610f53565b905060008167ffffffffffffffff811115610ce157610ce1612aa3565b604051908082528060200260200182016040528015610d0a578160200160208202803683370190505b509050600160005b8381108015610d235750600c548211155b15610d8e576000610d3383610edc565b9050866001600160a01b0316816001600160a01b03161415610d7b5782848381518110610d6257610d62612a8d565b602090810291909101015281610d7781612a32565b9250505b82610d8581612a32565b93505050610d12565b5090949350505050565b6006546001600160a01b03163314610dc25760405162461bcd60e51b815260040161098690612842565b600b55565b6006546001600160a01b03163314610df15760405162461bcd60e51b815260040161098690612842565b8051610b4690600a90602084019061222b565b60098054610e11906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3d906129f7565b8015610e8a5780601f10610e5f57610100808354040283529160200191610e8a565b820191906000526020600020905b815481529060010190602001808311610e6d57829003601f168201915b505050505081565b6006546001600160a01b03163314610ebc5760405162461bcd60e51b815260040161098690612842565b600e80549115156401000000000264ff0000000019909216919091179055565b6000818152600260205260408120546001600160a01b0316806108795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610986565b60006001600160a01b038216610fbe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610986565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110045760405162461bcd60e51b815260040161098690612842565b61100e6000611bf4565b565b6006546001600160a01b0316331461103a5760405162461bcd60e51b815260040161098690612842565b601055565b6006546001600160a01b031633146110695760405162461bcd60e51b815260040161098690612842565b8051610b4690600890602084019061222b565b60606001805461088e906129f7565b8060008111801561109e5750600d548111155b6110ba5760405162461bcd60e51b815260040161098690612814565b600c54816110c760075490565b6110d19190612969565b11156110ef5760405162461bcd60e51b815260040161098690612877565b600e5460ff16156111425760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610986565b600e54640100000000900460ff166111915760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610986565b81600b5461119f9190612995565b3410156111e45760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610986565b600d54336000908152600f6020526040902054611202908490612969565b11156112205760405162461bcd60e51b8152600401610986906128f6565b610b463383611c46565b610b46338383611cb1565b600a8054610e11906129f7565b6006546001600160a01b0316331461126c5760405162461bcd60e51b815260040161098690612842565b600d55565b61127b338361195d565b6112975760405162461bcd60e51b8152600401610986906128a5565b6112a384848484611d80565b50505050565b6006546001600160a01b031633146112d35760405162461bcd60e51b815260040161098690612842565b600e8054911515620100000262ff000019909216919091179055565b6006546001600160a01b031633146113195760405162461bcd60e51b815260040161098690612842565b600081116113395760405162461bcd60e51b815260040161098690612814565b600c548161134660075490565b6113509190612969565b111561136e5760405162461bcd60e51b815260040161098690612877565b610c993382611c46565b6000818152600260205260409020546060906001600160a01b03166113f75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610986565b6000611401611db3565b600e5490915062010000900460ff16801561141e57506011548311155b15611476576000815111611441576040518060200160405280600081525061146f565b8061144b84611dc2565b600960405160200161145f9392919061266a565b6040516020818303038152906040525b9392505050565b600e54610100900460ff1661151857600a8054611492906129f7565b80601f01602080910402602001604051908101604052809291908181526020018280546114be906129f7565b801561150b5780601f106114e05761010080835404028352916020019161150b565b820191906000526020600020905b8154815290600101906020018083116114ee57829003601f168201915b5050505050915050919050565b6000815111611441576040518060200160405280600081525061146f565b826000811180156115495750600d548111155b6115655760405162461bcd60e51b815260040161098690612814565b600c548161157260075490565b61157c9190612969565b111561159a5760405162461bcd60e51b815260040161098690612877565b600e546301000000900460ff166115e85760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610986565b6040516bffffffffffffffffffffffff193360601b1660208201528390603401604051602081830303815290604052805190602001201461167d5760405162461bcd60e51b815260206004820152602960248201527f53656e64657220616e6420616d6f756e7420646f6e2774206d61746368204d656044820152683935b632903632b0b360b91b6064820152608401610986565b61168a6010548484611ec0565b6116e25760405162461bcd60e51b815260206004820152602360248201527f4e6f7420612076616c6964206c65616620696e20746865204d65726b6c65207460448201526272656560e81b6064820152608401610986565b83600b546116f09190612995565b3410156117355760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610986565b600d54336000908152600f6020526040902054611753908690612969565b11156117715760405162461bcd60e51b8152600401610986906128f6565b6112a33385611c46565b6006546001600160a01b031633146117a55760405162461bcd60e51b815260040161098690612842565b600e80549115156101000261ff0019909216919091179055565b816000811180156117d25750600d548111155b6117ee5760405162461bcd60e51b815260040161098690612814565b600c54816117fb60075490565b6118059190612969565b11156118235760405162461bcd60e51b815260040161098690612877565b6006546001600160a01b0316331461184d5760405162461bcd60e51b815260040161098690612842565b610abc8284611c46565b6006546001600160a01b031633146118815760405162461bcd60e51b815260040161098690612842565b6001600160a01b0381166118e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610986565b610c9981611bf4565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061192482610edc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119d65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610986565b60006119e183610edc565b9050806001600160a01b0316846001600160a01b03161480611a1c5750836001600160a01b0316611a1184610911565b6001600160a01b0316145b80611a4c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a6782610edc565b6001600160a01b031614611acf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610986565b6001600160a01b038216611b315760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610986565b611b3c6000826118ef565b6001600160a01b0383166000908152600360205260408120805460019290611b659084906129b4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b93908490612969565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600f602052604081208054839290611c6e908490612969565b90915550600090505b81811015610abc57611c8d600780546001019055565b611c9f83611c9a60075490565b611ecd565b80611ca981612a32565b915050611c77565b816001600160a01b0316836001600160a01b03161415611d135760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610986565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d8b848484611a54565b611d9784848484611ee7565b6112a35760405162461bcd60e51b8152600401610986906127c2565b60606008805461088e906129f7565b606081611de65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e105780611dfa81612a32565b9150611e099050600a83612981565b9150611dea565b60008167ffffffffffffffff811115611e2b57611e2b612aa3565b6040519080825280601f01601f191660200182016040528015611e55576020820181803683370190505b5090505b8415611a4c57611e6a6001836129b4565b9150611e77600a86612a4d565b611e82906030612969565b60f81b818381518110611e9757611e97612a8d565b60200101906001600160f81b031916908160001a905350611eb9600a86612981565b9450611e59565b6000611a4c828585611ff4565b610b4682826040518060200160405280600081525061200a565b60006001600160a01b0384163b15611fe957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f2b90339089908890889060040161272e565b602060405180830381600087803b158015611f4557600080fd5b505af1925050508015611f75575060408051601f3d908101601f19168201909252611f72918101906124f3565b60015b611fcf573d808015611fa3576040519150601f19603f3d011682016040523d82523d6000602084013e611fa8565b606091505b508051611fc75760405162461bcd60e51b8152600401610986906127c2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a4c565b506001949350505050565b600082612001858461203d565b14949350505050565b61201483836120e9565b6120216000848484611ee7565b610abc5760405162461bcd60e51b8152600401610986906127c2565b600081815b84518110156120e157600085828151811061205f5761205f612a8d565b602002602001015190508083116120a15760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506120ce565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806120d981612a32565b915050612042565b509392505050565b6001600160a01b03821661213f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610986565b6000818152600260205260409020546001600160a01b0316156121a45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610986565b6001600160a01b03821660009081526003602052604081208054600192906121cd908490612969565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612237906129f7565b90600052602060002090601f016020900481019282612259576000855561229f565b82601f1061227257805160ff191683800117855561229f565b8280016001018555821561229f579182015b8281111561229f578251825591602001919060010190612284565b506122ab9291506122af565b5090565b5b808211156122ab57600081556001016122b0565b600067ffffffffffffffff8311156122de576122de612aa3565b6122f1601f8401601f1916602001612938565b905082815283838301111561230557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461233357600080fd5b919050565b8035801515811461233357600080fd5b60006020828403121561235a57600080fd5b61146f8261231c565b6000806040838503121561237657600080fd5b61237f8361231c565b915061238d6020840161231c565b90509250929050565b6000806000606084860312156123ab57600080fd5b6123b48461231c565b92506123c26020850161231c565b9150604084013590509250925092565b600080600080608085870312156123e857600080fd5b6123f18561231c565b93506123ff6020860161231c565b925060408501359150606085013567ffffffffffffffff81111561242257600080fd5b8501601f8101871361243357600080fd5b612442878235602084016122c4565b91505092959194509250565b6000806040838503121561246157600080fd5b61246a8361231c565b915061238d60208401612338565b6000806040838503121561248b57600080fd5b6124948361231c565b946020939093013593505050565b6000602082840312156124b457600080fd5b61146f82612338565b6000602082840312156124cf57600080fd5b5035919050565b6000602082840312156124e857600080fd5b813561146f81612ab9565b60006020828403121561250557600080fd5b815161146f81612ab9565b60006020828403121561252257600080fd5b813567ffffffffffffffff81111561253957600080fd5b8201601f8101841361254a57600080fd5b611a4c848235602084016122c4565b6000806040838503121561256c57600080fd5b8235915061238d6020840161231c565b60008060006060848603121561259157600080fd5b833592506020808501359250604085013567ffffffffffffffff808211156125b857600080fd5b818701915087601f8301126125cc57600080fd5b8135818111156125de576125de612aa3565b8060051b91506125ef848301612938565b8181528481019084860184860187018c101561260a57600080fd5b600095505b8386101561262d57803583526001959095019491860191860161260f565b508096505050505050509250925092565b600081518084526126568160208601602086016129cb565b601f01601f19169290920160200192915050565b60008451602061267d8285838a016129cb565b8551918401916126908184848a016129cb565b8554920191600090600181811c90808316806126ad57607f831692505b8583108114156126cb57634e487b7160e01b85526022600452602485fd5b8080156126df57600181146126f05761271d565b60ff1985168852838801955061271d565b60008b81526020902060005b858110156127155781548a8201529084019088016126fc565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127619083018461263e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127a357835183529284019291840191600101612787565b50909695505050505050565b60208152600061146f602083018461263e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526022908201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604082015261195960f21b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561296157612961612aa3565b604052919050565b6000821982111561297c5761297c612a61565b500190565b60008261299057612990612a77565b500490565b60008160001904831182151516156129af576129af612a61565b500290565b6000828210156129c6576129c6612a61565b500390565b60005b838110156129e65781810151838201526020016129ce565b838111156112a35750506000910152565b600181811c90821680612a0b57607f821691505b60208210811415612a2c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a4657612a46612a61565b5060010190565b600082612a5c57612a5c612a77565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9957600080fdfea2646970667358221220bb884e4949c733893260f791e2a9b74f4a2b1afb7e2745d328c395f93d68208764736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d536e72504c3665705078374e5a32696858615670507a596734326b386b385067384e677869365842797944682f68696464656e2e6a736f6e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806370a082311161014f578063b071401b116100c1578063cebbaf551161007a578063cebbaf551461075b578063d5abeb011461076e578063e0a8085314610784578063e985e9c5146107a4578063efbd73f4146107ed578063f2fde38b1461080d57600080fd5b8063b071401b1461069b578063b88d4fde146106bb578063bacdc0a0146106db578063c49b3d54146106fb578063c87b56dd1461071b578063cbefeb311461073b57600080fd5b80638f428fc8116101135780638f428fc81461061257806394354fd01461062857806395d89b411461063e578063a0712d6814610653578063a22cb46514610666578063a45ba8e71461068657600080fd5b806370a082311461057f578063715018a61461059f5780637cb64759146105b45780637ec4a659146105d45780638da5cb5b146105f457600080fd5b80633ccfd60b116101f357806353135ca0116101ac57806353135ca0146104cd5780635503a0e8146104ee5780635aca1bb6146105035780635c975abb146105235780636352211e1461053d57806368428a1b1461055d57600080fd5b80633ccfd60b1461040c57806342842e0e14610421578063438b63001461044157806344a0d68a1461046e5780634fdd43cb1461048e57806351830227146104ae57600080fd5b806313faede61161024557806313faede61461035357806316ba10e01461037757806316c38b3c1461039757806318160ddd146103b757806323b872dd146103cc57806331d68c9f146103ec57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b3146103115780630d95ccc914610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046124d6565b61082d565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61087f565b6040516102ae91906127af565b3480156102e557600080fd5b506102f96102f43660046124bd565b610911565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c366004612478565b6109ab565b005b34801561033f57600080fd5b5061033161034e3660046124a2565b610ac1565b34801561035f57600080fd5b50610369600b5481565b6040519081526020016102ae565b34801561038357600080fd5b50610331610392366004612510565b610b09565b3480156103a357600080fd5b506103316103b23660046124a2565b610b4a565b3480156103c357600080fd5b50610369610b87565b3480156103d857600080fd5b506103316103e7366004612396565b610b97565b3480156103f857600080fd5b506103316104073660046124bd565b610bc8565b34801561041857600080fd5b50610331610bf7565b34801561042d57600080fd5b5061033161043c366004612396565b610c9c565b34801561044d57600080fd5b5061046161045c366004612348565b610cb7565b6040516102ae919061276b565b34801561047a57600080fd5b506103316104893660046124bd565b610d98565b34801561049a57600080fd5b506103316104a9366004612510565b610dc7565b3480156104ba57600080fd5b50600e546102a290610100900460ff1681565b3480156104d957600080fd5b50600e546102a2906301000000900460ff1681565b3480156104fa57600080fd5b506102cc610e04565b34801561050f57600080fd5b5061033161051e3660046124a2565b610e92565b34801561052f57600080fd5b50600e546102a29060ff1681565b34801561054957600080fd5b506102f96105583660046124bd565b610edc565b34801561056957600080fd5b50600e546102a290640100000000900460ff1681565b34801561058b57600080fd5b5061036961059a366004612348565b610f53565b3480156105ab57600080fd5b50610331610fda565b3480156105c057600080fd5b506103316105cf3660046124bd565b611010565b3480156105e057600080fd5b506103316105ef366004612510565b61103f565b34801561060057600080fd5b506006546001600160a01b03166102f9565b34801561061e57600080fd5b5061036960115481565b34801561063457600080fd5b50610369600d5481565b34801561064a57600080fd5b506102cc61107c565b6103316106613660046124bd565b61108b565b34801561067257600080fd5b5061033161068136600461244e565b61122a565b34801561069257600080fd5b506102cc611235565b3480156106a757600080fd5b506103316106b63660046124bd565b611242565b3480156106c757600080fd5b506103316106d63660046123d2565b611271565b3480156106e757600080fd5b506103316106f63660046124a2565b6112a9565b34801561070757600080fd5b506103316107163660046124bd565b6112ef565b34801561072757600080fd5b506102cc6107363660046124bd565b611378565b34801561074757600080fd5b50600e546102a29062010000900460ff1681565b61033161076936600461257c565b611536565b34801561077a57600080fd5b50610369600c5481565b34801561079057600080fd5b5061033161079f3660046124a2565b61177b565b3480156107b057600080fd5b506102a26107bf366004612363565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107f957600080fd5b50610331610808366004612559565b6117bf565b34801561081957600080fd5b50610331610828366004612348565b611857565b60006001600160e01b031982166380ac58cd60e01b148061085e57506001600160e01b03198216635b5e139f60e01b145b8061087957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461088e906129f7565b80601f01602080910402602001604051908101604052809291908181526020018280546108ba906129f7565b80156109075780601f106108dc57610100808354040283529160200191610907565b820191906000526020600020905b8154815290600101906020018083116108ea57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661098f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109b682610edc565b9050806001600160a01b0316836001600160a01b03161415610a245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610986565b336001600160a01b0382161480610a405750610a4081336107bf565b610ab25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610986565b610abc83836118ef565b505050565b6006546001600160a01b03163314610aeb5760405162461bcd60e51b815260040161098690612842565b600e805491151563010000000263ff00000019909216919091179055565b6006546001600160a01b03163314610b335760405162461bcd60e51b815260040161098690612842565b8051610b4690600990602084019061222b565b5050565b6006546001600160a01b03163314610b745760405162461bcd60e51b815260040161098690612842565b600e805460ff1916911515919091179055565b6000610b9260075490565b905090565b610ba1338261195d565b610bbd5760405162461bcd60e51b8152600401610986906128a5565b610abc838383611a54565b6006546001600160a01b03163314610bf25760405162461bcd60e51b815260040161098690612842565b601155565b6006546001600160a01b03163314610c215760405162461bcd60e51b815260040161098690612842565b60004711610c605760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b6044820152606401610986565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c99573d6000803e3d6000fd5b50565b610abc83838360405180602001604052806000815250611271565b60606000610cc483610f53565b905060008167ffffffffffffffff811115610ce157610ce1612aa3565b604051908082528060200260200182016040528015610d0a578160200160208202803683370190505b509050600160005b8381108015610d235750600c548211155b15610d8e576000610d3383610edc565b9050866001600160a01b0316816001600160a01b03161415610d7b5782848381518110610d6257610d62612a8d565b602090810291909101015281610d7781612a32565b9250505b82610d8581612a32565b93505050610d12565b5090949350505050565b6006546001600160a01b03163314610dc25760405162461bcd60e51b815260040161098690612842565b600b55565b6006546001600160a01b03163314610df15760405162461bcd60e51b815260040161098690612842565b8051610b4690600a90602084019061222b565b60098054610e11906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3d906129f7565b8015610e8a5780601f10610e5f57610100808354040283529160200191610e8a565b820191906000526020600020905b815481529060010190602001808311610e6d57829003601f168201915b505050505081565b6006546001600160a01b03163314610ebc5760405162461bcd60e51b815260040161098690612842565b600e80549115156401000000000264ff0000000019909216919091179055565b6000818152600260205260408120546001600160a01b0316806108795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610986565b60006001600160a01b038216610fbe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610986565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110045760405162461bcd60e51b815260040161098690612842565b61100e6000611bf4565b565b6006546001600160a01b0316331461103a5760405162461bcd60e51b815260040161098690612842565b601055565b6006546001600160a01b031633146110695760405162461bcd60e51b815260040161098690612842565b8051610b4690600890602084019061222b565b60606001805461088e906129f7565b8060008111801561109e5750600d548111155b6110ba5760405162461bcd60e51b815260040161098690612814565b600c54816110c760075490565b6110d19190612969565b11156110ef5760405162461bcd60e51b815260040161098690612877565b600e5460ff16156111425760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610986565b600e54640100000000900460ff166111915760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610986565b81600b5461119f9190612995565b3410156111e45760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610986565b600d54336000908152600f6020526040902054611202908490612969565b11156112205760405162461bcd60e51b8152600401610986906128f6565b610b463383611c46565b610b46338383611cb1565b600a8054610e11906129f7565b6006546001600160a01b0316331461126c5760405162461bcd60e51b815260040161098690612842565b600d55565b61127b338361195d565b6112975760405162461bcd60e51b8152600401610986906128a5565b6112a384848484611d80565b50505050565b6006546001600160a01b031633146112d35760405162461bcd60e51b815260040161098690612842565b600e8054911515620100000262ff000019909216919091179055565b6006546001600160a01b031633146113195760405162461bcd60e51b815260040161098690612842565b600081116113395760405162461bcd60e51b815260040161098690612814565b600c548161134660075490565b6113509190612969565b111561136e5760405162461bcd60e51b815260040161098690612877565b610c993382611c46565b6000818152600260205260409020546060906001600160a01b03166113f75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610986565b6000611401611db3565b600e5490915062010000900460ff16801561141e57506011548311155b15611476576000815111611441576040518060200160405280600081525061146f565b8061144b84611dc2565b600960405160200161145f9392919061266a565b6040516020818303038152906040525b9392505050565b600e54610100900460ff1661151857600a8054611492906129f7565b80601f01602080910402602001604051908101604052809291908181526020018280546114be906129f7565b801561150b5780601f106114e05761010080835404028352916020019161150b565b820191906000526020600020905b8154815290600101906020018083116114ee57829003601f168201915b5050505050915050919050565b6000815111611441576040518060200160405280600081525061146f565b826000811180156115495750600d548111155b6115655760405162461bcd60e51b815260040161098690612814565b600c548161157260075490565b61157c9190612969565b111561159a5760405162461bcd60e51b815260040161098690612877565b600e546301000000900460ff166115e85760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610986565b6040516bffffffffffffffffffffffff193360601b1660208201528390603401604051602081830303815290604052805190602001201461167d5760405162461bcd60e51b815260206004820152602960248201527f53656e64657220616e6420616d6f756e7420646f6e2774206d61746368204d656044820152683935b632903632b0b360b91b6064820152608401610986565b61168a6010548484611ec0565b6116e25760405162461bcd60e51b815260206004820152602360248201527f4e6f7420612076616c6964206c65616620696e20746865204d65726b6c65207460448201526272656560e81b6064820152608401610986565b83600b546116f09190612995565b3410156117355760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610986565b600d54336000908152600f6020526040902054611753908690612969565b11156117715760405162461bcd60e51b8152600401610986906128f6565b6112a33385611c46565b6006546001600160a01b031633146117a55760405162461bcd60e51b815260040161098690612842565b600e80549115156101000261ff0019909216919091179055565b816000811180156117d25750600d548111155b6117ee5760405162461bcd60e51b815260040161098690612814565b600c54816117fb60075490565b6118059190612969565b11156118235760405162461bcd60e51b815260040161098690612877565b6006546001600160a01b0316331461184d5760405162461bcd60e51b815260040161098690612842565b610abc8284611c46565b6006546001600160a01b031633146118815760405162461bcd60e51b815260040161098690612842565b6001600160a01b0381166118e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610986565b610c9981611bf4565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061192482610edc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119d65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610986565b60006119e183610edc565b9050806001600160a01b0316846001600160a01b03161480611a1c5750836001600160a01b0316611a1184610911565b6001600160a01b0316145b80611a4c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a6782610edc565b6001600160a01b031614611acf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610986565b6001600160a01b038216611b315760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610986565b611b3c6000826118ef565b6001600160a01b0383166000908152600360205260408120805460019290611b659084906129b4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b93908490612969565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600f602052604081208054839290611c6e908490612969565b90915550600090505b81811015610abc57611c8d600780546001019055565b611c9f83611c9a60075490565b611ecd565b80611ca981612a32565b915050611c77565b816001600160a01b0316836001600160a01b03161415611d135760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610986565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d8b848484611a54565b611d9784848484611ee7565b6112a35760405162461bcd60e51b8152600401610986906127c2565b60606008805461088e906129f7565b606081611de65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e105780611dfa81612a32565b9150611e099050600a83612981565b9150611dea565b60008167ffffffffffffffff811115611e2b57611e2b612aa3565b6040519080825280601f01601f191660200182016040528015611e55576020820181803683370190505b5090505b8415611a4c57611e6a6001836129b4565b9150611e77600a86612a4d565b611e82906030612969565b60f81b818381518110611e9757611e97612a8d565b60200101906001600160f81b031916908160001a905350611eb9600a86612981565b9450611e59565b6000611a4c828585611ff4565b610b4682826040518060200160405280600081525061200a565b60006001600160a01b0384163b15611fe957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f2b90339089908890889060040161272e565b602060405180830381600087803b158015611f4557600080fd5b505af1925050508015611f75575060408051601f3d908101601f19168201909252611f72918101906124f3565b60015b611fcf573d808015611fa3576040519150601f19603f3d011682016040523d82523d6000602084013e611fa8565b606091505b508051611fc75760405162461bcd60e51b8152600401610986906127c2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a4c565b506001949350505050565b600082612001858461203d565b14949350505050565b61201483836120e9565b6120216000848484611ee7565b610abc5760405162461bcd60e51b8152600401610986906127c2565b600081815b84518110156120e157600085828151811061205f5761205f612a8d565b602002602001015190508083116120a15760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506120ce565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806120d981612a32565b915050612042565b509392505050565b6001600160a01b03821661213f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610986565b6000818152600260205260409020546001600160a01b0316156121a45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610986565b6001600160a01b03821660009081526003602052604081208054600192906121cd908490612969565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612237906129f7565b90600052602060002090601f016020900481019282612259576000855561229f565b82601f1061227257805160ff191683800117855561229f565b8280016001018555821561229f579182015b8281111561229f578251825591602001919060010190612284565b506122ab9291506122af565b5090565b5b808211156122ab57600081556001016122b0565b600067ffffffffffffffff8311156122de576122de612aa3565b6122f1601f8401601f1916602001612938565b905082815283838301111561230557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461233357600080fd5b919050565b8035801515811461233357600080fd5b60006020828403121561235a57600080fd5b61146f8261231c565b6000806040838503121561237657600080fd5b61237f8361231c565b915061238d6020840161231c565b90509250929050565b6000806000606084860312156123ab57600080fd5b6123b48461231c565b92506123c26020850161231c565b9150604084013590509250925092565b600080600080608085870312156123e857600080fd5b6123f18561231c565b93506123ff6020860161231c565b925060408501359150606085013567ffffffffffffffff81111561242257600080fd5b8501601f8101871361243357600080fd5b612442878235602084016122c4565b91505092959194509250565b6000806040838503121561246157600080fd5b61246a8361231c565b915061238d60208401612338565b6000806040838503121561248b57600080fd5b6124948361231c565b946020939093013593505050565b6000602082840312156124b457600080fd5b61146f82612338565b6000602082840312156124cf57600080fd5b5035919050565b6000602082840312156124e857600080fd5b813561146f81612ab9565b60006020828403121561250557600080fd5b815161146f81612ab9565b60006020828403121561252257600080fd5b813567ffffffffffffffff81111561253957600080fd5b8201601f8101841361254a57600080fd5b611a4c848235602084016122c4565b6000806040838503121561256c57600080fd5b8235915061238d6020840161231c565b60008060006060848603121561259157600080fd5b833592506020808501359250604085013567ffffffffffffffff808211156125b857600080fd5b818701915087601f8301126125cc57600080fd5b8135818111156125de576125de612aa3565b8060051b91506125ef848301612938565b8181528481019084860184860187018c101561260a57600080fd5b600095505b8386101561262d57803583526001959095019491860191860161260f565b508096505050505050509250925092565b600081518084526126568160208601602086016129cb565b601f01601f19169290920160200192915050565b60008451602061267d8285838a016129cb565b8551918401916126908184848a016129cb565b8554920191600090600181811c90808316806126ad57607f831692505b8583108114156126cb57634e487b7160e01b85526022600452602485fd5b8080156126df57600181146126f05761271d565b60ff1985168852838801955061271d565b60008b81526020902060005b858110156127155781548a8201529084019088016126fc565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127619083018461263e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127a357835183529284019291840191600101612787565b50909695505050505050565b60208152600061146f602083018461263e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526022908201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604082015261195960f21b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561296157612961612aa3565b604052919050565b6000821982111561297c5761297c612a61565b500190565b60008261299057612990612a77565b500490565b60008160001904831182151516156129af576129af612a61565b500290565b6000828210156129c6576129c6612a61565b500390565b60005b838110156129e65781810151838201526020016129ce565b838111156112a35750506000910152565b600181811c90821680612a0b57607f821691505b60208210811415612a2c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a4657612a46612a61565b5060010190565b600082612a5c57612a5c612a77565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9957600080fdfea2646970667358221220bb884e4949c733893260f791e2a9b74f4a2b1afb7e2745d328c395f93d68208764736f6c63430008070033

Deployed Bytecode Sourcemap

39917:6098:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27408:305;;;;;;;;;;-1:-1:-1;27408:305:0;;;;;:::i;:::-;;:::i;:::-;;;9400:14:1;;9393:22;9375:41;;9363:2;9348:18;27408:305:0;;;;;;;;28353:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29912:221::-;;;;;;;;;;-1:-1:-1;29912:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8061:32:1;;;8043:51;;8031:2;8016:18;29912:221:0;7897:203:1;29435:411:0;;;;;;;;;;-1:-1:-1;29435:411:0;;;;;:::i;:::-;;:::i;:::-;;44717:83;;;;;;;;;;-1:-1:-1;44717:83:0;;;;;:::i;:::-;;:::i;40186:32::-;;;;;;;;;;;;;;;;;;;19482:25:1;;;19470:2;19455:18;40186:32:0;19336:177:1;45186:100:0;;;;;;;;;;-1:-1:-1;45186:100:0;;;;;:::i;:::-;;:::i;45292:77::-;;;;;;;;;;-1:-1:-1;45292:77:0;;;;;:::i;:::-;;:::i;41046:89::-;;;;;;;;;;;;;:::i;30662:339::-;;;;;;;;;;-1:-1:-1;30662:339:0;;;;;:::i;:::-;;:::i;44450:92::-;;;;;;;;;;-1:-1:-1;44450:92:0;;;;;:::i;:::-;;:::i;45485:155::-;;;;;;;;;;;;;:::i;31072:185::-;;;;;;;;;;-1:-1:-1;31072:185:0;;;;;:::i;:::-;;:::i;42899:635::-;;;;;;;;;;-1:-1:-1;42899:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44548:74::-;;;;;;;;;;-1:-1:-1;44548:74:0;;;;;:::i;:::-;;:::i;44942:132::-;;;;;;;;;;-1:-1:-1;44942:132:0;;;;;:::i;:::-;;:::i;40334:28::-;;;;;;;;;;-1:-1:-1;40334:28:0;;;;;;;;;;;40407:33;;;;;;;;;;-1:-1:-1;40407:33:0;;;;;;;;;;;40108;;;;;;;;;;;;;:::i;44628:83::-;;;;;;;;;;-1:-1:-1;44628:83:0;;;;;:::i;:::-;;:::i;40304:25::-;;;;;;;;;;-1:-1:-1;40304:25:0;;;;;;;;28047:239;;;;;;;;;;-1:-1:-1;28047:239:0;;;;;:::i;:::-;;:::i;40445:30::-;;;;;;;;;;-1:-1:-1;40445:30:0;;;;;;;;;;;27777:208;;;;;;;;;;-1:-1:-1;27777:208:0;;;;;:::i;:::-;;:::i;8396:103::-;;;;;;;;;;;;;:::i;45375:104::-;;;;;;;;;;-1:-1:-1;45375:104:0;;;;;:::i;:::-;;:::i;45080:100::-;;;;;;;;;;-1:-1:-1;45080:100:0;;;;;:::i;:::-;;:::i;7745:87::-;;;;;;;;;;-1:-1:-1;7818:6:0;;-1:-1:-1;;;;;7818:6:0;7745:87;;40577:30;;;;;;;;;;;;;;;;40260:37;;;;;;;;;;;;;;;;28522:104;;;;;;;;;;;;;:::i;41141:416::-;;;;;;:::i;:::-;;:::i;30205:155::-;;;;;;;;;;-1:-1:-1;30205:155:0;;;;;:::i;:::-;;:::i;40146:31::-;;;;;;;;;;;;;:::i;44806:130::-;;;;;;;;;;-1:-1:-1;44806:130:0;;;;;:::i;:::-;;:::i;31328:328::-;;;;;;;;;;-1:-1:-1;31328:328:0;;;;;:::i;:::-;;:::i;44349:95::-;;;;;;;;;;-1:-1:-1;44349:95:0;;;;;:::i;:::-;;:::i;41726:244::-;;;;;;;;;;-1:-1:-1;41726:244:0;;;;;:::i;:::-;;:::i;43540:718::-;;;;;;;;;;-1:-1:-1;43540:718:0;;;;;:::i;:::-;;:::i;40367:35::-;;;;;;;;;;-1:-1:-1;40367:35:0;;;;;;;;;;;41976:737;;;;;;:::i;:::-;;:::i;40223:32::-;;;;;;;;;;;;;;;;44264:81;;;;;;;;;;-1:-1:-1;44264:81:0;;;;;:::i;:::-;;:::i;30431:164::-;;;;;;;;;;-1:-1:-1;30431:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30552:25:0;;;30528:4;30552:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30431:164;41565:155;;;;;;;;;;-1:-1:-1;41565:155:0;;;;;:::i;:::-;;:::i;8654:201::-;;;;;;;;;;-1:-1:-1;8654:201:0;;;;;:::i;:::-;;:::i;27408:305::-;27510:4;-1:-1:-1;;;;;;27547:40:0;;-1:-1:-1;;;27547:40:0;;:105;;-1:-1:-1;;;;;;;27604:48:0;;-1:-1:-1;;;27604:48:0;27547:105;:158;;;-1:-1:-1;;;;;;;;;;20286:40:0;;;27669:36;27527:178;27408:305;-1:-1:-1;;27408:305:0:o;28353:100::-;28407:13;28440:5;28433:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28353:100;:::o;29912:221::-;29988:7;33255:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33255:16:0;30008:73;;;;-1:-1:-1;;;30008:73:0;;15262:2:1;30008:73:0;;;15244:21:1;15301:2;15281:18;;;15274:30;15340:34;15320:18;;;15313:62;-1:-1:-1;;;15391:18:1;;;15384:42;15443:19;;30008:73:0;;;;;;;;;-1:-1:-1;30101:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30101:24:0;;29912:221::o;29435:411::-;29516:13;29532:23;29547:7;29532:14;:23::i;:::-;29516:39;;29580:5;-1:-1:-1;;;;;29574:11:0;:2;-1:-1:-1;;;;;29574:11:0;;;29566:57;;;;-1:-1:-1;;;29566:57:0;;17214:2:1;29566:57:0;;;17196:21:1;17253:2;17233:18;;;17226:30;17292:34;17272:18;;;17265:62;-1:-1:-1;;;17343:18:1;;;17336:31;17384:19;;29566:57:0;17012:397:1;29566:57:0;6549:10;-1:-1:-1;;;;;29658:21:0;;;;:62;;-1:-1:-1;29683:37:0;29700:5;6549:10;30431:164;:::i;29683:37::-;29636:168;;;;-1:-1:-1;;;29636:168:0;;13314:2:1;29636:168:0;;;13296:21:1;13353:2;13333:18;;;13326:30;13392:34;13372:18;;;13365:62;13463:26;13443:18;;;13436:54;13507:19;;29636:168:0;13112:420:1;29636:168:0;29817:21;29826:2;29830:7;29817:8;:21::i;:::-;29505:341;29435:411;;:::o;44717:83::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;44773:13:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;44773:21:0;;::::1;::::0;;;::::1;::::0;;44717:83::o;45186:100::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;45258:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45186:100:::0;:::o;45292:77::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;45348:6:::1;:15:::0;;-1:-1:-1;;45348:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45292:77::o;41046:89::-;41090:7;41113:16;:6;3165:14;;3073:114;41113:16;41106:23;;41046:89;:::o;30662:339::-;30857:41;6549:10;30890:7;30857:18;:41::i;:::-;30849:103;;;;-1:-1:-1;;;30849:103:0;;;;;;;:::i;:::-;30965:28;30975:4;30981:2;30985:7;30965:9;:28::i;44450:92::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;44516:11:::1;:20:::0;44450:92::o;45485:155::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;45561:1:::1;45537:21;:25;45529:50;;;::::0;-1:-1:-1;;;45529:50:0;;14921:2:1;45529:50:0::1;::::0;::::1;14903:21:1::0;14960:2;14940:18;;;14933:30;-1:-1:-1;;;14979:18:1;;;14972:42;15031:18;;45529:50:0::1;14719:336:1::0;45529:50:0::1;7818:6:::0;;45586:48:::1;::::0;-1:-1:-1;;;;;7818:6:0;;;;45612:21:::1;45586:48:::0;::::1;;;::::0;::::1;::::0;;;45612:21;7818:6;45586:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45485:155::o:0;31072:185::-;31210:39;31227:4;31233:2;31237:7;31210:39;;;;;;;;;;;;:16;:39::i;42899:635::-;42974:16;43002:23;43028:17;43038:6;43028:9;:17::i;:::-;43002:43;;43052:30;43099:15;43085:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43085:30:0;-1:-1:-1;43052:63:0;-1:-1:-1;43147:1:0;43122:22;43191:309;43216:15;43198;:33;:64;;;;;43253:9;;43235:14;:27;;43198:64;43191:309;;;43273:25;43301:23;43309:14;43301:7;:23::i;:::-;43273:51;;43360:6;-1:-1:-1;;;;;43339:27:0;:17;-1:-1:-1;;;;;43339:27:0;;43335:131;;;43412:14;43379:13;43393:15;43379:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;43439:17;;;;:::i;:::-;;;;43335:131;43476:16;;;;:::i;:::-;;;;43264:236;43191:309;;;-1:-1:-1;43515:13:0;;42899:635;-1:-1:-1;;;;42899:635:0:o;44548:74::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;44604:4:::1;:12:::0;44548:74::o;44942:132::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;45030:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;40108:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44628:83::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;44687:10:::1;:18:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;44687:18:0;;::::1;::::0;;;::::1;::::0;;44628:83::o;28047:239::-;28119:7;28155:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28155:16:0;28190:19;28182:73;;;;-1:-1:-1;;;28182:73:0;;14150:2:1;28182:73:0;;;14132:21:1;14189:2;14169:18;;;14162:30;14228:34;14208:18;;;14201:62;-1:-1:-1;;;14279:18:1;;;14272:39;14328:19;;28182:73:0;13948:405:1;27777:208:0;27849:7;-1:-1:-1;;;;;27877:19:0;;27869:74;;;;-1:-1:-1;;;27869:74:0;;13739:2:1;27869:74:0;;;13721:21:1;13778:2;13758:18;;;13751:30;13817:34;13797:18;;;13790:62;-1:-1:-1;;;13868:18:1;;;13861:40;13918:19;;27869:74:0;13537:406:1;27869:74:0;-1:-1:-1;;;;;;27961:16:0;;;;;:9;:16;;;;;;;27777:208::o;8396:103::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;8461:30:::1;8488:1;8461:18;:30::i;:::-;8396:103::o:0;45375:104::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;45447:10:::1;:24:::0;45375:104::o;45080:100::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;45152:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;28522:104::-:0;28578:13;28611:7;28604:14;;;;;:::i;41141:416::-;41206:11;40880:1;40866:11;:15;:52;;;;;40900:18;;40885:11;:33;;40866:52;40858:85;;;;-1:-1:-1;;;40858:85:0;;;;;;;:::i;:::-;40992:9;;40977:11;40958:16;:6;3165:14;;3073:114;40958:16;:30;;;;:::i;:::-;:43;;40950:76;;;;-1:-1:-1;;;40950:76:0;;;;;;;:::i;:::-;41235:6:::1;::::0;::::1;;41234:7;41226:43;;;::::0;-1:-1:-1;;;41226:43:0;;16036:2:1;41226:43:0::1;::::0;::::1;16018:21:1::0;16075:2;16055:18;;;16048:30;16114:25;16094:18;;;16087:53;16157:18;;41226:43:0::1;15834:347:1::0;41226:43:0::1;41284:10;::::0;;;::::1;;;41276:42;;;::::0;-1:-1:-1;;;41276:42:0;;12144:2:1;41276:42:0::1;::::0;::::1;12126:21:1::0;12183:2;12163:18;;;12156:30;-1:-1:-1;;;12202:18:1;;;12195:48;12260:18;;41276:42:0::1;11942:342:1::0;41276:42:0::1;41353:11;41346:4;;:18;;;;:::i;:::-;41333:9;:31;;41325:63;;;::::0;-1:-1:-1;;;41325:63:0;;18786:2:1;41325:63:0::1;::::0;::::1;18768:21:1::0;18825:2;18805:18;;;18798:30;-1:-1:-1;;;18844:18:1;;;18837:49;18903:18;;41325:63:0::1;18584:343:1::0;41325:63:0::1;41453:18;::::0;41424:10:::1;41403:32;::::0;;;:20:::1;:32;::::0;;;;;:46:::1;::::0;41438:11;;41403:46:::1;:::i;:::-;:68;;41395:115;;;;-1:-1:-1::0;;;41395:115:0::1;;;;;;;:::i;:::-;41517:34;41527:10;41539:11;41517:9;:34::i;30205:155::-:0;30300:52;6549:10;30333:8;30343;30300:18;:52::i;40146:31::-;;;;;;;:::i;44806:130::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;44890:18:::1;:40:::0;44806:130::o;31328:328::-;31503:41;6549:10;31536:7;31503:18;:41::i;:::-;31495:103;;;;-1:-1:-1;;;31495:103:0;;;;;;;:::i;:::-;31609:39;31623:4;31629:2;31633:7;31642:5;31609:13;:39::i;:::-;31328:328;;;;:::o;44349:95::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;44414:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;44414:24:0;;::::1;::::0;;;::::1;::::0;;44349:95::o;41726:244::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;41814:1:::1;41800:11;:15;41792:48;;;;-1:-1:-1::0;;;41792:48:0::1;;;;;;;:::i;:::-;41889:9;;41874:11;41855:16;:6;3165:14:::0;;3073:114;41855:16:::1;:30;;;;:::i;:::-;:43;;41847:76;;;;-1:-1:-1::0;;;41847:76:0::1;;;;;;;:::i;:::-;41930:34;41940:10;41952:11;41930:9;:34::i;43540:718::-:0;33231:4;33255:16;;;:7;:16;;;;;;43639:13;;-1:-1:-1;;;;;33255:16:0;43664:98;;;;-1:-1:-1;;;43664:98:0;;16798:2:1;43664:98:0;;;16780:21:1;16837:2;16817:18;;;16810:30;16876:34;16856:18;;;16849:62;-1:-1:-1;;;16927:18:1;;;16920:45;16982:19;;43664:98:0;16596:411:1;43664:98:0;43769:28;43800:10;:8;:10::i;:::-;43826:15;;43769:41;;-1:-1:-1;43826:15:0;;;;;:42;;;;;43857:11;;43845:8;:23;;43826:42;43823:212;;;43920:1;43895:14;43889:28;:32;:138;;;;;;;;;;;;;;;;;43961:14;43977:19;:8;:17;:19::i;:::-;43998:9;43944:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43889:138;43882:145;43540:718;-1:-1:-1;;;43540:718:0:o;43823:212::-;44047:8;;;;;;;44043:64;;44082:17;44075:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43540:718;;;:::o;44043:64::-;44153:1;44128:14;44122:28;:32;:130;;;;;;;;;;;;;;;;41976:737;42087:11;40880:1;40866:11;:15;:52;;;;;40900:18;;40885:11;:33;;40866:52;40858:85;;;;-1:-1:-1;;;40858:85:0;;;;;;;:::i;:::-;40992:9;;40977:11;40958:16;:6;3165:14;;3073:114;40958:16;:30;;;;:::i;:::-;:43;;40950:76;;;;-1:-1:-1;;;40950:76:0;;;;;;;:::i;:::-;42115:13:::1;::::0;;;::::1;;;42107:45;;;::::0;-1:-1:-1;;;42107:45:0;;12144:2:1;42107:45:0::1;::::0;::::1;12126:21:1::0;12183:2;12163:18;;;12156:30;-1:-1:-1;;;12202:18:1;;;12195:48;12260:18;;42107:45:0::1;11942:342:1::0;42107:45:0::1;42244:28;::::0;-1:-1:-1;;42261:10:0::1;6028:2:1::0;6024:15;6020:53;42244:28:0::1;::::0;::::1;6008:66:1::0;42277:4:0;;6090:12:1;;42244:28:0::1;;;;;;;;;;;;42234:39;;;;;;:47;42226:101;;;::::0;-1:-1:-1;;;42226:101:0;;12904:2:1;42226:101:0::1;::::0;::::1;12886:21:1::0;12943:2;12923:18;;;12916:30;12982:34;12962:18;;;12955:62;-1:-1:-1;;;13033:18:1;;;13026:39;13082:19;;42226:101:0::1;12702:405:1::0;42226:101:0::1;42403:31;42410:10;;42422:4;42428:5;42403:6;:31::i;:::-;42395:79;;;::::0;-1:-1:-1;;;42395:79:0;;19134:2:1;42395:79:0::1;::::0;::::1;19116:21:1::0;19173:2;19153:18;;;19146:30;19212:34;19192:18;;;19185:62;-1:-1:-1;;;19263:18:1;;;19256:33;19306:19;;42395:79:0::1;18932:399:1::0;42395:79:0::1;42509:11;42502:4;;:18;;;;:::i;:::-;42489:9;:31;;42481:63;;;::::0;-1:-1:-1;;;42481:63:0;;18786:2:1;42481:63:0::1;::::0;::::1;18768:21:1::0;18825:2;18805:18;;;18798:30;-1:-1:-1;;;18844:18:1;;;18837:49;18903:18;;42481:63:0::1;18584:343:1::0;42481:63:0::1;42609:18;::::0;42580:10:::1;42559:32;::::0;;;:20:::1;:32;::::0;;;;;:46:::1;::::0;42594:11;;42559:46:::1;:::i;:::-;:68;;42551:115;;;;-1:-1:-1::0;;;42551:115:0::1;;;;;;;:::i;:::-;42673:34;42683:10;42695:11;42673:9;:34::i;44264:81::-:0;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;44322:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;44322:17:0;;::::1;::::0;;;::::1;::::0;;44264:81::o;41565:155::-;41651:11;40880:1;40866:11;:15;:52;;;;;40900:18;;40885:11;:33;;40866:52;40858:85;;;;-1:-1:-1;;;40858:85:0;;;;;;;:::i;:::-;40992:9;;40977:11;40958:16;:6;3165:14;;3073:114;40958:16;:30;;;;:::i;:::-;:43;;40950:76;;;;-1:-1:-1;;;40950:76:0;;;;;;;:::i;:::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23:::1;7957:68;;;;-1:-1:-1::0;;;7957:68:0::1;;;;;;;:::i;:::-;41681:33:::2;41691:9;41702:11;41681:9;:33::i;8654:201::-:0;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8743:22:0;::::1;8735:73;;;::::0;-1:-1:-1;;;8735:73:0;;10272:2:1;8735:73:0::1;::::0;::::1;10254:21:1::0;10311:2;10291:18;;;10284:30;10350:34;10330:18;;;10323:62;-1:-1:-1;;;10401:18:1;;;10394:36;10447:19;;8735:73:0::1;10070:402:1::0;8735:73:0::1;8819:28;8838:8;8819:18;:28::i;37148:174::-:0;37223:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37223:29:0;-1:-1:-1;;;;;37223:29:0;;;;;;;;:24;;37277:23;37223:24;37277:14;:23::i;:::-;-1:-1:-1;;;;;37268:46:0;;;;;;;;;;;37148:174;;:::o;33460:348::-;33553:4;33255:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33255:16:0;33570:73;;;;-1:-1:-1;;;33570:73:0;;12491:2:1;33570:73:0;;;12473:21:1;12530:2;12510:18;;;12503:30;12569:34;12549:18;;;12542:62;-1:-1:-1;;;12620:18:1;;;12613:42;12672:19;;33570:73:0;12289:408:1;33570:73:0;33654:13;33670:23;33685:7;33670:14;:23::i;:::-;33654:39;;33723:5;-1:-1:-1;;;;;33712:16:0;:7;-1:-1:-1;;;;;33712:16:0;;:51;;;;33756:7;-1:-1:-1;;;;;33732:31:0;:20;33744:7;33732:11;:20::i;:::-;-1:-1:-1;;;;;33732:31:0;;33712:51;:87;;;-1:-1:-1;;;;;;30552:25:0;;;30528:4;30552:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33767:32;33704:96;33460:348;-1:-1:-1;;;;33460:348:0:o;36452:578::-;36611:4;-1:-1:-1;;;;;36584:31:0;:23;36599:7;36584:14;:23::i;:::-;-1:-1:-1;;;;;36584:31:0;;36576:85;;;;-1:-1:-1;;;36576:85:0;;16388:2:1;36576:85:0;;;16370:21:1;16427:2;16407:18;;;16400:30;16466:34;16446:18;;;16439:62;-1:-1:-1;;;16517:18:1;;;16510:39;16566:19;;36576:85:0;16186:405:1;36576:85:0;-1:-1:-1;;;;;36680:16:0;;36672:65;;;;-1:-1:-1;;;36672:65:0;;11385:2:1;36672:65:0;;;11367:21:1;11424:2;11404:18;;;11397:30;11463:34;11443:18;;;11436:62;-1:-1:-1;;;11514:18:1;;;11507:34;11558:19;;36672:65:0;11183:400:1;36672:65:0;36854:29;36871:1;36875:7;36854:8;:29::i;:::-;-1:-1:-1;;;;;36896:15:0;;;;;;:9;:15;;;;;:20;;36915:1;;36896:15;:20;;36915:1;;36896:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36927:13:0;;;;;;:9;:13;;;;;:18;;36944:1;;36927:13;:18;;36944:1;;36927:18;:::i;:::-;;;;-1:-1:-1;;36956:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36956:21:0;-1:-1:-1;;;;;36956:21:0;;;;;;;;;36995:27;;36956:16;;36995:27;;;;;;;36452:578;;;:::o;9015:191::-;9108:6;;;-1:-1:-1;;;;;9125:17:0;;;-1:-1:-1;;;;;;9125:17:0;;;;;;;9158:40;;9108:6;;;9125:17;9108:6;;9158:40;;9089:16;;9158:40;9078:128;9015:191;:::o;45646:256::-;-1:-1:-1;;;;;45721:31:0;;;;;;:20;:31;;;;;:45;;45755:11;;45721:31;:45;;45755:11;;45721:45;:::i;:::-;;;;-1:-1:-1;45778:9:0;;-1:-1:-1;45773:124:0;45797:11;45793:1;:15;45773:124;;;45824:18;:6;3284:19;;3302:1;3284:19;;;3195:127;45824:18;45851:38;45861:9;45872:16;:6;3165:14;;3073:114;45872:16;45851:9;:38::i;:::-;45810:3;;;;:::i;:::-;;;;45773:124;;37464:315;37619:8;-1:-1:-1;;;;;37610:17:0;:5;-1:-1:-1;;;;;37610:17:0;;;37602:55;;;;-1:-1:-1;;;37602:55:0;;11790:2:1;37602:55:0;;;11772:21:1;11829:2;11809:18;;;11802:30;11868:27;11848:18;;;11841:55;11913:18;;37602:55:0;11588:349:1;37602:55:0;-1:-1:-1;;;;;37668:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37668:46:0;;;;;;;;;;37730:41;;9375::1;;;37730::0;;9348:18:1;37730:41:0;;;;;;;37464:315;;;:::o;32538:::-;32695:28;32705:4;32711:2;32715:7;32695:9;:28::i;:::-;32742:48;32765:4;32771:2;32775:7;32784:5;32742:22;:48::i;:::-;32734:111;;;;-1:-1:-1;;;32734:111:0;;;;;;;:::i;45908:104::-;45968:13;45997:9;45990:16;;;;;:::i;4031:723::-;4087:13;4308:10;4304:53;;-1:-1:-1;;4335:10:0;;;;;;;;;;;;-1:-1:-1;;;4335:10:0;;;;;4031:723::o;4304:53::-;4382:5;4367:12;4423:78;4430:9;;4423:78;;4456:8;;;;:::i;:::-;;-1:-1:-1;4479:10:0;;-1:-1:-1;4487:2:0;4479:10;;:::i;:::-;;;4423:78;;;4511:19;4543:6;4533:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4533:17:0;;4511:39;;4561:154;4568:10;;4561:154;;4595:11;4605:1;4595:11;;:::i;:::-;;-1:-1:-1;4664:10:0;4672:2;4664:5;:10;:::i;:::-;4651:24;;:2;:24;:::i;:::-;4638:39;;4621:6;4628;4621:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4621:56:0;;;;;;;;-1:-1:-1;4692:11:0;4701:2;4692:11;;:::i;:::-;;;4561:154;;42719:174;42817:4;42841:44;42860:5;42867:11;42880:4;42841:18;:44::i;34150:110::-;34226:26;34236:2;34240:7;34226:26;;;;;;;;;;;;:9;:26::i;38344:799::-;38499:4;-1:-1:-1;;;;;38520:13:0;;10356:20;10404:8;38516:620;;38556:72;;-1:-1:-1;;;38556:72:0;;-1:-1:-1;;;;;38556:36:0;;;;;:72;;6549:10;;38607:4;;38613:7;;38622:5;;38556:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38556:72:0;;;;;;;;-1:-1:-1;;38556:72:0;;;;;;;;;;;;:::i;:::-;;;38552:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38798:13:0;;38794:272;;38841:60;;-1:-1:-1;;;38841:60:0;;;;;;;:::i;38794:272::-;39016:6;39010:13;39001:6;38997:2;38993:15;38986:38;38552:529;-1:-1:-1;;;;;;38679:51:0;-1:-1:-1;;;38679:51:0;;-1:-1:-1;38672:58:0;;38516:620;-1:-1:-1;39120:4:0;38344:799;;;;;;:::o;941:190::-;1066:4;1119;1090:25;1103:5;1110:4;1090:12;:25::i;:::-;:33;;941:190;-1:-1:-1;;;;941:190:0:o;34487:321::-;34617:18;34623:2;34627:7;34617:5;:18::i;:::-;34668:54;34699:1;34703:2;34707:7;34716:5;34668:22;:54::i;:::-;34646:154;;;;-1:-1:-1;;;34646:154:0;;;;;;;:::i;1493:701::-;1576:7;1619:4;1576:7;1634:523;1658:5;:12;1654:1;:16;1634:523;;;1692:20;1715:5;1721:1;1715:8;;;;;;;;:::i;:::-;;;;;;;1692:31;;1758:12;1742;:28;1738:408;;1895:44;;;;;;6270:19:1;;;6305:12;;;6298:28;;;6342:12;;1895:44:0;;;;;;;;;;;;1885:55;;;;;;1870:70;;1738:408;;;2085:44;;;;;;6270:19:1;;;6305:12;;;6298:28;;;6342:12;;2085:44:0;;;;;;;;;;;;2075:55;;;;;;2060:70;;1738:408;-1:-1:-1;1672:3:0;;;;:::i;:::-;;;;1634:523;;;-1:-1:-1;2174:12:0;1493:701;-1:-1:-1;;;1493:701:0:o;35144:382::-;-1:-1:-1;;;;;35224:16:0;;35216:61;;;;-1:-1:-1;;;35216:61:0;;14560:2:1;35216:61:0;;;14542:21:1;;;14579:18;;;14572:30;14638:34;14618:18;;;14611:62;14690:18;;35216:61:0;14358:356:1;35216:61:0;33231:4;33255:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33255:16:0;:30;35288:58;;;;-1:-1:-1;;;35288:58:0;;10679:2:1;35288:58:0;;;10661:21:1;10718:2;10698:18;;;10691:30;10757;10737:18;;;10730:58;10805:18;;35288:58:0;10477:352:1;35288:58:0;-1:-1:-1;;;;;35417:13:0;;;;;;:9;:13;;;;;:18;;35434:1;;35417:13;:18;;35434:1;;35417:18;:::i;:::-;;;;-1:-1:-1;;35446:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35446:21:0;-1:-1:-1;;;;;35446:21:0;;;;;;;;35485:33;;35446:16;;;35485:33;;35446:16;;35485:33;35144:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:180::-;2802:6;2855:2;2843:9;2834:7;2830:23;2826:32;2823:52;;;2871:1;2868;2861:12;2823:52;2894:26;2910:9;2894:26;:::i;2931:180::-;2990:6;3043:2;3031:9;3022:7;3018:23;3014:32;3011:52;;;3059:1;3056;3049:12;3011:52;-1:-1:-1;3082:23:1;;2931:180;-1:-1:-1;2931:180:1:o;3116:245::-;3174:6;3227:2;3215:9;3206:7;3202:23;3198:32;3195:52;;;3243:1;3240;3233:12;3195:52;3282:9;3269:23;3301:30;3325:5;3301:30;:::i;3366:249::-;3435:6;3488:2;3476:9;3467:7;3463:23;3459:32;3456:52;;;3504:1;3501;3494:12;3456:52;3536:9;3530:16;3555:30;3579:5;3555:30;:::i;3620:450::-;3689:6;3742:2;3730:9;3721:7;3717:23;3713:32;3710:52;;;3758:1;3755;3748:12;3710:52;3798:9;3785:23;3831:18;3823:6;3820:30;3817:50;;;3863:1;3860;3853:12;3817:50;3886:22;;3939:4;3931:13;;3927:27;-1:-1:-1;3917:55:1;;3968:1;3965;3958:12;3917:55;3991:73;4056:7;4051:2;4038:16;4033:2;4029;4025:11;3991:73;:::i;4260:254::-;4328:6;4336;4389:2;4377:9;4368:7;4364:23;4360:32;4357:52;;;4405:1;4402;4395:12;4357:52;4441:9;4428:23;4418:33;;4470:38;4504:2;4493:9;4489:18;4470:38;:::i;4519:1093::-;4621:6;4629;4637;4690:2;4678:9;4669:7;4665:23;4661:32;4658:52;;;4706:1;4703;4696:12;4658:52;4742:9;4729:23;4719:33;;4771:2;4820;4809:9;4805:18;4792:32;4782:42;;4875:2;4864:9;4860:18;4847:32;4898:18;4939:2;4931:6;4928:14;4925:34;;;4955:1;4952;4945:12;4925:34;4993:6;4982:9;4978:22;4968:32;;5038:7;5031:4;5027:2;5023:13;5019:27;5009:55;;5060:1;5057;5050:12;5009:55;5096:2;5083:16;5118:2;5114;5111:10;5108:36;;;5124:18;;:::i;:::-;5170:2;5167:1;5163:10;5153:20;;5193:28;5217:2;5213;5209:11;5193:28;:::i;:::-;5255:15;;;5286:12;;;;5318:11;;;5348;;;5344:20;;5341:33;-1:-1:-1;5338:53:1;;;5387:1;5384;5377:12;5338:53;5409:1;5400:10;;5419:163;5433:2;5430:1;5427:9;5419:163;;;5490:17;;5478:30;;5451:1;5444:9;;;;;5528:12;;;;5560;;5419:163;;;5423:3;5601:5;5591:15;;;;;;;;4519:1093;;;;;:::o;5617:257::-;5658:3;5696:5;5690:12;5723:6;5718:3;5711:19;5739:63;5795:6;5788:4;5783:3;5779:14;5772:4;5765:5;5761:16;5739:63;:::i;:::-;5856:2;5835:15;-1:-1:-1;;5831:29:1;5822:39;;;;5863:4;5818:50;;5617:257;-1:-1:-1;;5617:257:1:o;6365:1527::-;6589:3;6627:6;6621:13;6653:4;6666:51;6710:6;6705:3;6700:2;6692:6;6688:15;6666:51;:::i;:::-;6780:13;;6739:16;;;;6802:55;6780:13;6739:16;6824:15;;;6802:55;:::i;:::-;6946:13;;6879:20;;;6919:1;;7006;7028:18;;;;7081;;;;7108:93;;7186:4;7176:8;7172:19;7160:31;;7108:93;7249:2;7239:8;7236:16;7216:18;7213:40;7210:167;;;-1:-1:-1;;;7276:33:1;;7332:4;7329:1;7322:15;7362:4;7283:3;7350:17;7210:167;7393:18;7420:110;;;;7544:1;7539:328;;;;7386:481;;7420:110;-1:-1:-1;;7455:24:1;;7441:39;;7500:20;;;;-1:-1:-1;7420:110:1;;7539:328;19871:1;19864:14;;;19908:4;19895:18;;7634:1;7648:169;7662:8;7659:1;7656:15;7648:169;;;7744:14;;7729:13;;;7722:37;7787:16;;;;7679:10;;7648:169;;;7652:3;;7848:8;7841:5;7837:20;7830:27;;7386:481;-1:-1:-1;7883:3:1;;6365:1527;-1:-1:-1;;;;;;;;;;;6365:1527:1:o;8105:488::-;-1:-1:-1;;;;;8374:15:1;;;8356:34;;8426:15;;8421:2;8406:18;;8399:43;8473:2;8458:18;;8451:34;;;8521:3;8516:2;8501:18;;8494:31;;;8299:4;;8542:45;;8567:19;;8559:6;8542:45;:::i;:::-;8534:53;8105:488;-1:-1:-1;;;;;;8105:488:1:o;8598:632::-;8769:2;8821:21;;;8891:13;;8794:18;;;8913:22;;;8740:4;;8769:2;8992:15;;;;8966:2;8951:18;;;8740:4;9035:169;9049:6;9046:1;9043:13;9035:169;;;9110:13;;9098:26;;9179:15;;;;9144:12;;;;9071:1;9064:9;9035:169;;;-1:-1:-1;9221:3:1;;8598:632;-1:-1:-1;;;;;;8598:632:1:o;9427:219::-;9576:2;9565:9;9558:21;9539:4;9596:44;9636:2;9625:9;9621:18;9613:6;9596:44;:::i;9651:414::-;9853:2;9835:21;;;9892:2;9872:18;;;9865:30;9931:34;9926:2;9911:18;;9904:62;-1:-1:-1;;;9997:2:1;9982:18;;9975:48;10055:3;10040:19;;9651:414::o;10834:344::-;11036:2;11018:21;;;11075:2;11055:18;;;11048:30;-1:-1:-1;;;11109:2:1;11094:18;;11087:50;11169:2;11154:18;;10834:344::o;15473:356::-;15675:2;15657:21;;;15694:18;;;15687:30;15753:34;15748:2;15733:18;;15726:62;15820:2;15805:18;;15473:356::o;17414:344::-;17616:2;17598:21;;;17655:2;17635:18;;;17628:30;-1:-1:-1;;;17689:2:1;17674:18;;17667:50;17749:2;17734:18;;17414:344::o;17763:413::-;17965:2;17947:21;;;18004:2;17984:18;;;17977:30;18043:34;18038:2;18023:18;;18016:62;-1:-1:-1;;;18109:2:1;18094:18;;18087:47;18166:3;18151:19;;17763:413::o;18181:398::-;18383:2;18365:21;;;18422:2;18402:18;;;18395:30;18461:34;18456:2;18441:18;;18434:62;-1:-1:-1;;;18527:2:1;18512:18;;18505:32;18569:3;18554:19;;18181:398::o;19518:275::-;19589:2;19583:9;19654:2;19635:13;;-1:-1:-1;;19631:27:1;19619:40;;19689:18;19674:34;;19710:22;;;19671:62;19668:88;;;19736:18;;:::i;:::-;19772:2;19765:22;19518:275;;-1:-1:-1;19518:275:1:o;19924:128::-;19964:3;19995:1;19991:6;19988:1;19985:13;19982:39;;;20001:18;;:::i;:::-;-1:-1:-1;20037:9:1;;19924:128::o;20057:120::-;20097:1;20123;20113:35;;20128:18;;:::i;:::-;-1:-1:-1;20162:9:1;;20057:120::o;20182:168::-;20222:7;20288:1;20284;20280:6;20276:14;20273:1;20270:21;20265:1;20258:9;20251:17;20247:45;20244:71;;;20295:18;;:::i;:::-;-1:-1:-1;20335:9:1;;20182:168::o;20355:125::-;20395:4;20423:1;20420;20417:8;20414:34;;;20428:18;;:::i;:::-;-1:-1:-1;20465:9:1;;20355:125::o;20485:258::-;20557:1;20567:113;20581:6;20578:1;20575:13;20567:113;;;20657:11;;;20651:18;20638:11;;;20631:39;20603:2;20596:10;20567:113;;;20698:6;20695:1;20692:13;20689:48;;;-1:-1:-1;;20733:1:1;20715:16;;20708:27;20485:258::o;20748:380::-;20827:1;20823:12;;;;20870;;;20891:61;;20945:4;20937:6;20933:17;20923:27;;20891:61;20998:2;20990:6;20987:14;20967:18;20964:38;20961:161;;;21044:10;21039:3;21035:20;21032:1;21025:31;21079:4;21076:1;21069:15;21107:4;21104:1;21097:15;20961:161;;20748:380;;;:::o;21133:135::-;21172:3;-1:-1:-1;;21193:17:1;;21190:43;;;21213:18;;:::i;:::-;-1:-1:-1;21260:1:1;21249:13;;21133:135::o;21273:112::-;21305:1;21331;21321:35;;21336:18;;:::i;:::-;-1:-1:-1;21370:9:1;;21273:112::o;21390:127::-;21451:10;21446:3;21442:20;21439:1;21432:31;21482:4;21479:1;21472:15;21506:4;21503:1;21496:15;21522:127;21583:10;21578:3;21574:20;21571:1;21564:31;21614:4;21611:1;21604:15;21638:4;21635:1;21628:15;21654:127;21715:10;21710:3;21706:20;21703:1;21696:31;21746:4;21743:1;21736:15;21770:4;21767:1;21760:15;21786:127;21847:10;21842:3;21838:20;21835:1;21828:31;21878:4;21875:1;21868:15;21902:4;21899:1;21892:15;21918:131;-1:-1:-1;;;;;;21992:32:1;;21982:43;;21972:71;;22039:1;22036;22029:12

Swarm Source

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