ETH Price: $3,073.69 (+2.76%)
Gas: 5 Gwei

Token

Relics Pass (RP)
 

Overview

Max Total Supply

1,000 RP

Holders

716

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 RP
0x7cc4af16660484363b24fc3c86b1ba2ae081e724
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Relics Pass is your access to the Metarelics ecosystem of exclusive products and experiences.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Metarelics

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return _baseURI();
    }

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: contracts/Metarelics.sol



pragma solidity >=0.7.0 <0.9.0;




contract Metarelics is ERC721Enumerable, Ownable, ReentrancyGuard {
	using Strings for uint256;

	string baseURI;
	string baseExtension = ".json";
	uint256 public cost = .2 ether;
	uint256 public maxSupply = 1000;
	uint256 public maxMintable = 1;
	bool public paused = true;
	bool public isSecondSale = false;
	bool public isBackupSale = false;
	mapping(address => uint256) public addressMintedBalance;
	bytes32 public whitelistMerkleRoot;
	mapping(address => bool) public whitelistedAddressesBackup;
	bool public useWhitelistedAddressesBackup = false;
	mapping(address => bool) public secondMintWinners;

	constructor(
		string memory _name,
		string memory _symbol,
        string memory _URI
	) ERC721(_name, _symbol) {
        baseURI = _URI;
	}

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

	function _generateMerkleLeaf(address account)
		internal
		pure
		returns (bytes32)
	{
		return keccak256(abi.encodePacked(account));
	}

	/**
	 * Validates a Merkle proof based on a provided merkle root and leaf node.
	 */
	function _verify(
		bytes32[] memory proof,
		bytes32 merkleRoot,
		bytes32 leafNode
	) internal pure returns (bool) {
		return MerkleProof.verify(proof, merkleRoot, leafNode);
	}


	// Requires contract is not paused, the mint amount requested is at least 1,
	// & the amount being minted + current supply is less than the max supply.
	function requireChecks(uint256 _mintAmount) internal view {
		require(paused == false, "the contract is paused");
		require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded");
	}

	/**
	 * Limit: 1 during presale
	 * Only whitelisted individuals can mint presale. We utilize a Merkle Proof to determine who is whitelisted.
	 * If these cases are not met, the mint WILL fail, and your gas will NOT be refunded.
	 * Please only mint through metarelics.xyz unless you're absolutely sure you know what you're doing!
	 */
	function presaleMint(uint256 _mintAmount, bytes32[] calldata proof)
		public
		payable
        nonReentrant
	{
		uint256 supply = totalSupply();
		requireChecks(_mintAmount);
		// The owner of the smart contract can mint at any time, regardless of if the presale is on.
		if (msg.sender != owner()) {
			require (addressMintedBalance[msg.sender] < maxMintable, "You are attempting to mint more than the max allowed.");
			require(msg.value >= cost, "insufficient funds");

			// uses a traditional array for whitelist in the unlikely event the Merkle tree fails,
            // or if someone is unintentionally left out of the presale.  
			if (useWhitelistedAddressesBackup) {
				require(whitelistedAddressesBackup[msg.sender] == true, "user is not whitelisted");
			} else {
				require(
					_verify(
						proof,
						whitelistMerkleRoot,
						_generateMerkleLeaf(msg.sender)
					),
					"user is not whitelisted"
				);
			}

			_safeMint(msg.sender, supply + 1);
			addressMintedBalance[msg.sender]++;
		} else {

			// the owner of the contract can mint as many as they like.
			for (uint256 i = 1; i <= _mintAmount; i++) {
				addressMintedBalance[msg.sender]++;
				_safeMint(msg.sender, supply + i);
			}
		}
	}


	// mint function for the 2nd wave of sales. Only selected addresses via raffle will be allowed to mint.
    // Raffle winners are allowed one extra mint.
	// Owner can also only mint 1. Owner should always invoke presaleMint for minting multiple.
    // Call will fail if the contract is paused, if funds are insufficient, if the address invoking 
    // SecondaryMint is not eligible to mint, or if an eligible address has already successfully minted
    // using the secondaryMint.
	function secondaryMint()
		public
		payable
        nonReentrant
	{
		uint256 supply = totalSupply();
        requireChecks(1);
		if (msg.sender != owner()) {
			require(msg.value >= cost, "insufficient funds");
			require(secondMintWinners[msg.sender] == true); 
			require(isSecondSale == true, "2nd sale wave not on");
			require(
				addressMintedBalance[msg.sender] == 0,
				"max NFT per address exceeded"
			);
		}

		_safeMint(msg.sender, supply + 1);
		addressMintedBalance[msg.sender]++;
	}

	// backup mint function
	function mint() 
		public
		payable
        nonReentrant
	{
		uint256 supply = totalSupply();
		if (msg.sender != owner()) {
			requireChecks(1);
            require(msg.value >= cost, "insufficient funds");
			require(isBackupSale == true, "Main sale not available.");
			require(addressMintedBalance[msg.sender] == 0, "max NFT per address is 1.");
		}

		_safeMint(msg.sender, supply + 1);
		addressMintedBalance[msg.sender]++;
	}

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

	function tokenURI()
		public
		view
		virtual
		returns (string memory)
	{
		return baseURI;
	}

	// Sets addresses that will be allowed to mint in the second wave.
    function setMintWinners(address[] memory winners) public onlyOwner {
		for (uint256 i; i < winners.length; i++) {
			secondMintWinners[winners[i]] = true;
		}
    }

	function setBackupSale(bool _state) public onlyOwner {
		isBackupSale = _state;
	}

	function setSecondSale(bool _state) public onlyOwner {
		isSecondSale = _state;
	}

	/** Sets the merkle root for the whitelisted individuals. */
	function setWhiteListMerkleRoot(bytes32 merkleRoot) public onlyOwner {
		whitelistMerkleRoot = merkleRoot;
	}

	function setWhitelistedAddressesBackup(address[] memory addresses) public onlyOwner {
		for (uint256 i = 0; i < addresses.length; i++) {
			whitelistedAddressesBackup[addresses[i]] = true;
		}
	}

	function setBackupWhitelistedAddressState(bool state) public onlyOwner {
		useWhitelistedAddressesBackup = state;
	}

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

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

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

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

	function setMaxMintable(uint256 max) public onlyOwner {
		maxMintable = max;
	}

	// Withdraws the Ethers in the smart contract to the wallet that specified in the smart contract.
	function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        payable(0x120Ee9220CcB8F594483D6e0D5300babb78FAaC7).transfer(balance);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_URI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBackupSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSecondSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"secondMintWinners","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"secondaryMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setBackupSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setBackupWhitelistedAddressState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"winners","type":"address[]"}],"name":"setMintWinners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSecondSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhiteListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setWhitelistedAddressesBackup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenURI","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":"useWhitelistedAddressesBackup","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddressesBackup","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600d919062000151565b506702c68af0bb140000600e556103e8600f55600160108190556011805462ffffff191690911790556015805460ff191690553480156200006857600080fd5b5060405162002f3b38038062002f3b8339810160408190526200008b91620002ae565b825183908390620000a490600090602085019062000151565b508051620000ba90600190602084019062000151565b505050620000d7620000d1620000fb60201b60201c565b620000ff565b6001600b558051620000f190600c90602084019062000151565b5050505062000392565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015f906200033f565b90600052602060002090601f016020900481019282620001835760008555620001ce565b82601f106200019e57805160ff1916838001178555620001ce565b82800160010185558215620001ce579182015b82811115620001ce578251825591602001919060010190620001b1565b50620001dc929150620001e0565b5090565b5b80821115620001dc5760008155600101620001e1565b600082601f8301126200020957600080fd5b81516001600160401b03808211156200022657620002266200037c565b604051601f8301601f19908116603f011681019082821181831017156200025157620002516200037c565b816040528381526020925086838588010111156200026e57600080fd5b600091505b8382101562000292578582018301518183018401529082019062000273565b83821115620002a45760008385830101525b9695505050505050565b600080600060608486031215620002c457600080fd5b83516001600160401b0380821115620002dc57600080fd5b620002ea87838801620001f7565b945060208601519150808211156200030157600080fd5b6200030f87838801620001f7565b935060408601519150808211156200032657600080fd5b506200033586828701620001f7565b9150509250925092565b600181811c908216806200035457607f821691505b602082108114156200037657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612b9980620003a26000396000f3fe6080604052600436106102885760003560e01c806355f804b31161015a578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f14610788578063dbd94c6c146107a8578063e08e65ea146107c8578063e3e1e8ef146107e8578063e985e9c5146107fb578063f2fde38b1461084457600080fd5b8063b88d4fde146106f0578063be11ce0614610710578063c737e0c61461072a578063c87b56dd1461074a578063d5abeb011461076a578063d842750b1461078057600080fd5b80638a9a1602116101135780638a9a1602146106485780638da5cb5b1461066857806395d89b4114610686578063a22cb4651461069b578063aa98e0c6146106bb578063b008b7cb146106d157600080fd5b806355f804b3146105995780635c975abb146105b95780635e1b065c146105d35780636352211e146105f357806370a0823114610613578063715018a61461063357600080fd5b806323b872dd116101fe5780633ccfd60b116101b75780633ccfd60b146104c757806342842e0e146104dc578063438b6300146104fc57806344a0d68a146105295780634f6ccce714610549578063543b21211461056957600080fd5b806323b872dd1461040257806325d387b5146104225780632e920415146104425780632f745c59146104625780633913124c146104825780633c130d90146104b257600080fd5b80631249c58b116102505780631249c58b1461035e57806313faede61461036657806318160ddd1461038a57806318cae2691461039f5780632154dc39146103cc57806321ade122146103e257600080fd5b806301ffc9a71461028d57806302329a29146102c257806306fdde03146102e4578063081812fc14610306578063095ea7b31461033e575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612721565b610864565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102e26102dd3660046126ed565b61088f565b005b3480156102f057600080fd5b506102f96108d5565b6040516102b991906128f1565b34801561031257600080fd5b50610326610321366004612708565b610967565b6040516001600160a01b0390911681526020016102b9565b34801561034a57600080fd5b506102e261035936600461260f565b6109fc565b6102e2610b12565b34801561037257600080fd5b5061037c600e5481565b6040519081526020016102b9565b34801561039657600080fd5b5060085461037c565b3480156103ab57600080fd5b5061037c6103ba3660046124d8565b60126020526000908152604090205481565b3480156103d857600080fd5b5061037c60105481565b3480156103ee57600080fd5b506102e26103fd366004612639565b610c93565b34801561040e57600080fd5b506102e261041d36600461252d565b610d29565b34801561042e57600080fd5b506102e261043d366004612708565b610d5a565b34801561044e57600080fd5b506102e261045d3660046126ed565b610d89565b34801561046e57600080fd5b5061037c61047d36600461260f565b610dcf565b34801561048e57600080fd5b506102ad61049d3660046124d8565b60146020526000908152604090205460ff1681565b3480156104be57600080fd5b506102f9610e65565b3480156104d357600080fd5b506102e2610e74565b3480156104e857600080fd5b506102e26104f736600461252d565b610f12565b34801561050857600080fd5b5061051c6105173660046124d8565b610f2d565b6040516102b991906128ad565b34801561053557600080fd5b506102e2610544366004612708565b610fcf565b34801561055557600080fd5b5061037c610564366004612708565b610ffe565b34801561057557600080fd5b506102ad6105843660046124d8565b60166020526000908152604090205460ff1681565b3480156105a557600080fd5b506102e26105b436600461275b565b611091565b3480156105c557600080fd5b506011546102ad9060ff1681565b3480156105df57600080fd5b506102e26105ee366004612639565b6110ce565b3480156105ff57600080fd5b5061032661060e366004612708565b611160565b34801561061f57600080fd5b5061037c61062e3660046124d8565b6111d7565b34801561063f57600080fd5b506102e261125e565b34801561065457600080fd5b506011546102ad9062010000900460ff1681565b34801561067457600080fd5b50600a546001600160a01b0316610326565b34801561069257600080fd5b506102f9611294565b3480156106a757600080fd5b506102e26106b63660046125e5565b6112a3565b3480156106c757600080fd5b5061037c60135481565b3480156106dd57600080fd5b506011546102ad90610100900460ff1681565b3480156106fc57600080fd5b506102e261070b366004612569565b6112ae565b34801561071c57600080fd5b506015546102ad9060ff1681565b34801561073657600080fd5b506102e26107453660046126ed565b6112e6565b34801561075657600080fd5b506102f9610765366004612708565b611323565b34801561077657600080fd5b5061037c600f5481565b6102e26113aa565b34801561079457600080fd5b506102e26107a336600461275b565b6114ef565b3480156107b457600080fd5b506102e26107c33660046126ed565b61152c565b3480156107d457600080fd5b506102e26107e3366004612708565b611570565b6102e26107f63660046127a4565b61159f565b34801561080757600080fd5b506102ad6108163660046124fa565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561085057600080fd5b506102e261085f3660046124d8565b611847565b60006001600160e01b0319821663780e9d6360e01b14806108895750610889826118e2565b92915050565b600a546001600160a01b031633146108c25760405162461bcd60e51b81526004016108b990612956565b60405180910390fd5b6011805460ff1916911515919091179055565b6060600080546108e490612a9f565b80601f016020809104026020016040519081016040528092919081815260200182805461091090612a9f565b801561095d5780601f106109325761010080835404028352916020019161095d565b820191906000526020600020905b81548152906001019060200180831161094057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109e05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108b9565b506000908152600460205260409020546001600160a01b031690565b6000610a0782611160565b9050806001600160a01b0316836001600160a01b03161415610a755760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108b9565b336001600160a01b0382161480610a915750610a918133610816565b610b035760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108b9565b610b0d8383611932565b505050565b6002600b541415610b355760405162461bcd60e51b81526004016108b990612a08565b6002600b556000610b4560085490565b9050610b59600a546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610c5757610b7b60016119a0565b600e54341015610b9d5760405162461bcd60e51b81526004016108b99061298b565b60115462010000900460ff161515600114610bfa5760405162461bcd60e51b815260206004820152601860248201527f4d61696e2073616c65206e6f7420617661696c61626c652e000000000000000060448201526064016108b9565b3360009081526012602052604090205415610c575760405162461bcd60e51b815260206004820152601960248201527f6d6178204e465420706572206164647265737320697320312e0000000000000060448201526064016108b9565b610c6b33610c66836001612a70565b611a4a565b336000908152601260205260408120805491610c8683612ada565b90915550506001600b5550565b600a546001600160a01b03163314610cbd5760405162461bcd60e51b81526004016108b990612956565b60005b8151811015610d2557600160166000848481518110610ce157610ce1612b21565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610d1d81612ada565b915050610cc0565b5050565b610d333382611a64565b610d4f5760405162461bcd60e51b81526004016108b9906129b7565b610b0d838383611b5b565b600a546001600160a01b03163314610d845760405162461bcd60e51b81526004016108b990612956565b601055565b600a546001600160a01b03163314610db35760405162461bcd60e51b81526004016108b990612956565b60118054911515620100000262ff000019909216919091179055565b6000610dda836111d7565b8210610e3c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108b9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6060600c80546108e490612a9f565b600a546001600160a01b03163314610e9e5760405162461bcd60e51b81526004016108b990612956565b6002600b541415610ec15760405162461bcd60e51b81526004016108b990612a08565b6002600b55604051479073120ee9220ccb8f594483d6e0d5300babb78faac79082156108fc029083906000818181858888f19350505050158015610f09573d6000803e3d6000fd5b50506001600b55565b610b0d838383604051806020016040528060008152506112ae565b60606000610f3a836111d7565b905060008167ffffffffffffffff811115610f5757610f57612b37565b604051908082528060200260200182016040528015610f80578160200160208202803683370190505b50905060005b82811015610fc757610f988582610dcf565b828281518110610faa57610faa612b21565b602090810291909101015280610fbf81612ada565b915050610f86565b509392505050565b600a546001600160a01b03163314610ff95760405162461bcd60e51b81526004016108b990612956565b600e55565b600061100960085490565b821061106c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108b9565b6008828154811061107f5761107f612b21565b90600052602060002001549050919050565b600a546001600160a01b031633146110bb5760405162461bcd60e51b81526004016108b990612956565b8051610d2590600c9060208401906123bb565b600a546001600160a01b031633146110f85760405162461bcd60e51b81526004016108b990612956565b60005b8151811015610d255760016014600084848151811061111c5761111c612b21565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061115881612ada565b9150506110fb565b6000818152600260205260408120546001600160a01b0316806108895760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108b9565b60006001600160a01b0382166112425760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108b9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112885760405162461bcd60e51b81526004016108b990612956565b6112926000611d02565b565b6060600180546108e490612a9f565b610d25338383611d54565b6112b83383611a64565b6112d45760405162461bcd60e51b81526004016108b9906129b7565b6112e084848484611e23565b50505050565b600a546001600160a01b031633146113105760405162461bcd60e51b81526004016108b990612956565b6015805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b03166113a25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108b9565b610889610e65565b6002600b5414156113cd5760405162461bcd60e51b81526004016108b990612a08565b6002600b5560006113dd60085490565b90506113e960016119a0565b600a546001600160a01b03163314610c5757600e5434101561141d5760405162461bcd60e51b81526004016108b99061298b565b3360009081526016602052604090205460ff16151560011461143e57600080fd5b60115460ff6101009091041615156001146114925760405162461bcd60e51b81526020600482015260146024820152731937321039b0b632903bb0bb32903737ba1037b760611b60448201526064016108b9565b3360009081526012602052604090205415610c575760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108b9565b600a546001600160a01b031633146115195760405162461bcd60e51b81526004016108b990612956565b8051610d2590600d9060208401906123bb565b600a546001600160a01b031633146115565760405162461bcd60e51b81526004016108b990612956565b601180549115156101000261ff0019909216919091179055565b600a546001600160a01b0316331461159a5760405162461bcd60e51b81526004016108b990612956565b601355565b6002600b5414156115c25760405162461bcd60e51b81526004016108b990612a08565b6002600b5560006115d260085490565b90506115dd846119a0565b600a546001600160a01b031633146117ef57601054336000908152601260205260409020541061166d5760405162461bcd60e51b815260206004820152603560248201527f596f752061726520617474656d7074696e6720746f206d696e74206d6f7265206044820152743a3430b7103a34329036b0bc1030b63637bbb2b21760591b60648201526084016108b9565b600e5434101561168f5760405162461bcd60e51b81526004016108b99061298b565b60155460ff16156116fd573360009081526014602052604090205460ff1615156001146116f85760405162461bcd60e51b81526020600482015260176024820152761d5cd95c881a5cc81b9bdd081dda1a5d195b1a5cdd1959604a1b60448201526064016108b9565b6117bb565b61177583838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601354604080513360601b6bffffffffffffffffffffffff191660208083019190915282516014818403018152603490920190925280519101209092509050611e56565b6117bb5760405162461bcd60e51b81526020600482015260176024820152761d5cd95c881a5cc81b9bdd081dda1a5d195b1a5cdd1959604a1b60448201526064016108b9565b6117ca33610c66836001612a70565b3360009081526012602052604081208054916117e583612ada565b919050555061183c565b60015b84811161183a5733600090815260126020526040812080549161181483612ada565b90915550611828905033610c668385612a70565b8061183281612ada565b9150506117f2565b505b50506001600b555050565b600a546001600160a01b031633146118715760405162461bcd60e51b81526004016108b990612956565b6001600160a01b0381166118d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b9565b6118df81611d02565b50565b60006001600160e01b031982166380ac58cd60e01b148061191357506001600160e01b03198216635b5e139f60e01b145b8061088957506301ffc9a760e01b6001600160e01b0319831614610889565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061196782611160565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60115460ff16156119ec5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108b9565b600f54816119f960085490565b611a039190612a70565b11156118df5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108b9565b610d25828260405180602001604052806000815250611e63565b6000818152600260205260408120546001600160a01b0316611add5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108b9565b6000611ae883611160565b9050806001600160a01b0316846001600160a01b03161480611b235750836001600160a01b0316611b1884610967565b6001600160a01b0316145b80611b5357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b6e82611160565b6001600160a01b031614611bd25760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108b9565b6001600160a01b038216611c345760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108b9565b611c3f838383611e96565b611c4a600082611932565b6001600160a01b0383166000908152600360205260408120805460019290611c73908490612a88565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ca1908490612a70565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611db65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108b9565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e2e848484611b5b565b611e3a84848484611f4e565b6112e05760405162461bcd60e51b81526004016108b990612904565b6000611b5384848461205b565b611e6d8383612071565b611e7a6000848484611f4e565b610b0d5760405162461bcd60e51b81526004016108b990612904565b6001600160a01b038316611ef157611eec81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f14565b816001600160a01b0316836001600160a01b031614611f1457611f1483826121bf565b6001600160a01b038216611f2b57610b0d8161225c565b826001600160a01b0316826001600160a01b031614610b0d57610b0d828261230b565b60006001600160a01b0384163b1561205057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f92903390899088908890600401612870565b602060405180830381600087803b158015611fac57600080fd5b505af1925050508015611fdc575060408051601f3d908101601f19168201909252611fd99181019061273e565b60015b612036573d80801561200a576040519150601f19603f3d011682016040523d82523d6000602084013e61200f565b606091505b50805161202e5760405162461bcd60e51b81526004016108b990612904565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b53565b506001949350505050565b600082612068858461234f565b14949350505050565b6001600160a01b0382166120c75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108b9565b6000818152600260205260409020546001600160a01b03161561212c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108b9565b61213860008383611e96565b6001600160a01b0382166000908152600360205260408120805460019290612161908490612a70565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016121cc846111d7565b6121d69190612a88565b600083815260076020526040902054909150808214612229576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061226e90600190612a88565b6000838152600960205260408120546008805493945090928490811061229657612296612b21565b9060005260206000200154905080600883815481106122b7576122b7612b21565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122ef576122ef612b0b565b6001900381819060005260206000200160009055905550505050565b6000612316836111d7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600081815b8451811015610fc757600085828151811061237157612371612b21565b6020026020010151905080831161239757600083815260208290526040902092506123a8565b600081815260208490526040902092505b50806123b381612ada565b915050612354565b8280546123c790612a9f565b90600052602060002090601f0160209004810192826123e9576000855561242f565b82601f1061240257805160ff191683800117855561242f565b8280016001018555821561242f579182015b8281111561242f578251825591602001919060010190612414565b5061243b92915061243f565b5090565b5b8082111561243b5760008155600101612440565b600067ffffffffffffffff83111561246e5761246e612b37565b612481601f8401601f1916602001612a3f565b905082815283838301111561249557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146124c357600080fd5b919050565b803580151581146124c357600080fd5b6000602082840312156124ea57600080fd5b6124f3826124ac565b9392505050565b6000806040838503121561250d57600080fd5b612516836124ac565b9150612524602084016124ac565b90509250929050565b60008060006060848603121561254257600080fd5b61254b846124ac565b9250612559602085016124ac565b9150604084013590509250925092565b6000806000806080858703121561257f57600080fd5b612588856124ac565b9350612596602086016124ac565b925060408501359150606085013567ffffffffffffffff8111156125b957600080fd5b8501601f810187136125ca57600080fd5b6125d987823560208401612454565b91505092959194509250565b600080604083850312156125f857600080fd5b612601836124ac565b9150612524602084016124c8565b6000806040838503121561262257600080fd5b61262b836124ac565b946020939093013593505050565b6000602080838503121561264c57600080fd5b823567ffffffffffffffff8082111561266457600080fd5b818501915085601f83011261267857600080fd5b81358181111561268a5761268a612b37565b8060051b915061269b848301612a3f565b8181528481019084860184860187018a10156126b657600080fd5b600095505b838610156126e0576126cc816124ac565b8352600195909501949186019186016126bb565b5098975050505050505050565b6000602082840312156126ff57600080fd5b6124f3826124c8565b60006020828403121561271a57600080fd5b5035919050565b60006020828403121561273357600080fd5b81356124f381612b4d565b60006020828403121561275057600080fd5b81516124f381612b4d565b60006020828403121561276d57600080fd5b813567ffffffffffffffff81111561278457600080fd5b8201601f8101841361279557600080fd5b611b5384823560208401612454565b6000806000604084860312156127b957600080fd5b83359250602084013567ffffffffffffffff808211156127d857600080fd5b818601915086601f8301126127ec57600080fd5b8135818111156127fb57600080fd5b8760208260051b850101111561281057600080fd5b6020830194508093505050509250925092565b6000815180845260005b818110156128495760208185018101518683018201520161282d565b8181111561285b576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128a390830184612823565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128e5578351835292840192918401916001016128c9565b50909695505050505050565b6020815260006124f36020830184612823565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a6857612a68612b37565b604052919050565b60008219821115612a8357612a83612af5565b500190565b600082821015612a9a57612a9a612af5565b500390565b600181811c90821680612ab357607f821691505b60208210811415612ad457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612aee57612aee612af5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146118df57600080fdfea264697066735822122002843e2d3193106957fb3c07b5fc74287eabae7eb2606250f0bee3bbedcdf9d364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b52656c6963732050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000252500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5668757161556f42755659697846776a5a7077693479797046623434695345754e4e71357a394e556a4d31510000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c806355f804b31161015a578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f14610788578063dbd94c6c146107a8578063e08e65ea146107c8578063e3e1e8ef146107e8578063e985e9c5146107fb578063f2fde38b1461084457600080fd5b8063b88d4fde146106f0578063be11ce0614610710578063c737e0c61461072a578063c87b56dd1461074a578063d5abeb011461076a578063d842750b1461078057600080fd5b80638a9a1602116101135780638a9a1602146106485780638da5cb5b1461066857806395d89b4114610686578063a22cb4651461069b578063aa98e0c6146106bb578063b008b7cb146106d157600080fd5b806355f804b3146105995780635c975abb146105b95780635e1b065c146105d35780636352211e146105f357806370a0823114610613578063715018a61461063357600080fd5b806323b872dd116101fe5780633ccfd60b116101b75780633ccfd60b146104c757806342842e0e146104dc578063438b6300146104fc57806344a0d68a146105295780634f6ccce714610549578063543b21211461056957600080fd5b806323b872dd1461040257806325d387b5146104225780632e920415146104425780632f745c59146104625780633913124c146104825780633c130d90146104b257600080fd5b80631249c58b116102505780631249c58b1461035e57806313faede61461036657806318160ddd1461038a57806318cae2691461039f5780632154dc39146103cc57806321ade122146103e257600080fd5b806301ffc9a71461028d57806302329a29146102c257806306fdde03146102e4578063081812fc14610306578063095ea7b31461033e575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612721565b610864565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102e26102dd3660046126ed565b61088f565b005b3480156102f057600080fd5b506102f96108d5565b6040516102b991906128f1565b34801561031257600080fd5b50610326610321366004612708565b610967565b6040516001600160a01b0390911681526020016102b9565b34801561034a57600080fd5b506102e261035936600461260f565b6109fc565b6102e2610b12565b34801561037257600080fd5b5061037c600e5481565b6040519081526020016102b9565b34801561039657600080fd5b5060085461037c565b3480156103ab57600080fd5b5061037c6103ba3660046124d8565b60126020526000908152604090205481565b3480156103d857600080fd5b5061037c60105481565b3480156103ee57600080fd5b506102e26103fd366004612639565b610c93565b34801561040e57600080fd5b506102e261041d36600461252d565b610d29565b34801561042e57600080fd5b506102e261043d366004612708565b610d5a565b34801561044e57600080fd5b506102e261045d3660046126ed565b610d89565b34801561046e57600080fd5b5061037c61047d36600461260f565b610dcf565b34801561048e57600080fd5b506102ad61049d3660046124d8565b60146020526000908152604090205460ff1681565b3480156104be57600080fd5b506102f9610e65565b3480156104d357600080fd5b506102e2610e74565b3480156104e857600080fd5b506102e26104f736600461252d565b610f12565b34801561050857600080fd5b5061051c6105173660046124d8565b610f2d565b6040516102b991906128ad565b34801561053557600080fd5b506102e2610544366004612708565b610fcf565b34801561055557600080fd5b5061037c610564366004612708565b610ffe565b34801561057557600080fd5b506102ad6105843660046124d8565b60166020526000908152604090205460ff1681565b3480156105a557600080fd5b506102e26105b436600461275b565b611091565b3480156105c557600080fd5b506011546102ad9060ff1681565b3480156105df57600080fd5b506102e26105ee366004612639565b6110ce565b3480156105ff57600080fd5b5061032661060e366004612708565b611160565b34801561061f57600080fd5b5061037c61062e3660046124d8565b6111d7565b34801561063f57600080fd5b506102e261125e565b34801561065457600080fd5b506011546102ad9062010000900460ff1681565b34801561067457600080fd5b50600a546001600160a01b0316610326565b34801561069257600080fd5b506102f9611294565b3480156106a757600080fd5b506102e26106b63660046125e5565b6112a3565b3480156106c757600080fd5b5061037c60135481565b3480156106dd57600080fd5b506011546102ad90610100900460ff1681565b3480156106fc57600080fd5b506102e261070b366004612569565b6112ae565b34801561071c57600080fd5b506015546102ad9060ff1681565b34801561073657600080fd5b506102e26107453660046126ed565b6112e6565b34801561075657600080fd5b506102f9610765366004612708565b611323565b34801561077657600080fd5b5061037c600f5481565b6102e26113aa565b34801561079457600080fd5b506102e26107a336600461275b565b6114ef565b3480156107b457600080fd5b506102e26107c33660046126ed565b61152c565b3480156107d457600080fd5b506102e26107e3366004612708565b611570565b6102e26107f63660046127a4565b61159f565b34801561080757600080fd5b506102ad6108163660046124fa565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561085057600080fd5b506102e261085f3660046124d8565b611847565b60006001600160e01b0319821663780e9d6360e01b14806108895750610889826118e2565b92915050565b600a546001600160a01b031633146108c25760405162461bcd60e51b81526004016108b990612956565b60405180910390fd5b6011805460ff1916911515919091179055565b6060600080546108e490612a9f565b80601f016020809104026020016040519081016040528092919081815260200182805461091090612a9f565b801561095d5780601f106109325761010080835404028352916020019161095d565b820191906000526020600020905b81548152906001019060200180831161094057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109e05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108b9565b506000908152600460205260409020546001600160a01b031690565b6000610a0782611160565b9050806001600160a01b0316836001600160a01b03161415610a755760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108b9565b336001600160a01b0382161480610a915750610a918133610816565b610b035760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108b9565b610b0d8383611932565b505050565b6002600b541415610b355760405162461bcd60e51b81526004016108b990612a08565b6002600b556000610b4560085490565b9050610b59600a546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610c5757610b7b60016119a0565b600e54341015610b9d5760405162461bcd60e51b81526004016108b99061298b565b60115462010000900460ff161515600114610bfa5760405162461bcd60e51b815260206004820152601860248201527f4d61696e2073616c65206e6f7420617661696c61626c652e000000000000000060448201526064016108b9565b3360009081526012602052604090205415610c575760405162461bcd60e51b815260206004820152601960248201527f6d6178204e465420706572206164647265737320697320312e0000000000000060448201526064016108b9565b610c6b33610c66836001612a70565b611a4a565b336000908152601260205260408120805491610c8683612ada565b90915550506001600b5550565b600a546001600160a01b03163314610cbd5760405162461bcd60e51b81526004016108b990612956565b60005b8151811015610d2557600160166000848481518110610ce157610ce1612b21565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610d1d81612ada565b915050610cc0565b5050565b610d333382611a64565b610d4f5760405162461bcd60e51b81526004016108b9906129b7565b610b0d838383611b5b565b600a546001600160a01b03163314610d845760405162461bcd60e51b81526004016108b990612956565b601055565b600a546001600160a01b03163314610db35760405162461bcd60e51b81526004016108b990612956565b60118054911515620100000262ff000019909216919091179055565b6000610dda836111d7565b8210610e3c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108b9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6060600c80546108e490612a9f565b600a546001600160a01b03163314610e9e5760405162461bcd60e51b81526004016108b990612956565b6002600b541415610ec15760405162461bcd60e51b81526004016108b990612a08565b6002600b55604051479073120ee9220ccb8f594483d6e0d5300babb78faac79082156108fc029083906000818181858888f19350505050158015610f09573d6000803e3d6000fd5b50506001600b55565b610b0d838383604051806020016040528060008152506112ae565b60606000610f3a836111d7565b905060008167ffffffffffffffff811115610f5757610f57612b37565b604051908082528060200260200182016040528015610f80578160200160208202803683370190505b50905060005b82811015610fc757610f988582610dcf565b828281518110610faa57610faa612b21565b602090810291909101015280610fbf81612ada565b915050610f86565b509392505050565b600a546001600160a01b03163314610ff95760405162461bcd60e51b81526004016108b990612956565b600e55565b600061100960085490565b821061106c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108b9565b6008828154811061107f5761107f612b21565b90600052602060002001549050919050565b600a546001600160a01b031633146110bb5760405162461bcd60e51b81526004016108b990612956565b8051610d2590600c9060208401906123bb565b600a546001600160a01b031633146110f85760405162461bcd60e51b81526004016108b990612956565b60005b8151811015610d255760016014600084848151811061111c5761111c612b21565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061115881612ada565b9150506110fb565b6000818152600260205260408120546001600160a01b0316806108895760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108b9565b60006001600160a01b0382166112425760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108b9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112885760405162461bcd60e51b81526004016108b990612956565b6112926000611d02565b565b6060600180546108e490612a9f565b610d25338383611d54565b6112b83383611a64565b6112d45760405162461bcd60e51b81526004016108b9906129b7565b6112e084848484611e23565b50505050565b600a546001600160a01b031633146113105760405162461bcd60e51b81526004016108b990612956565b6015805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b03166113a25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108b9565b610889610e65565b6002600b5414156113cd5760405162461bcd60e51b81526004016108b990612a08565b6002600b5560006113dd60085490565b90506113e960016119a0565b600a546001600160a01b03163314610c5757600e5434101561141d5760405162461bcd60e51b81526004016108b99061298b565b3360009081526016602052604090205460ff16151560011461143e57600080fd5b60115460ff6101009091041615156001146114925760405162461bcd60e51b81526020600482015260146024820152731937321039b0b632903bb0bb32903737ba1037b760611b60448201526064016108b9565b3360009081526012602052604090205415610c575760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108b9565b600a546001600160a01b031633146115195760405162461bcd60e51b81526004016108b990612956565b8051610d2590600d9060208401906123bb565b600a546001600160a01b031633146115565760405162461bcd60e51b81526004016108b990612956565b601180549115156101000261ff0019909216919091179055565b600a546001600160a01b0316331461159a5760405162461bcd60e51b81526004016108b990612956565b601355565b6002600b5414156115c25760405162461bcd60e51b81526004016108b990612a08565b6002600b5560006115d260085490565b90506115dd846119a0565b600a546001600160a01b031633146117ef57601054336000908152601260205260409020541061166d5760405162461bcd60e51b815260206004820152603560248201527f596f752061726520617474656d7074696e6720746f206d696e74206d6f7265206044820152743a3430b7103a34329036b0bc1030b63637bbb2b21760591b60648201526084016108b9565b600e5434101561168f5760405162461bcd60e51b81526004016108b99061298b565b60155460ff16156116fd573360009081526014602052604090205460ff1615156001146116f85760405162461bcd60e51b81526020600482015260176024820152761d5cd95c881a5cc81b9bdd081dda1a5d195b1a5cdd1959604a1b60448201526064016108b9565b6117bb565b61177583838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601354604080513360601b6bffffffffffffffffffffffff191660208083019190915282516014818403018152603490920190925280519101209092509050611e56565b6117bb5760405162461bcd60e51b81526020600482015260176024820152761d5cd95c881a5cc81b9bdd081dda1a5d195b1a5cdd1959604a1b60448201526064016108b9565b6117ca33610c66836001612a70565b3360009081526012602052604081208054916117e583612ada565b919050555061183c565b60015b84811161183a5733600090815260126020526040812080549161181483612ada565b90915550611828905033610c668385612a70565b8061183281612ada565b9150506117f2565b505b50506001600b555050565b600a546001600160a01b031633146118715760405162461bcd60e51b81526004016108b990612956565b6001600160a01b0381166118d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b9565b6118df81611d02565b50565b60006001600160e01b031982166380ac58cd60e01b148061191357506001600160e01b03198216635b5e139f60e01b145b8061088957506301ffc9a760e01b6001600160e01b0319831614610889565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061196782611160565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60115460ff16156119ec5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108b9565b600f54816119f960085490565b611a039190612a70565b11156118df5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108b9565b610d25828260405180602001604052806000815250611e63565b6000818152600260205260408120546001600160a01b0316611add5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108b9565b6000611ae883611160565b9050806001600160a01b0316846001600160a01b03161480611b235750836001600160a01b0316611b1884610967565b6001600160a01b0316145b80611b5357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b6e82611160565b6001600160a01b031614611bd25760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108b9565b6001600160a01b038216611c345760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108b9565b611c3f838383611e96565b611c4a600082611932565b6001600160a01b0383166000908152600360205260408120805460019290611c73908490612a88565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ca1908490612a70565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611db65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108b9565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e2e848484611b5b565b611e3a84848484611f4e565b6112e05760405162461bcd60e51b81526004016108b990612904565b6000611b5384848461205b565b611e6d8383612071565b611e7a6000848484611f4e565b610b0d5760405162461bcd60e51b81526004016108b990612904565b6001600160a01b038316611ef157611eec81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f14565b816001600160a01b0316836001600160a01b031614611f1457611f1483826121bf565b6001600160a01b038216611f2b57610b0d8161225c565b826001600160a01b0316826001600160a01b031614610b0d57610b0d828261230b565b60006001600160a01b0384163b1561205057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f92903390899088908890600401612870565b602060405180830381600087803b158015611fac57600080fd5b505af1925050508015611fdc575060408051601f3d908101601f19168201909252611fd99181019061273e565b60015b612036573d80801561200a576040519150601f19603f3d011682016040523d82523d6000602084013e61200f565b606091505b50805161202e5760405162461bcd60e51b81526004016108b990612904565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b53565b506001949350505050565b600082612068858461234f565b14949350505050565b6001600160a01b0382166120c75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108b9565b6000818152600260205260409020546001600160a01b03161561212c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108b9565b61213860008383611e96565b6001600160a01b0382166000908152600360205260408120805460019290612161908490612a70565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016121cc846111d7565b6121d69190612a88565b600083815260076020526040902054909150808214612229576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061226e90600190612a88565b6000838152600960205260408120546008805493945090928490811061229657612296612b21565b9060005260206000200154905080600883815481106122b7576122b7612b21565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122ef576122ef612b0b565b6001900381819060005260206000200160009055905550505050565b6000612316836111d7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600081815b8451811015610fc757600085828151811061237157612371612b21565b6020026020010151905080831161239757600083815260208290526040902092506123a8565b600081815260208490526040902092505b50806123b381612ada565b915050612354565b8280546123c790612a9f565b90600052602060002090601f0160209004810192826123e9576000855561242f565b82601f1061240257805160ff191683800117855561242f565b8280016001018555821561242f579182015b8281111561242f578251825591602001919060010190612414565b5061243b92915061243f565b5090565b5b8082111561243b5760008155600101612440565b600067ffffffffffffffff83111561246e5761246e612b37565b612481601f8401601f1916602001612a3f565b905082815283838301111561249557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146124c357600080fd5b919050565b803580151581146124c357600080fd5b6000602082840312156124ea57600080fd5b6124f3826124ac565b9392505050565b6000806040838503121561250d57600080fd5b612516836124ac565b9150612524602084016124ac565b90509250929050565b60008060006060848603121561254257600080fd5b61254b846124ac565b9250612559602085016124ac565b9150604084013590509250925092565b6000806000806080858703121561257f57600080fd5b612588856124ac565b9350612596602086016124ac565b925060408501359150606085013567ffffffffffffffff8111156125b957600080fd5b8501601f810187136125ca57600080fd5b6125d987823560208401612454565b91505092959194509250565b600080604083850312156125f857600080fd5b612601836124ac565b9150612524602084016124c8565b6000806040838503121561262257600080fd5b61262b836124ac565b946020939093013593505050565b6000602080838503121561264c57600080fd5b823567ffffffffffffffff8082111561266457600080fd5b818501915085601f83011261267857600080fd5b81358181111561268a5761268a612b37565b8060051b915061269b848301612a3f565b8181528481019084860184860187018a10156126b657600080fd5b600095505b838610156126e0576126cc816124ac565b8352600195909501949186019186016126bb565b5098975050505050505050565b6000602082840312156126ff57600080fd5b6124f3826124c8565b60006020828403121561271a57600080fd5b5035919050565b60006020828403121561273357600080fd5b81356124f381612b4d565b60006020828403121561275057600080fd5b81516124f381612b4d565b60006020828403121561276d57600080fd5b813567ffffffffffffffff81111561278457600080fd5b8201601f8101841361279557600080fd5b611b5384823560208401612454565b6000806000604084860312156127b957600080fd5b83359250602084013567ffffffffffffffff808211156127d857600080fd5b818601915086601f8301126127ec57600080fd5b8135818111156127fb57600080fd5b8760208260051b850101111561281057600080fd5b6020830194508093505050509250925092565b6000815180845260005b818110156128495760208185018101518683018201520161282d565b8181111561285b576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128a390830184612823565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128e5578351835292840192918401916001016128c9565b50909695505050505050565b6020815260006124f36020830184612823565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a6857612a68612b37565b604052919050565b60008219821115612a8357612a83612af5565b500190565b600082821015612a9a57612a9a612af5565b500390565b600181811c90821680612ab357607f821691505b60208210811415612ad457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612aee57612aee612af5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146118df57600080fdfea264697066735822122002843e2d3193106957fb3c07b5fc74287eabae7eb2606250f0bee3bbedcdf9d364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b52656c6963732050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000252500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5668757161556f42755659697846776a5a7077693479797046623434695345754e4e71357a394e556a4d31510000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Relics Pass
