ETH Price: $3,254.06 (+2.44%)
Gas: 2 Gwei

Token

TheVerdyct (VERDYCT)
 

Overview

Max Total Supply

465 VERDYCT

Holders

338

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 VERDYCT
0xfe5fc6c54468ca265c2e17a164788f7a36f2ce05
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:
TheVerdyct

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

// 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 TheVerdyct is ERC721A, Ownable {
    bytes32 public root;
	using Strings for uint;

	uint public constant PUBLIC_MINT_PRICE = 0.00969 ether;
	uint public constant WL_MINT_PRICE = 0.009 ether;
	uint public constant MAX_NFT_PER_TRAN = 3;
    uint public constant MAX_PER_WALLET = 100;
    uint public MAX_FREE_MINT = 1;
	uint public maxSupply = 5000;

	bool public isPublicMint = false;
    bool public isWhitelistMint = false;
    bool public isMetadataFinal;
    string private _baseURL;
	string public prerevealURL = "ipfs://bafybeigl2iqnrnwnhgr3nkrw5mklhjkqmeuoqhaeda2p5gnjvohrxuvhfi/unrevealed.json";
	mapping(address => uint) private _walletMintedCount;
	mapping(address => uint) private _freeMintedCount;

    // Name
	constructor()
	ERC721A('TheVerdyct', 'VERDYCT') {
    }

	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 setPrereveal(string memory url) external onlyOwner {
		prerevealURL = 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;

        //Dev Wallet
        address _wallet1 = 0x52a3b74b0C0607BE3BB1Ca09dC3d2aE3081746e6;
        uint _payable1 = balance * 40 / 100; // 40%
        payable(_wallet1).transfer(_payable1);

        //Founder Wallet
        address _wallet2 = 0xD2d9B8a80997c335CE8980a8da015036C3e7d331;
        uint _payable2 = balance * 60 / 100; // 60%
        payable(_wallet2).transfer(_payable2);
    }

    // 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 publicMint(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');

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

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

    function whitelistMint(uint count, bytes32[] memory proof) external payable {
		require(isWhitelistMint, "Whitelist mint has not started");
        require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "You are not on the allowlist");
		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');

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

		_walletMintedCount[msg.sender] += count;
		_safeMint(msg.sender, count);
	}
  
    function freeClaim(bytes32[] memory proof) public  {

        uint count = 1;
        uint freeSoFar = _freeMintedCount[msg.sender];

		require(isWhitelistMint, "Whitelist mint has not started");  
        require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "You are not on the allowlist");
		require(freeSoFar < MAX_FREE_MINT, "You have already claimed your free NFT");
		require(_totalMinted() + count <= maxSupply,'Exceeds max supply');
        require(_walletMintedCount[msg.sender] + count <= MAX_PER_WALLET,'Exceeds max per wallet');

		_freeMintedCount[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":"PUBLIC_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_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":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"count","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"string","name":"url","type":"string"}],"name":"setPrereveal","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":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6001600a55611388600b55600c805461ffff191690556101006040526052608081815290620028c360a03980516200004091600e9160209091019062000121565b503480156200004e57600080fd5b50604080518082018252600a815269151a1955995c991e58dd60b21b602080830191825283518085019094526007845266159154911650d560ca1b908401528151919291620000a09160029162000121565b508051620000b690600390602084019062000121565b5050600160005550620000c933620000cf565b62000204565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012f90620001c7565b90600052602060002090601f0160209004810192826200015357600085556200019e565b82601f106200016e57805160ff19168380011785556200019e565b828001600101855582156200019e579182015b828111156200019e57825182559160200191906001019062000181565b50620001ac929150620001b0565b5090565b5b80821115620001ac5760008155600101620001b1565b600181811c90821680620001dc57607f821691505b60208210811415620001fe57634e487b7160e01b600052602260045260246000fd5b50919050565b6126af80620002146000396000f3fe6080604052600436106102675760003560e01c806388089f0b11610144578063d2cab056116100b6578063e8a3d4851161007a578063e8a3d485146106e5578063e985e9c514610706578063ebf0c7171461074f578063f2fde38b14610765578063f4a560a514610785578063fddcb5ea1461079a57600080fd5b8063d2cab05614610672578063d5abeb0114610685578063d82104821461069b578063dab5f340146106b0578063e193e7e2146106d057600080fd5b8063b0ea180211610108578063b0ea1802146105b3578063b88d4fde146105d3578063b8a20ed0146105f3578063c48156af14610613578063c754da3314610633578063c87b56dd1461065257600080fd5b806388089f0b146105255780638da5cb5b1461054057806395d89b411461055e578063a22cb46514610573578063aafecbc01461059357600080fd5b80633057931f116101dd5780636352211e116101a15780636352211e146104755780636bde26271461049557806370a08231146104b0578063715018a6146104d057806380623444146104e557806386ffb1bb1461050557600080fd5b80633057931f146103f05780633ccfd60b1461040a57806341cda2031461041f57806342842e0e146104355780634c2612471461045557600080fd5b80630de76de41161022f5780630de76de41461033d5780630f2cdd6c1461035d57806318160ddd146103805780631df0bb8a1461039d57806323b872dd146103bd5780632db11544146103dd57600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780630a00ae831461031d575b600080fd5b34801561027857600080fd5b5061028c61028736600461224c565b6107d0565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610822565b60405161029891906123bc565b3480156102cf57600080fd5b506102e36102de366004612233565b6108b4565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612176565b6108f8565b005b34801561032957600080fd5b5061031b610338366004612233565b61097f565b34801561034957600080fd5b50600c5461028c9062010000900460ff1681565b34801561036957600080fd5b50610372606481565b604051908152602001610298565b34801561038c57600080fd5b506001546000540360001901610372565b3480156103a957600080fd5b5061031b6103b8366004612218565b6109b7565b3480156103c957600080fd5b5061031b6103d8366004612095565b6109fb565b61031b6103eb366004612233565b610a06565b3480156103fc57600080fd5b50600c5461028c9060ff1681565b34801561041657600080fd5b5061031b610b50565b34801561042b57600080fd5b50610372600a5481565b34801561044157600080fd5b5061031b610450366004612095565b610c52565b34801561046157600080fd5b5061031b610470366004612286565b610c6d565b34801561048157600080fd5b506102e3610490366004612233565b610cff565b3480156104a157600080fd5b5061037266226d00efdfa00081565b3480156104bc57600080fd5b506103726104cb366004612047565b610d11565b3480156104dc57600080fd5b5061031b610d5f565b3480156104f157600080fd5b5061031b610500366004612233565b610d95565b34801561051157600080fd5b5061031b610520366004612286565b610dc4565b34801561053157600080fd5b50610372661ff973cafa800081565b34801561054c57600080fd5b506008546001600160a01b03166102e3565b34801561056a57600080fd5b506102b6610e01565b34801561057f57600080fd5b5061031b61058e36600461214c565b610e10565b34801561059f57600080fd5b5061031b6105ae3660046121a0565b610ea6565b3480156105bf57600080fd5b5061031b6105ce366004612176565b6110a1565b3480156105df57600080fd5b5061031b6105ee3660046120d1565b61110e565b3480156105ff57600080fd5b5061028c61060e3660046121d4565b611158565b34801561061f57600080fd5b5061031b61062e366004612218565b61116e565b34801561063f57600080fd5b50600c5461028c90610100900460ff1681565b34801561065e57600080fd5b506102b661066d366004612233565b6111ab565b61031b6106803660046122ce565b6112f1565b34801561069157600080fd5b50610372600b5481565b3480156106a757600080fd5b506102b66114b2565b3480156106bc57600080fd5b5061031b6106cb366004612233565b611540565b3480156106dc57600080fd5b50610372600381565b3480156106f157600080fd5b506040805160208101909152600081526102b6565b34801561071257600080fd5b5061028c610721366004612062565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561075b57600080fd5b5061037260095481565b34801561077157600080fd5b5061031b610780366004612047565b61156f565b34801561079157600080fd5b5061031b611607565b3480156107a657600080fd5b506103726107b5366004612047565b6001600160a01b03166000908152600f602052604090205490565b60006001600160e01b031982166380ac58cd60e01b148061080157506001600160e01b03198216635b5e139f60e01b145b8061081c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610831906125a1565b80601f016020809104026020016040519081016040528092919081815260200182805461085d906125a1565b80156108aa5780601f1061087f576101008083540402835291602001916108aa565b820191906000526020600020905b81548152906001019060200180831161088d57829003601f168201915b5050505050905090565b60006108bf82611644565b6108dc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090382610cff565b9050806001600160a01b0316836001600160a01b031614156109385760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461096f576109528133610721565b61096f576040516367d9dca160e11b815260040160405180910390fd5b61097a83838361167d565b505050565b6008546001600160a01b031633146109b25760405162461bcd60e51b81526004016109a99061247e565b60405180910390fd5b600a55565b6008546001600160a01b031633146109e15760405162461bcd60e51b81526004016109a99061247e565b600c80549115156101000261ff0019909216919091179055565b61097a8383836116d9565b600c5460ff16610a585760405162461bcd60e51b815260206004820152601b60248201527f5075626c6963206d696e7420686173206e6f742073746172746564000000000060448201526064016109a9565b6003811115610a795760405162461bcd60e51b81526004016109a9906123cf565b600b5481610a8a6000546000190190565b610a949190612513565b1115610ab25760405162461bcd60e51b81526004016109a990612410565b336000908152600f6020526040902054606490610ad0908390612513565b1115610aee5760405162461bcd60e51b81526004016109a9906124b3565b610aff66226d00efdfa0008261253f565b341015610b1e5760405162461bcd60e51b81526004016109a99061243c565b336000908152600f602052604081208054839290610b3d908490612513565b90915550610b4d905033826118c6565b50565b6008546001600160a01b03163314610b7a5760405162461bcd60e51b81526004016109a99061247e565b477352a3b74b0c0607be3bb1ca09dc3d2ae3081746e660006064610b9f84602861253f565b610ba9919061252b565b6040519091506001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610be2573d6000803e3d6000fd5b5073d2d9b8a80997c335ce8980a8da015036c3e7d33160006064610c0786603c61253f565b610c11919061252b565b6040519091506001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610c4a573d6000803e3d6000fd5b505050505050565b61097a8383836040518060200160405280600081525061110e565b6008546001600160a01b03163314610c975760405162461bcd60e51b81526004016109a99061247e565b600c5462010000900460ff1615610ce85760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b60448201526064016109a9565b8051610cfb90600d906020840190611ea6565b5050565b6000610d0a826118e0565b5192915050565b60006001600160a01b038216610d3a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610d895760405162461bcd60e51b81526004016109a99061247e565b610d936000611a02565b565b6008546001600160a01b03163314610dbf5760405162461bcd60e51b81526004016109a99061247e565b600b55565b6008546001600160a01b03163314610dee5760405162461bcd60e51b81526004016109a99061247e565b8051610cfb90600e906020840190611ea6565b606060038054610831906125a1565b6001600160a01b038216331415610e3a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b33600090815260106020526040902054600c5460019190610100900460ff16610f115760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f742073746172746564000060448201526064016109a9565b6040516bffffffffffffffffffffffff193360601b166020820152610f519084906034015b60405160208183030381529060405280519060200120611158565b610f9d5760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e2074686520616c6c6f776c6973740000000060448201526064016109a9565b600a548110610ffd5760405162461bcd60e51b815260206004820152602660248201527f596f75206861766520616c726561647920636c61696d656420796f757220667260448201526519594813919560d21b60648201526084016109a9565b600b548261100e6000546000190190565b6110189190612513565b11156110365760405162461bcd60e51b81526004016109a990612410565b336000908152600f6020526040902054606490611054908490612513565b11156110725760405162461bcd60e51b81526004016109a9906124b3565b3360009081526010602052604081208054849290611091908490612513565b9091555061097a905033836118c6565b6008546001600160a01b031633146110cb5760405162461bcd60e51b81526004016109a99061247e565b600b54816110dc6000546000190190565b6110e69190612513565b11156111045760405162461bcd60e51b81526004016109a990612410565b610cfb82826118c6565b6111198484846116d9565b6001600160a01b0383163b156111525761113584848484611a54565b611152576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60006111678360095484611b4c565b9392505050565b6008546001600160a01b031633146111985760405162461bcd60e51b81526004016109a99061247e565b600c805460ff1916911515919091179055565b60606111b682611644565b61121a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a9565b6000611224611b62565b51116112ba57600e8054611237906125a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611263906125a1565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b505050505061081c565b6112c2611b62565b6112cb83611b71565b6040516020016112dc929190612340565b60405160208183030381529060405292915050565b600c54610100900460ff166113485760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f742073746172746564000060448201526064016109a9565b6040516bffffffffffffffffffffffff193360601b166020820152611371908290603401610f36565b6113bd5760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e2074686520616c6c6f776c6973740000000060448201526064016109a9565b60038211156113de5760405162461bcd60e51b81526004016109a9906123cf565b600b54826113ef6000546000190190565b6113f99190612513565b11156114175760405162461bcd60e51b81526004016109a990612410565b336000908152600f6020526040902054606490611435908490612513565b11156114535760405162461bcd60e51b81526004016109a9906124b3565b611464661ff973cafa80008361253f565b3410156114835760405162461bcd60e51b81526004016109a99061243c565b336000908152600f6020526040812080548492906114a2908490612513565b90915550610cfb905033836118c6565b600e80546114bf906125a1565b80601f01602080910402602001604051908101604052809291908181526020018280546114eb906125a1565b80156115385780601f1061150d57610100808354040283529160200191611538565b820191906000526020600020905b81548152906001019060200180831161151b57829003601f168201915b505050505081565b6008546001600160a01b0316331461156a5760405162461bcd60e51b81526004016109a99061247e565b600955565b6008546001600160a01b031633146115995760405162461bcd60e51b81526004016109a99061247e565b6001600160a01b0381166115fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a9565b610b4d81611a02565b6008546001600160a01b031633146116315760405162461bcd60e51b81526004016109a99061247e565b600c805462ff0000191662010000179055565b600081600111158015611658575060005482105b801561081c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116e4826118e0565b9050836001600160a01b031681600001516001600160a01b03161461171b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061173957506117398533610721565b80611754575033611749846108b4565b6001600160a01b0316145b90508061177457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661179b57604051633a954ecd60e21b815260040160405180910390fd5b6117a76000848761167d565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661187b57600054821461187b57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610cfb828260405180602001604052806000815250611c6e565b604080516060810182526000808252602082018190529181019190915281806001116119e9576000548110156119e957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119e75780516001600160a01b03161561197e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156119e2579392505050565b61197e565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a8990339089908890889060040161237f565b602060405180830381600087803b158015611aa357600080fd5b505af1925050508015611ad3575060408051601f3d908101601f19168201909252611ad091810190612269565b60015b611b2e573d808015611b01576040519150601f19603f3d011682016040523d82523d6000602084013e611b06565b606091505b508051611b26576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600082611b598584611e32565b14949350505050565b6060600d8054610831906125a1565b606081611b955750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bbf5780611ba9816125dc565b9150611bb89050600a8361252b565b9150611b99565b6000816001600160401b03811115611bd957611bd961264d565b6040519080825280601f01601f191660200182016040528015611c03576020820181803683370190505b5090505b8415611b4457611c1860018361255e565b9150611c25600a866125f7565b611c30906030612513565b60f81b818381518110611c4557611c45612637565b60200101906001600160f81b031916908160001a905350611c67600a8661252b565b9450611c07565b6000546001600160a01b038416611c9757604051622e076360e81b815260040160405180910390fd5b82611cb55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611ddd575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611da66000878480600101955087611a54565b611dc3576040516368d2bf6b60e11b815260040160405180910390fd5b808210611d5b578260005414611dd857600080fd5b611e22565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611dde575b5060009081556111529085838684565b600081815b8451811015611e9e576000858281518110611e5457611e54612637565b60200260200101519050808311611e7a5760008381526020829052604090209250611e8b565b600081815260208490526040902092505b5080611e96816125dc565b915050611e37565b509392505050565b828054611eb2906125a1565b90600052602060002090601f016020900481019282611ed45760008555611f1a565b82601f10611eed57805160ff1916838001178555611f1a565b82800160010185558215611f1a579182015b82811115611f1a578251825591602001919060010190611eff565b50611f26929150611f2a565b5090565b5b80821115611f265760008155600101611f2b565b60006001600160401b03831115611f5857611f5861264d565b611f6b601f8401601f19166020016124e3565b9050828152838383011115611f7f57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611fad57600080fd5b919050565b600082601f830112611fc357600080fd5b813560206001600160401b03821115611fde57611fde61264d565b8160051b611fed8282016124e3565b83815282810190868401838801850189101561200857600080fd5b600093505b8584101561202b57803583526001939093019291840191840161200d565b50979650505050505050565b80358015158114611fad57600080fd5b60006020828403121561205957600080fd5b61116782611f96565b6000806040838503121561207557600080fd5b61207e83611f96565b915061208c60208401611f96565b90509250929050565b6000806000606084860312156120aa57600080fd5b6120b384611f96565b92506120c160208501611f96565b9150604084013590509250925092565b600080600080608085870312156120e757600080fd5b6120f085611f96565b93506120fe60208601611f96565b92506040850135915060608501356001600160401b0381111561212057600080fd5b8501601f8101871361213157600080fd5b61214087823560208401611f3f565b91505092959194509250565b6000806040838503121561215f57600080fd5b61216883611f96565b915061208c60208401612037565b6000806040838503121561218957600080fd5b61219283611f96565b946020939093013593505050565b6000602082840312156121b257600080fd5b81356001600160401b038111156121c857600080fd5b611b4484828501611fb2565b600080604083850312156121e757600080fd5b82356001600160401b038111156121fd57600080fd5b61220985828601611fb2565b95602094909401359450505050565b60006020828403121561222a57600080fd5b61116782612037565b60006020828403121561224557600080fd5b5035919050565b60006020828403121561225e57600080fd5b813561116781612663565b60006020828403121561227b57600080fd5b815161116781612663565b60006020828403121561229857600080fd5b81356001600160401b038111156122ae57600080fd5b8201601f810184136122bf57600080fd5b611b4484823560208401611f3f565b600080604083850312156122e157600080fd5b8235915060208301356001600160401b038111156122fe57600080fd5b61230a85828601611fb2565b9150509250929050565b6000815180845261232c816020860160208601612575565b601f01601f19169290920160200192915050565b60008351612352818460208801612575565b835190830190612366818360208801612575565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123b290830184612314565b9695505050505050565b6020815260006111676020830184612314565b60208082526021908201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696040820152601d60fa1b606082015260800190565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b60208082526022908201527f45746865722076616c75652073656e74206973206e6f742073756666696369656040820152611b9d60f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260169082015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561250b5761250b61264d565b604052919050565b600082198211156125265761252661260b565b500190565b60008261253a5761253a612621565b500490565b60008160001904831182151516156125595761255961260b565b500290565b6000828210156125705761257061260b565b500390565b60005b83811015612590578181015183820152602001612578565b838111156111525750506000910152565b600181811c908216806125b557607f821691505b602082108114156125d657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125f0576125f061260b565b5060010190565b60008261260657612606612621565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b4d57600080fdfea2646970667358221220df124cdc5026e1886b4dcaa58a4a65246d3378d43b8258143d4866f1f0cea50a64736f6c63430008070033697066733a2f2f62616679626569676c3269716e726e776e686772336e6b7277356d6b6c686a6b716d65756f716861656461327035676e6a766f68727875766866692f756e72657665616c65642e6a736f6e

