ETH Price: $2,931.27 (-9.55%)
Gas: 23 Gwei

Token

8x8pes (8X8PE)
 

Overview

Max Total Supply

888 8X8PE

Holders

464

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
punish3r.eth
Balance
3 8X8PE
0x263f3cec4e92325d6676d3d466aa7a4018cd7957
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
$8x8pes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-22
*/

/*

Developed by https://twitter.com/ViperwareLabs

*/

// 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/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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

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


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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



pragma solidity ^0.8.0;



contract $8x8pes is ERC721A, Ownable {
    bytes32 public root;
	using Strings for uint;

	uint public constant MINT_PRICE = 0 ether;
	uint public constant MAX_NFT_PER_TRAN = 1;
    uint public constant MAX_PER_WALLET = 1;
    uint public MAX_FREE_MINT = 1;
	uint public maxSupply = 888;

	bool public isPublicMint = false;
    bool public isWhitelistMint = false;
    bool public isMetadataFinal;
    string private _baseURL;
	string public prerevealURL = '';
	mapping(address => uint) private _walletMintedCount;

    // Name
	constructor()
	ERC721A('8x8pes', '8X8PE') {
    }

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

	function _startTokenId() internal pure override returns (uint) {
		return 1;
	}

	function contractURI() public pure returns (string memory) {
		return "";
	}

    function finalizeMetadata() external onlyOwner {
        isMetadataFinal = true;
    }

	function reveal(string memory url) external onlyOwner {
        require(!isMetadataFinal, "Metadata is finalized");
		_baseURL = url;
	}

    function mintedCount(address owner) external view returns (uint) {
        return _walletMintedCount[owner];
    }

    function setRoot(bytes32 _root) external onlyOwner {
		root = _root;
	}

	function setPublicState(bool value) external onlyOwner {
		isPublicMint = value;
	}

    function setWhitelistState(bool value) external onlyOwner {
		isWhitelistMint = value;
	}

    /*
    // Splitter
    
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;

        address _wallet1 = 0x130752003Cc8a51C34247794580C07b8862B5d3C;
        uint _payable1 = balance * 50 / 100;
        payable(_wallet1).transfer(_payable1);

        address _wallet2 = 0x130752003Cc8a51C34247794580C07b8862B5d3C;
        uint _payable2 = balance * 25 / 100;
        payable(_wallet2).transfer(_payable2);

        address _wallet3 = 0x130752003Cc8a51C34247794580C07b8862B5d3C;
        uint _payable3 = balance * 25 / 100;
        payable(_wallet3).transfer(_payable3);
    }*/

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

	function reserveMint(address to, uint count) external onlyOwner {
		require(
			_totalMinted() + count <= maxSupply,
			'Exceeds max supply'
		);
		_safeMint(to, count);
	}

	function reduceSupply(uint newMaxSupply) external onlyOwner {
		maxSupply = newMaxSupply;
	}

    function setNumFreeMints(uint newFreeMints) external onlyOwner {
		MAX_FREE_MINT = newFreeMints;
	}

	function tokenURI(uint tokenId)
		public
		view
		override
		returns (string memory)
	{
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        return bytes(_baseURI()).length > 0 
            ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"))
            : prerevealURL;
	}

	function isValid(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        return MerkleProof.verify(proof, root, leaf);
    }
    
    function freeMint(uint count) external payable {
		require(isPublicMint, "Public mint has not started");
		require(count <= MAX_NFT_PER_TRAN,'Exceeds NFT per transaction limit');
		require(_totalMinted() + count <= maxSupply,'Exceeds max supply');
        require(_walletMintedCount[msg.sender] + count <= MAX_PER_WALLET,'Exceeds max per wallet');

        uint payForCount = count;
        uint mintedSoFar = _walletMintedCount[msg.sender];
        
        //1 Free Mints Default
        uint maxFree = MAX_FREE_MINT;

        if(mintedSoFar < maxFree) {
            uint remainingFreeMints = maxFree - mintedSoFar;
            if(count > remainingFreeMints) {
                payForCount = count - remainingFreeMints;
            }
            else {
                payForCount = 0;
            }
        }

		require(
			msg.value >= payForCount * MINT_PRICE,
			'Ether value sent is not sufficient'
		);

		_walletMintedCount[msg.sender] += count;
		_safeMint(msg.sender, count);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PER_TRAN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"finalizeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","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":"isMetadataFinal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prerevealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreeMints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPublicState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setWhitelistState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6001600a55610378600b55600c805461ffff1916905560a06040819052600060808190526200003191600e916200010c565b503480156200003f57600080fd5b50604080518082018252600681526538783870657360d01b602080830191825283518085019094526005845264385838504560d81b9084015281519192916200008b916002916200010c565b508051620000a19060039060208401906200010c565b5050600160005550620000b433620000ba565b620001ef565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011a90620001b2565b90600052602060002090601f0160209004810192826200013e576000855562000189565b82601f106200015957805160ff191683800117855562000189565b8280016001018555821562000189579182015b82811115620001895782518255916020019190600101906200016c565b50620001979291506200019b565b5090565b5b808211156200019757600081556001016200019c565b600181811c90821680620001c757607f821691505b60208210811415620001e957634e487b7160e01b600052602260045260246000fd5b50919050565b61212280620001ff6000396000f3fe60806040526004361061023b5760003560e01c80638da5cb5b1161012e578063d5abeb01116100ab578063e985e9c51161006f578063e985e9c514610651578063ebf0c7171461069a578063f2fde38b146106b0578063f4a560a5146106d0578063fddcb5ea146106e557600080fd5b8063d5abeb01146105e5578063d8210482146105fb578063dab5f34014610610578063e193e7e214610331578063e8a3d4851461063057600080fd5b8063b8a20ed0116100f2578063b8a20ed014610551578063c002d23d14610571578063c48156af14610586578063c754da33146105a6578063c87b56dd146105c557600080fd5b80638da5cb5b146104be57806395d89b41146104dc578063a22cb465146104f1578063b0ea180214610511578063b88d4fde1461053157600080fd5b80633057931f116101bc5780636352211e116101805780636352211e1461043657806370a0823114610456578063715018a6146104765780637c928fe91461048b578063806234441461049e57600080fd5b80633057931f146103b15780633ccfd60b146103cb57806341cda203146103e057806342842e0e146103f65780634c2612471461041657600080fd5b80630de76de4116102035780630de76de4146103115780630f2cdd6c1461033157806318160ddd146103545780631df0bb8a1461037157806323b872dd1461039157600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf5780630a00ae83146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611de2565b61071b565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076d565b60405161026c9190611f0d565b3480156102a357600080fd5b506102b76102b2366004611dc9565b6107ff565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611cd1565b610843565b005b3480156102fd57600080fd5b506102ef61030c366004611dc9565b6108ca565b34801561031d57600080fd5b50600c546102609062010000900460ff1681565b34801561033d57600080fd5b50610346600181565b60405190815260200161026c565b34801561036057600080fd5b506001546000540360001901610346565b34801561037d57600080fd5b506102ef61038c366004611dae565b610902565b34801561039d57600080fd5b506102ef6103ac366004611bef565b610946565b3480156103bd57600080fd5b50600c546102609060ff1681565b3480156103d757600080fd5b506102ef610951565b3480156103ec57600080fd5b50610346600a5481565b34801561040257600080fd5b506102ef610411366004611bef565b6109ae565b34801561042257600080fd5b506102ef610431366004611e1c565b6109c9565b34801561044257600080fd5b506102b7610451366004611dc9565b610a57565b34801561046257600080fd5b50610346610471366004611ba1565b610a69565b34801561048257600080fd5b506102ef610ab8565b6102ef610499366004611dc9565b610aee565b3480156104aa57600080fd5b506102ef6104b9366004611dc9565b610d44565b3480156104ca57600080fd5b506008546001600160a01b03166102b7565b3480156104e857600080fd5b5061028a610d73565b3480156104fd57600080fd5b506102ef61050c366004611ca7565b610d82565b34801561051d57600080fd5b506102ef61052c366004611cd1565b610e18565b34801561053d57600080fd5b506102ef61054c366004611c2b565b610eaa565b34801561055d57600080fd5b5061026061056c366004611cfb565b610eee565b34801561057d57600080fd5b50610346600081565b34801561059257600080fd5b506102ef6105a1366004611dae565b610f04565b3480156105b257600080fd5b50600c5461026090610100900460ff1681565b3480156105d157600080fd5b5061028a6105e0366004611dc9565b610f41565b3480156105f157600080fd5b50610346600b5481565b34801561060757600080fd5b5061028a611087565b34801561061c57600080fd5b506102ef61062b366004611dc9565b611115565b34801561063c57600080fd5b5060408051602081019091526000815261028a565b34801561065d57600080fd5b5061026061066c366004611bbc565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106a657600080fd5b5061034660095481565b3480156106bc57600080fd5b506102ef6106cb366004611ba1565b611144565b3480156106dc57600080fd5b506102ef6111df565b3480156106f157600080fd5b50610346610700366004611ba1565b6001600160a01b03166000908152600f602052604090205490565b60006001600160e01b031982166380ac58cd60e01b148061074c57506001600160e01b03198216635b5e139f60e01b145b8061076757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461077c90612014565b80601f01602080910402602001604051908101604052809291908181526020018280546107a890612014565b80156107f55780601f106107ca576101008083540402835291602001916107f5565b820191906000526020600020905b8154815290600101906020018083116107d857829003601f168201915b5050505050905090565b600061080a8261121c565b610827576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061084e82610a57565b9050806001600160a01b0316836001600160a01b031614156108835760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108ba5761089d813361066c565b6108ba576040516367d9dca160e11b815260040160405180910390fd5b6108c5838383611255565b505050565b6008546001600160a01b031633146108fd5760405162461bcd60e51b81526004016108f490611f20565b60405180910390fd5b600a55565b6008546001600160a01b0316331461092c5760405162461bcd60e51b81526004016108f490611f20565b600c80549115156101000261ff0019909216919091179055565b6108c58383836112b1565b6008546001600160a01b0316331461097b5760405162461bcd60e51b81526004016108f490611f20565b6040514790339082156108fc029083906000818181858888f193505050501580156109aa573d6000803e3d6000fd5b5050565b6108c583838360405180602001604052806000815250610eaa565b6008546001600160a01b031633146109f35760405162461bcd60e51b81526004016108f490611f20565b600c5462010000900460ff1615610a445760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b60448201526064016108f4565b80516109aa90600d906020840190611a84565b6000610a62826114a0565b5192915050565b60006001600160a01b038216610a92576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ae25760405162461bcd60e51b81526004016108f490611f20565b610aec60006115c4565b565b600c5460ff16610b405760405162461bcd60e51b815260206004820152601b60248201527f5075626c6963206d696e7420686173206e6f742073746172746564000000000060448201526064016108f4565b6001811115610b9b5760405162461bcd60e51b815260206004820152602160248201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696044820152601d60fa1b60648201526084016108f4565b600b5481610bac6000546000190190565b610bb69190611f86565b1115610bf95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016108f4565b336000908152600f6020526040902054600190610c17908390611f86565b1115610c5e5760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b60448201526064016108f4565b336000908152600f6020526040902054600a5482919080821015610caa576000610c888383611fd1565b905080851115610ca357610c9c8186611fd1565b9350610ca8565b600093505b505b610cb5600084611fb2565b341015610d0f5760405162461bcd60e51b815260206004820152602260248201527f45746865722076616c75652073656e74206973206e6f742073756666696369656044820152611b9d60f21b60648201526084016108f4565b336000908152600f602052604081208054869290610d2e908490611f86565b90915550610d3e90503385611616565b50505050565b6008546001600160a01b03163314610d6e5760405162461bcd60e51b81526004016108f490611f20565b600b55565b60606003805461077c90612014565b6001600160a01b038216331415610dac5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610e425760405162461bcd60e51b81526004016108f490611f20565b600b5481610e536000546000190190565b610e5d9190611f86565b1115610ea05760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016108f4565b6109aa8282611616565b610eb58484846112b1565b6001600160a01b0383163b15610d3e57610ed184848484611630565b610d3e576040516368d2bf6b60e11b815260040160405180910390fd5b6000610efd8360095484611728565b9392505050565b6008546001600160a01b03163314610f2e5760405162461bcd60e51b81526004016108f490611f20565b600c805460ff1916911515919091179055565b6060610f4c8261121c565b610fb05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f4565b6000610fba61173e565b511161105057600e8054610fcd90612014565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff990612014565b80156110465780601f1061101b57610100808354040283529160200191611046565b820191906000526020600020905b81548152906001019060200180831161102957829003601f168201915b5050505050610767565b61105861173e565b6110618361174d565b604051602001611072929190611e91565b60405160208183030381529060405292915050565b600e805461109490612014565b80601f01602080910402602001604051908101604052809291908181526020018280546110c090612014565b801561110d5780601f106110e25761010080835404028352916020019161110d565b820191906000526020600020905b8154815290600101906020018083116110f057829003601f168201915b505050505081565b6008546001600160a01b0316331461113f5760405162461bcd60e51b81526004016108f490611f20565b600955565b6008546001600160a01b0316331461116e5760405162461bcd60e51b81526004016108f490611f20565b6001600160a01b0381166111d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f4565b6111dc816115c4565b50565b6008546001600160a01b031633146112095760405162461bcd60e51b81526004016108f490611f20565b600c805462ff0000191662010000179055565b600081600111158015611230575060005482105b8015610767575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112bc826114a0565b9050836001600160a01b031681600001516001600160a01b0316146112f35760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113115750611311853361066c565b8061132c575033611321846107ff565b6001600160a01b0316145b90508061134c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661137357604051633a954ecd60e21b815260040160405180910390fd5b61137f60008487611255565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611455576000548214611455578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281806001116115ab576000548110156115ab57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115a95780516001600160a01b03161561153f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115a4579392505050565b61153f565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109aa82826040518060200160405280600081525061184b565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611665903390899088908890600401611ed0565b602060405180830381600087803b15801561167f57600080fd5b505af19250505080156116af575060408051601f3d908101601f191682019092526116ac91810190611dff565b60015b61170a573d8080156116dd576040519150601f19603f3d011682016040523d82523d6000602084013e6116e2565b606091505b508051611702576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826117358584611a10565b14949350505050565b6060600d805461077c90612014565b6060816117715750506040805180820190915260018152600360fc1b602082015290565b8160005b811561179b57806117858161204f565b91506117949050600a83611f9e565b9150611775565b60008167ffffffffffffffff8111156117b6576117b66120c0565b6040519080825280601f01601f1916602001820160405280156117e0576020820181803683370190505b5090505b8415611720576117f5600183611fd1565b9150611802600a8661206a565b61180d906030611f86565b60f81b818381518110611822576118226120aa565b60200101906001600160f81b031916908160001a905350611844600a86611f9e565b94506117e4565b6000546001600160a01b03841661187457604051622e076360e81b815260040160405180910390fd5b826118925760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156119bb575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119846000878480600101955087611630565b6119a1576040516368d2bf6b60e11b815260040160405180910390fd5b8082106119395782600054146119b657600080fd5b611a00565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106119bc575b506000908155610d3e9085838684565b600081815b8451811015611a7c576000858281518110611a3257611a326120aa565b60200260200101519050808311611a585760008381526020829052604090209250611a69565b600081815260208490526040902092505b5080611a748161204f565b915050611a15565b509392505050565b828054611a9090612014565b90600052602060002090601f016020900481019282611ab25760008555611af8565b82601f10611acb57805160ff1916838001178555611af8565b82800160010185558215611af8579182015b82811115611af8578251825591602001919060010190611add565b50611b04929150611b08565b5090565b5b80821115611b045760008155600101611b09565b600067ffffffffffffffff831115611b3757611b376120c0565b611b4a601f8401601f1916602001611f55565b9050828152838383011115611b5e57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611b8c57600080fd5b919050565b80358015158114611b8c57600080fd5b600060208284031215611bb357600080fd5b610efd82611b75565b60008060408385031215611bcf57600080fd5b611bd883611b75565b9150611be660208401611b75565b90509250929050565b600080600060608486031215611c0457600080fd5b611c0d84611b75565b9250611c1b60208501611b75565b9150604084013590509250925092565b60008060008060808587031215611c4157600080fd5b611c4a85611b75565b9350611c5860208601611b75565b925060408501359150606085013567ffffffffffffffff811115611c7b57600080fd5b8501601f81018713611c8c57600080fd5b611c9b87823560208401611b1d565b91505092959194509250565b60008060408385031215611cba57600080fd5b611cc383611b75565b9150611be660208401611b91565b60008060408385031215611ce457600080fd5b611ced83611b75565b946020939093013593505050565b60008060408385031215611d0e57600080fd5b823567ffffffffffffffff80821115611d2657600080fd5b818501915085601f830112611d3a57600080fd5b8135602082821115611d4e57611d4e6120c0565b8160051b9250611d5f818401611f55565b8281528181019085830185870184018b1015611d7a57600080fd5b600096505b84871015611d9d578035835260019690960195918301918301611d7f565b509997909101359750505050505050565b600060208284031215611dc057600080fd5b610efd82611b91565b600060208284031215611ddb57600080fd5b5035919050565b600060208284031215611df457600080fd5b8135610efd816120d6565b600060208284031215611e1157600080fd5b8151610efd816120d6565b600060208284031215611e2e57600080fd5b813567ffffffffffffffff811115611e4557600080fd5b8201601f81018413611e5657600080fd5b61172084823560208401611b1d565b60008151808452611e7d816020860160208601611fe8565b601f01601f19169290920160200192915050565b60008351611ea3818460208801611fe8565b835190830190611eb7818360208801611fe8565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f0390830184611e65565b9695505050505050565b602081526000610efd6020830184611e65565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611f7e57611f7e6120c0565b604052919050565b60008219821115611f9957611f9961207e565b500190565b600082611fad57611fad612094565b500490565b6000816000190483118215151615611fcc57611fcc61207e565b500290565b600082821015611fe357611fe361207e565b500390565b60005b83811015612003578181015183820152602001611feb565b83811115610d3e5750506000910152565b600181811c9082168061202857607f821691505b6020821081141561204957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120635761206361207e565b5060010190565b60008261207957612079612094565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111dc57600080fdfea2646970667358221220d89e93437c252b974a3fb6f78e39d0d241c1ac9f85215609d222a766e5e9117164736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80638da5cb5b1161012e578063d5abeb01116100ab578063e985e9c51161006f578063e985e9c514610651578063ebf0c7171461069a578063f2fde38b146106b0578063f4a560a5146106d0578063fddcb5ea146106e557600080fd5b8063d5abeb01146105e5578063d8210482146105fb578063dab5f34014610610578063e193e7e214610331578063e8a3d4851461063057600080fd5b8063b8a20ed0116100f2578063b8a20ed014610551578063c002d23d14610571578063c48156af14610586578063c754da33146105a6578063c87b56dd146105c557600080fd5b80638da5cb5b146104be57806395d89b41146104dc578063a22cb465146104f1578063b0ea180214610511578063b88d4fde1461053157600080fd5b80633057931f116101bc5780636352211e116101805780636352211e1461043657806370a0823114610456578063715018a6146104765780637c928fe91461048b578063806234441461049e57600080fd5b80633057931f146103b15780633ccfd60b146103cb57806341cda203146103e057806342842e0e146103f65780634c2612471461041657600080fd5b80630de76de4116102035780630de76de4146103115780630f2cdd6c1461033157806318160ddd146103545780631df0bb8a1461037157806323b872dd1461039157600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf5780630a00ae83146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611de2565b61071b565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076d565b60405161026c9190611f0d565b3480156102a357600080fd5b506102b76102b2366004611dc9565b6107ff565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611cd1565b610843565b005b3480156102fd57600080fd5b506102ef61030c366004611dc9565b6108ca565b34801561031d57600080fd5b50600c546102609062010000900460ff1681565b34801561033d57600080fd5b50610346600181565b60405190815260200161026c565b34801561036057600080fd5b506001546000540360001901610346565b34801561037d57600080fd5b506102ef61038c366004611dae565b610902565b34801561039d57600080fd5b506102ef6103ac366004611bef565b610946565b3480156103bd57600080fd5b50600c546102609060ff1681565b3480156103d757600080fd5b506102ef610951565b3480156103ec57600080fd5b50610346600a5481565b34801561040257600080fd5b506102ef610411366004611bef565b6109ae565b34801561042257600080fd5b506102ef610431366004611e1c565b6109c9565b34801561044257600080fd5b506102b7610451366004611dc9565b610a57565b34801561046257600080fd5b50610346610471366004611ba1565b610a69565b34801561048257600080fd5b506102ef610ab8565b6102ef610499366004611dc9565b610aee565b3480156104aa57600080fd5b506102ef6104b9366004611dc9565b610d44565b3480156104ca57600080fd5b506008546001600160a01b03166102b7565b3480156104e857600080fd5b5061028a610d73565b3480156104fd57600080fd5b506102ef61050c366004611ca7565b610d82565b34801561051d57600080fd5b506102ef61052c366004611cd1565b610e18565b34801561053d57600080fd5b506102ef61054c366004611c2b565b610eaa565b34801561055d57600080fd5b5061026061056c366004611cfb565b610eee565b34801561057d57600080fd5b50610346600081565b34801561059257600080fd5b506102ef6105a1366004611dae565b610f04565b3480156105b257600080fd5b50600c5461026090610100900460ff1681565b3480156105d157600080fd5b5061028a6105e0366004611dc9565b610f41565b3480156105f157600080fd5b50610346600b5481565b34801561060757600080fd5b5061028a611087565b34801561061c57600080fd5b506102ef61062b366004611dc9565b611115565b34801561063c57600080fd5b5060408051602081019091526000815261028a565b34801561065d57600080fd5b5061026061066c366004611bbc565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106a657600080fd5b5061034660095481565b3480156106bc57600080fd5b506102ef6106cb366004611ba1565b611144565b3480156106dc57600080fd5b506102ef6111df565b3480156106f157600080fd5b50610346610700366004611ba1565b6001600160a01b03166000908152600f602052604090205490565b60006001600160e01b031982166380ac58cd60e01b148061074c57506001600160e01b03198216635b5e139f60e01b145b8061076757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461077c90612014565b80601f01602080910402602001604051908101604052809291908181526020018280546107a890612014565b80156107f55780601f106107ca576101008083540402835291602001916107f5565b820191906000526020600020905b8154815290600101906020018083116107d857829003601f168201915b5050505050905090565b600061080a8261121c565b610827576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061084e82610a57565b9050806001600160a01b0316836001600160a01b031614156108835760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108ba5761089d813361066c565b6108ba576040516367d9dca160e11b815260040160405180910390fd5b6108c5838383611255565b505050565b6008546001600160a01b031633146108fd5760405162461bcd60e51b81526004016108f490611f20565b60405180910390fd5b600a55565b6008546001600160a01b0316331461092c5760405162461bcd60e51b81526004016108f490611f20565b600c80549115156101000261ff0019909216919091179055565b6108c58383836112b1565b6008546001600160a01b0316331461097b5760405162461bcd60e51b81526004016108f490611f20565b6040514790339082156108fc029083906000818181858888f193505050501580156109aa573d6000803e3d6000fd5b5050565b6108c583838360405180602001604052806000815250610eaa565b6008546001600160a01b031633146109f35760405162461bcd60e51b81526004016108f490611f20565b600c5462010000900460ff1615610a445760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b60448201526064016108f4565b80516109aa90600d906020840190611a84565b6000610a62826114a0565b5192915050565b60006001600160a01b038216610a92576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ae25760405162461bcd60e51b81526004016108f490611f20565b610aec60006115c4565b565b600c5460ff16610b405760405162461bcd60e51b815260206004820152601b60248201527f5075626c6963206d696e7420686173206e6f742073746172746564000000000060448201526064016108f4565b6001811115610b9b5760405162461bcd60e51b815260206004820152602160248201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696044820152601d60fa1b60648201526084016108f4565b600b5481610bac6000546000190190565b610bb69190611f86565b1115610bf95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016108f4565b336000908152600f6020526040902054600190610c17908390611f86565b1115610c5e5760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b60448201526064016108f4565b336000908152600f6020526040902054600a5482919080821015610caa576000610c888383611fd1565b905080851115610ca357610c9c8186611fd1565b9350610ca8565b600093505b505b610cb5600084611fb2565b341015610d0f5760405162461bcd60e51b815260206004820152602260248201527f45746865722076616c75652073656e74206973206e6f742073756666696369656044820152611b9d60f21b60648201526084016108f4565b336000908152600f602052604081208054869290610d2e908490611f86565b90915550610d3e90503385611616565b50505050565b6008546001600160a01b03163314610d6e5760405162461bcd60e51b81526004016108f490611f20565b600b55565b60606003805461077c90612014565b6001600160a01b038216331415610dac5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610e425760405162461bcd60e51b81526004016108f490611f20565b600b5481610e536000546000190190565b610e5d9190611f86565b1115610ea05760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016108f4565b6109aa8282611616565b610eb58484846112b1565b6001600160a01b0383163b15610d3e57610ed184848484611630565b610d3e576040516368d2bf6b60e11b815260040160405180910390fd5b6000610efd8360095484611728565b9392505050565b6008546001600160a01b03163314610f2e5760405162461bcd60e51b81526004016108f490611f20565b600c805460ff1916911515919091179055565b6060610f4c8261121c565b610fb05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f4565b6000610fba61173e565b511161105057600e8054610fcd90612014565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff990612014565b80156110465780601f1061101b57610100808354040283529160200191611046565b820191906000526020600020905b81548152906001019060200180831161102957829003601f168201915b5050505050610767565b61105861173e565b6110618361174d565b604051602001611072929190611e91565b60405160208183030381529060405292915050565b600e805461109490612014565b80601f01602080910402602001604051908101604052809291908181526020018280546110c090612014565b801561110d5780601f106110e25761010080835404028352916020019161110d565b820191906000526020600020905b8154815290600101906020018083116110f057829003601f168201915b505050505081565b6008546001600160a01b0316331461113f5760405162461bcd60e51b81526004016108f490611f20565b600955565b6008546001600160a01b0316331461116e5760405162461bcd60e51b81526004016108f490611f20565b6001600160a01b0381166111d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f4565b6111dc816115c4565b50565b6008546001600160a01b031633146112095760405162461bcd60e51b81526004016108f490611f20565b600c805462ff0000191662010000179055565b600081600111158015611230575060005482105b8015610767575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112bc826114a0565b9050836001600160a01b031681600001516001600160a01b0316146112f35760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113115750611311853361066c565b8061132c575033611321846107ff565b6001600160a01b0316145b90508061134c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661137357604051633a954ecd60e21b815260040160405180910390fd5b61137f60008487611255565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611455576000548214611455578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281806001116115ab576000548110156115ab57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115a95780516001600160a01b03161561153f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115a4579392505050565b61153f565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109aa82826040518060200160405280600081525061184b565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611665903390899088908890600401611ed0565b602060405180830381600087803b15801561167f57600080fd5b505af19250505080156116af575060408051601f3d908101601f191682019092526116ac91810190611dff565b60015b61170a573d8080156116dd576040519150601f19603f3d011682016040523d82523d6000602084013e6116e2565b606091505b508051611702576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826117358584611a10565b14949350505050565b6060600d805461077c90612014565b6060816117715750506040805180820190915260018152600360fc1b602082015290565b8160005b811561179b57806117858161204f565b91506117949050600a83611f9e565b9150611775565b60008167ffffffffffffffff8111156117b6576117b66120c0565b6040519080825280601f01601f1916602001820160405280156117e0576020820181803683370190505b5090505b8415611720576117f5600183611fd1565b9150611802600a8661206a565b61180d906030611f86565b60f81b818381518110611822576118226120aa565b60200101906001600160f81b031916908160001a905350611844600a86611f9e565b94506117e4565b6000546001600160a01b03841661187457604051622e076360e81b815260040160405180910390fd5b826118925760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156119bb575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119846000878480600101955087611630565b6119a1576040516368d2bf6b60e11b815260040160405180910390fd5b8082106119395782600054146119b657600080fd5b611a00565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106119bc575b506000908155610d3e9085838684565b600081815b8451811015611a7c576000858281518110611a3257611a326120aa565b60200260200101519050808311611a585760008381526020829052604090209250611a69565b600081815260208490526040902092505b5080611a748161204f565b915050611a15565b509392505050565b828054611a9090612014565b90600052602060002090601f016020900481019282611ab25760008555611af8565b82601f10611acb57805160ff1916838001178555611af8565b82800160010185558215611af8579182015b82811115611af8578251825591602001919060010190611add565b50611b04929150611b08565b5090565b5b80821115611b045760008155600101611b09565b600067ffffffffffffffff831115611b3757611b376120c0565b611b4a601f8401601f1916602001611f55565b9050828152838383011115611b5e57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611b8c57600080fd5b919050565b80358015158114611b8c57600080fd5b600060208284031215611bb357600080fd5b610efd82611b75565b60008060408385031215611bcf57600080fd5b611bd883611b75565b9150611be660208401611b75565b90509250929050565b600080600060608486031215611c0457600080fd5b611c0d84611b75565b9250611c1b60208501611b75565b9150604084013590509250925092565b60008060008060808587031215611c4157600080fd5b611c4a85611b75565b9350611c5860208601611b75565b925060408501359150606085013567ffffffffffffffff811115611c7b57600080fd5b8501601f81018713611c8c57600080fd5b611c9b87823560208401611b1d565b91505092959194509250565b60008060408385031215611cba57600080fd5b611cc383611b75565b9150611be660208401611b91565b60008060408385031215611ce457600080fd5b611ced83611b75565b946020939093013593505050565b60008060408385031215611d0e57600080fd5b823567ffffffffffffffff80821115611d2657600080fd5b818501915085601f830112611d3a57600080fd5b8135602082821115611d4e57611d4e6120c0565b8160051b9250611d5f818401611f55565b8281528181019085830185870184018b1015611d7a57600080fd5b600096505b84871015611d9d578035835260019690960195918301918301611d7f565b509997909101359750505050505050565b600060208284031215611dc057600080fd5b610efd82611b91565b600060208284031215611ddb57600080fd5b5035919050565b600060208284031215611df457600080fd5b8135610efd816120d6565b600060208284031215611e1157600080fd5b8151610efd816120d6565b600060208284031215611e2e57600080fd5b813567ffffffffffffffff811115611e4557600080fd5b8201601f81018413611e5657600080fd5b61172084823560208401611b1d565b60008151808452611e7d816020860160208601611fe8565b601f01601f19169290920160200192915050565b60008351611ea3818460208801611fe8565b835190830190611eb7818360208801611fe8565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f0390830184611e65565b9695505050505050565b602081526000610efd6020830184611e65565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611f7e57611f7e6120c0565b604052919050565b60008219821115611f9957611f9961207e565b500190565b600082611fad57611fad612094565b500490565b6000816000190483118215151615611fcc57611fcc61207e565b500290565b600082821015611fe357611fe361207e565b500390565b60005b83811015612003578181015183820152602001611feb565b83811115610d3e5750506000910152565b600181811c9082168061202857607f821691505b6020821081141561204957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120635761206361207e565b5060010190565b60008261207957612079612094565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111dc57600080fdfea2646970667358221220d89e93437c252b974a3fb6f78e39d0d241c1ac9f85215609d222a766e5e9117164736f6c63430008070033

Deployed Bytecode Sourcemap

49774:4208:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28395:305;;;;;;;;;;-1:-1:-1;28395:305:0;;;;;:::i;:::-;;:::i;:::-;;;7062:14:1;;7055:22;7037:41;;7025:2;7010:18;28395:305:0;;;;;;;;31510:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33014:204::-;;;;;;;;;;-1:-1:-1;33014:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6360:32:1;;;6342:51;;6330:2;6315:18;33014:204:0;6196:203:1;32576:372:0;;;;;;;;;;-1:-1:-1;32576:372:0;;;;;:::i;:::-;;:::i;:::-;;52353:101;;;;;;;;;;-1:-1:-1;52353:101:0;;;;;:::i;:::-;;:::i;50155:27::-;;;;;;;;;;-1:-1:-1;50155:27:0;;;;;;;;;;;49962:39;;;;;;;;;;;;50000:1;49962:39;;;;;7235:25:1;;;7223:2;7208:18;49962:39:0;7089:177:1;27635:312:0;;;;;;;;;;-1:-1:-1;50549:1:0;27898:12;27688:7;27882:13;:28;-1:-1:-1;;27882:46:0;27635:312;;51181:91;;;;;;;;;;-1:-1:-1;51181:91:0;;;;;:::i;:::-;;:::i;33879:170::-;;;;;;;;;;-1:-1:-1;33879:170:0;;;;;:::i;:::-;;:::i;50074:32::-;;;;;;;;;;-1:-1:-1;50074:32:0;;;;;;;;51920:143;;;;;;;;;;;;;:::i;50008:29::-;;;;;;;;;;;;;;;;34120:185;;;;;;;;;;-1:-1:-1;34120:185:0;;;;;:::i;:::-;;:::i;50739:139::-;;;;;;;;;;-1:-1:-1;50739:139:0;;;;;:::i;:::-;;:::i;31318:125::-;;;;;;;;;;-1:-1:-1;31318:125:0;;;;;:::i;:::-;;:::i;28764:206::-;;;;;;;;;;-1:-1:-1;28764:206:0;;;;;:::i;:::-;;:::i;48922:103::-;;;;;;;;;;;;;:::i;52962:1017::-;;;;;;:::i;:::-;;:::i;52251:94::-;;;;;;;;;;-1:-1:-1;52251:94:0;;;;;:::i;:::-;;:::i;48271:87::-;;;;;;;;;;-1:-1:-1;48344:6:0;;-1:-1:-1;;;;;48344:6:0;48271:87;;31679:104;;;;;;;;;;;;;:::i;33290:287::-;;;;;;;;;;-1:-1:-1;33290:287:0;;;;;:::i;:::-;;:::i;52068:178::-;;;;;;;;;;-1:-1:-1;52068:178:0;;;;;:::i;:::-;;:::i;34376:370::-;;;;;;;;;;-1:-1:-1;34376:370:0;;;;;:::i;:::-;;:::i;52805:145::-;;;;;;;;;;-1:-1:-1;52805:145:0;;;;;:::i;:::-;;:::i;49869:41::-;;;;;;;;;;;;49903:7;49869:41;;51088:85;;;;;;;;;;-1:-1:-1;51088:85:0;;;;;:::i;:::-;;:::i;50113:35::-;;;;;;;;;;-1:-1:-1;50113:35:0;;;;;;;;;;;52459:341;;;;;;;;;;-1:-1:-1;52459:341:0;;;;;:::i;:::-;;:::i;50041:27::-;;;;;;;;;;;;;;;;50216:31;;;;;;;;;;;;;:::i;51010:73::-;;;;;;;;;;-1:-1:-1;51010:73:0;;;;;:::i;:::-;;:::i;50560:78::-;;;;;;;;;;-1:-1:-1;50624:9:0;;;;;;;;;-1:-1:-1;50624:9:0;;50560:78;;33648:164;;;;;;;;;;-1:-1:-1;33648:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33769:25:0;;;33745:4;33769:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33648:164;49818:19;;;;;;;;;;;;;;;;49180:201;;;;;;;;;;-1:-1:-1;49180:201:0;;;;;:::i;:::-;;:::i;50646:88::-;;;;;;;;;;;;;:::i;50886:116::-;;;;;;;;;;-1:-1:-1;50886:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;50969:25:0;50945:4;50969:25;;;:18;:25;;;;;;;50886:116;28395:305;28497:4;-1:-1:-1;;;;;;28534:40:0;;-1:-1:-1;;;28534:40:0;;:105;;-1:-1:-1;;;;;;;28591:48:0;;-1:-1:-1;;;28591:48:0;28534:105;:158;;;-1:-1:-1;;;;;;;;;;15952:40:0;;;28656:36;28514:178;28395:305;-1:-1:-1;;28395:305:0:o;31510:100::-;31564:13;31597:5;31590:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31510:100;:::o;33014:204::-;33082:7;33107:16;33115:7;33107;:16::i;:::-;33102:64;;33132:34;;-1:-1:-1;;;33132:34:0;;;;;;;;;;;33102:64;-1:-1:-1;33186:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33186:24:0;;33014:204::o;32576:372::-;32649:13;32665:24;32681:7;32665:15;:24::i;:::-;32649:40;;32710:5;-1:-1:-1;;;;;32704:11:0;:2;-1:-1:-1;;;;;32704:11:0;;32700:48;;;32724:24;;-1:-1:-1;;;32724:24:0;;;;;;;;;;;32700:48;25412:10;-1:-1:-1;;;;;32765:21:0;;;32761:139;;32792:37;32809:5;25412:10;33648:164;:::i;32792:37::-;32788:112;;32853:35;;-1:-1:-1;;;32853:35:0;;;;;;;;;;;32788:112;32912:28;32921:2;32925:7;32934:5;32912:8;:28::i;:::-;32638:310;32576:372;;:::o;52353:101::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;;;;;;;;;52421:13:::1;:28:::0;52353:101::o;51181:91::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;51244:15:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;51244:23:0;;::::1;::::0;;;::::1;::::0;;51181:91::o;33879:170::-;34013:28;34023:4;34029:2;34033:7;34013:9;:28::i;51920:143::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;52018:37:::1;::::0;51986:21:::1;::::0;52026:10:::1;::::0;52018:37;::::1;;;::::0;51986:21;;51968:15:::1;52018:37:::0;51968:15;52018:37;51986:21;52026:10;52018:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51957:106;51920:143::o:0;34120:185::-;34258:39;34275:4;34281:2;34285:7;34258:39;;;;;;;;;;;;:16;:39::i;50739:139::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;50813:15:::1;::::0;;;::::1;;;50812:16;50804:50;;;::::0;-1:-1:-1;;;50804:50:0;;7697:2:1;50804:50:0::1;::::0;::::1;7679:21:1::0;7736:2;7716:18;;;7709:30;-1:-1:-1;;;7755:18:1;;;7748:51;7816:18;;50804:50:0::1;7495:345:1::0;50804:50:0::1;50859:14:::0;;::::1;::::0;:8:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;31318:125::-:0;31382:7;31409:21;31422:7;31409:12;:21::i;:::-;:26;;31318:125;-1:-1:-1;;31318:125:0:o;28764:206::-;28828:7;-1:-1:-1;;;;;28852:19:0;;28848:60;;28880:28;;-1:-1:-1;;;28880:28:0;;;;;;;;;;;28848:60;-1:-1:-1;;;;;;28934:19:0;;;;;:12;:19;;;;;:27;;;;28764:206::o;48922:103::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;48987:30:::1;49014:1;48987:18;:30::i;:::-;48922:103::o:0;52962:1017::-;53022:12;;;;53014:52;;;;-1:-1:-1;;;53014:52:0;;8454:2:1;53014:52:0;;;8436:21:1;8493:2;8473:18;;;8466:30;8532:29;8512:18;;;8505:57;8579:18;;53014:52:0;8252:351:1;53014:52:0;49954:1;53079:5;:25;;53071:70;;;;-1:-1:-1;;;53071:70:0;;8810:2:1;53071:70:0;;;8792:21:1;8849:2;8829:18;;;8822:30;8888:34;8868:18;;;8861:62;-1:-1:-1;;;8939:18:1;;;8932:31;8980:19;;53071:70:0;8608:397:1;53071:70:0;53180:9;;53171:5;53154:14;28087:7;28273:13;-1:-1:-1;;28273:31:0;;28040:283;53154:14;:22;;;;:::i;:::-;:35;;53146:65;;;;-1:-1:-1;;;53146:65:0;;9212:2:1;53146:65:0;;;9194:21:1;9251:2;9231:18;;;9224:30;-1:-1:-1;;;9270:18:1;;;9263:48;9328:18;;53146:65:0;9010:342:1;53146:65:0;53249:10;53230:30;;;;:18;:30;;;;;;50000:1;;53230:38;;53263:5;;53230:38;:::i;:::-;:56;;53222:90;;;;-1:-1:-1;;;53222:90:0;;10739:2:1;53222:90:0;;;10721:21:1;10778:2;10758:18;;;10751:30;-1:-1:-1;;;10797:18:1;;;10790:52;10859:18;;53222:90:0;10537:346:1;53222:90:0;53398:10;53325:16;53379:30;;;:18;:30;;;;;;53477:13;;53344:5;;53379:30;53506:21;;;53503:289;;;53544:23;53570:21;53580:11;53570:7;:21;:::i;:::-;53544:47;;53617:18;53609:5;:26;53606:175;;;53670:26;53678:18;53670:5;:26;:::i;:::-;53656:40;;53606:175;;;53764:1;53750:15;;53606:175;53529:263;53503:289;53824:24;49903:7;53824:11;:24;:::i;:::-;53811:9;:37;;53798:97;;;;-1:-1:-1;;;53798:97:0;;9559:2:1;53798:97:0;;;9541:21:1;9598:2;9578:18;;;9571:30;9637:34;9617:18;;;9610:62;-1:-1:-1;;;9688:18:1;;;9681:32;9730:19;;53798:97:0;9357:398:1;53798:97:0;53921:10;53902:30;;;;:18;:30;;;;;:39;;53936:5;;53902:30;:39;;53936:5;;53902:39;:::i;:::-;;;;-1:-1:-1;53946:28:0;;-1:-1:-1;53956:10:0;53968:5;53946:9;:28::i;:::-;53009:970;;;52962:1017;:::o;52251:94::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;52316:9:::1;:24:::0;52251:94::o;31679:104::-;31735:13;31768:7;31761:14;;;;;:::i;33290:287::-;-1:-1:-1;;;;;33389:24:0;;25412:10;33389:24;33385:54;;;33422:17;;-1:-1:-1;;;33422:17:0;;;;;;;;;;;33385:54;25412:10;33452:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33452:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33452:53:0;;;;;;;;;;33521:48;;7037:41:1;;;33452:42:0;;25412:10;33521:48;;7010:18:1;33521:48:0;;;;;;;33290:287;;:::o;52068:178::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;52176:9:::1;;52167:5;52150:14;28087:7:::0;28273:13;-1:-1:-1;;28273:31:0;;28040:283;52150:14:::1;:22;;;;:::i;:::-;:35;;52137:79;;;::::0;-1:-1:-1;;;52137:79:0;;9212:2:1;52137:79:0::1;::::0;::::1;9194:21:1::0;9251:2;9231:18;;;9224:30;-1:-1:-1;;;9270:18:1;;;9263:48;9328:18;;52137:79:0::1;9010:342:1::0;52137:79:0::1;52221:20;52231:2;52235:5;52221:9;:20::i;34376:370::-:0;34543:28;34553:4;34559:2;34563:7;34543:9;:28::i;:::-;-1:-1:-1;;;;;34586:13:0;;6032:19;:23;34582:157;;34607:56;34638:4;34644:2;34648:7;34657:5;34607:30;:56::i;:::-;34603:136;;34687:40;;-1:-1:-1;;;34687:40:0;;;;;;;;;;;52805:145;52881:4;52905:37;52924:5;52931:4;;52937;52905:18;:37::i;:::-;52898:44;52805:145;-1:-1:-1;;;52805:145:0:o;51088:85::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;51148:12:::1;:20:::0;;-1:-1:-1;;51148:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51088:85::o;52459:341::-;52533:13;52569:16;52577:7;52569;:16::i;:::-;52561:76;;;;-1:-1:-1;;;52561:76:0;;10323:2:1;52561:76:0;;;10305:21:1;10362:2;10342:18;;;10335:30;10401:34;10381:18;;;10374:62;-1:-1:-1;;;10452:18:1;;;10445:45;10507:19;;52561:76:0;10121:411:1;52561:76:0;52684:1;52663:10;:8;:10::i;:::-;52657:24;:28;:138;;52783:12;52657:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52726:10;:8;:10::i;:::-;52738:18;:7;:16;:18::i;:::-;52709:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52650:145;52459:341;-1:-1:-1;;52459:341:0:o;50216:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51010:73::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;51066:4:::1;:12:::0;51010:73::o;49180:201::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49269:22:0;::::1;49261:73;;;::::0;-1:-1:-1;;;49261:73:0;;8047:2:1;49261:73:0::1;::::0;::::1;8029:21:1::0;8086:2;8066:18;;;8059:30;8125:34;8105:18;;;8098:62;-1:-1:-1;;;8176:18:1;;;8169:36;8222:19;;49261:73:0::1;7845:402:1::0;49261:73:0::1;49345:28;49364:8;49345:18;:28::i;:::-;49180:201:::0;:::o;50646:88::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;50704:15:::1;:22:::0;;-1:-1:-1;;50704:22:0::1;::::0;::::1;::::0;;50646:88::o;35001:174::-;35058:4;35101:7;50549:1;35082:26;;:53;;;;;35122:13;;35112:7;:23;35082:53;:85;;;;-1:-1:-1;;35140:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35140:27:0;;;;35139:28;;35001:174::o;44223:196::-;44338:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44338:29:0;-1:-1:-1;;;;;44338:29:0;;;;;;;;;44383:28;;44338:24;;44383:28;;;;;;;44223:196;;;:::o;39171:2130::-;39286:35;39324:21;39337:7;39324:12;:21::i;:::-;39286:59;;39384:4;-1:-1:-1;;;;;39362:26:0;:13;:18;;;-1:-1:-1;;;;;39362:26:0;;39358:67;;39397:28;;-1:-1:-1;;;39397:28:0;;;;;;;;;;;39358:67;39438:22;25412:10;-1:-1:-1;;;;;39464:20:0;;;;:73;;-1:-1:-1;39501:36:0;39518:4;25412:10;33648:164;:::i;39501:36::-;39464:126;;;-1:-1:-1;25412:10:0;39554:20;39566:7;39554:11;:20::i;:::-;-1:-1:-1;;;;;39554:36:0;;39464:126;39438:153;;39609:17;39604:66;;39635:35;;-1:-1:-1;;;39635:35:0;;;;;;;;;;;39604:66;-1:-1:-1;;;;;39685:16:0;;39681:52;;39710:23;;-1:-1:-1;;;39710:23:0;;;;;;;;;;;39681:52;39854:35;39871:1;39875:7;39884:4;39854:8;:35::i;:::-;-1:-1:-1;;;;;40185:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40185:31:0;;;;;;;-1:-1:-1;;40185:31:0;;;;;;;40231:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40231:29:0;;;;;;;;;;;40311:20;;;:11;:20;;;;;;40346:18;;-1:-1:-1;;;;;;40379:49:0;;;;-1:-1:-1;;;40412:15:0;40379:49;;;;;;;;;;40702:11;;40762:24;;;;;40805:13;;40311:20;;40762:24;;40805:13;40801:384;;41015:13;;41000:11;:28;40996:174;;41053:20;;41122:28;;;;41096:54;;-1:-1:-1;;;41096:54:0;-1:-1:-1;;;;;;41096:54:0;;;-1:-1:-1;;;;;41053:20:0;;41096:54;;;;40996:174;40160:1036;;;41232:7;41228:2;-1:-1:-1;;;;;41213:27:0;41222:4;-1:-1:-1;;;;;41213:27:0;;;;;;;;;;;39275:2026;;39171:2130;;;:::o;30145:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30256:7:0;;50549:1;30305:23;30301:888;;30341:13;;30334:4;:20;30330:859;;;30375:31;30409:17;;;:11;:17;;;;;;;;;30375:51;;;;;;;;;-1:-1:-1;;;;;30375:51:0;;;;-1:-1:-1;;;30375:51:0;;;;;;;;;;;-1:-1:-1;;;30375:51:0;;;;;;;;;;;;;;30445:729;;30495:14;;-1:-1:-1;;;;;30495:28:0;;30491:101;;30559:9;30145:1111;-1:-1:-1;;;30145:1111:0:o;30491:101::-;-1:-1:-1;;;30934:6:0;30979:17;;;;:11;:17;;;;;;;;;30967:29;;;;;;;;;-1:-1:-1;;;;;30967:29:0;;;;;-1:-1:-1;;;30967:29:0;;;;;;;;;;;-1:-1:-1;;;30967:29:0;;;;;;;;;;;;;31027:28;31023:109;;31095:9;30145:1111;-1:-1:-1;;;30145:1111:0:o;31023:109::-;30894:261;;;30356:833;30330:859;31217:31;;-1:-1:-1;;;31217:31:0;;;;;;;;;;;49541:191;49634:6;;;-1:-1:-1;;;;;49651:17:0;;;-1:-1:-1;;;;;;49651:17:0;;;;;;;49684:40;;49634:6;;;49651:17;49634:6;;49684:40;;49615:16;;49684:40;49604:128;49541:191;:::o;35259:104::-;35328:27;35338:2;35342:8;35328:27;;;;;;;;;;;;:9;:27::i;44911:667::-;45095:72;;-1:-1:-1;;;45095:72:0;;45074:4;;-1:-1:-1;;;;;45095:36:0;;;;;:72;;25412:10;;45146:4;;45152:7;;45161:5;;45095:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45095:72:0;;;;;;;;-1:-1:-1;;45095:72:0;;;;;;;;;;;;:::i;:::-;;;45091:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45329:13:0;;45325:235;;45375:40;;-1:-1:-1;;;45375:40:0;;;;;;;;;;;45325:235;45518:6;45512:13;45503:6;45499:2;45495:15;45488:38;45091:480;-1:-1:-1;;;;;;45214:55:0;-1:-1:-1;;;45214:55:0;;-1:-1:-1;45091:480:0;44911:667;;;;;;:::o;912:190::-;1037:4;1090;1061:25;1074:5;1081:4;1061:12;:25::i;:::-;:33;;912:190;-1:-1:-1;;;;912:190:0:o;50377:92::-;50429:13;50456:8;50449:15;;;;;:::i;2745:723::-;2801:13;3022:10;3018:53;;-1:-1:-1;;3049:10:0;;;;;;;;;;;;-1:-1:-1;;;3049:10:0;;;;;2745:723::o;3018:53::-;3096:5;3081:12;3137:78;3144:9;;3137:78;;3170:8;;;;:::i;:::-;;-1:-1:-1;3193:10:0;;-1:-1:-1;3201:2:0;3193:10;;:::i;:::-;;;3137:78;;;3225:19;3257:6;3247:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3247:17:0;;3225:39;;3275:154;3282:10;;3275:154;;3309:11;3319:1;3309:11;;:::i;:::-;;-1:-1:-1;3378:10:0;3386:2;3378:5;:10;:::i;:::-;3365:24;;:2;:24;:::i;:::-;3352:39;;3335:6;3342;3335:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3335:56:0;;;;;;;;-1:-1:-1;3406:11:0;3415:2;3406:11;;:::i;:::-;;;3275:154;;35736:1749;35859:20;35882:13;-1:-1:-1;;;;;35910:16:0;;35906:48;;35935:19;;-1:-1:-1;;;35935:19:0;;;;;;;;;;;35906:48;35969:13;35965:44;;35991:18;;-1:-1:-1;;;35991:18:0;;;;;;;;;;;35965:44;-1:-1:-1;;;;;36360:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36419:49:0;;36360:44;;;;;;;;36419:49;;;;-1:-1:-1;;36360:44:0;;;;;;36419:49;;;;;;;;;;;;;;;;36485:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36535:66:0;;;-1:-1:-1;;;36585:15:0;36535:66;;;;;;;;;;;;;36485:25;;36682:23;;;;6032:19;:23;36722:631;;36762:313;36793:38;;36818:12;;-1:-1:-1;;;;;36793:38:0;;;36810:1;;36793:38;;36810:1;;36793:38;36859:69;36898:1;36902:2;36906:14;;;;;;36922:5;36859:30;:69::i;:::-;36854:174;;36964:40;;-1:-1:-1;;;36964:40:0;;;;;;;;;;;36854:174;37070:3;37055:12;:18;36762:313;;37156:12;37139:13;;:29;37135:43;;37170:8;;;37135:43;36722:631;;;37219:119;37250:40;;37275:14;;;;;-1:-1:-1;;;;;37250:40:0;;;37267:1;;37250:40;;37267:1;;37250:40;37333:3;37318:12;:18;37219:119;;36722:631;-1:-1:-1;37367:13:0;:28;;;37417:60;;37450:2;37454:12;37468:8;37417:60;:::i;1464:675::-;1547:7;1590:4;1547:7;1605:497;1629:5;:12;1625:1;:16;1605:497;;;1663:20;1686:5;1692:1;1686:8;;;;;;;;:::i;:::-;;;;;;;1663:31;;1729:12;1713;:28;1709:382;;2215:13;2265:15;;;2301:4;2294:15;;;2348:4;2332:21;;1841:57;;1709:382;;;2215:13;2265:15;;;2301:4;2294:15;;;2348:4;2332:21;;2018:57;;1709:382;-1:-1:-1;1643:3:0;;;;:::i;:::-;;;;1605:497;;;-1:-1:-1;2119:12:0;1464:675;-1:-1:-1;;;1464:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:1027::-;2839:6;2847;2900:2;2888:9;2879:7;2875:23;2871:32;2868:52;;;2916:1;2913;2906:12;2868:52;2956:9;2943:23;2985:18;3026:2;3018:6;3015:14;3012:34;;;3042:1;3039;3032:12;3012:34;3080:6;3069:9;3065:22;3055:32;;3125:7;3118:4;3114:2;3110:13;3106:27;3096:55;;3147:1;3144;3137:12;3096:55;3183:2;3170:16;3205:4;3228:2;3224;3221:10;3218:36;;;3234:18;;:::i;:::-;3280:2;3277:1;3273:10;3263:20;;3303:28;3327:2;3323;3319:11;3303:28;:::i;:::-;3365:15;;;3396:12;;;;3428:11;;;3458;;;3454:20;;3451:33;-1:-1:-1;3448:53:1;;;3497:1;3494;3487:12;3448:53;3519:1;3510:10;;3529:163;3543:2;3540:1;3537:9;3529:163;;;3600:17;;3588:30;;3561:1;3554:9;;;;;3638:12;;;;3670;;3529:163;;;-1:-1:-1;3711:5:1;3748:18;;;;3735:32;;-1:-1:-1;;;;;;;2746:1027:1:o;3778:180::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3926:26;3942:9;3926:26;:::i;3963:180::-;4022:6;4075:2;4063:9;4054:7;4050:23;4046:32;4043:52;;;4091:1;4088;4081:12;4043:52;-1:-1:-1;4114:23:1;;3963:180;-1:-1:-1;3963:180:1:o;4148:245::-;4206:6;4259:2;4247:9;4238:7;4234:23;4230:32;4227:52;;;4275:1;4272;4265:12;4227:52;4314:9;4301:23;4333:30;4357:5;4333:30;:::i;4398:249::-;4467:6;4520:2;4508:9;4499:7;4495:23;4491:32;4488:52;;;4536:1;4533;4526:12;4488:52;4568:9;4562:16;4587:30;4611:5;4587:30;:::i;4652:450::-;4721:6;4774:2;4762:9;4753:7;4749:23;4745:32;4742:52;;;4790:1;4787;4780:12;4742:52;4830:9;4817:23;4863:18;4855:6;4852:30;4849:50;;;4895:1;4892;4885:12;4849:50;4918:22;;4971:4;4963:13;;4959:27;-1:-1:-1;4949:55:1;;5000:1;4997;4990:12;4949:55;5023:73;5088:7;5083:2;5070:16;5065:2;5061;5057:11;5023:73;:::i;5292:257::-;5333:3;5371:5;5365:12;5398:6;5393:3;5386:19;5414:63;5470:6;5463:4;5458:3;5454:14;5447:4;5440:5;5436:16;5414:63;:::i;:::-;5531:2;5510:15;-1:-1:-1;;5506:29:1;5497:39;;;;5538:4;5493:50;;5292:257;-1:-1:-1;;5292:257:1:o;5554:637::-;5834:3;5872:6;5866:13;5888:53;5934:6;5929:3;5922:4;5914:6;5910:17;5888:53;:::i;:::-;6004:13;;5963:16;;;;6026:57;6004:13;5963:16;6060:4;6048:17;;6026:57;:::i;:::-;-1:-1:-1;;;6105:20:1;;6134:22;;;6183:1;6172:13;;5554:637;-1:-1:-1;;;;5554:637:1:o;6404:488::-;-1:-1:-1;;;;;6673:15:1;;;6655:34;;6725:15;;6720:2;6705:18;;6698:43;6772:2;6757:18;;6750:34;;;6820:3;6815:2;6800:18;;6793:31;;;6598:4;;6841:45;;6866:19;;6858:6;6841:45;:::i;:::-;6833:53;6404:488;-1:-1:-1;;;;;;6404:488:1:o;7271:219::-;7420:2;7409:9;7402:21;7383:4;7440:44;7480:2;7469:9;7465:18;7457:6;7440:44;:::i;9760:356::-;9962:2;9944:21;;;9981:18;;;9974:30;10040:34;10035:2;10020:18;;10013:62;10107:2;10092:18;;9760:356::o;11070:275::-;11141:2;11135:9;11206:2;11187:13;;-1:-1:-1;;11183:27:1;11171:40;;11241:18;11226:34;;11262:22;;;11223:62;11220:88;;;11288:18;;:::i;:::-;11324:2;11317:22;11070:275;;-1:-1:-1;11070:275:1:o;11350:128::-;11390:3;11421:1;11417:6;11414:1;11411:13;11408:39;;;11427:18;;:::i;:::-;-1:-1:-1;11463:9:1;;11350:128::o;11483:120::-;11523:1;11549;11539:35;;11554:18;;:::i;:::-;-1:-1:-1;11588:9:1;;11483:120::o;11608:168::-;11648:7;11714:1;11710;11706:6;11702:14;11699:1;11696:21;11691:1;11684:9;11677:17;11673:45;11670:71;;;11721:18;;:::i;:::-;-1:-1:-1;11761:9:1;;11608:168::o;11781:125::-;11821:4;11849:1;11846;11843:8;11840:34;;;11854:18;;:::i;:::-;-1:-1:-1;11891:9:1;;11781:125::o;11911:258::-;11983:1;11993:113;12007:6;12004:1;12001:13;11993:113;;;12083:11;;;12077:18;12064:11;;;12057:39;12029:2;12022:10;11993:113;;;12124:6;12121:1;12118:13;12115:48;;;-1:-1:-1;;12159:1:1;12141:16;;12134:27;11911:258::o;12174:380::-;12253:1;12249:12;;;;12296;;;12317:61;;12371:4;12363:6;12359:17;12349:27;;12317:61;12424:2;12416:6;12413:14;12393:18;12390:38;12387:161;;;12470:10;12465:3;12461:20;12458:1;12451:31;12505:4;12502:1;12495:15;12533:4;12530:1;12523:15;12387:161;;12174:380;;;:::o;12559:135::-;12598:3;-1:-1:-1;;12619:17:1;;12616:43;;;12639:18;;:::i;:::-;-1:-1:-1;12686:1:1;12675:13;;12559:135::o;12699:112::-;12731:1;12757;12747:35;;12762:18;;:::i;:::-;-1:-1:-1;12796:9:1;;12699:112::o;12816:127::-;12877:10;12872:3;12868:20;12865:1;12858:31;12908:4;12905:1;12898:15;12932:4;12929:1;12922:15;12948:127;13009:10;13004:3;13000:20;12997:1;12990:31;13040:4;13037:1;13030:15;13064:4;13061:1;13054:15;13080:127;13141:10;13136:3;13132:20;13129:1;13122:31;13172:4;13169:1;13162:15;13196:4;13193:1;13186:15;13212:127;13273:10;13268:3;13264:20;13261:1;13254:31;13304:4;13301:1;13294:15;13328:4;13325:1;13318:15;13344:131;-1:-1:-1;;;;;;13418:32:1;;13408:43;;13398:71;;13465:1;13462;13455:12

Swarm Source

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