Arg [1] : _symbol (string): RP
Arg [2] : _URI (string): ipfs://QmVhuqaUoBuVYixFwjZpwi4yypFb44iSEuNNq5z9NUjM1Q

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 52656c6963732050617373000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 5250000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [8] : 697066733a2f2f516d5668757161556f42755659697846776a5a707769347979
Arg [9] : 7046623434695345754e4e71357a394e556a4d31510000000000000000000000


Deployed Bytecode Sourcemap

50472:6935:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41619:224;;;;;;;;;;-1:-1:-1;41619:224:0;;;;;:::i;:::-;;:::i;:::-;;;8129:14:1;;8122:22;8104:41;;8092:2;8077:18;41619:224:0;;;;;;;;56958:70;;;;;;;;;;-1:-1:-1;56958:70:0;;;;;:::i;:::-;;:::i;:::-;;28560:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29998:221::-;;;;;;;;;;-1:-1:-1;29998:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6790:32:1;;;6772:51;;6760:2;6745:18;29998:221:0;6626:203:1;29521:411:0;;;;;;;;;;-1:-1:-1;29521:411:0;;;;;:::i;:::-;;:::i;54807:447::-;;;:::i;50625:30::-;;;;;;;;;;;;;;;;;;;8302:25:1;;;8290:2;8275:18;50625:30:0;8156:177:1;42259:113:0;;;;;;;;;;-1:-1:-1;42347:10:0;:17;42259:113;;50829:55;;;;;;;;;;-1:-1:-1;50829:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;50694:30;;;;;;;;;;;;;;;;55770:168;;;;;;;;;;-1:-1:-1;55770:168:0;;;;;:::i;:::-;;:::i;30748:339::-;;;;;;;;;;-1:-1:-1;30748:339:0;;;;;:::i;:::-;;:::i;57033:81::-;;;;;;;;;;-1:-1:-1;57033:81:0;;;;;:::i;:::-;;:::i;55943:84::-;;;;;;;;;;-1:-1:-1;55943:84:0;;;;;:::i;:::-;;:::i;41927:256::-;;;;;;;;;;-1:-1:-1;41927:256:0;;;;;:::i;:::-;;:::i;50926:58::-;;;;;;;;;;-1:-1:-1;50926:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;55591:102;;;;;;;;;;;;;:::i;57219:185::-;;;;;;;;;;;;;:::i;31158:::-;;;;;;;;;;-1:-1:-1;31158:185:0;;;;;:::i;:::-;;:::i;55259:327::-;;;;;;;;;;-1:-1:-1;55259:327:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56644:77::-;;;;;;;;;;-1:-1:-1;56644:77:0;;;;;:::i;:::-;;:::i;42449:233::-;;;;;;;;;;-1:-1:-1;42449:233:0;;;;;:::i;:::-;;:::i;51041:49::-;;;;;;;;;;-1:-1:-1;51041:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;56726:95;;;;;;;;;;-1:-1:-1;56726:95:0;;;;;:::i;:::-;;:::i;50728:25::-;;;;;;;;;;-1:-1:-1;50728:25:0;;;;;;;;56300:199;;;;;;;;;;-1:-1:-1;56300:199:0;;;;;:::i;:::-;;:::i;28254:239::-;;;;;;;;;;-1:-1:-1;28254:239:0;;;;;:::i;:::-;;:::i;27984:208::-;;;;;;;;;;-1:-1:-1;27984:208:0;;;;;:::i;:::-;;:::i;7156:103::-;;;;;;;;;;;;;:::i;50793:32::-;;;;;;;;;;-1:-1:-1;50793:32:0;;;;;;;;;;;6505:87;;;;;;;;;;-1:-1:-1;6578:6:0;;-1:-1:-1;;;;;6578:6:0;6505:87;;28729:104;;;;;;;;;;;;;:::i;30291:155::-;;;;;;;;;;-1:-1:-1;30291:155:0;;;;;:::i;:::-;;:::i;50888:34::-;;;;;;;;;;;;;;;;50757:32;;;;;;;;;;-1:-1:-1;50757:32:0;;;;;;;;;;;31414:328;;;;;;;;;;-1:-1:-1;31414:328:0;;;;;:::i;:::-;;:::i;50988:49::-;;;;;;;;;;-1:-1:-1;50988:49:0;;;;;;;;56504:118;;;;;;;;;;-1:-1:-1;56504:118:0;;;;;:::i;:::-;;:::i;28904:213::-;;;;;;;;;;-1:-1:-1;28904:213:0;;;;;:::i;:::-;;:::i;50659:31::-;;;;;;;;;;;;;;;;54257:519;;;:::i;56826:127::-;;;;;;;;;;-1:-1:-1;56826:127:0;;;;;:::i;:::-;;:::i;56032:84::-;;;;;;;;;;-1:-1:-1;56032:84:0;;;;;:::i;:::-;;:::i;56184:111::-;;;;;;;;;;-1:-1:-1;56184:111:0;;;;;:::i;:::-;;:::i;52497:1262::-;;;;;;:::i;:::-;;:::i;30517:164::-;;;;;;;;;;-1:-1:-1;30517:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30638:25:0;;;30614:4;30638:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30517:164;7414:201;;;;;;;;;;-1:-1:-1;7414:201:0;;;;;:::i;:::-;;:::i;41619:224::-;41721:4;-1:-1:-1;;;;;;41745:50:0;;-1:-1:-1;;;41745:50:0;;:90;;;41799:36;41823:11;41799:23;:36::i;:::-;41738:97;41619:224;-1:-1:-1;;41619:224:0:o;56958:70::-;6578:6;;-1:-1:-1;;;;;6578:6:0;5309:10;6725:23;6717:68;;;;-1:-1:-1;;;6717:68:0;;;;;;;:::i;:::-;;;;;;;;;57008:6:::1;:15:::0;;-1:-1:-1;;57008:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56958:70::o;28560:100::-;28614:13;28647:5;28640:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28560:100;:::o;29998:221::-;30074:7;33341:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33341:16:0;30094:73;;;;-1:-1:-1;;;30094:73:0;;15730:2:1;30094:73:0;;;15712:21:1;15769:2;15749:18;;;15742:30;15808:34;15788:18;;;15781:62;-1:-1:-1;;;15859:18:1;;;15852:42;15911:19;;30094:73:0;15528:408:1;30094:73:0;-1:-1:-1;30187:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30187:24:0;;29998:221::o;29521:411::-;29602:13;29618:23;29633:7;29618:14;:23::i;:::-;29602:39;;29666:5;-1:-1:-1;;;;;29660:11:0;:2;-1:-1:-1;;;;;29660:11:0;;;29652:57;;;;-1:-1:-1;;;29652:57:0;;17271:2:1;29652:57:0;;;17253:21:1;17310:2;17290:18;;;17283:30;17349:34;17329:18;;;17322:62;-1:-1:-1;;;17400:18:1;;;17393:31;17441:19;;29652:57:0;17069:397:1;29652:57:0;5309:10;-1:-1:-1;;;;;29744:21:0;;;;:62;;-1:-1:-1;29769:37:0;29786:5;5309:10;30517:164;:::i;29769:37::-;29722:168;;;;-1:-1:-1;;;29722:168:0;;12648:2:1;29722:168:0;;;12630:21:1;12687:2;12667:18;;;12660:30;12726:34;12706:18;;;12699:62;12797:26;12777:18;;;12770:54;12841:19;;29722:168:0;12446:420:1;29722:168:0;29903:21;29912:2;29916:7;29903:8;:21::i;:::-;29591:341;29521:411;;:::o;54807:447::-;49445:1;50041:7;;:19;;50033:63;;;;-1:-1:-1;;;50033:63:0;;;;;;;:::i;:::-;49445:1;50174:7;:18;54874:14:::1;54891:13;42347:10:::0;:17;;42259:113;54891:13:::1;54874:30;;54927:7;6578:6:::0;;-1:-1:-1;;;;;6578:6:0;;6505:87;54927:7:::1;-1:-1:-1::0;;;;;54913:21:0::1;:10;-1:-1:-1::0;;;;;54913:21:0::1;;54909:262;;54942:16;54956:1;54942:13;:16::i;:::-;54994:4;;54981:9;:17;;54973:48;;;;-1:-1:-1::0;;;54973:48:0::1;;;;;;;:::i;:::-;55035:12;::::0;;;::::1;;;:20;;55051:4;55035:20;55027:57;;;::::0;-1:-1:-1;;;55027:57:0;;15016:2:1;55027:57:0::1;::::0;::::1;14998:21:1::0;15055:2;15035:18;;;15028:30;15094:26;15074:18;;;15067:54;15138:18;;55027:57:0::1;14814:348:1::0;55027:57:0::1;55119:10;55098:32;::::0;;;:20:::1;:32;::::0;;;;;:37;55090:75:::1;;;::::0;-1:-1:-1;;;55090:75:0;;12294:2:1;55090:75:0::1;::::0;::::1;12276:21:1::0;12333:2;12313:18;;;12306:30;12372:27;12352:18;;;12345:55;12417:18;;55090:75:0::1;12092:349:1::0;55090:75:0::1;55177:33;55187:10;55199;:6:::0;55208:1:::1;55199:10;:::i;:::-;55177:9;:33::i;:::-;55236:10;55215:32;::::0;;;:20:::1;:32;::::0;;;;:34;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;49401:1:0;50353:7;:22;-1:-1:-1;54807:447:0:o;55770:168::-;6578:6;;-1:-1:-1;;;;;6578:6:0;5309:10;6725:23;6717:68;;;;-1:-1:-1;;;6717:68:0;;;;;;;:::i;:::-;55847:9:::1;55842:89;55862:7;:14;55858:1;:18;55842:89;;;55921:4;55889:17;:29;55907:7;55915:1;55907:10;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;55889:29:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;55889:29:0;:36;;-1:-1:-1;;55889:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55878:3;::::1;::::0;::::1;:::i;:::-;;;;55842:89;;;;55770:168:::0;:::o;30748:339::-;30943:41;5309:10;30976:7;30943:18;:41::i;:::-;30935:103;;;;-1:-1:-1;;;30935:103:0;;;;;;;:::i;:::-;31051:28;31061:4;31067:2;31071:7;31051:9;:28::i;57033:81::-;6578:6;;-1:-1:-1;;;;;6578:6:0;5309:10;6725:23;6717:68;;;;-1:-1:-1;;;6717:68:0;;;;;;;:::i;:::-;57092:11:::1;:17:::0;57033:81::o;55943:84::-;6578:6;;-1:-1:-1;;;;;6578:6:0;5309:10;6725:23;6717:68;;;;-1:-1:-1;;;6717:68:0;;;;;;;:::i;:::-;56001:12:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;56001:21:0;;::::1;::::0;;;::::1;::::0;;55943:84::o;41927:256::-;42024:7;42060:23;42077:5;42060:16;:23::i;:::-;42052:5;:31;42044:87;;;;-1:-1:-1;;;42044:87:0;;8764:2:1;42044:87:0;;;8746:21:1;8803:2;8783:18;;;8776:30;8842:34;8822:18;;;8815:62;-1:-1:-1;;;8893:18:1;;;8886:41;8944:19;;42044:87:0;8562:407:1;42044:87:0;-1:-1:-1;;;;;;42149:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41927:256::o;55591:102::-;55652:13;55681:7;55674:14;;;;;:::i;57219:185::-;6578:6;;-1:-1:-1;;;;;6578:6:0;5309:10;6725:23;6717:68;;;;-1:-1:-1;;;6717:68:0;;;;;;;:::i;:::-;49445:1:::1;50041:7;;:19;;50033:63;;;;-1:-1:-1::0;;;50033:63:0::1;;;;;;;:::i;:::-;49445:1;50174:7;:18:::0;57330:69:::2;::::0;57298:21:::2;::::0;57338:42:::2;::::0;57330:69;::::2;;;::::0;57298:21;;57280:15:::2;57330:69:::0;57280:15;57330:69;57298:21;57338:42;57330:69;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;49401:1:0::1;50353:7;:22:::0;57219:185::o;31158:::-;31296:39;31313:4;31319:2;31323:7;31296:39;;;;;;;;;;;;:16;:39::i;55259:327::-;55328:16;55353:23;55379:17;55389:6;55379:9;:17::i;:::-;55353:43;;55401:25;55443:15;55429:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55429:30:0;;55401:58;;55469:9;55464:98;55484:15;55480:1;:19;55464:98;;;55526:30;55546:6;55554:1;55526:19;:30::i;:::-;55512:8;55521:1;55512:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;55501:3;;;;:::i;:::-;;;;55464:98;;;-1:-1:-1;55573:8:0;55259:327;-1:-1:-1;;;55259:327:0:o;56644:77::-;6578:6;;-1:-1:-1;;;;;6578:6:0;5309:10;6725:23;6717:68;;;;-1:-1:-1;;;6717:68:0;;;;;;;:::i;:::-;56701:4:::1;:15:::0;56644:77::o;42449:233::-;42524:7;42560:30;42347:10;:17;;42259:113;42560:30;42552:5;:38;42544:95;;;;-1:-1:-1;;;42544:95:0;;18438:2:1;42544:95:0;;;18420:21:1;18477:2;18457:18;;;18450:30;18516:34;18496:18;;;18489:62;-1:-1:-1;;;18567:18:1;;;18560:42;18619:19;;42544:95:0;18236:408:1;42544:95:0;42657:10;42668:5;42657:17;;;;;;;;:::i;:::-;;;;;;;;;42650:24;;42449:233;;;:::o;56726:95::-;6578:6;;-1:-1:-1;;;;;6578:6:0;5309:10;6725:23;6717:68;;;;-1:-1:-1;;;6717:68:0;;;;;;;:::i;:::-;56795:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;56300:199::-:0;6578:6;;-1:-1:-1;;;;;6578:6:0;5309:10;6725:23;6717:68;;;;-1:-1:-1;;;6717:68:0;;;;;;;:::i;:::-;56394:9:::1;56389:106;56413:9;:16;56409:1;:20;56389:106;;;56485:4;56442:26;:40;56469:9;56479:1;56469:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;56442:40:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;56442:40:0;:47;;-1:-1:-1;;56442:47:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56431:3;::::1;::::0;::::1;:::i;:::-;;;;56389:106;;28254:239:::0;28326:7;28362:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28362:16:0;28397:19;28389:73;;;;-1:-1:-1;;;28389:73:0;;13833:2:1;28389:73:0;;;13815:21:1;13872:2;13852:18;;;13845:30;13911:34;13891:18;;;13884:62;-1:-1:-1;;;13962:18:1;;;13955:39;14011:19;;28389:73:0;13631:405:1;27984:208:0;28056:7;-1:-1:-1;;;;;28084:19:0;;28076:74;;;;-1:-1:-1;;;28076:74:0;;13422:2:1;28076:74:0;;;13404:21:1;13461:2;13441:18;;;13434:30;13500:34;13480:18;;;13473:62;-1:-1:-1;;;13551:18:1;;;13544:40;13601:19;;28076:74:0;13220:406:1;28076:74:0;-1:-1:-1;;;;;;28168:16:0;;;;;:9;:16;;;;;;;27984:208::o;7156:103::-;6578:6;;-1:-1:-1;;;;;6578:6:0;5309:10;6725:23;6717:68;;;;-1:-1:-1;;;6717:68:0;;;;;;;:::i;:::-;7221:30:::1;7248:1;7221:18;:30::i;:::-;7156:103::o:0;28729:104::-;28785:13;28818:7;28811:14;;;;;:::i;30291:155::-;30386:52;5309:10;30419:8;30429;30386:18;:52::i;31414:328::-;31589:41;5309:10;31622:7;31589:18;:41::i;:::-;31581:103;;;;-1:-1:-1;;;31581:103:0;;;;;;;:::i;:::-;31695:39;31709:4;31715:2;31719:7;31728:5;31695:13;:39::i;:::-;31414:328;;;;:::o;56504:118::-;6578:6;;-1:-1:-1;;;;;6578:6:0;5309:10;6725:23;6717:68;;;;-1:-1:-1;;;6717:68:0;;;;;;;:::i;:::-;56580:29:::1;:37:::0;;-1:-1:-1;;56580:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56504:118::o;28904:213::-;33317:4;33341:16;;;:7;:16;;;;;;28977:13;;-1:-1:-1;;;;;33341:16:0;29003:76;;;;-1:-1:-1;;;29003:76:0;;16855:2:1;29003:76:0;;;16837:21:1;16894:2;16874:18;;;16867:30;16933:34;16913:18;;;16906:62;-1:-1:-1;;;16984:18:1;;;16977:45;17039:19;;29003:76:0;16653:411:1;29003:76:0;29099:10;:8;:10::i;54257:519::-;49445:1;50041:7;;:19;;50033:63;;;;-1:-1:-1;;;50033:63:0;;;;;;;:::i;:::-;49445:1;50174:7;:18;54332:14:::1;54349:13;42347:10:::0;:17;;42259:113;54349:13:::1;54332:30;;54373:16;54387:1;54373:13;:16::i;:::-;6578:6:::0;;-1:-1:-1;;;;;6578:6:0;54398:10:::1;:21;54394:299;;54448:4;;54435:9;:17;;54427:48;;;;-1:-1:-1::0;;;54427:48:0::1;;;;;;;:::i;:::-;54507:10;54489:29;::::0;;;:17:::1;:29;::::0;;;;;::::1;;:37;;:29:::0;:37:::1;54481:46;;;::::0;::::1;;54542:12;::::0;::::1;;::::0;;::::1;;:20;;:12;:20;54534:53;;;::::0;-1:-1:-1;;;54534:53:0;;13073:2:1;54534:53:0::1;::::0;::::1;13055:21:1::0;13112:2;13092:18;;;13085:30;-1:-1:-1;;;13131:18:1;;;13124:50;13191:18;;54534:53:0::1;12871:344:1::0;54534:53:0::1;54628:10;54607:32;::::0;;;:20:::1;:32;::::0;;;;;:37;54593:94:::1;;;::::0;-1:-1:-1;;;54593:94:0;;10765:2:1;54593:94:0::1;::::0;::::1;10747:21:1::0;10804:2;10784:18;;;10777:30;10843;10823:18;;;10816:58;10891:18;;54593:94:0::1;10563:352:1::0;56826:127:0;6578:6;;-1:-1:-1;;;;;6578:6:0;5309:10;6725:23;6717:68;;;;-1:-1:-1;;;6717:68:0;;;;;;;:::i;:::-;56915:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;56032:84::-:0;6578:6;;-1:-1:-1;;;;;6578:6:0;5309:10;6725:23;6717:68;;;;-1:-1:-1;;;6717:68:0;;;;;;;:::i;:::-;56090:12:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;56090:21:0;;::::1;::::0;;;::::1;::::0;;56032:84::o;56184:111::-;6578:6;;-1:-1:-1;;;;;6578:6:0;5309:10;6725:23;6717:68;;;;-1:-1:-1;;;6717:68:0;;;;;;;:::i;:::-;56258:19:::1;:32:::0;56184:111::o;52497:1262::-;49445:1;50041:7;;:19;;50033:63;;;;-1:-1:-1;;;50033:63:0;;;;;;;:::i;:::-;49445:1;50174:7;:18;52615:14:::1;52632:13;42347:10:::0;:17;;42259:113;52632:13:::1;52615:30;;52650:26;52664:11;52650:13;:26::i;:::-;6578:6:::0;;-1:-1:-1;;;;;6578:6:0;52781:10:::1;:21;52777:978;;52854:11;::::0;52840:10:::1;52819:32;::::0;;;:20:::1;:32;::::0;;;;;:46:::1;52810:113;;;::::0;-1:-1:-1;;;52810:113:0;;14594:2:1;52810:113:0::1;::::0;::::1;14576:21:1::0;14633:2;14613:18;;;14606:30;14672:34;14652:18;;;14645:62;-1:-1:-1;;;14723:18:1;;;14716:51;14784:19;;52810:113:0::1;14392:417:1::0;52810:113:0::1;52950:4;;52937:9;:17;;52929:48;;;;-1:-1:-1::0;;;52929:48:0::1;;;;;;;:::i;:::-;53156:29;::::0;::::1;;53152:303;;;53229:10;53202:38;::::0;;;:26:::1;:38;::::0;;;;;::::1;;:46;;:38:::0;:46:::1;53194:82;;;::::0;-1:-1:-1;;;53194:82:0;;18851:2:1;53194:82:0::1;::::0;::::1;18833:21:1::0;18890:2;18870:18;;;18863:30;-1:-1:-1;;;18909:18:1;;;18902:53;18972:18;;53194:82:0::1;18649:347:1::0;53194:82:0::1;53152:303;;;53311:97;53327:5;;53311:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;53341:19:0::1;::::0;51478:25;;;53389:10:::1;6541:2:1::0;6537:15;-1:-1:-1;;6533:53:1;51478:25:0;;;;6521:66:1;;;;51478:25:0;;;;;;;;;6603:12:1;;;;51478:25:0;;;51468:36;;;;;53341:19;;-1:-1:-1;51468:36:0;-1:-1:-1;53311:7:0::1;:97::i;:::-;53296:152;;;::::0;-1:-1:-1;;;53296:152:0;;18851:2:1;53296:152:0::1;::::0;::::1;18833:21:1::0;18890:2;18870:18;;;18863:30;-1:-1:-1;;;18909:18:1;;;18902:53;18972:18;;53296:152:0::1;18649:347:1::0;53296:152:0::1;53462:33;53472:10;53484;:6:::0;53493:1:::1;53484:10;:::i;53462:33::-;53522:10;53501:32;::::0;;;:20:::1;:32;::::0;;;;:34;;;::::1;::::0;::::1;:::i;:::-;;;;;;52777:978;;;53636:1;53619:131;53644:11;53639:1;:16;53619:131;;53690:10;53669:32;::::0;;;:20:::1;:32;::::0;;;;:34;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;53710:33:0::1;::::0;-1:-1:-1;53720:10:0::1;53732;53741:1:::0;53732:6;:10:::1;:::i;53710:33::-;53657:3:::0;::::1;::::0;::::1;:::i;:::-;;;;53619:131;;;;52777:978;-1:-1:-1::0;;49401:1:0;50353:7;:22;-1:-1:-1;;52497:1262:0:o;7414:201::-;6578:6;;-1:-1:-1;;;;;6578:6:0;5309:10;6725:23;6717:68;;;;-1:-1:-1;;;6717:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7503:22:0;::::1;7495:73;;;::::0;-1:-1:-1;;;7495:73:0;;9595:2:1;7495:73:0::1;::::0;::::1;9577:21:1::0;9634:2;9614:18;;;9607:30;9673:34;9653:18;;;9646:62;-1:-1:-1;;;9724:18:1;;;9717:36;9770:19;;7495:73:0::1;9393:402:1::0;7495:73:0::1;7579:28;7598:8;7579:18;:28::i;:::-;7414:201:::0;:::o;27615:305::-;27717:4;-1:-1:-1;;;;;;27754:40:0;;-1:-1:-1;;;27754:40:0;;:105;;-1:-1:-1;;;;;;;27811:48:0;;-1:-1:-1;;;27811:48:0;27754:105;:158;;;-1:-1:-1;;;;;;;;;;19398:40:0;;;27876:36;19289:157;37398:174;37473:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37473:29:0;-1:-1:-1;;;;;37473:29:0;;;;;;;;:24;;37527:23;37473:24;37527:14;:23::i;:::-;-1:-1:-1;;;;;37518:46:0;;;;;;;;;;;37398:174;;:::o;51951:198::-;52022:6;;;;:15;52014:50;;;;-1:-1:-1;;;52014:50:0;;16504:2:1;52014:50:0;;;16486:21:1;16543:2;16523:18;;;16516:30;-1:-1:-1;;;16562:18:1;;;16555:52;16624:18;;52014:50:0;16302:346:1;52014:50:0;52108:9;;52093:11;52077:13;42347:10;:17;;42259:113;52077:13;:27;;;;:::i;:::-;:40;;52069:75;;;;-1:-1:-1;;;52069:75:0;;14243:2:1;52069:75:0;;;14225:21:1;14282:2;14262:18;;;14255:30;-1:-1:-1;;;14301:18:1;;;14294:52;14363:18;;52069:75:0;14041:346:1;34236:110:0;34312:26;34322:2;34326:7;34312:26;;;;;;;;;;;;:9;:26::i;33546:348::-;33639:4;33341:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33341:16:0;33656:73;;;;-1:-1:-1;;;33656:73:0;;11881:2:1;33656:73:0;;;11863:21:1;11920:2;11900:18;;;11893:30;11959:34;11939:18;;;11932:62;-1:-1:-1;;;12010:18:1;;;12003:42;12062:19;;33656:73:0;11679:408:1;33656:73:0;33740:13;33756:23;33771:7;33756:14;:23::i;:::-;33740:39;;33809:5;-1:-1:-1;;;;;33798:16:0;:7;-1:-1:-1;;;;;33798:16:0;;:51;;;;33842:7;-1:-1:-1;;;;;33818:31:0;:20;33830:7;33818:11;:20::i;:::-;-1:-1:-1;;;;;33818:31:0;;33798:51;:87;;;-1:-1:-1;;;;;;30638:25:0;;;30614:4;30638:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33853:32;33790:96;33546:348;-1:-1:-1;;;;33546:348:0:o;36655:625::-;36814:4;-1:-1:-1;;;;;36787:31:0;:23;36802:7;36787:14;:23::i;:::-;-1:-1:-1;;;;;36787:31:0;;36779:81;;;;-1:-1:-1;;;36779:81:0;;10002:2:1;36779:81:0;;;9984:21:1;10041:2;10021:18;;;10014:30;10080:34;10060:18;;;10053:62;-1:-1:-1;;;10131:18:1;;;10124:35;10176:19;;36779:81:0;9800:401:1;36779:81:0;-1:-1:-1;;;;;36879:16:0;;36871:65;;;;-1:-1:-1;;;36871:65:0;;11122:2:1;36871:65:0;;;11104:21:1;11161:2;11141:18;;;11134:30;11200:34;11180:18;;;11173:62;-1:-1:-1;;;11251:18:1;;;11244:34;11295:19;;36871:65:0;10920:400:1;36871:65:0;36949:39;36970:4;36976:2;36980:7;36949:20;:39::i;:::-;37053:29;37070:1;37074:7;37053:8;:29::i;:::-;-1:-1:-1;;;;;37095:15:0;;;;;;:9;:15;;;;;:20;;37114:1;;37095:15;:20;;37114:1;;37095:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37126:13:0;;;;;;:9;:13;;;;;:18;;37143:1;;37126:13;:18;;37143:1;;37126:18;:::i;:::-;;;;-1:-1:-1;;37155:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37155:21:0;-1:-1:-1;;;;;37155:21:0;;;;;;;;;37194:27;;37155:16;;37194:27;;;;;;;29591:341;29521:411;;:::o;7775:191::-;7868:6;;;-1:-1:-1;;;;;7885:17:0;;;-1:-1:-1;;;;;;7885:17:0;;;;;;;7918:40;;7868:6;;;7885:17;7868:6;;7918:40;;7849:16;;7918:40;7838:128;7775:191;:::o;37714:315::-;37869:8;-1:-1:-1;;;;;37860:17:0;:5;-1:-1:-1;;;;;37860:17:0;;;37852:55;;;;-1:-1:-1;;;37852:55:0;;11527:2:1;37852:55:0;;;11509:21:1;11566:2;11546:18;;;11539:30;11605:27;11585:18;;;11578:55;11650:18;;37852:55:0;11325:349:1;37852:55:0;-1:-1:-1;;;;;37918:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37918:46:0;;;;;;;;;;37980:41;;8104::1;;;37980::0;;8077:18:1;37980:41:0;;;;;;;37714:315;;;:::o;32624:::-;32781:28;32791:4;32797:2;32801:7;32781:9;:28::i;:::-;32828:48;32851:4;32857:2;32861:7;32870:5;32828:22;:48::i;:::-;32820:111;;;;-1:-1:-1;;;32820:111:0;;;;;;;:::i;51603:185::-;51718:4;51736:47;51755:5;51762:10;51774:8;51736:18;:47::i;34573:321::-;34703:18;34709:2;34713:7;34703:5;:18::i;:::-;34754:54;34785:1;34789:2;34793:7;34802:5;34754:22;:54::i;:::-;34732:154;;;;-1:-1:-1;;;34732:154:0;;;;;;;:::i;43295:589::-;-1:-1:-1;;;;;43501:18:0;;43497:187;;43536:40;43568:7;44711:10;:17;;44684:24;;;;:15;:24;;;;;:44;;;44739:24;;;;;;;;;;;;44607:164;43536:40;43497:187;;;43606:2;-1:-1:-1;;;;;43598:10:0;:4;-1:-1:-1;;;;;43598:10:0;;43594:90;;43625:47;43658:4;43664:7;43625:32;:47::i;:::-;-1:-1:-1;;;;;43698:16:0;;43694:183;;43731:45;43768:7;43731:36;:45::i;43694:183::-;43804:4;-1:-1:-1;;;;;43798:10:0;:2;-1:-1:-1;;;;;43798:10:0;;43794:83;;43825:40;43853:2;43857:7;43825:27;:40::i;38594:799::-;38749:4;-1:-1:-1;;;;;38770:13:0;;9501:19;:23;38766:620;;38806:72;;-1:-1:-1;;;38806:72:0;;-1:-1:-1;;;;;38806:36:0;;;;;:72;;5309:10;;38857:4;;38863:7;;38872:5;;38806:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38806:72:0;;;;;;;;-1:-1:-1;;38806:72:0;;;;;;;;;;;;:::i;:::-;;;38802:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39048:13:0;;39044:272;;39091:60;;-1:-1:-1;;;39091:60:0;;;;;;;:::i;39044:272::-;39266:6;39260:13;39251:6;39247:2;39243:15;39236:38;38802:529;-1:-1:-1;;;;;;38929:51:0;-1:-1:-1;;;38929:51:0;;-1:-1:-1;38922:58:0;;38766:620;-1:-1:-1;39370:4:0;38594:799;;;;;;:::o;960:190::-;1085:4;1138;1109:25;1122:5;1129:4;1109:12;:25::i;:::-;:33;;960:190;-1:-1:-1;;;;960:190:0:o;35230:439::-;-1:-1:-1;;;;;35310:16:0;;35302:61;;;;-1:-1:-1;;;35302:61:0;;15369:2:1;35302:61:0;;;15351:21:1;;;15388:18;;;15381:30;15447:34;15427:18;;;15420:62;15499:18;;35302:61:0;15167:356:1;35302:61:0;33317:4;33341:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33341:16:0;:30;35374:58;;;;-1:-1:-1;;;35374:58:0;;10408:2:1;35374:58:0;;;10390:21:1;10447:2;10427:18;;;10420:30;10486;10466:18;;;10459:58;10534:18;;35374:58:0;10206:352:1;35374:58:0;35445:45;35474:1;35478:2;35482:7;35445:20;:45::i;:::-;-1:-1:-1;;;;;35503:13:0;;;;;;:9;:13;;;;;:18;;35520:1;;35503:13;:18;;35520:1;;35503:18;:::i;:::-;;;;-1:-1:-1;;35532:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35532:21:0;-1:-1:-1;;;;;35532:21:0;;;;;;;;35571:33;;35532:16;;;35571:33;;35532:16;;35571:33;55842:89:::1;55770:168:::0;:::o;45398:988::-;45664:22;45714:1;45689:22;45706:4;45689:16;:22::i;:::-;:26;;;;:::i;:::-;45726:18;45747:26;;;:17;:26;;;;;;45664:51;;-1:-1:-1;45880:28:0;;;45876:328;;-1:-1:-1;;;;;45947:18:0;;45925:19;45947:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45998:30;;;;;;:44;;;46115:30;;:17;:30;;;;;:43;;;45876:328;-1:-1:-1;46300:26:0;;;;:17;:26;;;;;;;;46293:33;;;-1:-1:-1;;;;;46344:18:0;;;;;:12;:18;;;;;:34;;;;;;;46337:41;45398:988::o;46681:1079::-;46959:10;:17;46934:22;;46959:21;;46979:1;;46959:21;:::i;:::-;46991:18;47012:24;;;:15;:24;;;;;;47385:10;:26;;46934:46;;-1:-1:-1;47012:24:0;;46934:46;;47385:26;;;;;;:::i;:::-;;;;;;;;;47363:48;;47449:11;47424:10;47435;47424:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47529:28;;;:15;:28;;;;;;;:41;;;47701:24;;;;;47694:31;47736:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46752:1008;;;46681:1079;:::o;44185:221::-;44270:14;44287:20;44304:2;44287:16;:20::i;:::-;-1:-1:-1;;;;;44318:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44363:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44185:221:0:o;1512:675::-;1595:7;1638:4;1595:7;1653:497;1677:5;:12;1673:1;:16;1653:497;;;1711:20;1734:5;1740:1;1734:8;;;;;;;;:::i;:::-;;;;;;;1711:31;;1777:12;1761;:28;1757:382;;2263:13;2313:15;;;2349:4;2342:15;;;2396:4;2380:21;;1889:57;;1757:382;;;2263:13;2313:15;;;2349:4;2342:15;;;2396:4;2380:21;;2066:57;;1757:382;-1:-1:-1;1691:3:0;;;;:::i;:::-;;;;1653:497;;-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;:::-;909:39;768:186;-1:-1:-1;;;768:186:1:o;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:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:180::-;3958:6;4011:2;3999:9;3990:7;3986:23;3982:32;3979:52;;;4027:1;4024;4017:12;3979:52;-1:-1:-1;4050:23:1;;3899:180;-1:-1:-1;3899:180:1:o;4084:245::-;4142:6;4195:2;4183:9;4174:7;4170:23;4166:32;4163:52;;;4211:1;4208;4201:12;4163:52;4250:9;4237:23;4269:30;4293:5;4269:30;:::i;4334:249::-;4403:6;4456:2;4444:9;4435:7;4431:23;4427:32;4424:52;;;4472:1;4469;4462:12;4424:52;4504:9;4498:16;4523:30;4547:5;4523:30;:::i;4588:450::-;4657:6;4710:2;4698:9;4689:7;4685:23;4681:32;4678:52;;;4726:1;4723;4716:12;4678:52;4766:9;4753:23;4799:18;4791:6;4788:30;4785:50;;;4831:1;4828;4821:12;4785:50;4854:22;;4907:4;4899:13;;4895:27;-1:-1:-1;4885:55:1;;4936:1;4933;4926:12;4885:55;4959:73;5024:7;5019:2;5006:16;5001:2;4997;4993:11;4959:73;:::i;5228:683::-;5323:6;5331;5339;5392:2;5380:9;5371:7;5367:23;5363:32;5360:52;;;5408:1;5405;5398:12;5360:52;5444:9;5431:23;5421:33;;5505:2;5494:9;5490:18;5477:32;5528:18;5569:2;5561:6;5558:14;5555:34;;;5585:1;5582;5575:12;5555:34;5623:6;5612:9;5608:22;5598:32;;5668:7;5661:4;5657:2;5653:13;5649:27;5639:55;;5690:1;5687;5680:12;5639:55;5730:2;5717:16;5756:2;5748:6;5745:14;5742:34;;;5772:1;5769;5762:12;5742:34;5825:7;5820:2;5810:6;5807:1;5803:14;5799:2;5795:23;5791:32;5788:45;5785:65;;;5846:1;5843;5836:12;5785:65;5877:2;5873;5869:11;5859:21;;5899:6;5889:16;;;;;5228:683;;;;;:::o;5916:471::-;5957:3;5995:5;5989:12;6022:6;6017:3;6010:19;6047:1;6057:162;6071:6;6068:1;6065:13;6057:162;;;6133:4;6189:13;;;6185:22;;6179:29;6161:11;;;6157:20;;6150:59;6086:12;6057:162;;;6237:6;6234:1;6231:13;6228:87;;;6303:1;6296:4;6287:6;6282:3;6278:16;6274:27;6267:38;6228:87;-1:-1:-1;6369:2:1;6348:15;-1:-1:-1;;6344:29:1;6335:39;;;;6376:4;6331:50;;5916:471;-1:-1:-1;;5916:471:1:o;6834:488::-;-1:-1:-1;;;;;7103:15:1;;;7085:34;;7155:15;;7150:2;7135:18;;7128:43;7202:2;7187:18;;7180:34;;;7250:3;7245:2;7230:18;;7223:31;;;7028:4;;7271:45;;7296:19;;7288:6;7271:45;:::i;:::-;7263:53;6834:488;-1:-1:-1;;;;;;6834:488:1:o;7327:632::-;7498:2;7550:21;;;7620:13;;7523:18;;;7642:22;;;7469:4;;7498:2;7721:15;;;;7695:2;7680:18;;;7469:4;7764:169;7778:6;7775:1;7772:13;7764:169;;;7839:13;;7827:26;;7908:15;;;;7873:12;;;;7800:1;7793:9;7764:169;;;-1:-1:-1;7950:3:1;;7327:632;-1:-1:-1;;;;;;7327:632:1:o;8338:219::-;8487:2;8476:9;8469:21;8450:4;8507:44;8547:2;8536:9;8532:18;8524:6;8507:44;:::i;8974:414::-;9176:2;9158:21;;;9215:2;9195:18;;;9188:30;9254:34;9249:2;9234:18;;9227:62;-1:-1:-1;;;9320:2:1;9305:18;;9298:48;9378:3;9363:19;;8974:414::o;15941:356::-;16143:2;16125:21;;;16162:18;;;16155:30;16221:34;16216:2;16201:18;;16194:62;16288:2;16273:18;;15941:356::o;17471:342::-;17673:2;17655:21;;;17712:2;17692:18;;;17685:30;-1:-1:-1;;;17746:2:1;17731:18;;17724:48;17804:2;17789:18;;17471:342::o;17818:413::-;18020:2;18002:21;;;18059:2;18039:18;;;18032:30;18098:34;18093:2;18078:18;;18071:62;-1:-1:-1;;;18164:2:1;18149:18;;18142:47;18221:3;18206:19;;17818:413::o;19001:355::-;19203:2;19185:21;;;19242:2;19222:18;;;19215:30;19281:33;19276:2;19261:18;;19254:61;19347:2;19332:18;;19001:355::o;19543:275::-;19614:2;19608:9;19679:2;19660:13;;-1:-1:-1;;19656:27:1;19644:40;;19714:18;19699:34;;19735:22;;;19696:62;19693:88;;;19761:18;;:::i;:::-;19797:2;19790:22;19543:275;;-1:-1:-1;19543:275:1:o;19823:128::-;19863:3;19894:1;19890:6;19887:1;19884:13;19881:39;;;19900:18;;:::i;:::-;-1:-1:-1;19936:9:1;;19823:128::o;19956:125::-;19996:4;20024:1;20021;20018:8;20015:34;;;20029:18;;:::i;:::-;-1:-1:-1;20066:9:1;;19956:125::o;20086:380::-;20165:1;20161:12;;;;20208;;;20229:61;;20283:4;20275:6;20271:17;20261:27;;20229:61;20336:2;20328:6;20325:14;20305:18;20302:38;20299:161;;;20382:10;20377:3;20373:20;20370:1;20363:31;20417:4;20414:1;20407:15;20445:4;20442:1;20435:15;20299:161;;20086:380;;;:::o;20471:135::-;20510:3;-1:-1:-1;;20531:17:1;;20528:43;;;20551:18;;:::i;:::-;-1:-1:-1;20598:1:1;20587:13;;20471:135::o;20611:127::-;20672:10;20667:3;20663:20;20660:1;20653:31;20703:4;20700:1;20693:15;20727:4;20724:1;20717:15;20743:127;20804:10;20799:3;20795:20;20792:1;20785:31;20835:4;20832:1;20825:15;20859:4;20856:1;20849:15;20875:127;20936:10;20931:3;20927:20;20924:1;20917:31;20967:4;20964:1;20957:15;20991:4;20988:1;20981:15;21007:127;21068:10;21063:3;21059:20;21056:1;21049:31;21099:4;21096:1;21089:15;21123:4;21120:1;21113:15;21139:131;-1:-1:-1;;;;;;21213:32:1;;21203:43;;21193:71;;21260:1;21257;21250:12

Swarm Source

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