Deployed Bytecode

0x6080604052600436106102675760003560e01c806388089f0b11610144578063d2cab056116100b6578063e8a3d4851161007a578063e8a3d485146106e5578063e985e9c514610706578063ebf0c7171461074f578063f2fde38b14610765578063f4a560a514610785578063fddcb5ea1461079a57600080fd5b8063d2cab05614610672578063d5abeb0114610685578063d82104821461069b578063dab5f340146106b0578063e193e7e2146106d057600080fd5b8063b0ea180211610108578063b0ea1802146105b3578063b88d4fde146105d3578063b8a20ed0146105f3578063c48156af14610613578063c754da3314610633578063c87b56dd1461065257600080fd5b806388089f0b146105255780638da5cb5b1461054057806395d89b411461055e578063a22cb46514610573578063aafecbc01461059357600080fd5b80633057931f116101dd5780636352211e116101a15780636352211e146104755780636bde26271461049557806370a08231146104b0578063715018a6146104d057806380623444146104e557806386ffb1bb1461050557600080fd5b80633057931f146103f05780633ccfd60b1461040a57806341cda2031461041f57806342842e0e146104355780634c2612471461045557600080fd5b80630de76de41161022f5780630de76de41461033d5780630f2cdd6c1461035d57806318160ddd146103805780631df0bb8a1461039d57806323b872dd146103bd5780632db11544146103dd57600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780630a00ae831461031d575b600080fd5b34801561027857600080fd5b5061028c61028736600461224c565b6107d0565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610822565b60405161029891906123bc565b3480156102cf57600080fd5b506102e36102de366004612233565b6108b4565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612176565b6108f8565b005b34801561032957600080fd5b5061031b610338366004612233565b61097f565b34801561034957600080fd5b50600c5461028c9062010000900460ff1681565b34801561036957600080fd5b50610372606481565b604051908152602001610298565b34801561038c57600080fd5b506001546000540360001901610372565b3480156103a957600080fd5b5061031b6103b8366004612218565b6109b7565b3480156103c957600080fd5b5061031b6103d8366004612095565b6109fb565b61031b6103eb366004612233565b610a06565b3480156103fc57600080fd5b50600c5461028c9060ff1681565b34801561041657600080fd5b5061031b610b50565b34801561042b57600080fd5b50610372600a5481565b34801561044157600080fd5b5061031b610450366004612095565b610c52565b34801561046157600080fd5b5061031b610470366004612286565b610c6d565b34801561048157600080fd5b506102e3610490366004612233565b610cff565b3480156104a157600080fd5b5061037266226d00efdfa00081565b3480156104bc57600080fd5b506103726104cb366004612047565b610d11565b3480156104dc57600080fd5b5061031b610d5f565b3480156104f157600080fd5b5061031b610500366004612233565b610d95565b34801561051157600080fd5b5061031b610520366004612286565b610dc4565b34801561053157600080fd5b50610372661ff973cafa800081565b34801561054c57600080fd5b506008546001600160a01b03166102e3565b34801561056a57600080fd5b506102b6610e01565b34801561057f57600080fd5b5061031b61058e36600461214c565b610e10565b34801561059f57600080fd5b5061031b6105ae3660046121a0565b610ea6565b3480156105bf57600080fd5b5061031b6105ce366004612176565b6110a1565b3480156105df57600080fd5b5061031b6105ee3660046120d1565b61110e565b3480156105ff57600080fd5b5061028c61060e3660046121d4565b611158565b34801561061f57600080fd5b5061031b61062e366004612218565b61116e565b34801561063f57600080fd5b50600c5461028c90610100900460ff1681565b34801561065e57600080fd5b506102b661066d366004612233565b6111ab565b61031b6106803660046122ce565b6112f1565b34801561069157600080fd5b50610372600b5481565b3480156106a757600080fd5b506102b66114b2565b3480156106bc57600080fd5b5061031b6106cb366004612233565b611540565b3480156106dc57600080fd5b50610372600381565b3480156106f157600080fd5b506040805160208101909152600081526102b6565b34801561071257600080fd5b5061028c610721366004612062565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561075b57600080fd5b5061037260095481565b34801561077157600080fd5b5061031b610780366004612047565b61156f565b34801561079157600080fd5b5061031b611607565b3480156107a657600080fd5b506103726107b5366004612047565b6001600160a01b03166000908152600f602052604090205490565b60006001600160e01b031982166380ac58cd60e01b148061080157506001600160e01b03198216635b5e139f60e01b145b8061081c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610831906125a1565b80601f016020809104026020016040519081016040528092919081815260200182805461085d906125a1565b80156108aa5780601f1061087f576101008083540402835291602001916108aa565b820191906000526020600020905b81548152906001019060200180831161088d57829003601f168201915b5050505050905090565b60006108bf82611644565b6108dc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090382610cff565b9050806001600160a01b0316836001600160a01b031614156109385760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461096f576109528133610721565b61096f576040516367d9dca160e11b815260040160405180910390fd5b61097a83838361167d565b505050565b6008546001600160a01b031633146109b25760405162461bcd60e51b81526004016109a99061247e565b60405180910390fd5b600a55565b6008546001600160a01b031633146109e15760405162461bcd60e51b81526004016109a99061247e565b600c80549115156101000261ff0019909216919091179055565b61097a8383836116d9565b600c5460ff16610a585760405162461bcd60e51b815260206004820152601b60248201527f5075626c6963206d696e7420686173206e6f742073746172746564000000000060448201526064016109a9565b6003811115610a795760405162461bcd60e51b81526004016109a9906123cf565b600b5481610a8a6000546000190190565b610a949190612513565b1115610ab25760405162461bcd60e51b81526004016109a990612410565b336000908152600f6020526040902054606490610ad0908390612513565b1115610aee5760405162461bcd60e51b81526004016109a9906124b3565b610aff66226d00efdfa0008261253f565b341015610b1e5760405162461bcd60e51b81526004016109a99061243c565b336000908152600f602052604081208054839290610b3d908490612513565b90915550610b4d905033826118c6565b50565b6008546001600160a01b03163314610b7a5760405162461bcd60e51b81526004016109a99061247e565b477352a3b74b0c0607be3bb1ca09dc3d2ae3081746e660006064610b9f84602861253f565b610ba9919061252b565b6040519091506001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610be2573d6000803e3d6000fd5b5073d2d9b8a80997c335ce8980a8da015036c3e7d33160006064610c0786603c61253f565b610c11919061252b565b6040519091506001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610c4a573d6000803e3d6000fd5b505050505050565b61097a8383836040518060200160405280600081525061110e565b6008546001600160a01b03163314610c975760405162461bcd60e51b81526004016109a99061247e565b600c5462010000900460ff1615610ce85760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b60448201526064016109a9565b8051610cfb90600d906020840190611ea6565b5050565b6000610d0a826118e0565b5192915050565b60006001600160a01b038216610d3a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610d895760405162461bcd60e51b81526004016109a99061247e565b610d936000611a02565b565b6008546001600160a01b03163314610dbf5760405162461bcd60e51b81526004016109a99061247e565b600b55565b6008546001600160a01b03163314610dee5760405162461bcd60e51b81526004016109a99061247e565b8051610cfb90600e906020840190611ea6565b606060038054610831906125a1565b6001600160a01b038216331415610e3a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b33600090815260106020526040902054600c5460019190610100900460ff16610f115760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f742073746172746564000060448201526064016109a9565b6040516bffffffffffffffffffffffff193360601b166020820152610f519084906034015b60405160208183030381529060405280519060200120611158565b610f9d5760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e2074686520616c6c6f776c6973740000000060448201526064016109a9565b600a548110610ffd5760405162461bcd60e51b815260206004820152602660248201527f596f75206861766520616c726561647920636c61696d656420796f757220667260448201526519594813919560d21b60648201526084016109a9565b600b548261100e6000546000190190565b6110189190612513565b11156110365760405162461bcd60e51b81526004016109a990612410565b336000908152600f6020526040902054606490611054908490612513565b11156110725760405162461bcd60e51b81526004016109a9906124b3565b3360009081526010602052604081208054849290611091908490612513565b9091555061097a905033836118c6565b6008546001600160a01b031633146110cb5760405162461bcd60e51b81526004016109a99061247e565b600b54816110dc6000546000190190565b6110e69190612513565b11156111045760405162461bcd60e51b81526004016109a990612410565b610cfb82826118c6565b6111198484846116d9565b6001600160a01b0383163b156111525761113584848484611a54565b611152576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60006111678360095484611b4c565b9392505050565b6008546001600160a01b031633146111985760405162461bcd60e51b81526004016109a99061247e565b600c805460ff1916911515919091179055565b60606111b682611644565b61121a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a9565b6000611224611b62565b51116112ba57600e8054611237906125a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611263906125a1565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b505050505061081c565b6112c2611b62565b6112cb83611b71565b6040516020016112dc929190612340565b60405160208183030381529060405292915050565b600c54610100900460ff166113485760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f742073746172746564000060448201526064016109a9565b6040516bffffffffffffffffffffffff193360601b166020820152611371908290603401610f36565b6113bd5760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e2074686520616c6c6f776c6973740000000060448201526064016109a9565b60038211156113de5760405162461bcd60e51b81526004016109a9906123cf565b600b54826113ef6000546000190190565b6113f99190612513565b11156114175760405162461bcd60e51b81526004016109a990612410565b336000908152600f6020526040902054606490611435908490612513565b11156114535760405162461bcd60e51b81526004016109a9906124b3565b611464661ff973cafa80008361253f565b3410156114835760405162461bcd60e51b81526004016109a99061243c565b336000908152600f6020526040812080548492906114a2908490612513565b90915550610cfb905033836118c6565b600e80546114bf906125a1565b80601f01602080910402602001604051908101604052809291908181526020018280546114eb906125a1565b80156115385780601f1061150d57610100808354040283529160200191611538565b820191906000526020600020905b81548152906001019060200180831161151b57829003601f168201915b505050505081565b6008546001600160a01b0316331461156a5760405162461bcd60e51b81526004016109a99061247e565b600955565b6008546001600160a01b031633146115995760405162461bcd60e51b81526004016109a99061247e565b6001600160a01b0381166115fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a9565b610b4d81611a02565b6008546001600160a01b031633146116315760405162461bcd60e51b81526004016109a99061247e565b600c805462ff0000191662010000179055565b600081600111158015611658575060005482105b801561081c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116e4826118e0565b9050836001600160a01b031681600001516001600160a01b03161461171b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061173957506117398533610721565b80611754575033611749846108b4565b6001600160a01b0316145b90508061177457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661179b57604051633a954ecd60e21b815260040160405180910390fd5b6117a76000848761167d565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661187b57600054821461187b57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610cfb828260405180602001604052806000815250611c6e565b604080516060810182526000808252602082018190529181019190915281806001116119e9576000548110156119e957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119e75780516001600160a01b03161561197e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156119e2579392505050565b61197e565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a8990339089908890889060040161237f565b602060405180830381600087803b158015611aa357600080fd5b505af1925050508015611ad3575060408051601f3d908101601f19168201909252611ad091810190612269565b60015b611b2e573d808015611b01576040519150601f19603f3d011682016040523d82523d6000602084013e611b06565b606091505b508051611b26576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600082611b598584611e32565b14949350505050565b6060600d8054610831906125a1565b606081611b955750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bbf5780611ba9816125dc565b9150611bb89050600a8361252b565b9150611b99565b6000816001600160401b03811115611bd957611bd961264d565b6040519080825280601f01601f191660200182016040528015611c03576020820181803683370190505b5090505b8415611b4457611c1860018361255e565b9150611c25600a866125f7565b611c30906030612513565b60f81b818381518110611c4557611c45612637565b60200101906001600160f81b031916908160001a905350611c67600a8661252b565b9450611c07565b6000546001600160a01b038416611c9757604051622e076360e81b815260040160405180910390fd5b82611cb55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611ddd575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611da66000878480600101955087611a54565b611dc3576040516368d2bf6b60e11b815260040160405180910390fd5b808210611d5b578260005414611dd857600080fd5b611e22565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611dde575b5060009081556111529085838684565b600081815b8451811015611e9e576000858281518110611e5457611e54612637565b60200260200101519050808311611e7a5760008381526020829052604090209250611e8b565b600081815260208490526040902092505b5080611e96816125dc565b915050611e37565b509392505050565b828054611eb2906125a1565b90600052602060002090601f016020900481019282611ed45760008555611f1a565b82601f10611eed57805160ff1916838001178555611f1a565b82800160010185558215611f1a579182015b82811115611f1a578251825591602001919060010190611eff565b50611f26929150611f2a565b5090565b5b80821115611f265760008155600101611f2b565b60006001600160401b03831115611f5857611f5861264d565b611f6b601f8401601f19166020016124e3565b9050828152838383011115611f7f57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611fad57600080fd5b919050565b600082601f830112611fc357600080fd5b813560206001600160401b03821115611fde57611fde61264d565b8160051b611fed8282016124e3565b83815282810190868401838801850189101561200857600080fd5b600093505b8584101561202b57803583526001939093019291840191840161200d565b50979650505050505050565b80358015158114611fad57600080fd5b60006020828403121561205957600080fd5b61116782611f96565b6000806040838503121561207557600080fd5b61207e83611f96565b915061208c60208401611f96565b90509250929050565b6000806000606084860312156120aa57600080fd5b6120b384611f96565b92506120c160208501611f96565b9150604084013590509250925092565b600080600080608085870312156120e757600080fd5b6120f085611f96565b93506120fe60208601611f96565b92506040850135915060608501356001600160401b0381111561212057600080fd5b8501601f8101871361213157600080fd5b61214087823560208401611f3f565b91505092959194509250565b6000806040838503121561215f57600080fd5b61216883611f96565b915061208c60208401612037565b6000806040838503121561218957600080fd5b61219283611f96565b946020939093013593505050565b6000602082840312156121b257600080fd5b81356001600160401b038111156121c857600080fd5b611b4484828501611fb2565b600080604083850312156121e757600080fd5b82356001600160401b038111156121fd57600080fd5b61220985828601611fb2565b95602094909401359450505050565b60006020828403121561222a57600080fd5b61116782612037565b60006020828403121561224557600080fd5b5035919050565b60006020828403121561225e57600080fd5b813561116781612663565b60006020828403121561227b57600080fd5b815161116781612663565b60006020828403121561229857600080fd5b81356001600160401b038111156122ae57600080fd5b8201601f810184136122bf57600080fd5b611b4484823560208401611f3f565b600080604083850312156122e157600080fd5b8235915060208301356001600160401b038111156122fe57600080fd5b61230a85828601611fb2565b9150509250929050565b6000815180845261232c816020860160208601612575565b601f01601f19169290920160200192915050565b60008351612352818460208801612575565b835190830190612366818360208801612575565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123b290830184612314565b9695505050505050565b6020815260006111676020830184612314565b60208082526021908201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696040820152601d60fa1b606082015260800190565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b60208082526022908201527f45746865722076616c75652073656e74206973206e6f742073756666696369656040820152611b9d60f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260169082015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561250b5761250b61264d565b604052919050565b600082198211156125265761252661260b565b500190565b60008261253a5761253a612621565b500490565b60008160001904831182151516156125595761255961260b565b500290565b6000828210156125705761257061260b565b500390565b60005b83811015612590578181015183820152602001612578565b838111156111525750506000910152565b600181811c908216806125b557607f821691505b602082108114156125d657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125f0576125f061260b565b5060010190565b60008261260657612606612621565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b4d57600080fdfea2646970667358221220df124cdc5026e1886b4dcaa58a4a65246d3378d43b8258143d4866f1f0cea50a64736f6c63430008070033

Deployed Bytecode Sourcemap

49712:5275:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28333:305;;;;;;;;;;-1:-1:-1;28333:305:0;;;;;:::i;:::-;;:::i;:::-;;;8187:14:1;;8180:22;8162:41;;8150:2;8135:18;28333:305:0;;;;;;;;31448:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32952:204::-;;;;;;;;;;-1:-1:-1;32952:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7485:32:1;;;7467:51;;7455:2;7440:18;32952:204:0;7321:203:1;32514:372:0;;;;;;;;;;-1:-1:-1;32514:372:0;;;;;:::i;:::-;;:::i;:::-;;52497:101;;;;;;;;;;-1:-1:-1;52497:101:0;;;;;:::i;:::-;;:::i;50164:27::-;;;;;;;;;;-1:-1:-1;50164:27:0;;;;;;;;;;;49968:41;;;;;;;;;;;;50006:3;49968:41;;;;;8360:25:1;;;8348:2;8333:18;49968:41:0;8214:177:1;27573:312:0;;;;;;;;;;-1:-1:-1;50699:1:0;27836:12;27626:7;27820:13;:28;-1:-1:-1;;27820:46:0;27573:312;;51427:91;;;;;;;;;;-1:-1:-1;51427:91:0;;;;;:::i;:::-;;:::i;33817:170::-;;;;;;;;;;-1:-1:-1;33817:170:0;;;;;:::i;:::-;;:::i;53106:541::-;;;;;;:::i;:::-;;:::i;50083:32::-;;;;;;;;;;-1:-1:-1;50083:32:0;;;;;;;;51551:493;;;;;;;;;;;;;:::i;50016:29::-;;;;;;;;;;;;;;;;34058:185;;;;;;;;;;-1:-1:-1;34058:185:0;;;;;:::i;:::-;;:::i;50889:139::-;;;;;;;;;;-1:-1:-1;50889:139:0;;;;;:::i;:::-;;:::i;31256:125::-;;;;;;;;;;-1:-1:-1;31256:125:0;;;;;:::i;:::-;;:::i;49810:54::-;;;;;;;;;;;;49851:13;49810:54;;28702:206;;;;;;;;;;-1:-1:-1;28702:206:0;;;;;:::i;:::-;;:::i;48860:103::-;;;;;;;;;;;;;:::i;52395:94::-;;;;;;;;;;-1:-1:-1;52395:94:0;;;;;:::i;:::-;;:::i;51036:88::-;;;;;;;;;;-1:-1:-1;51036:88:0;;;;;:::i;:::-;;:::i;49868:48::-;;;;;;;;;;;;49905:11;49868:48;;48209:87;;;;;;;;;;-1:-1:-1;48282:6:0;;-1:-1:-1;;;;;48282:6:0;48209:87;;31617:104;;;;;;;;;;;;;:::i;33228:287::-;;;;;;;;;;-1:-1:-1;33228:287:0;;;;;:::i;:::-;;:::i;54342:642::-;;;;;;;;;;-1:-1:-1;54342:642:0;;;;;:::i;:::-;;:::i;52212:178::-;;;;;;;;;;-1:-1:-1;52212:178:0;;;;;:::i;:::-;;:::i;34314:370::-;;;;;;;;;;-1:-1:-1;34314:370:0;;;;;:::i;:::-;;:::i;52949:145::-;;;;;;;;;;-1:-1:-1;52949:145:0;;;;;:::i;:::-;;:::i;51334:85::-;;;;;;;;;;-1:-1:-1;51334:85:0;;;;;:::i;:::-;;:::i;50122:35::-;;;;;;;;;;-1:-1:-1;50122:35:0;;;;;;;;;;;52603:341;;;;;;;;;;-1:-1:-1;52603:341:0;;;;;:::i;:::-;;:::i;53655:677::-;;;;;;:::i;:::-;;:::i;50049:28::-;;;;;;;;;;;;;;;;50225:113;;;;;;;;;;;;;:::i;51256:73::-;;;;;;;;;;-1:-1:-1;51256:73:0;;;;;:::i;:::-;;:::i;49920:41::-;;;;;;;;;;;;49960:1;49920:41;;50710:78;;;;;;;;;;-1:-1:-1;50774:9:0;;;;;;;;;-1:-1:-1;50774:9:0;;50710:78;;33586:164;;;;;;;;;;-1:-1:-1;33586:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33707:25:0;;;33683:4;33707:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33586:164;49759:19;;;;;;;;;;;;;;;;49118:201;;;;;;;;;;-1:-1:-1;49118:201:0;;;;;:::i;:::-;;:::i;50796:88::-;;;;;;;;;;;;;:::i;51132:116::-;;;;;;;;;;-1:-1:-1;51132:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;51215:25:0;51191:4;51215:25;;;:18;:25;;;;;;;51132:116;28333:305;28435:4;-1:-1:-1;;;;;;28472:40:0;;-1:-1:-1;;;28472:40:0;;:105;;-1:-1:-1;;;;;;;28529:48:0;;-1:-1:-1;;;28529:48:0;28472:105;:158;;;-1:-1:-1;;;;;;;;;;15890:40:0;;;28594:36;28452:178;28333:305;-1:-1:-1;;28333:305:0:o;31448:100::-;31502:13;31535:5;31528:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31448:100;:::o;32952:204::-;33020:7;33045:16;33053:7;33045;:16::i;:::-;33040:64;;33070:34;;-1:-1:-1;;;33070:34:0;;;;;;;;;;;33040:64;-1:-1:-1;33124:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33124:24:0;;32952:204::o;32514:372::-;32587:13;32603:24;32619:7;32603:15;:24::i;:::-;32587:40;;32648:5;-1:-1:-1;;;;;32642:11:0;:2;-1:-1:-1;;;;;32642:11:0;;32638:48;;;32662:24;;-1:-1:-1;;;32662:24:0;;;;;;;;;;;32638:48;25350:10;-1:-1:-1;;;;;32703:21:0;;;32699:139;;32730:37;32747:5;25350:10;33586:164;:::i;32730:37::-;32726:112;;32791:35;;-1:-1:-1;;;32791:35:0;;;;;;;;;;;32726:112;32850:28;32859:2;32863:7;32872:5;32850:8;:28::i;:::-;32576:310;32514:372;;:::o;52497:101::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;;;;;;;;;52565:13:::1;:28:::0;52497:101::o;51427:91::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;51490:15:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;51490:23:0;;::::1;::::0;;;::::1;::::0;;51427:91::o;33817:170::-;33951:28;33961:4;33967:2;33971:7;33951:9;:28::i;53106:541::-;53168:12;;;;53160:52;;;;-1:-1:-1;;;53160:52:0;;10295:2:1;53160:52:0;;;10277:21:1;10334:2;10314:18;;;10307:30;10373:29;10353:18;;;10346:57;10420:18;;53160:52:0;10093:351:1;53160:52:0;49960:1;53225:5;:25;;53217:70;;;;-1:-1:-1;;;53217:70:0;;;;;;;:::i;:::-;53326:9;;53317:5;53300:14;28025:7;28211:13;-1:-1:-1;;28211:31:0;;27978:283;53300:14;:22;;;;:::i;:::-;:35;;53292:65;;;;-1:-1:-1;;;53292:65:0;;;;;;;:::i;:::-;53395:10;53376:30;;;;:18;:30;;;;;;50006:3;;53376:38;;53409:5;;53376:38;:::i;:::-;:56;;53368:90;;;;-1:-1:-1;;;53368:90:0;;;;;;;:::i;:::-;53491:25;49851:13;53491:5;:25;:::i;:::-;53478:9;:38;;53465:98;;;;-1:-1:-1;;;53465:98:0;;;;;;;:::i;:::-;53589:10;53570:30;;;;:18;:30;;;;;:39;;53604:5;;53570:30;:39;;53604:5;;53570:39;:::i;:::-;;;;-1:-1:-1;53614:28:0;;-1:-1:-1;53624:10:0;53636:5;53614:9;:28::i;:::-;53106:541;:::o;51551:493::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;51617:21:::1;51692:42;51599:15;51777:3;51762:12;51617:21:::0;51772:2:::1;51762:12;:::i;:::-;:18;;;;:::i;:::-;51798:37;::::0;51745:35;;-1:-1:-1;;;;;;51798:26:0;::::1;::::0;:37;::::1;;;::::0;51745:35;;51798:37:::1;::::0;;;51745:35;51798:26;:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;51893:42:0::1;51874:16;51978:3;51963:12;:7:::0;51973:2:::1;51963:12;:::i;:::-;:18;;;;:::i;:::-;51999:37;::::0;51946:35;;-1:-1:-1;;;;;;51999:26:0;::::1;::::0;:37;::::1;;;::::0;51946:35;;51999:37:::1;::::0;;;51946:35;51999:26;:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51588:456;;;;;51551:493::o:0;34058:185::-;34196:39;34213:4;34219:2;34223:7;34196:39;;;;;;;;;;;;:16;:39::i;50889:139::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;50963:15:::1;::::0;;;::::1;;;50962:16;50954:50;;;::::0;-1:-1:-1;;;50954:50:0;;8822:2:1;50954:50:0::1;::::0;::::1;8804:21:1::0;8861:2;8841:18;;;8834:30;-1:-1:-1;;;8880:18:1;;;8873:51;8941:18;;50954:50:0::1;8620:345:1::0;50954:50:0::1;51009:14:::0;;::::1;::::0;:8:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50889:139:::0;:::o;31256:125::-;31320:7;31347:21;31360:7;31347:12;:21::i;:::-;:26;;31256:125;-1:-1:-1;;31256:125:0:o;28702:206::-;28766:7;-1:-1:-1;;;;;28790:19:0;;28786:60;;28818:28;;-1:-1:-1;;;28818:28:0;;;;;;;;;;;28786:60;-1:-1:-1;;;;;;28872:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28872:27:0;;28702:206::o;48860:103::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;48925:30:::1;48952:1;48925:18;:30::i;:::-;48860:103::o:0;52395:94::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;52460:9:::1;:24:::0;52395:94::o;51036:88::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;51101:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;31617:104::-:0;31673:13;31706:7;31699:14;;;;;:::i;33228:287::-;-1:-1:-1;;;;;33327:24:0;;25350:10;33327:24;33323:54;;;33360:17;;-1:-1:-1;;;33360:17:0;;;;;;;;;;;33323:54;25350:10;33390:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33390:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33390:53:0;;;;;;;;;;33459:48;;8162:41:1;;;33390:42:0;;25350:10;33459:48;;8135:18:1;33459:48:0;;;;;;;33228:287;;:::o;54342:642::-;54465:10;54406;54448:28;;;:16;:28;;;;;;54491:15;;54419:1;;54448:28;54491:15;;;;;54483:58;;;;-1:-1:-1;;;54483:58:0;;9579:2:1;54483:58:0;;;9561:21:1;9618:2;9598:18;;;9591:30;9657:32;9637:18;;;9630:60;9707:18;;54483:58:0;9377:354:1;54483:58:0;54587:28;;-1:-1:-1;;54604:10:0;6594:2:1;6590:15;6586:53;54587:28:0;;;6574:66:1;54562:55:0;;54570:5;;6656:12:1;;54587:28:0;;;;;;;;;;;;;54577:39;;;;;;54562:7;:55::i;:::-;54554:96;;;;-1:-1:-1;;;54554:96:0;;9938:2:1;54554:96:0;;;9920:21:1;9977:2;9957:18;;;9950:30;10016;9996:18;;;9989:58;10064:18;;54554:96:0;9736:352:1;54554:96:0;54675:13;;54663:9;:25;54655:76;;;;-1:-1:-1;;;54655:76:0;;10651:2:1;54655:76:0;;;10633:21:1;10690:2;10670:18;;;10663:30;10729:34;10709:18;;;10702:62;-1:-1:-1;;;10780:18:1;;;10773:36;10826:19;;54655:76:0;10449:402:1;54655:76:0;54770:9;;54761:5;54744:14;28025:7;28211:13;-1:-1:-1;;28211:31:0;;27978:283;54744:14;:22;;;;:::i;:::-;:35;;54736:65;;;;-1:-1:-1;;;54736:65:0;;;;;;;:::i;:::-;54839:10;54820:30;;;;:18;:30;;;;;;50006:3;;54820:38;;54853:5;;54820:38;:::i;:::-;:56;;54812:90;;;;-1:-1:-1;;;54812:90:0;;;;;;;:::i;:::-;54926:10;54909:28;;;;:16;:28;;;;;:37;;54941:5;;54909:28;:37;;54941:5;;54909:37;:::i;:::-;;;;-1:-1:-1;54951:28:0;;-1:-1:-1;54961:10:0;54973:5;54951:9;:28::i;52212:178::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;52320:9:::1;;52311:5;52294:14;28025:7:::0;28211:13;-1:-1:-1;;28211:31:0;;27978:283;52294:14:::1;:22;;;;:::i;:::-;:35;;52281:79;;;;-1:-1:-1::0;;;52281:79:0::1;;;;;;;:::i;:::-;52365:20;52375:2;52379:5;52365:9;:20::i;34314:370::-:0;34481:28;34491:4;34497:2;34501:7;34481:9;:28::i;:::-;-1:-1:-1;;;;;34524:13:0;;5970:19;:23;34520:157;;34545:56;34576:4;34582:2;34586:7;34595:5;34545:30;:56::i;:::-;34541:136;;34625:40;;-1:-1:-1;;;34625:40:0;;;;;;;;;;;34541:136;34314:370;;;;:::o;52949:145::-;53025:4;53049:37;53068:5;53075:4;;53081;53049:18;:37::i;:::-;53042:44;52949:145;-1:-1:-1;;;52949:145:0:o;51334:85::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;51394:12:::1;:20:::0;;-1:-1:-1;;51394:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51334:85::o;52603:341::-;52677:13;52713:16;52721:7;52713;:16::i;:::-;52705:76;;;;-1:-1:-1;;;52705:76:0;;12571:2:1;52705:76:0;;;12553:21:1;12610:2;12590:18;;;12583:30;12649:34;12629:18;;;12622:62;-1:-1:-1;;;12700:18:1;;;12693:45;12755:19;;52705:76:0;12369:411:1;52705:76:0;52828:1;52807:10;:8;:10::i;:::-;52801:24;:28;:138;;52927:12;52801:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52870:10;:8;:10::i;:::-;52882:18;:7;:16;:18::i;:::-;52853:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52794:145;52603:341;-1:-1:-1;;52603:341:0:o;53655:677::-;53744:15;;;;;;;53736:58;;;;-1:-1:-1;;;53736:58:0;;9579:2:1;53736:58:0;;;9561:21:1;9618:2;9598:18;;;9591:30;9657:32;9637:18;;;9630:60;9707:18;;53736:58:0;9377:354:1;53736:58:0;53838:28;;-1:-1:-1;;53855:10:0;6594:2:1;6590:15;6586:53;53838:28:0;;;6574:66:1;53813:55:0;;53821:5;;6656:12:1;;53838:28:0;6445:229:1;53813:55:0;53805:96;;;;-1:-1:-1;;;53805:96:0;;9938:2:1;53805:96:0;;;9920:21:1;9977:2;9957:18;;;9950:30;10016;9996:18;;;9989:58;10064:18;;53805:96:0;9736:352:1;53805:96:0;49960:1;53914:5;:25;;53906:70;;;;-1:-1:-1;;;53906:70:0;;;;;;;:::i;:::-;54015:9;;54006:5;53989:14;28025:7;28211:13;-1:-1:-1;;28211:31:0;;27978:283;53989:14;:22;;;;:::i;:::-;:35;;53981:65;;;;-1:-1:-1;;;53981:65:0;;;;;;;:::i;:::-;54084:10;54065:30;;;;:18;:30;;;;;;50006:3;;54065:38;;54098:5;;54065:38;:::i;:::-;:56;;54057:90;;;;-1:-1:-1;;;54057:90:0;;;;;;;:::i;:::-;54180:21;49905:11;54180:5;:21;:::i;:::-;54167:9;:34;;54154:94;;;;-1:-1:-1;;;54154:94:0;;;;;;;:::i;:::-;54274:10;54255:30;;;;:18;:30;;;;;:39;;54289:5;;54255:30;:39;;54289:5;;54255:39;:::i;:::-;;;;-1:-1:-1;54299:28:0;;-1:-1:-1;54309:10:0;54321:5;54299:9;:28::i;50225:113::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51256:73::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;51312:4:::1;:12:::0;51256:73::o;49118:201::-;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49207:22:0;::::1;49199:73;;;::::0;-1:-1:-1;;;49199:73:0;;9172:2:1;49199:73:0::1;::::0;::::1;9154:21:1::0;9211:2;9191:18;;;9184:30;9250:34;9230:18;;;9223:62;-1:-1:-1;;;9301:18:1;;;9294:36;9347:19;;49199:73:0::1;8970:402:1::0;49199:73:0::1;49283:28;49302:8;49283:18;:28::i;50796:88::-:0;48282:6;;-1:-1:-1;;;;;48282:6:0;25350:10;48429:23;48421:68;;;;-1:-1:-1;;;48421:68:0;;;;;;;:::i;:::-;50854:15:::1;:22:::0;;-1:-1:-1;;50854:22:0::1;::::0;::::1;::::0;;50796:88::o;34939:174::-;34996:4;35039:7;50699:1;35020:26;;:53;;;;;35060:13;;35050:7;:23;35020:53;:85;;;;-1:-1:-1;;35078:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35078:27:0;;;;35077:28;;34939:174::o;44161:196::-;44276:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44276:29:0;-1:-1:-1;;;;;44276:29:0;;;;;;;;;44321:28;;44276:24;;44321:28;;;;;;;44161:196;;;:::o;39109:2130::-;39224:35;39262:21;39275:7;39262:12;:21::i;:::-;39224:59;;39322:4;-1:-1:-1;;;;;39300:26:0;:13;:18;;;-1:-1:-1;;;;;39300:26:0;;39296:67;;39335:28;;-1:-1:-1;;;39335:28:0;;;;;;;;;;;39296:67;39376:22;25350:10;-1:-1:-1;;;;;39402:20:0;;;;:73;;-1:-1:-1;39439:36:0;39456:4;25350:10;33586:164;:::i;39439:36::-;39402:126;;;-1:-1:-1;25350:10:0;39492:20;39504:7;39492:11;:20::i;:::-;-1:-1:-1;;;;;39492:36:0;;39402:126;39376:153;;39547:17;39542:66;;39573:35;;-1:-1:-1;;;39573:35:0;;;;;;;;;;;39542:66;-1:-1:-1;;;;;39623:16:0;;39619:52;;39648:23;;-1:-1:-1;;;39648:23:0;;;;;;;;;;;39619:52;39792:35;39809:1;39813:7;39822:4;39792:8;:35::i;:::-;-1:-1:-1;;;;;40123:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40123:31:0;;;-1:-1:-1;;;;;40123:31:0;;;-1:-1:-1;;40123:31:0;;;;;;;40169:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40169:29:0;;;;;;;;;;;40249:20;;;:11;:20;;;;;;40284:18;;-1:-1:-1;;;;;;40317:49:0;;;;-1:-1:-1;;;40350:15:0;40317:49;;;;;;;;;;40640:11;;40700:24;;;;;40743:13;;40249:20;;40700:24;;40743:13;40739:384;;40953:13;;40938:11;:28;40934:174;;40991:20;;41060:28;;;;-1:-1:-1;;;;;41034:54:0;-1:-1:-1;;;41034:54:0;-1:-1:-1;;;;;;41034:54:0;;;-1:-1:-1;;;;;40991:20:0;;41034:54;;;;40934:174;40098:1036;;;41170:7;41166:2;-1:-1:-1;;;;;41151:27:0;41160:4;-1:-1:-1;;;;;41151:27:0;;;;;;;;;;;39213:2026;;39109:2130;;;:::o;35197:104::-;35266:27;35276:2;35280:8;35266:27;;;;;;;;;;;;:9;:27::i;30083:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30194:7:0;;50699:1;30243:23;30239:888;;30279:13;;30272:4;:20;30268:859;;;30313:31;30347:17;;;:11;:17;;;;;;;;;30313:51;;;;;;;;;-1:-1:-1;;;;;30313:51:0;;;;-1:-1:-1;;;30313:51:0;;-1:-1:-1;;;;;30313:51:0;;;;;;;;-1:-1:-1;;;30313:51:0;;;;;;;;;;;;;;30383:729;;30433:14;;-1:-1:-1;;;;;30433:28:0;;30429:101;;30497:9;30083:1111;-1:-1:-1;;;30083:1111:0:o;30429:101::-;-1:-1:-1;;;30872:6:0;30917:17;;;;:11;:17;;;;;;;;;30905:29;;;;;;;;;-1:-1:-1;;;;;30905:29:0;;;;;-1:-1:-1;;;30905:29:0;;-1:-1:-1;;;;;30905:29:0;;;;;;;;-1:-1:-1;;;30905:29:0;;;;;;;;;;;;;30965:28;30961:109;;31033:9;30083:1111;-1:-1:-1;;;30083:1111:0:o;30961:109::-;30832:261;;;30294:833;30268:859;31155:31;;-1:-1:-1;;;31155:31:0;;;;;;;;;;;49479:191;49572:6;;;-1:-1:-1;;;;;49589:17:0;;;-1:-1:-1;;;;;;49589:17:0;;;;;;;49622:40;;49572:6;;;49589:17;49572:6;;49622:40;;49553:16;;49622:40;49542:128;49479:191;:::o;44849:667::-;45033:72;;-1:-1:-1;;;45033:72:0;;45012:4;;-1:-1:-1;;;;;45033:36:0;;;;;:72;;25350:10;;45084:4;;45090:7;;45099:5;;45033:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45033:72:0;;;;;;;;-1:-1:-1;;45033:72:0;;;;;;;;;;;;:::i;:::-;;;45029:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45267:13:0;;45263:235;;45313:40;;-1:-1:-1;;;45313:40:0;;;;;;;;;;;45263:235;45456:6;45450:13;45441:6;45437:2;45433:15;45426:38;45029:480;-1:-1:-1;;;;;;45152:55:0;-1:-1:-1;;;45152:55:0;;-1:-1:-1;45029:480:0;44849:667;;;;;;:::o;850:190::-;975:4;1028;999:25;1012:5;1019:4;999:12;:25::i;:::-;:33;;850:190;-1:-1:-1;;;;850:190:0:o;50527:92::-;50579:13;50606:8;50599:15;;;;;:::i;2683:723::-;2739:13;2960:10;2956:53;;-1:-1:-1;;2987:10:0;;;;;;;;;;;;-1:-1:-1;;;2987:10:0;;;;;2683:723::o;2956:53::-;3034:5;3019:12;3075:78;3082:9;;3075:78;;3108:8;;;;:::i;:::-;;-1:-1:-1;3131:10:0;;-1:-1:-1;3139:2:0;3131:10;;:::i;:::-;;;3075:78;;;3163:19;3195:6;-1:-1:-1;;;;;3185:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3185:17:0;;3163:39;;3213:154;3220:10;;3213:154;;3247:11;3257:1;3247:11;;:::i;:::-;;-1:-1:-1;3316:10:0;3324:2;3316:5;:10;:::i;:::-;3303:24;;:2;:24;:::i;:::-;3290:39;;3273:6;3280;3273:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3273:56:0;;;;;;;;-1:-1:-1;3344:11:0;3353:2;3344:11;;:::i;:::-;;;3213:154;;35674:1749;35797:20;35820:13;-1:-1:-1;;;;;35848:16:0;;35844:48;;35873:19;;-1:-1:-1;;;35873:19:0;;;;;;;;;;;35844:48;35907:13;35903:44;;35929:18;;-1:-1:-1;;;35929:18:0;;;;;;;;;;;35903:44;-1:-1:-1;;;;;36298:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36357:49:0;;-1:-1:-1;;;;;36298:44:0;;;;;;;36357:49;;;;-1:-1:-1;;36298:44:0;;;;;;36357:49;;;;;;;;;;;;;;;;36423:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36473:66:0;;;-1:-1:-1;;;36523:15:0;36473:66;;;;;;;;;;;;;36423:25;;36620:23;;;;5970:19;:23;36660:631;;36700:313;36731:38;;36756:12;;-1:-1:-1;;;;;36731:38:0;;;36748:1;;36731:38;;36748:1;;36731:38;36797:69;36836:1;36840:2;36844:14;;;;;;36860:5;36797:30;:69::i;:::-;36792:174;;36902:40;;-1:-1:-1;;;36902:40:0;;;;;;;;;;;36792:174;37008:3;36993:12;:18;36700:313;;37094:12;37077:13;;:29;37073:43;;37108:8;;;37073:43;36660:631;;;37157:119;37188:40;;37213:14;;;;;-1:-1:-1;;;;;37188:40:0;;;37205:1;;37188:40;;37205:1;;37188:40;37271:3;37256:12;:18;37157:119;;36660:631;-1:-1:-1;37305:13:0;:28;;;37355:60;;37388:2;37392:12;37406:8;37355:60;:::i;1402:675::-;1485:7;1528:4;1485:7;1543:497;1567:5;:12;1563:1;:16;1543:497;;;1601:20;1624:5;1630:1;1624:8;;;;;;;;:::i;:::-;;;;;;;1601:31;;1667:12;1651;:28;1647:382;;2153:13;2203:15;;;2239:4;2232:15;;;2286:4;2270:21;;1779:57;;1647:382;;;2153:13;2203:15;;;2239:4;2232:15;;;2286:4;2270:21;;1956:57;;1647:382;-1:-1:-1;1581:3:0;;;;:::i;:::-;;;;1543:497;;;-1:-1:-1;2057:12:0;1402:675;-1:-1:-1;;;1402:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;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:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;-1:-1:-1;;;;;809:2:1;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;-1:-1:-1;;;;;2704:6:1;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:1;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:254::-;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3121:29;3140:9;3121:29;:::i;:::-;3111:39;;3169:35;3200:2;3189:9;3185:18;3169:35;:::i;3215:254::-;3283:6;3291;3344:2;3332:9;3323:7;3319:23;3315:32;3312:52;;;3360:1;3357;3350:12;3312:52;3383:29;3402:9;3383:29;:::i;:::-;3373:39;3459:2;3444:18;;;;3431:32;;-1:-1:-1;;;3215:254:1:o;3474:348::-;3558:6;3611:2;3599:9;3590:7;3586:23;3582:32;3579:52;;;3627:1;3624;3617:12;3579:52;3667:9;3654:23;-1:-1:-1;;;;;3692:6:1;3689:30;3686:50;;;3732:1;3729;3722:12;3686:50;3755:61;3808:7;3799:6;3788:9;3784:22;3755:61;:::i;3827:416::-;3920:6;3928;3981:2;3969:9;3960:7;3956:23;3952:32;3949:52;;;3997:1;3994;3987:12;3949:52;4037:9;4024:23;-1:-1:-1;;;;;4062:6:1;4059:30;4056:50;;;4102:1;4099;4092:12;4056:50;4125:61;4178:7;4169:6;4158:9;4154:22;4125:61;:::i;:::-;4115:71;4233:2;4218:18;;;;4205:32;;-1:-1:-1;;;;3827:416:1:o;4248:180::-;4304:6;4357:2;4345:9;4336:7;4332:23;4328:32;4325:52;;;4373:1;4370;4363:12;4325:52;4396:26;4412:9;4396:26;:::i;4433:180::-;4492:6;4545:2;4533:9;4524:7;4520:23;4516:32;4513:52;;;4561:1;4558;4551:12;4513:52;-1:-1:-1;4584:23:1;;4433:180;-1:-1:-1;4433:180:1:o;4618:245::-;4676:6;4729:2;4717:9;4708:7;4704:23;4700:32;4697:52;;;4745:1;4742;4735:12;4697:52;4784:9;4771:23;4803:30;4827:5;4803:30;:::i;4868:249::-;4937:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:52;;;5006:1;5003;4996:12;4958:52;5038:9;5032:16;5057:30;5081:5;5057:30;:::i;5122:450::-;5191:6;5244:2;5232:9;5223:7;5219:23;5215:32;5212:52;;;5260:1;5257;5250:12;5212:52;5300:9;5287:23;-1:-1:-1;;;;;5325:6:1;5322:30;5319:50;;;5365:1;5362;5355:12;5319:50;5388:22;;5441:4;5433:13;;5429:27;-1:-1:-1;5419:55:1;;5470:1;5467;5460:12;5419:55;5493:73;5558:7;5553:2;5540:16;5535:2;5531;5527:11;5493:73;:::i;5762:416::-;5855:6;5863;5916:2;5904:9;5895:7;5891:23;5887:32;5884:52;;;5932:1;5929;5922:12;5884:52;5968:9;5955:23;5945:33;;6029:2;6018:9;6014:18;6001:32;-1:-1:-1;;;;;6048:6:1;6045:30;6042:50;;;6088:1;6085;6078:12;6042:50;6111:61;6164:7;6155:6;6144:9;6140:22;6111:61;:::i;:::-;6101:71;;;5762:416;;;;;:::o;6183:257::-;6224:3;6262:5;6256:12;6289:6;6284:3;6277:19;6305:63;6361:6;6354:4;6349:3;6345:14;6338:4;6331:5;6327:16;6305:63;:::i;:::-;6422:2;6401:15;-1:-1:-1;;6397:29:1;6388:39;;;;6429:4;6384:50;;6183:257;-1:-1:-1;;6183:257:1:o;6679:637::-;6959:3;6997:6;6991:13;7013:53;7059:6;7054:3;7047:4;7039:6;7035:17;7013:53;:::i;:::-;7129:13;;7088:16;;;;7151:57;7129:13;7088:16;7185:4;7173:17;;7151:57;:::i;:::-;-1:-1:-1;;;7230:20:1;;7259:22;;;7308:1;7297:13;;6679:637;-1:-1:-1;;;;6679:637:1:o;7529:488::-;-1:-1:-1;;;;;7798:15:1;;;7780:34;;7850:15;;7845:2;7830:18;;7823:43;7897:2;7882:18;;7875:34;;;7945:3;7940:2;7925:18;;7918:31;;;7723:4;;7966:45;;7991:19;;7983:6;7966:45;:::i;:::-;7958:53;7529:488;-1:-1:-1;;;;;;7529:488:1:o;8396:219::-;8545:2;8534:9;8527:21;8508:4;8565:44;8605:2;8594:9;8590:18;8582:6;8565:44;:::i;10856:397::-;11058:2;11040:21;;;11097:2;11077:18;;;11070:30;11136:34;11131:2;11116:18;;11109:62;-1:-1:-1;;;11202:2:1;11187:18;;11180:31;11243:3;11228:19;;10856:397::o;11258:342::-;11460:2;11442:21;;;11499:2;11479:18;;;11472:30;-1:-1:-1;;;11533:2:1;11518:18;;11511:48;11591:2;11576:18;;11258:342::o;11605:398::-;11807:2;11789:21;;;11846:2;11826:18;;;11819:30;11885:34;11880:2;11865:18;;11858:62;-1:-1:-1;;;11951:2:1;11936:18;;11929:32;11993:3;11978:19;;11605:398::o;12008:356::-;12210:2;12192:21;;;12229:18;;;12222:30;12288:34;12283:2;12268:18;;12261:62;12355:2;12340:18;;12008:356::o;12785:346::-;12987:2;12969:21;;;13026:2;13006:18;;;12999:30;-1:-1:-1;;;13060:2:1;13045:18;;13038:52;13122:2;13107:18;;12785:346::o;13318:275::-;13389:2;13383:9;13454:2;13435:13;;-1:-1:-1;;13431:27:1;13419:40;;-1:-1:-1;;;;;13474:34:1;;13510:22;;;13471:62;13468:88;;;13536:18;;:::i;:::-;13572:2;13565:22;13318:275;;-1:-1:-1;13318:275:1:o;13598:128::-;13638:3;13669:1;13665:6;13662:1;13659:13;13656:39;;;13675:18;;:::i;:::-;-1:-1:-1;13711:9:1;;13598:128::o;13731:120::-;13771:1;13797;13787:35;;13802:18;;:::i;:::-;-1:-1:-1;13836:9:1;;13731:120::o;13856:168::-;13896:7;13962:1;13958;13954:6;13950:14;13947:1;13944:21;13939:1;13932:9;13925:17;13921:45;13918:71;;;13969:18;;:::i;:::-;-1:-1:-1;14009:9:1;;13856:168::o;14029:125::-;14069:4;14097:1;14094;14091:8;14088:34;;;14102:18;;:::i;:::-;-1:-1:-1;14139:9:1;;14029:125::o;14159:258::-;14231:1;14241:113;14255:6;14252:1;14249:13;14241:113;;;14331:11;;;14325:18;14312:11;;;14305:39;14277:2;14270:10;14241:113;;;14372:6;14369:1;14366:13;14363:48;;;-1:-1:-1;;14407:1:1;14389:16;;14382:27;14159:258::o;14422:380::-;14501:1;14497:12;;;;14544;;;14565:61;;14619:4;14611:6;14607:17;14597:27;;14565:61;14672:2;14664:6;14661:14;14641:18;14638:38;14635:161;;;14718:10;14713:3;14709:20;14706:1;14699:31;14753:4;14750:1;14743:15;14781:4;14778:1;14771:15;14635:161;;14422:380;;;:::o;14807:135::-;14846:3;-1:-1:-1;;14867:17:1;;14864:43;;;14887:18;;:::i;:::-;-1:-1:-1;14934:1:1;14923:13;;14807:135::o;14947:112::-;14979:1;15005;14995:35;;15010:18;;:::i;:::-;-1:-1:-1;15044:9:1;;14947:112::o;15064:127::-;15125:10;15120:3;15116:20;15113:1;15106:31;15156:4;15153:1;15146:15;15180:4;15177:1;15170:15;15196:127;15257:10;15252:3;15248:20;15245:1;15238:31;15288:4;15285:1;15278:15;15312:4;15309:1;15302:15;15328:127;15389:10;15384:3;15380:20;15377:1;15370:31;15420:4;15417:1;15410:15;15444:4;15441:1;15434:15;15460:127;15521:10;15516:3;15512:20;15509:1;15502:31;15552:4;15549:1;15542:15;15576:4;15573:1;15566:15;15592:131;-1:-1:-1;;;;;;15666:32:1;;15656:43;;15646:71;;15713:1;15710;15703:12

Swarm Source

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