ETH Price: $3,250.60 (+2.61%)
Gas: 4 Gwei

Token

Dreamin' Divers VIP (VDIVER)
 

Overview

Max Total Supply

300 VDIVER

Holders

190

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 VDIVER
0x10bb3f723f4ed0801a88d42533081ee1ac35714c
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:
DDPERC721A

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-23
*/

/**

██████╗ ██████╗ ███████╗ █████╗ ███╗   ███╗██╗███╗   ██╗
██╔══██╗██╔══██╗██╔════╝██╔══██╗████╗ ████║██║████╗  ██║
██║  ██║██████╔╝█████╗  ███████║██╔████╔██║██║██╔██╗ ██║
██║  ██║██╔══██╗██╔══╝  ██╔══██║██║╚██╔╝██║██║██║╚██╗██║
██████╔╝██║  ██║███████╗██║  ██║██║ ╚═╝ ██║██║██║ ╚████║
╚═════╝ ╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝╚═╝     ╚═╝╚═╝╚═╝  ╚═══╝

██████╗ ██╗██╗   ██╗███████╗██████╗ ███████╗
██╔══██╗██║██║   ██║██╔════╝██╔══██╗██╔════╝
██║  ██║██║██║   ██║█████╗  ██████╔╝███████╗
██║  ██║██║╚██╗ ██╔╝██╔══╝  ██╔══██╗╚════██║
██████╔╝██║ ╚████╔╝ ███████╗██║  ██║███████║
╚═════╝ ╚═╝  ╚═══╝  ╚══════╝╚═╝  ╚═╝╚══════╝

██████╗ ██████╗  ██████╗      ██╗███████╗ ██████╗████████╗
██╔══██╗██╔══██╗██╔═══██╗     ██║██╔════╝██╔════╝╚══██╔══╝
██████╔╝██████╔╝██║   ██║     ██║█████╗  ██║        ██║
██╔═══╝ ██╔══██╗██║   ██║██   ██║██╔══╝  ██║        ██║
██║     ██║  ██║╚██████╔╝╚█████╔╝███████╗╚██████╗   ██║
╚═╝     ╚═╝  ╚═╝ ╚═════╝  ╚════╝ ╚══════╝ ╚═════╝   ╚═╝

*/

//SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-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: contracts/MerkleProof.sol

pragma solidity ^0.8.7;

abstract contract MerkleProof {
    bytes32 internal _merkleRoot;
    function _setMerkleRoot(bytes32 merkleRoot_) internal virtual {
        _merkleRoot = merkleRoot_;
    }
    function isWhitelisted(address address_, bytes32[] memory proof_) public view returns (bool) {
        bytes32 _leaf = keccak256(abi.encodePacked(address_));
        for (uint256 i = 0; i < proof_.length; i++) {
            _leaf = _leaf < proof_[i] ? keccak256(abi.encodePacked(_leaf, proof_[i])) : keccak256(abi.encodePacked(proof_[i], _leaf));
        }
        return _leaf == _merkleRoot;
    }
}
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

// 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/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.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 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: contracts/erc721a/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/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/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/erc721a/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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: contracts/DDPERC721A.sol

pragma solidity ^0.8.7;








contract DDPERC721A is Ownable, ERC721A, ReentrancyGuard, MerkleProof, ERC2981{

  //Project Settings
  uint256 public wlMintPrice;//wl.price.
  uint256 public psMintPrice;//publicSale. price.
  uint256 public maxMintsPerWL;//wl.max mint num per wallet.
  uint256 public maxMintsPerPS;//publicSale.max mint num per wallet.
  uint256 public maxSupply;//max supply
  address payable internal _withdrawWallet;//withdraw wallet

  //URI
  string internal _revealUri;
  string public _baseExtension = ".json";
  string internal _baseTokenURI;
  //flags
  bool public isWlEnabled;//WL enable.
  bool public isPsEnabled;//PublicSale enable.
  bool internal _isRevealed;//reveal enable.
  //mint records.
  mapping(address => uint256) internal  _wlMinted;//wl.mint num by wallet.
  mapping(address => uint256) internal _psMinted;//PublicSale.mint num by wallet.

  constructor (
      string memory _name,
      string memory _symbol
  ) ERC721A (_name,_symbol) {
  }
  //start from 1.djust for bueno.
  function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
  }
  //set Default Royalty._feeNumerator 500 = 5% Royalty
  function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) external virtual onlyOwner {
      _setDefaultRoyalty(_receiver, _feeNumerator);
  }
  //for ERC2981
  function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) {
    return super.supportsInterface(interfaceId);
  }
  //for ERC2981 Opensea
  function contractURI() external view virtual returns (string memory) {
        return _formatContractURI();
  }
  //make contractURI
  function _formatContractURI() internal view returns (string memory) {
    (address receiver, uint256 royaltyFraction) = royaltyInfo(0,_feeDenominator());//tokenid=0
    return string(
      abi.encodePacked(
        "data:application/json;base64,",
        Base64.encode(
          bytes(
            abi.encodePacked(
                '{"seller_fee_basis_points":', Strings.toString(royaltyFraction),
                ', "fee_recipient":"', Strings.toHexString(uint256(uint160(receiver)), 20), '"}'
            )
          )
        )
      )
    );
  }
  //set owner's wallet.withdraw to this wallet.only owner.
  function setWithdrawWallet(address _owner) external virtual onlyOwner {
    _withdrawWallet = payable(_owner);
  }

  //set maxSupply.only owner.
  function setMaxSupply(uint256 _maxSupply) external virtual onlyOwner {
    require(totalSupply() <= _maxSupply, "Lower than _currentIndex.");
    maxSupply = _maxSupply;
  }
  //set wl price.only owner.
  function setWlPrice(uint256 newPrice) external virtual onlyOwner {
    wlMintPrice = newPrice;
  }
  //set public Sale price.only owner.
  function setPsPrice(uint256 newPrice) external virtual onlyOwner {
    psMintPrice = newPrice;
  }
  //set reveal.only owner.
  function setReveal(bool bool_) external virtual onlyOwner {
    _isRevealed = bool_;
  }
  //retuen _isRevealed.
  function isRevealed() external view virtual returns (bool){
    return _isRevealed;
  }
  //retuen _wlMinted
  function wlMinted(address _address) external view virtual returns (uint256){
    return _wlMinted[_address];
  }
  //retuen _psMinted
  function psMinted(address _address) external view virtual returns (uint256){
    return _psMinted[_address];
  }

  //set wl's max mint num.only owner.
  function setWlMaxMints(uint256 _max) external virtual onlyOwner {
    maxMintsPerWL = _max;
  }
  //set PublicSale's max mint num.only owner.
  function setPsMaxMints(uint256 _max) external virtual onlyOwner {
    maxMintsPerPS = _max;
  }
    
  //set WLsale.only owner.
  function setWhitelistSale(bool bool_) external virtual onlyOwner {
    isWlEnabled = bool_;
  }

  //set Publicsale.only owner.
  function setPublicSale(bool bool_) external virtual onlyOwner {
    isPsEnabled = bool_;
  }

  //set MerkleRoot.only owner.
  function setMerkleRoot(bytes32 merkleRoot_) external virtual onlyOwner {
    _setMerkleRoot(merkleRoot_);
  }

  //set HiddenBaseURI.only owner.
  function setHiddenBaseURI(string memory uri_) external virtual onlyOwner {
    _revealUri = uri_;
  }

  //return _currentIndex
  function getCurrentIndex() external view virtual returns (uint256){
    return _currentIndex;
  }

  //set BaseURI at after reveal. only owner.
  function setBaseURI(string memory uri_) external virtual onlyOwner {
    _baseTokenURI = uri_;
  }

  function setBaseExtension(string memory _newBaseExtension) external onlyOwner
  {
    _baseExtension = _newBaseExtension;
  }

  //retuen BaseURI.internal.
  function _currentBaseURI() internal view returns (string memory){
    return _baseTokenURI;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), "URI query for nonexistent token");
    if(_isRevealed == false) {
    return _revealUri;
    }
    return string(abi.encodePacked(_currentBaseURI(), Strings.toString(_tokenId), _baseExtension));
  }

  //owner mint.transfer to _address.only owner.
  function ownerMint(uint256 _amount, address _address) external virtual onlyOwner { 
    require((_amount + totalSupply()) <= (maxSupply), "No more NFTs");

    _safeMint(_address, _amount);
  }

  //WL mint.
  function whitelistMint(uint256 _amount, bytes32[] memory proof_) external payable virtual nonReentrant {
    require(isWlEnabled, "whitelistMint is Paused");
    require(isWhitelisted(msg.sender, proof_), "You are not whitelisted!");
    require(maxMintsPerWL >= _amount, "whitelistMint: Over max mints per wallet");
    require(maxMintsPerWL >= _wlMinted[msg.sender] + _amount, "You have no whitelistMint left");
    require(msg.value == wlMintPrice * _amount, "ETH value is not correct");
    require((_amount + totalSupply()) <= (maxSupply), "No more NFTs");

    _wlMinted[msg.sender] += _amount;
    _safeMint(msg.sender, _amount);
  }
  
  //Public mint.
  function publicMint(uint256 _amount) external payable virtual nonReentrant {
    require(isPsEnabled, "publicMint is Paused");
    require(maxMintsPerPS >= _amount, "publicMint: Over max mints per wallet");
    require(maxMintsPerPS >= _psMinted[msg.sender] + _amount, "You have no publicMint left");
    require(msg.value == psMintPrice * _amount, "ETH value is not correct");
    require((_amount + totalSupply()) <= (maxSupply), "No more NFTs");
      
    _psMinted[msg.sender] += _amount;
    _safeMint(msg.sender, _amount);
  }
  //burn
  function burn(uint256 tokenId) external virtual {
    _burn(tokenId, true);
  }

  //widraw ETH from this contract.only owner. 
  function withdraw() external payable virtual onlyOwner nonReentrant{
    // This will payout the owner 100% of the contract balance.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    bool os;
    if(_withdrawWallet != address(0)){//if _withdrawWallet has.
      (os, ) = payable(_withdrawWallet).call{value: address(this).balance}("");
    }else{
      (os, ) = payable(owner()).call{value: address(this).balance}("");
    }
    require(os);
    // =============================================================================
  }
  //return wallet owned tokenids.
  function walletOfOwner(address _address) external view virtual returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_address);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    //search from all tonkenid. so spend high gas values.attention.
    uint256 tokenindex = 0;
    for (uint256 i = _startTokenId(); i < _currentIndex; i++) {
      if(_address == this.tryOwnerOf(i)) tokenIds[tokenindex++] = i;
    }
    return tokenIds;
  }
  //try catch vaersion ownerOf. I have a error at burned tokenid.so need to try catch.  only external.
  function tryOwnerOf(uint256 tokenId) external view  virtual returns (address) {
    try this.ownerOf(tokenId) returns (address _address) {
      return(_address);
    } catch {
        return (address(0));//return 0x0 if error.
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":"_baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isPsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWlEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"psMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"psMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setHiddenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setPsMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPsPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setWithdrawWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setWlMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setWlPrice","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":"tokenId","type":"uint256"}],"name":"tryOwnerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"wlMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160149190620000f5565b503480156200003657600080fd5b506040516200349138038062003491833981016040819052620000599162000252565b81816200006633620000a5565b81516200007b906003906020850190620000f5565b50805162000091906004906020840190620000f5565b506001808155600955506200030f92505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200010390620002bc565b90600052602060002090601f01602090048101928262000127576000855562000172565b82601f106200014257805160ff191683800117855562000172565b8280016001018555821562000172579182015b828111156200017257825182559160200191906001019062000155565b506200018092915062000184565b5090565b5b8082111562000180576000815560010162000185565b600082601f830112620001ad57600080fd5b81516001600160401b0380821115620001ca57620001ca620002f9565b604051601f8301601f19908116603f01168101908282118183101715620001f557620001f5620002f9565b816040528381526020925086838588010111156200021257600080fd5b600091505b8382101562000236578582018301518183018401529082019062000217565b83821115620002485760008385830101525b9695505050505050565b600080604083850312156200026657600080fd5b82516001600160401b03808211156200027e57600080fd5b6200028c868387016200019b565b93506020850151915080821115620002a357600080fd5b50620002b2858286016200019b565b9150509250929050565b600181811c90821680620002d157607f821691505b60208210811415620002f357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613172806200031f6000396000f3fe60806040526004361061025a5760003560e01c806301ffc9a71461025f57806304634d8d1461029457806306fdde03146102b6578063081812fc146102d8578063095ea7b3146103105780630d9005ae1461033057806318160ddd1461034f5780631a09cfe21461036457806320ac68501461037a57806323b872dd1461039a5780632672c902146103ba5780632a3f300c146103cf5780632a55205a146103ef5780632c4e9fc61461042e5780632db11544146104445780633ccfd60b1461045757806342454db91461045f57806342842e0e1461047557806342966c6814610495578063438b6300146104b557806354214f69146104e257806355f804b3146105005780635a23dd99146105205780635aca1bb6146105405780636352211e146105605780636f8b44b01461058057806370a08231146105a0578063715018a6146105c0578063719eaef8146105d557806378a92380146105f55780637cb647591461062b578063813779ef1461064b578063830b3a641461066b5780638da5cb5b1461068b5780638dd07d0f146106a05780639373f432146106c0578063942958f4146106e057806395d89b41146107165780639970cc291461072b5780639c9a943014610741578063a22cb4651461075b578063b88d4fde1461077b578063c87b56dd1461079b578063ca7ce3ec146107bb578063d2cab056146107db578063d52c57e0146107ee578063d5abeb011461080e578063d78be71c14610824578063da3ef23f14610844578063e8a3d48514610864578063e9186bce14610879578063e985e9c514610898578063f2fde38b146108e1575b600080fd5b34801561026b57600080fd5b5061027f61027a366004612b44565b610901565b60405190151581526020015b60405180910390f35b3480156102a057600080fd5b506102b46102af366004612ad6565b610912565b005b3480156102c257600080fd5b506102cb610928565b60405161028b9190612e78565b3480156102e457600080fd5b506102f86102f3366004612b2b565b6109ba565b6040516001600160a01b03909116815260200161028b565b34801561031c57600080fd5b506102b461032b366004612aaa565b6109fe565b34801561033c57600080fd5b506001545b60405190815260200161028b565b34801561035b57600080fd5b50610341610a85565b34801561037057600080fd5b5061034160105481565b34801561038657600080fd5b506102b4610395366004612b7e565b610a93565b3480156103a657600080fd5b506102b46103b5366004612966565b610aae565b3480156103c657600080fd5b506102cb610ab9565b3480156103db57600080fd5b506102b46103ea366004612b10565b610b47565b3480156103fb57600080fd5b5061040f61040a366004612c1b565b610b6b565b604080516001600160a01b03909316835260208301919091520161028b565b34801561043a57600080fd5b50610341600d5481565b6102b4610452366004612b2b565b610c17565b6102b4610df6565b34801561046b57600080fd5b50610341600e5481565b34801561048157600080fd5b506102b4610490366004612966565b610efe565b3480156104a157600080fd5b506102b46104b0366004612b2b565b610f19565b3480156104c157600080fd5b506104d56104d03660046128f3565b610f27565b60405161028b9190612e34565b3480156104ee57600080fd5b5060165462010000900460ff1661027f565b34801561050c57600080fd5b506102b461051b366004612b7e565b61105a565b34801561052c57600080fd5b5061027f61053b366004612a26565b611075565b34801561054c57600080fd5b506102b461055b366004612b10565b611194565b34801561056c57600080fd5b506102f861057b366004612b2b565b6111b6565b34801561058c57600080fd5b506102b461059b366004612b2b565b6111c8565b3480156105ac57600080fd5b506103416105bb3660046128f3565b611228565b3480156105cc57600080fd5b506102b4611276565b3480156105e157600080fd5b506102b46105f0366004612b2b565b61128a565b34801561060157600080fd5b506103416106103660046128f3565b6001600160a01b031660009081526017602052604090205490565b34801561063757600080fd5b506102b4610646366004612b2b565b611297565b34801561065757600080fd5b506102b4610666366004612b2b565b6112a8565b34801561067757600080fd5b506102f8610686366004612b2b565b6112b5565b34801561069757600080fd5b506102f8611330565b3480156106ac57600080fd5b506102b46106bb366004612b2b565b61133f565b3480156106cc57600080fd5b506102b46106db3660046128f3565b61134c565b3480156106ec57600080fd5b506103416106fb3660046128f3565b6001600160a01b031660009081526018602052604090205490565b34801561072257600080fd5b506102cb611376565b34801561073757600080fd5b50610341600f5481565b34801561074d57600080fd5b5060165461027f9060ff1681565b34801561076757600080fd5b506102b4610776366004612a75565b611385565b34801561078757600080fd5b506102b46107963660046129a7565b61141b565b3480156107a757600080fd5b506102cb6107b6366004612b2b565b61146c565b3480156107c757600080fd5b506102b46107d6366004612b10565b6115a0565b6102b46107e9366004612beb565b6115bb565b3480156107fa57600080fd5b506102b4610809366004612bc6565b6117e6565b34801561081a57600080fd5b5061034160115481565b34801561083057600080fd5b506102b461083f366004612b2b565b61182b565b34801561085057600080fd5b506102b461085f366004612b7e565b611838565b34801561087057600080fd5b506102cb611853565b34801561088557600080fd5b5060165461027f90610100900460ff1681565b3480156108a457600080fd5b5061027f6108b336600461292d565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108ed57600080fd5b506102b46108fc3660046128f3565b611862565b600061090c826118d8565b92915050565b61091a6118fd565b610924828261195c565b5050565b60606003805461093790612fef565b80601f016020809104026020016040519081016040528092919081815260200182805461096390612fef565b80156109b05780601f10610985576101008083540402835291602001916109b0565b820191906000526020600020905b81548152906001019060200180831161099357829003601f168201915b5050505050905090565b60006109c582611a55565b6109e2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a09826111b6565b9050806001600160a01b0316836001600160a01b03161415610a3e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a7557610a5881336108b3565b610a75576040516367d9dca160e11b815260040160405180910390fd5b610a80838383611a8e565b505050565b600254600154036000190190565b610a9b6118fd565b805161092490601390602084019061276e565b610a80838383611aea565b60148054610ac690612fef565b80601f0160208091040260200160405190810160405280929190818152602001828054610af290612fef565b8015610b3f5780601f10610b1457610100808354040283529160200191610b3f565b820191906000526020600020905b815481529060010190602001808311610b2257829003601f168201915b505050505081565b610b4f6118fd565b60168054911515620100000262ff000019909216919091179055565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610be0575060408051808201909152600b546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610bff906001600160601b031687612f76565b610c099190612f62565b915196919550909350505050565b60026009541415610c435760405162461bcd60e51b8152600401610c3a90612ee3565b60405180910390fd5b6002600955601654610100900460ff16610c965760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b6044820152606401610c3a565b806010541015610cf65760405162461bcd60e51b815260206004820152602560248201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604482015264185b1b195d60da1b6064820152608401610c3a565b33600090815260186020526040902054610d11908290612f4a565b6010541015610d605760405162461bcd60e51b815260206004820152601b60248201527a165bdd481a185d99481b9bc81c1d589b1a58d35a5b9d081b19599d602a1b6044820152606401610c3a565b80600e54610d6e9190612f76565b3414610d8c5760405162461bcd60e51b8152600401610c3a90612e8b565b601154610d97610a85565b610da19083612f4a565b1115610dbf5760405162461bcd60e51b8152600401610c3a90612ebd565b3360009081526018602052604081208054839290610dde908490612f4a565b90915550610dee90503382611cc4565b506001600955565b610dfe6118fd565b60026009541415610e215760405162461bcd60e51b8152600401610c3a90612ee3565b60026009556012546000906001600160a01b031615610e97576012546040516001600160a01b03909116904790600081818185875af1925050503d8060008114610e87576040519150601f19603f3d011682016040523d82523d6000602084013e610e8c565b606091505b505080915050610ef4565b610e9f611330565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ee9576040519150601f19603f3d011682016040523d82523d6000602084013e610eee565b606091505b50909150505b80610dee57600080fd5b610a808383836040518060200160405280600081525061141b565b610f24816001611cde565b50565b60606000610f3483611228565b90506000816001600160401b03811115610f5057610f5061309b565b604051908082528060200260200182016040528015610f79578160200160208202803683370190505b509050600060015b600154811015611050576040516320c2ce9960e21b815260048101829052309063830b3a649060240160206040518083038186803b158015610fc257600080fd5b505afa158015610fd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffa9190612910565b6001600160a01b0316866001600160a01b0316141561103e5780838361101f8161302a565b94508151811061103157611031613085565b6020026020010181815250505b806110488161302a565b915050610f81565b5090949350505050565b6110626118fd565b805161092490601590602084019061276e565b6040516001600160601b0319606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b8351811015611188578381815181106110ca576110ca613085565b60200260200101518210611128578381815181106110ea576110ea613085565b60200260200101518260405160200161110d929190918252602082015260400190565b60405160208183030381529060405280519060200120611174565b8184828151811061113b5761113b613085565b602002602001015160405160200161115d929190918252602082015260400190565b604051602081830303815290604052805190602001205b9150806111808161302a565b9150506110af565b50600a54149392505050565b61119c6118fd565b601680549115156101000261ff0019909216919091179055565b60006111c182611e8c565b5192915050565b6111d06118fd565b806111d9610a85565b11156112235760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b6044820152606401610c3a565b601155565b60006001600160a01b038216611251576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b61127e6118fd565b6112886000611fae565b565b6112926118fd565b600f55565b61129f6118fd565b610f2481600a55565b6112b06118fd565b601055565b6040516331a9108f60e11b8152600481018290526000903090636352211e9060240160206040518083038186803b1580156112ef57600080fd5b505afa92505050801561131f575060408051601f3d908101601f1916820190925261131c91810190612910565b60015b61090c57506000919050565b919050565b6000546001600160a01b031690565b6113476118fd565b600d55565b6113546118fd565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461093790612fef565b6001600160a01b0382163314156113af5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611426848484611aea565b611438836001600160a01b0316611ffe565b15611466576114498484848461200d565b611466576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061147782611a55565b6114c35760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610c3a565b60165462010000900460ff1661156557601380546114e090612fef565b80601f016020809104026020016040519081016040528092919081815260200182805461150c90612fef565b80156115595780601f1061152e57610100808354040283529160200191611559565b820191906000526020600020905b81548152906001019060200180831161153c57829003601f168201915b50505050509050919050565b61156d612105565b61157683612114565b601460405160200161158a93929190612c69565b6040516020818303038152906040529050919050565b6115a86118fd565b6016805460ff1916911515919091179055565b600260095414156115de5760405162461bcd60e51b8152600401610c3a90612ee3565b600260095560165460ff1661162f5760405162461bcd60e51b81526020600482015260176024820152761dda1a5d195b1a5cdd135a5b9d081a5cc814185d5cd959604a1b6044820152606401610c3a565b6116393382611075565b6116805760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b6044820152606401610c3a565b81600f5410156116e35760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401610c3a565b336000908152601760205260409020546116fe908390612f4a565b600f54101561174f5760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401610c3a565b81600d5461175d9190612f76565b341461177b5760405162461bcd60e51b8152600401610c3a90612e8b565b601154611786610a85565b6117909084612f4a565b11156117ae5760405162461bcd60e51b8152600401610c3a90612ebd565b33600090815260176020526040812080548492906117cd908490612f4a565b909155506117dd90503383611cc4565b50506001600955565b6117ee6118fd565b6011546117f9610a85565b6118039084612f4a565b11156118215760405162461bcd60e51b8152600401610c3a90612ebd565b6109248183611cc4565b6118336118fd565b600e55565b6118406118fd565b805161092490601490602084019061276e565b606061185d612211565b905090565b61186a6118fd565b6001600160a01b0381166118cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c3a565b610f2481611fae565b60006001600160e01b0319821663152a902d60e11b148061090c575061090c82612291565b33611906611330565b6001600160a01b0316146112885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c3a565b6127106001600160601b03821611156119ca5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610c3a565b6001600160a01b038216611a1c5760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606401610c3a565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600b55565b600081600111158015611a69575060015482105b801561090c575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611af582611e8c565b9050836001600160a01b031681600001516001600160a01b031614611b2c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611b4a5750611b4a85336108b3565b80611b65575033611b5a846109ba565b6001600160a01b0316145b905080611b8557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611bac57604051633a954ecd60e21b815260040160405180910390fd5b611bb860008487611a8e565b6001600160a01b03858116600090815260066020908152604080832080546001600160401b03198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611c8b576001548214611c8b57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061311d83398151915260405160405180910390a45050505050565b6109248282604051806020016040528060008152506122e1565b6000611ce983611e8c565b80519091508215611d4f576000336001600160a01b0383161480611d125750611d1282336108b3565b80611d2d575033611d22866109ba565b6001600160a01b0316145b905080611d4d57604051632ce44b5f60e11b815260040160405180910390fd5b505b611d5b60008583611a8e565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b038084169190910181166001600160401b0319841681178390048216600190810183169093026001600160401b03600160801b03600160c01b0319909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611e53576001548214611e5357805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b0384169060008051602061311d833981519152908390a450506002805460010190555050565b60408051606081018252600080825260208201819052918101919091528180600111611f9557600154811015611f9557600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611f935780516001600160a01b031615611f2a579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611f8e579392505050565b611f2a565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612042903390899088908890600401612df7565b602060405180830381600087803b15801561205c57600080fd5b505af192505050801561208c575060408051601f3d908101601f1916820190925261208991810190612b61565b60015b6120e7573d8080156120ba576040519150601f19603f3d011682016040523d82523d6000602084013e6120bf565b606091505b5080516120df576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606015805461093790612fef565b6060816121385750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612162578061214c8161302a565b915061215b9050600a83612f62565b915061213c565b6000816001600160401b0381111561217c5761217c61309b565b6040519080825280601f01601f1916602001820160405280156121a6576020820181803683370190505b5090505b84156120fd576121bb600183612f95565b91506121c8600a86613045565b6121d3906030612f4a565b60f81b8183815181106121e8576121e8613085565b60200101906001600160f81b031916908160001a90535061220a600a86612f62565b94506121aa565b606060008061222281612710610b6b565b9150915061226b61223282612114565b612246846001600160a01b03166014612479565b604051602001612257929190612d2d565b60405160208183030381529060405261261b565b60405160200161227b9190612db2565b6040516020818303038152906040529250505090565b60006001600160e01b031982166380ac58cd60e01b14806122c257506001600160e01b03198216635b5e139f60e01b145b8061090c57506301ffc9a760e01b6001600160e01b031983161461090c565b6001546001600160a01b03841661230a57604051622e076360e81b815260040160405180910390fd5b826123285760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546001600160801b031981166001600160401b038083168b018116918217600160401b6001600160401b031990941690921783900481168b01811690920217909155858452600590925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501906123c190611ffe565b15612437575b60405182906001600160a01b0388169060009060008051602061311d833981519152908290a4612400600087848060010195508761200d565b61241d576040516368d2bf6b60e11b815260040160405180910390fd5b8082106123c757826001541461243257600080fd5b61246a565b5b6040516001830192906001600160a01b0388169060009060008051602061311d833981519152908290a4808210612438575b50600155611466600085838684565b60606000612488836002612f76565b612493906002612f4a565b6001600160401b038111156124aa576124aa61309b565b6040519080825280601f01601f1916602001820160405280156124d4576020820181803683370190505b509050600360fc1b816000815181106124ef576124ef613085565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061251e5761251e613085565b60200101906001600160f81b031916908160001a9053506000612542846002612f76565b61254d906001612f4a565b90505b60018111156125c5576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061258157612581613085565b1a60f81b82828151811061259757612597613085565b60200101906001600160f81b031916908160001a90535060049490941c936125be81612fd8565b9050612550565b5083156126145760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c3a565b9392505050565b606081516000141561263b57505060408051602081019091526000815290565b60006040518060600160405280604081526020016130dd604091399050600060038451600261266a9190612f4a565b6126749190612f62565b61267f906004612f76565b6001600160401b038111156126965761269661309b565b6040519080825280601f01601f1916602001820160405280156126c0576020820181803683370190505b509050600182016020820185865187015b8082101561272c576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506126d1565b5050600386510660018114612748576002811461275b57612763565b603d6001830353603d6002830353612763565b603d60018303535b509195945050505050565b82805461277a90612fef565b90600052602060002090601f01602090048101928261279c57600085556127e2565b82601f106127b557805160ff19168380011785556127e2565b828001600101855582156127e2579182015b828111156127e25782518255916020019190600101906127c7565b506127ee9291506127f2565b5090565b5b808211156127ee57600081556001016127f3565b60006001600160401b038311156128205761282061309b565b612833601f8401601f1916602001612f1a565b905082815283838301111561284757600080fd5b828260208301376000602084830101529392505050565b600082601f83011261286f57600080fd5b813560206001600160401b0382111561288a5761288a61309b565b8160051b612899828201612f1a565b8381528281019086840183880185018910156128b457600080fd5b600093505b858410156128d75780358352600193909301929184019184016128b9565b50979650505050505050565b8035801515811461132b57600080fd5b60006020828403121561290557600080fd5b8135612614816130b1565b60006020828403121561292257600080fd5b8151612614816130b1565b6000806040838503121561294057600080fd5b823561294b816130b1565b9150602083013561295b816130b1565b809150509250929050565b60008060006060848603121561297b57600080fd5b8335612986816130b1565b92506020840135612996816130b1565b929592945050506040919091013590565b600080600080608085870312156129bd57600080fd5b84356129c8816130b1565b935060208501356129d8816130b1565b92506040850135915060608501356001600160401b038111156129fa57600080fd5b8501601f81018713612a0b57600080fd5b612a1a87823560208401612807565b91505092959194509250565b60008060408385031215612a3957600080fd5b8235612a44816130b1565b915060208301356001600160401b03811115612a5f57600080fd5b612a6b8582860161285e565b9150509250929050565b60008060408385031215612a8857600080fd5b8235612a93816130b1565b9150612aa1602084016128e3565b90509250929050565b60008060408385031215612abd57600080fd5b8235612ac8816130b1565b946020939093013593505050565b60008060408385031215612ae957600080fd5b8235612af4816130b1565b915060208301356001600160601b038116811461295b57600080fd5b600060208284031215612b2257600080fd5b612614826128e3565b600060208284031215612b3d57600080fd5b5035919050565b600060208284031215612b5657600080fd5b8135612614816130c6565b600060208284031215612b7357600080fd5b8151612614816130c6565b600060208284031215612b9057600080fd5b81356001600160401b03811115612ba657600080fd5b8201601f81018413612bb757600080fd5b6120fd84823560208401612807565b60008060408385031215612bd957600080fd5b82359150602083013561295b816130b1565b60008060408385031215612bfe57600080fd5b8235915060208301356001600160401b03811115612a5f57600080fd5b60008060408385031215612c2e57600080fd5b50508035926020909101359150565b60008151808452612c55816020860160208601612fac565b601f01601f19169290920160200192915050565b600084516020612c7c8285838a01612fac565b855191840191612c8f8184848a01612fac565b8554920191600090600181811c9080831680612cac57607f831692505b858310811415612cca57634e487b7160e01b85526022600452602485fd5b808015612cde5760018114612cef57612d1c565b60ff19851688528388019550612d1c565b60008b81526020902060005b85811015612d145781548a820152908401908801612cfb565b505083880195505b50939b9a5050505050505050505050565b7a3d9139b2b63632b92fb332b2afb130b9b4b9afb837b4b73a39911d60291b81528251600090612d6481601b850160208801612fac565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b918401918201528351612d9781602e840160208801612fac565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251612dea81601d850160208701612fac565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e2a90830184612c3d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612e6c57835183529284019291840191600101612e50565b50909695505050505050565b6020815260006126146020830184612c3d565b602080825260189082015277115512081d985b1d59481a5cc81b9bdd0818dbdc9c9958dd60421b604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612f4257612f4261309b565b604052919050565b60008219821115612f5d57612f5d613059565b500190565b600082612f7157612f7161306f565b500490565b6000816000190483118215151615612f9057612f90613059565b500290565b600082821015612fa757612fa7613059565b500390565b60005b83811015612fc7578181015183820152602001612faf565b838111156114665750506000910152565b600081612fe757612fe7613059565b506000190190565b600181811c9082168061300357607f821691505b6020821081141561302457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561303e5761303e613059565b5060010190565b6000826130545761305461306f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f2457600080fd5b6001600160e01b031981168114610f2457600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220d07800873d0130a9ebadd74da553236ef033c3557cd25fa54e882b8e6f9fe11d64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000013447265616d696e2720446976657273205649500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065644495645520000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025a5760003560e01c806301ffc9a71461025f57806304634d8d1461029457806306fdde03146102b6578063081812fc146102d8578063095ea7b3146103105780630d9005ae1461033057806318160ddd1461034f5780631a09cfe21461036457806320ac68501461037a57806323b872dd1461039a5780632672c902146103ba5780632a3f300c146103cf5780632a55205a146103ef5780632c4e9fc61461042e5780632db11544146104445780633ccfd60b1461045757806342454db91461045f57806342842e0e1461047557806342966c6814610495578063438b6300146104b557806354214f69146104e257806355f804b3146105005780635a23dd99146105205780635aca1bb6146105405780636352211e146105605780636f8b44b01461058057806370a08231146105a0578063715018a6146105c0578063719eaef8146105d557806378a92380146105f55780637cb647591461062b578063813779ef1461064b578063830b3a641461066b5780638da5cb5b1461068b5780638dd07d0f146106a05780639373f432146106c0578063942958f4146106e057806395d89b41146107165780639970cc291461072b5780639c9a943014610741578063a22cb4651461075b578063b88d4fde1461077b578063c87b56dd1461079b578063ca7ce3ec146107bb578063d2cab056146107db578063d52c57e0146107ee578063d5abeb011461080e578063d78be71c14610824578063da3ef23f14610844578063e8a3d48514610864578063e9186bce14610879578063e985e9c514610898578063f2fde38b146108e1575b600080fd5b34801561026b57600080fd5b5061027f61027a366004612b44565b610901565b60405190151581526020015b60405180910390f35b3480156102a057600080fd5b506102b46102af366004612ad6565b610912565b005b3480156102c257600080fd5b506102cb610928565b60405161028b9190612e78565b3480156102e457600080fd5b506102f86102f3366004612b2b565b6109ba565b6040516001600160a01b03909116815260200161028b565b34801561031c57600080fd5b506102b461032b366004612aaa565b6109fe565b34801561033c57600080fd5b506001545b60405190815260200161028b565b34801561035b57600080fd5b50610341610a85565b34801561037057600080fd5b5061034160105481565b34801561038657600080fd5b506102b4610395366004612b7e565b610a93565b3480156103a657600080fd5b506102b46103b5366004612966565b610aae565b3480156103c657600080fd5b506102cb610ab9565b3480156103db57600080fd5b506102b46103ea366004612b10565b610b47565b3480156103fb57600080fd5b5061040f61040a366004612c1b565b610b6b565b604080516001600160a01b03909316835260208301919091520161028b565b34801561043a57600080fd5b50610341600d5481565b6102b4610452366004612b2b565b610c17565b6102b4610df6565b34801561046b57600080fd5b50610341600e5481565b34801561048157600080fd5b506102b4610490366004612966565b610efe565b3480156104a157600080fd5b506102b46104b0366004612b2b565b610f19565b3480156104c157600080fd5b506104d56104d03660046128f3565b610f27565b60405161028b9190612e34565b3480156104ee57600080fd5b5060165462010000900460ff1661027f565b34801561050c57600080fd5b506102b461051b366004612b7e565b61105a565b34801561052c57600080fd5b5061027f61053b366004612a26565b611075565b34801561054c57600080fd5b506102b461055b366004612b10565b611194565b34801561056c57600080fd5b506102f861057b366004612b2b565b6111b6565b34801561058c57600080fd5b506102b461059b366004612b2b565b6111c8565b3480156105ac57600080fd5b506103416105bb3660046128f3565b611228565b3480156105cc57600080fd5b506102b4611276565b3480156105e157600080fd5b506102b46105f0366004612b2b565b61128a565b34801561060157600080fd5b506103416106103660046128f3565b6001600160a01b031660009081526017602052604090205490565b34801561063757600080fd5b506102b4610646366004612b2b565b611297565b34801561065757600080fd5b506102b4610666366004612b2b565b6112a8565b34801561067757600080fd5b506102f8610686366004612b2b565b6112b5565b34801561069757600080fd5b506102f8611330565b3480156106ac57600080fd5b506102b46106bb366004612b2b565b61133f565b3480156106cc57600080fd5b506102b46106db3660046128f3565b61134c565b3480156106ec57600080fd5b506103416106fb3660046128f3565b6001600160a01b031660009081526018602052604090205490565b34801561072257600080fd5b506102cb611376565b34801561073757600080fd5b50610341600f5481565b34801561074d57600080fd5b5060165461027f9060ff1681565b34801561076757600080fd5b506102b4610776366004612a75565b611385565b34801561078757600080fd5b506102b46107963660046129a7565b61141b565b3480156107a757600080fd5b506102cb6107b6366004612b2b565b61146c565b3480156107c757600080fd5b506102b46107d6366004612b10565b6115a0565b6102b46107e9366004612beb565b6115bb565b3480156107fa57600080fd5b506102b4610809366004612bc6565b6117e6565b34801561081a57600080fd5b5061034160115481565b34801561083057600080fd5b506102b461083f366004612b2b565b61182b565b34801561085057600080fd5b506102b461085f366004612b7e565b611838565b34801561087057600080fd5b506102cb611853565b34801561088557600080fd5b5060165461027f90610100900460ff1681565b3480156108a457600080fd5b5061027f6108b336600461292d565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108ed57600080fd5b506102b46108fc3660046128f3565b611862565b600061090c826118d8565b92915050565b61091a6118fd565b610924828261195c565b5050565b60606003805461093790612fef565b80601f016020809104026020016040519081016040528092919081815260200182805461096390612fef565b80156109b05780601f10610985576101008083540402835291602001916109b0565b820191906000526020600020905b81548152906001019060200180831161099357829003601f168201915b5050505050905090565b60006109c582611a55565b6109e2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a09826111b6565b9050806001600160a01b0316836001600160a01b03161415610a3e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a7557610a5881336108b3565b610a75576040516367d9dca160e11b815260040160405180910390fd5b610a80838383611a8e565b505050565b600254600154036000190190565b610a9b6118fd565b805161092490601390602084019061276e565b610a80838383611aea565b60148054610ac690612fef565b80601f0160208091040260200160405190810160405280929190818152602001828054610af290612fef565b8015610b3f5780601f10610b1457610100808354040283529160200191610b3f565b820191906000526020600020905b815481529060010190602001808311610b2257829003601f168201915b505050505081565b610b4f6118fd565b60168054911515620100000262ff000019909216919091179055565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610be0575060408051808201909152600b546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610bff906001600160601b031687612f76565b610c099190612f62565b915196919550909350505050565b60026009541415610c435760405162461bcd60e51b8152600401610c3a90612ee3565b60405180910390fd5b6002600955601654610100900460ff16610c965760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b6044820152606401610c3a565b806010541015610cf65760405162461bcd60e51b815260206004820152602560248201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604482015264185b1b195d60da1b6064820152608401610c3a565b33600090815260186020526040902054610d11908290612f4a565b6010541015610d605760405162461bcd60e51b815260206004820152601b60248201527a165bdd481a185d99481b9bc81c1d589b1a58d35a5b9d081b19599d602a1b6044820152606401610c3a565b80600e54610d6e9190612f76565b3414610d8c5760405162461bcd60e51b8152600401610c3a90612e8b565b601154610d97610a85565b610da19083612f4a565b1115610dbf5760405162461bcd60e51b8152600401610c3a90612ebd565b3360009081526018602052604081208054839290610dde908490612f4a565b90915550610dee90503382611cc4565b506001600955565b610dfe6118fd565b60026009541415610e215760405162461bcd60e51b8152600401610c3a90612ee3565b60026009556012546000906001600160a01b031615610e97576012546040516001600160a01b03909116904790600081818185875af1925050503d8060008114610e87576040519150601f19603f3d011682016040523d82523d6000602084013e610e8c565b606091505b505080915050610ef4565b610e9f611330565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ee9576040519150601f19603f3d011682016040523d82523d6000602084013e610eee565b606091505b50909150505b80610dee57600080fd5b610a808383836040518060200160405280600081525061141b565b610f24816001611cde565b50565b60606000610f3483611228565b90506000816001600160401b03811115610f5057610f5061309b565b604051908082528060200260200182016040528015610f79578160200160208202803683370190505b509050600060015b600154811015611050576040516320c2ce9960e21b815260048101829052309063830b3a649060240160206040518083038186803b158015610fc257600080fd5b505afa158015610fd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffa9190612910565b6001600160a01b0316866001600160a01b0316141561103e5780838361101f8161302a565b94508151811061103157611031613085565b6020026020010181815250505b806110488161302a565b915050610f81565b5090949350505050565b6110626118fd565b805161092490601590602084019061276e565b6040516001600160601b0319606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b8351811015611188578381815181106110ca576110ca613085565b60200260200101518210611128578381815181106110ea576110ea613085565b60200260200101518260405160200161110d929190918252602082015260400190565b60405160208183030381529060405280519060200120611174565b8184828151811061113b5761113b613085565b602002602001015160405160200161115d929190918252602082015260400190565b604051602081830303815290604052805190602001205b9150806111808161302a565b9150506110af565b50600a54149392505050565b61119c6118fd565b601680549115156101000261ff0019909216919091179055565b60006111c182611e8c565b5192915050565b6111d06118fd565b806111d9610a85565b11156112235760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b6044820152606401610c3a565b601155565b60006001600160a01b038216611251576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b61127e6118fd565b6112886000611fae565b565b6112926118fd565b600f55565b61129f6118fd565b610f2481600a55565b6112b06118fd565b601055565b6040516331a9108f60e11b8152600481018290526000903090636352211e9060240160206040518083038186803b1580156112ef57600080fd5b505afa92505050801561131f575060408051601f3d908101601f1916820190925261131c91810190612910565b60015b61090c57506000919050565b919050565b6000546001600160a01b031690565b6113476118fd565b600d55565b6113546118fd565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461093790612fef565b6001600160a01b0382163314156113af5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611426848484611aea565b611438836001600160a01b0316611ffe565b15611466576114498484848461200d565b611466576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061147782611a55565b6114c35760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610c3a565b60165462010000900460ff1661156557601380546114e090612fef565b80601f016020809104026020016040519081016040528092919081815260200182805461150c90612fef565b80156115595780601f1061152e57610100808354040283529160200191611559565b820191906000526020600020905b81548152906001019060200180831161153c57829003601f168201915b50505050509050919050565b61156d612105565b61157683612114565b601460405160200161158a93929190612c69565b6040516020818303038152906040529050919050565b6115a86118fd565b6016805460ff1916911515919091179055565b600260095414156115de5760405162461bcd60e51b8152600401610c3a90612ee3565b600260095560165460ff1661162f5760405162461bcd60e51b81526020600482015260176024820152761dda1a5d195b1a5cdd135a5b9d081a5cc814185d5cd959604a1b6044820152606401610c3a565b6116393382611075565b6116805760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b6044820152606401610c3a565b81600f5410156116e35760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401610c3a565b336000908152601760205260409020546116fe908390612f4a565b600f54101561174f5760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401610c3a565b81600d5461175d9190612f76565b341461177b5760405162461bcd60e51b8152600401610c3a90612e8b565b601154611786610a85565b6117909084612f4a565b11156117ae5760405162461bcd60e51b8152600401610c3a90612ebd565b33600090815260176020526040812080548492906117cd908490612f4a565b909155506117dd90503383611cc4565b50506001600955565b6117ee6118fd565b6011546117f9610a85565b6118039084612f4a565b11156118215760405162461bcd60e51b8152600401610c3a90612ebd565b6109248183611cc4565b6118336118fd565b600e55565b6118406118fd565b805161092490601490602084019061276e565b606061185d612211565b905090565b61186a6118fd565b6001600160a01b0381166118cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c3a565b610f2481611fae565b60006001600160e01b0319821663152a902d60e11b148061090c575061090c82612291565b33611906611330565b6001600160a01b0316146112885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c3a565b6127106001600160601b03821611156119ca5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610c3a565b6001600160a01b038216611a1c5760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606401610c3a565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600b55565b600081600111158015611a69575060015482105b801561090c575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611af582611e8c565b9050836001600160a01b031681600001516001600160a01b031614611b2c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611b4a5750611b4a85336108b3565b80611b65575033611b5a846109ba565b6001600160a01b0316145b905080611b8557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611bac57604051633a954ecd60e21b815260040160405180910390fd5b611bb860008487611a8e565b6001600160a01b03858116600090815260066020908152604080832080546001600160401b03198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611c8b576001548214611c8b57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061311d83398151915260405160405180910390a45050505050565b6109248282604051806020016040528060008152506122e1565b6000611ce983611e8c565b80519091508215611d4f576000336001600160a01b0383161480611d125750611d1282336108b3565b80611d2d575033611d22866109ba565b6001600160a01b0316145b905080611d4d57604051632ce44b5f60e11b815260040160405180910390fd5b505b611d5b60008583611a8e565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b038084169190910181166001600160401b0319841681178390048216600190810183169093026001600160401b03600160801b03600160c01b0319909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611e53576001548214611e5357805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b0384169060008051602061311d833981519152908390a450506002805460010190555050565b60408051606081018252600080825260208201819052918101919091528180600111611f9557600154811015611f9557600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611f935780516001600160a01b031615611f2a579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611f8e579392505050565b611f2a565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612042903390899088908890600401612df7565b602060405180830381600087803b15801561205c57600080fd5b505af192505050801561208c575060408051601f3d908101601f1916820190925261208991810190612b61565b60015b6120e7573d8080156120ba576040519150601f19603f3d011682016040523d82523d6000602084013e6120bf565b606091505b5080516120df576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606015805461093790612fef565b6060816121385750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612162578061214c8161302a565b915061215b9050600a83612f62565b915061213c565b6000816001600160401b0381111561217c5761217c61309b565b6040519080825280601f01601f1916602001820160405280156121a6576020820181803683370190505b5090505b84156120fd576121bb600183612f95565b91506121c8600a86613045565b6121d3906030612f4a565b60f81b8183815181106121e8576121e8613085565b60200101906001600160f81b031916908160001a90535061220a600a86612f62565b94506121aa565b606060008061222281612710610b6b565b9150915061226b61223282612114565b612246846001600160a01b03166014612479565b604051602001612257929190612d2d565b60405160208183030381529060405261261b565b60405160200161227b9190612db2565b6040516020818303038152906040529250505090565b60006001600160e01b031982166380ac58cd60e01b14806122c257506001600160e01b03198216635b5e139f60e01b145b8061090c57506301ffc9a760e01b6001600160e01b031983161461090c565b6001546001600160a01b03841661230a57604051622e076360e81b815260040160405180910390fd5b826123285760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546001600160801b031981166001600160401b038083168b018116918217600160401b6001600160401b031990941690921783900481168b01811690920217909155858452600590925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501906123c190611ffe565b15612437575b60405182906001600160a01b0388169060009060008051602061311d833981519152908290a4612400600087848060010195508761200d565b61241d576040516368d2bf6b60e11b815260040160405180910390fd5b8082106123c757826001541461243257600080fd5b61246a565b5b6040516001830192906001600160a01b0388169060009060008051602061311d833981519152908290a4808210612438575b50600155611466600085838684565b60606000612488836002612f76565b612493906002612f4a565b6001600160401b038111156124aa576124aa61309b565b6040519080825280601f01601f1916602001820160405280156124d4576020820181803683370190505b509050600360fc1b816000815181106124ef576124ef613085565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061251e5761251e613085565b60200101906001600160f81b031916908160001a9053506000612542846002612f76565b61254d906001612f4a565b90505b60018111156125c5576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061258157612581613085565b1a60f81b82828151811061259757612597613085565b60200101906001600160f81b031916908160001a90535060049490941c936125be81612fd8565b9050612550565b5083156126145760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c3a565b9392505050565b606081516000141561263b57505060408051602081019091526000815290565b60006040518060600160405280604081526020016130dd604091399050600060038451600261266a9190612f4a565b6126749190612f62565b61267f906004612f76565b6001600160401b038111156126965761269661309b565b6040519080825280601f01601f1916602001820160405280156126c0576020820181803683370190505b509050600182016020820185865187015b8082101561272c576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506126d1565b5050600386510660018114612748576002811461275b57612763565b603d6001830353603d6002830353612763565b603d60018303535b509195945050505050565b82805461277a90612fef565b90600052602060002090601f01602090048101928261279c57600085556127e2565b82601f106127b557805160ff19168380011785556127e2565b828001600101855582156127e2579182015b828111156127e25782518255916020019190600101906127c7565b506127ee9291506127f2565b5090565b5b808211156127ee57600081556001016127f3565b60006001600160401b038311156128205761282061309b565b612833601f8401601f1916602001612f1a565b905082815283838301111561284757600080fd5b828260208301376000602084830101529392505050565b600082601f83011261286f57600080fd5b813560206001600160401b0382111561288a5761288a61309b565b8160051b612899828201612f1a565b8381528281019086840183880185018910156128b457600080fd5b600093505b858410156128d75780358352600193909301929184019184016128b9565b50979650505050505050565b8035801515811461132b57600080fd5b60006020828403121561290557600080fd5b8135612614816130b1565b60006020828403121561292257600080fd5b8151612614816130b1565b6000806040838503121561294057600080fd5b823561294b816130b1565b9150602083013561295b816130b1565b809150509250929050565b60008060006060848603121561297b57600080fd5b8335612986816130b1565b92506020840135612996816130b1565b929592945050506040919091013590565b600080600080608085870312156129bd57600080fd5b84356129c8816130b1565b935060208501356129d8816130b1565b92506040850135915060608501356001600160401b038111156129fa57600080fd5b8501601f81018713612a0b57600080fd5b612a1a87823560208401612807565b91505092959194509250565b60008060408385031215612a3957600080fd5b8235612a44816130b1565b915060208301356001600160401b03811115612a5f57600080fd5b612a6b8582860161285e565b9150509250929050565b60008060408385031215612a8857600080fd5b8235612a93816130b1565b9150612aa1602084016128e3565b90509250929050565b60008060408385031215612abd57600080fd5b8235612ac8816130b1565b946020939093013593505050565b60008060408385031215612ae957600080fd5b8235612af4816130b1565b915060208301356001600160601b038116811461295b57600080fd5b600060208284031215612b2257600080fd5b612614826128e3565b600060208284031215612b3d57600080fd5b5035919050565b600060208284031215612b5657600080fd5b8135612614816130c6565b600060208284031215612b7357600080fd5b8151612614816130c6565b600060208284031215612b9057600080fd5b81356001600160401b03811115612ba657600080fd5b8201601f81018413612bb757600080fd5b6120fd84823560208401612807565b60008060408385031215612bd957600080fd5b82359150602083013561295b816130b1565b60008060408385031215612bfe57600080fd5b8235915060208301356001600160401b03811115612a5f57600080fd5b60008060408385031215612c2e57600080fd5b50508035926020909101359150565b60008151808452612c55816020860160208601612fac565b601f01601f19169290920160200192915050565b600084516020612c7c8285838a01612fac565b855191840191612c8f8184848a01612fac565b8554920191600090600181811c9080831680612cac57607f831692505b858310811415612cca57634e487b7160e01b85526022600452602485fd5b808015612cde5760018114612cef57612d1c565b60ff19851688528388019550612d1c565b60008b81526020902060005b85811015612d145781548a820152908401908801612cfb565b505083880195505b50939b9a5050505050505050505050565b7a3d9139b2b63632b92fb332b2afb130b9b4b9afb837b4b73a39911d60291b81528251600090612d6481601b850160208801612fac565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b918401918201528351612d9781602e840160208801612fac565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251612dea81601d850160208701612fac565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e2a90830184612c3d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612e6c57835183529284019291840191600101612e50565b50909695505050505050565b6020815260006126146020830184612c3d565b602080825260189082015277115512081d985b1d59481a5cc81b9bdd0818dbdc9c9958dd60421b604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612f4257612f4261309b565b604052919050565b60008219821115612f5d57612f5d613059565b500190565b600082612f7157612f7161306f565b500490565b6000816000190483118215151615612f9057612f90613059565b500290565b600082821015612fa757612fa7613059565b500390565b60005b83811015612fc7578181015183820152602001612faf565b838111156114665750506000910152565b600081612fe757612fe7613059565b506000190190565b600181811c9082168061300357607f821691505b6020821081141561302457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561303e5761303e613059565b5060010190565b6000826130545761305461306f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f2457600080fd5b6001600160e01b031981168114610f2457600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220d07800873d0130a9ebadd74da553236ef033c3557cd25fa54e882b8e6f9fe11d64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000013447265616d696e2720446976657273205649500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065644495645520000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Dreamin' Divers VIP
Arg [1] : _symbol (string): VDIVER

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [3] : 447265616d696e27204469766572732056495000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 5644495645520000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

62749:8349:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64107:165;;;;;;;;;;-1:-1:-1;64107:165:0;;;;;:::i;:::-;;:::i;:::-;;;13292:14:1;;13285:22;13267:41;;13255:2;13240:18;64107:165:0;;;;;;;;63932:154;;;;;;;;;;-1:-1:-1;63932:154:0;;;;;:::i;:::-;;:::i;:::-;;44272:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45776:204::-;;;;;;;;;;-1:-1:-1;45776:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;11674:32:1;;;11656:51;;11644:2;11629:18;45776:204:0;11510:203:1;45338:372:0;;;;;;;;;;-1:-1:-1;45338:372:0;;;;;:::i;:::-;;:::i;67079:99::-;;;;;;;;;;-1:-1:-1;67159:13:0;;67079:99;;;19935:25:1;;;19923:2;19908:18;67079:99:0;19789:177:1;40397:312:0;;;;;;;;;;;;;:::i;63011:28::-;;;;;;;;;;;;;;;;66944:103;;;;;;;;;;-1:-1:-1;66944:103:0;;;;;:::i;:::-;;:::i;46641:170::-;;;;;;;;;;-1:-1:-1;46641:170:0;;;;;:::i;:::-;;:::i;63226:38::-;;;;;;;;;;;;;:::i;65709:90::-;;;;;;;;;;-1:-1:-1;65709:90:0;;;;;:::i;:::-;;:::i;32159:442::-;;;;;;;;;;-1:-1:-1;32159:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;12403:32:1;;;12385:51;;12467:2;12452:18;;12445:34;;;;12358:18;32159:442:0;12211:274:1;62856:26:0;;;;;;;;;;;;;;;;68878:542;;;;;;:::i;:::-;;:::i;69569:661::-;;;:::i;62898:26::-;;;;;;;;;;;;;;;;46882:185;;;;;;;;;;-1:-1:-1;46882:185:0;;;;;:::i;:::-;;:::i;69434:81::-;;;;;;;;;;-1:-1:-1;69434:81:0;;;;;:::i;:::-;;:::i;70269:475::-;;;;;;;;;;-1:-1:-1;70269:475:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65828:89::-;;;;;;;;;;-1:-1:-1;65900:11:0;;;;;;;65828:89;;67230:100;;;;;;;;;;-1:-1:-1;67230:100:0;;;;;:::i;:::-;;:::i;12459:405::-;;;;;;;;;;-1:-1:-1;12459:405:0;;;;;:::i;:::-;;:::i;66660:94::-;;;;;;;;;;-1:-1:-1;66660:94:0;;;;;:::i;:::-;;:::i;44080:125::-;;;;;;;;;;-1:-1:-1;44080:125:0;;;;;:::i;:::-;;:::i;65224:176::-;;;;;;;;;;-1:-1:-1;65224:176:0;;;;;:::i;:::-;;:::i;41526:206::-;;;;;;;;;;-1:-1:-1;41526:206:0;;;;;:::i;:::-;;:::i;61854:103::-;;;;;;;;;;;;;:::i;66242:97::-;;;;;;;;;;-1:-1:-1;66242:97:0;;;;;:::i;:::-;;:::i;65943:114::-;;;;;;;;;;-1:-1:-1;65943:114:0;;;;;:::i;:::-;-1:-1:-1;;;;;66032:19:0;66010:7;66032:19;;;:9;:19;;;;;;;65943:114;66792:111;;;;;;;;;;-1:-1:-1;66792:111:0;;;;;:::i;:::-;;:::i;66390:97::-;;;;;;;;;;-1:-1:-1;66390:97:0;;;;;:::i;:::-;;:::i;70852:243::-;;;;;;;;;;-1:-1:-1;70852:243:0;;;;;:::i;:::-;;:::i;61206:87::-;;;;;;;;;;;;;:::i;65434:100::-;;;;;;;;;;-1:-1:-1;65434:100:0;;;;;:::i;:::-;;:::i;65071:116::-;;;;;;;;;;-1:-1:-1;65071:116:0;;;;;:::i;:::-;;:::i;66083:114::-;;;;;;;;;;-1:-1:-1;66083:114:0;;;;;:::i;:::-;-1:-1:-1;;;;;66172:19:0;66150:7;66172:19;;;:9;:19;;;;;;;66083:114;44441:104;;;;;;;;;;;;;:::i;62949:28::-;;;;;;;;;;;;;;;;63314:23;;;;;;;;;;-1:-1:-1;63314:23:0;;;;;;;;46052:287;;;;;;;;;;-1:-1:-1;46052:287:0;;;;;:::i;:::-;;:::i;47138:370::-;;;;;;;;;;-1:-1:-1;47138:370:0;;;;;:::i;:::-;;:::i;67603:327::-;;;;;;;;;;-1:-1:-1;67603:327:0;;;;;:::i;:::-;;:::i;66525:97::-;;;;;;;;;;-1:-1:-1;66525:97:0;;;;;:::i;:::-;;:::i;68202:650::-;;;;;;:::i;:::-;;:::i;67985:197::-;;;;;;;;;;-1:-1:-1;67985:197:0;;;;;:::i;:::-;;:::i;63081:24::-;;;;;;;;;;;;;;;;65577:100;;;;;;;;;;-1:-1:-1;65577:100:0;;;;;:::i;:::-;;:::i;67336:128::-;;;;;;;;;;-1:-1:-1;67336:128:0;;;;;:::i;:::-;;:::i;64301:113::-;;;;;;;;;;;;;:::i;63354:23::-;;;;;;;;;;-1:-1:-1;63354:23:0;;;;;;;;;;;46410:164;;;;;;;;;;-1:-1:-1;46410:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;46531:25:0;;;46507:4;46531:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46410:164;62112:201;;;;;;;;;;-1:-1:-1;62112:201:0;;;;;:::i;:::-;;:::i;64107:165::-;64210:4;64230:36;64254:11;64230:23;:36::i;:::-;64223:43;64107:165;-1:-1:-1;;64107:165:0:o;63932:154::-;61092:13;:11;:13::i;:::-;64036:44:::1;64055:9;64066:13;64036:18;:44::i;:::-;63932:154:::0;;:::o;44272:100::-;44326:13;44359:5;44352:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44272:100;:::o;45776:204::-;45844:7;45869:16;45877:7;45869;:16::i;:::-;45864:64;;45894:34;;-1:-1:-1;;;45894:34:0;;;;;;;;;;;45864:64;-1:-1:-1;45948:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45948:24:0;;45776:204::o;45338:372::-;45411:13;45427:24;45443:7;45427:15;:24::i;:::-;45411:40;;45472:5;-1:-1:-1;;;;;45466:11:0;:2;-1:-1:-1;;;;;45466:11:0;;45462:48;;;45486:24;;-1:-1:-1;;;45486:24:0;;;;;;;;;;;45462:48;38174:10;-1:-1:-1;;;;;45527:21:0;;;45523:139;;45554:37;45571:5;38174:10;46410:164;:::i;45554:37::-;45550:112;;45615:35;;-1:-1:-1;;;45615:35:0;;;;;;;;;;;45550:112;45674:28;45683:2;45687:7;45696:5;45674:8;:28::i;:::-;45400:310;45338:372;;:::o;40397:312::-;40660:12;;63865:1;40644:13;:28;-1:-1:-1;;40644:46:0;;40397:312::o;66944:103::-;61092:13;:11;:13::i;:::-;67024:17;;::::1;::::0;:10:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;46641:170::-:0;46775:28;46785:4;46791:2;46795:7;46775:9;:28::i;63226:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65709:90::-;61092:13;:11;:13::i;:::-;65774:11:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;65774:19:0;;::::1;::::0;;;::::1;::::0;;65709:90::o;32159:442::-;32256:7;32314:27;;;:17;:27;;;;;;;;32285:56;;;;;;;;;-1:-1:-1;;;;;32285:56:0;;;;;-1:-1:-1;;;32285:56:0;;;-1:-1:-1;;;;;32285:56:0;;;;;;;;32256:7;;32354:92;;-1:-1:-1;32405:29:0;;;;;;;;;32415:19;32405:29;-1:-1:-1;;;;;32405:29:0;;;;-1:-1:-1;;;32405:29:0;;-1:-1:-1;;;;;32405:29:0;;;;;32354:92;32496:23;;;;32458:21;;32967:5;;32483:36;;-1:-1:-1;;;;;32483:36:0;:10;:36;:::i;:::-;32482:58;;;;:::i;:::-;32561:16;;;;;-1:-1:-1;32159:442:0;;-1:-1:-1;;;;32159:442:0:o;68878:542::-;36468:1;37066:7;;:19;;37058:63;;;;-1:-1:-1;;;37058:63:0;;;;;;;:::i;:::-;;;;;;;;;36468:1;37199:7;:18;68968:11:::1;::::0;::::1;::::0;::::1;;;68960:44;;;::::0;-1:-1:-1;;;68960:44:0;;14460:2:1;68960:44:0::1;::::0;::::1;14442:21:1::0;14499:2;14479:18;;;14472:30;-1:-1:-1;;;14518:18:1;;;14511:50;14578:18;;68960:44:0::1;14258:344:1::0;68960:44:0::1;69036:7;69019:13;;:24;;69011:74;;;::::0;-1:-1:-1;;;69011:74:0;;17050:2:1;69011:74:0::1;::::0;::::1;17032:21:1::0;17089:2;17069:18;;;17062:30;17128:34;17108:18;;;17101:62;-1:-1:-1;;;17179:18:1;;;17172:35;17224:19;;69011:74:0::1;16848:401:1::0;69011:74:0::1;69127:10;69117:21;::::0;;;:9:::1;:21;::::0;;;;;:31:::1;::::0;69141:7;;69117:31:::1;:::i;:::-;69100:13;;:48;;69092:88;;;::::0;-1:-1:-1;;;69092:88:0;;18158:2:1;69092:88:0::1;::::0;::::1;18140:21:1::0;18197:2;18177:18;;;18170:30;-1:-1:-1;;;18216:18:1;;;18209:57;18283:18;;69092:88:0::1;17956:351:1::0;69092:88:0::1;69222:7;69208:11;;:21;;;;:::i;:::-;69195:9;:34;69187:71;;;;-1:-1:-1::0;;;69187:71:0::1;;;;;;;:::i;:::-;69303:9;;69284:13;:11;:13::i;:::-;69274:23;::::0;:7;:23:::1;:::i;:::-;69273:40;;69265:65;;;;-1:-1:-1::0;;;69265:65:0::1;;;;;;;:::i;:::-;69355:10;69345:21;::::0;;;:9:::1;:21;::::0;;;;:32;;69370:7;;69345:21;:32:::1;::::0;69370:7;;69345:32:::1;:::i;:::-;::::0;;;-1:-1:-1;69384:30:0::1;::::0;-1:-1:-1;69394:10:0::1;69406:7:::0;69384:9:::1;:30::i;:::-;-1:-1:-1::0;36424:1:0;37378:7;:22;68878:542::o;69569:661::-;61092:13;:11;:13::i;:::-;36468:1:::1;37066:7;;:19;;37058:63;;;;-1:-1:-1::0;;;37058:63:0::1;;;;;;;:::i;:::-;36468:1;37199:7;:18:::0;69892:15:::2;::::0;69875:7:::2;::::0;-1:-1:-1;;;;;69892:15:0::2;:29:::0;69889:232:::2;;69973:15;::::0;69965:63:::2;::::0;-1:-1:-1;;;;;69973:15:0;;::::2;::::0;70002:21:::2;::::0;69965:63:::2;::::0;;;70002:21;69973:15;69965:63:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69956:72;;;;;69889:232;;;70066:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;70058:21:0::2;70087;70058:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;70049:64:0;;-1:-1:-1;;69889:232:0::2;70135:2;70127:11;;;::::0;::::2;46882:185:::0;47020:39;47037:4;47043:2;47047:7;47020:39;;;;;;;;;;;;:16;:39::i;69434:81::-;69489:20;69495:7;69504:4;69489:5;:20::i;:::-;69434:81;:::o;70269:475::-;70341:16;70366:23;70392:19;70402:8;70392:9;:19::i;:::-;70366:45;;70418:25;70460:15;-1:-1:-1;;;;;70446:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70446:30:0;-1:-1:-1;70418:58:0;-1:-1:-1;70552:18:0;63865:1;70581:136;70619:13;;70615:1;:17;70581:136;;;70663:18;;-1:-1:-1;;;70663:18:0;;;;;19935:25:1;;;70663:4:0;;:15;;19908:18:1;;70663::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;70651:30:0;:8;-1:-1:-1;;;;;70651:30:0;;70648:61;;;70708:1;70683:8;70692:12;;;;:::i;:::-;;;70683:22;;;;;;;;:::i;:::-;;;;;;:26;;;;;70648:61;70634:3;;;;:::i;:::-;;;;70581:136;;;-1:-1:-1;70730:8:0;;70269:475;-1:-1:-1;;;;70269:475:0:o;67230:100::-;61092:13;:11;:13::i;:::-;67304:20;;::::1;::::0;:13:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;12459:405::-:0;12589:26;;-1:-1:-1;;;;;;7983:2:1;7954:15;;;7950:45;12589:26:0;;;7938:58:1;12546:4:0;;;;8012:12:1;;12589:26:0;;;;;;;;;;;;12579:37;;;;;;12563:53;;12632:9;12627:192;12651:6;:13;12647:1;:17;12627:192;;;12702:6;12709:1;12702:9;;;;;;;;:::i;:::-;;;;;;;12694:5;:17;:113;;12789:6;12796:1;12789:9;;;;;;;;:::i;:::-;;;;;;;12800:5;12772:34;;;;;;;;8192:19:1;;;8236:2;8227:12;;8220:28;8273:2;8264:12;;8035:247;12772:34:0;;;;;;;;;;;;;12762:45;;;;;;12694:113;;;12741:5;12748:6;12755:1;12748:9;;;;;;;;:::i;:::-;;;;;;;12724:34;;;;;;;;8192:19:1;;;8236:2;8227:12;;8220:28;8273:2;8264:12;;8035:247;12724:34:0;;;;;;;;;;;;;12714:45;;;;;;12694:113;12686:121;-1:-1:-1;12666:3:0;;;;:::i;:::-;;;;12627:192;;;-1:-1:-1;12845:11:0;;12836:20;;12459:405;-1:-1:-1;;;12459:405:0:o;66660:94::-;61092:13;:11;:13::i;:::-;66729:11:::1;:19:::0;;;::::1;;;;-1:-1:-1::0;;66729:19:0;;::::1;::::0;;;::::1;::::0;;66660:94::o;44080:125::-;44144:7;44171:21;44184:7;44171:12;:21::i;:::-;:26;;44080:125;-1:-1:-1;;44080:125:0:o;65224:176::-;61092:13;:11;:13::i;:::-;65325:10:::1;65308:13;:11;:13::i;:::-;:27;;65300:65;;;::::0;-1:-1:-1;;;65300:65:0;;14106:2:1;65300:65:0::1;::::0;::::1;14088:21:1::0;14145:2;14125:18;;;14118:30;-1:-1:-1;;;14164:18:1;;;14157:55;14229:18;;65300:65:0::1;13904:349:1::0;65300:65:0::1;65372:9;:22:::0;65224:176::o;41526:206::-;41590:7;-1:-1:-1;;;;;41614:19:0;;41610:60;;41642:28;;-1:-1:-1;;;41642:28:0;;;;;;;;;;;41610:60;-1:-1:-1;;;;;;41696:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;41696:27:0;;41526:206::o;61854:103::-;61092:13;:11;:13::i;:::-;61919:30:::1;61946:1;61919:18;:30::i;:::-;61854:103::o:0;66242:97::-;61092:13;:11;:13::i;:::-;66313::::1;:20:::0;66242:97::o;66792:111::-;61092:13;:11;:13::i;:::-;66870:27:::1;66885:11;12420::::0;:25;12347:106;66390:97;61092:13;:11;:13::i;:::-;66461::::1;:20:::0;66390:97::o;70852:243::-;70941:21;;-1:-1:-1;;;70941:21:0;;;;;19935:25:1;;;70921:7:0;;70941:4;;:12;;19908:18:1;;70941:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70941:21:0;;;;;;;;-1:-1:-1;;70941:21:0;;;;;;;;;;;;:::i;:::-;;;70937:153;;-1:-1:-1;71057:1:0;;70852:243;-1:-1:-1;70852:243:0:o;70937:153::-;70852:243;;;:::o;61206:87::-;61252:7;61279:6;-1:-1:-1;;;;;61279:6:0;;61206:87::o;65434:100::-;61092:13;:11;:13::i;:::-;65506:11:::1;:22:::0;65434:100::o;65071:116::-;61092:13;:11;:13::i;:::-;65148:15:::1;:33:::0;;-1:-1:-1;;;;;;65148:33:0::1;-1:-1:-1::0;;;;;65148:33:0;;;::::1;::::0;;;::::1;::::0;;65071:116::o;44441:104::-;44497:13;44530:7;44523:14;;;;;:::i;46052:287::-;-1:-1:-1;;;;;46151:24:0;;38174:10;46151:24;46147:54;;;46184:17;;-1:-1:-1;;;46184:17:0;;;;;;;;;;;46147:54;38174:10;46214:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;46214:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;46214:53:0;;;;;;;;;;46283:48;;13267:41:1;;;46214:42:0;;38174:10;46283:48;;13240:18:1;46283:48:0;;;;;;;46052:287;;:::o;47138:370::-;47305:28;47315:4;47321:2;47325:7;47305:9;:28::i;:::-;47348:15;:2;-1:-1:-1;;;;;47348:13:0;;:15::i;:::-;47344:157;;;47369:56;47400:4;47406:2;47410:7;47419:5;47369:30;:56::i;:::-;47365:136;;47449:40;;-1:-1:-1;;;47449:40:0;;;;;;;;;;;47365:136;47138:370;;;;:::o;67603:327::-;67677:13;67707:17;67715:8;67707:7;:17::i;:::-;67699:61;;;;-1:-1:-1;;;67699:61:0;;15168:2:1;67699:61:0;;;15150:21:1;15207:2;15187:18;;;15180:30;15246:33;15226:18;;;15219:61;15297:18;;67699:61:0;14966:355:1;67699:61:0;67770:11;;;;;;;67767:57;;67806:10;67799:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67603:327;;;:::o;67767:57::-;67861:17;:15;:17::i;:::-;67880:26;67897:8;67880:16;:26::i;:::-;67908:14;67844:79;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67830:94;;67603:327;;;:::o;66525:97::-;61092:13;:11;:13::i;:::-;66597:11:::1;:19:::0;;-1:-1:-1;;66597:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;66525:97::o;68202:650::-;36468:1;37066:7;;:19;;37058:63;;;;-1:-1:-1;;;37058:63:0;;;;;;;:::i;:::-;36468:1;37199:7;:18;68320:11:::1;::::0;::::1;;68312:47;;;::::0;-1:-1:-1;;;68312:47:0;;19285:2:1;68312:47:0::1;::::0;::::1;19267:21:1::0;19324:2;19304:18;;;19297:30;-1:-1:-1;;;19343:18:1;;;19336:53;19406:18;;68312:47:0::1;19083:347:1::0;68312:47:0::1;68374:33;68388:10;68400:6;68374:13;:33::i;:::-;68366:70;;;::::0;-1:-1:-1;;;68366:70:0;;16344:2:1;68366:70:0::1;::::0;::::1;16326:21:1::0;16383:2;16363:18;;;16356:30;-1:-1:-1;;;16402:18:1;;;16395:54;16466:18;;68366:70:0::1;16142:348:1::0;68366:70:0::1;68468:7;68451:13;;:24;;68443:77;;;::::0;-1:-1:-1;;;68443:77:0;;15935:2:1;68443:77:0::1;::::0;::::1;15917:21:1::0;15974:2;15954:18;;;15947:30;16013:34;15993:18;;;15986:62;-1:-1:-1;;;16064:18:1;;;16057:38;16112:19;;68443:77:0::1;15733:404:1::0;68443:77:0::1;68562:10;68552:21;::::0;;;:9:::1;:21;::::0;;;;;:31:::1;::::0;68576:7;;68552:31:::1;:::i;:::-;68535:13;;:48;;68527:91;;;::::0;-1:-1:-1;;;68527:91:0;;14809:2:1;68527:91:0::1;::::0;::::1;14791:21:1::0;14848:2;14828:18;;;14821:30;14887:32;14867:18;;;14860:60;14937:18;;68527:91:0::1;14607:354:1::0;68527:91:0::1;68660:7;68646:11;;:21;;;;:::i;:::-;68633:9;:34;68625:71;;;;-1:-1:-1::0;;;68625:71:0::1;;;;;;;:::i;:::-;68741:9;;68722:13;:11;:13::i;:::-;68712:23;::::0;:7;:23:::1;:::i;:::-;68711:40;;68703:65;;;;-1:-1:-1::0;;;68703:65:0::1;;;;;;;:::i;:::-;68787:10;68777:21;::::0;;;:9:::1;:21;::::0;;;;:32;;68802:7;;68777:21;:32:::1;::::0;68802:7;;68777:32:::1;:::i;:::-;::::0;;;-1:-1:-1;68816:30:0::1;::::0;-1:-1:-1;68826:10:0::1;68838:7:::0;68816:9:::1;:30::i;:::-;-1:-1:-1::0;;36424:1:0;37378:7;:22;68202:650::o;67985:197::-;61092:13;:11;:13::i;:::-;68112:9:::1;;68093:13;:11;:13::i;:::-;68083:23;::::0;:7;:23:::1;:::i;:::-;68082:40;;68074:65;;;;-1:-1:-1::0;;;68074:65:0::1;;;;;;;:::i;:::-;68148:28;68158:8;68168:7;68148:9;:28::i;65577:100::-:0;61092:13;:11;:13::i;:::-;65649:11:::1;:22:::0;65577:100::o;67336:128::-;61092:13;:11;:13::i;:::-;67424:34;;::::1;::::0;:14:::1;::::0;:34:::1;::::0;::::1;::::0;::::1;:::i;64301:113::-:0;64355:13;64388:20;:18;:20::i;:::-;64381:27;;64301:113;:::o;62112:201::-;61092:13;:11;:13::i;:::-;-1:-1:-1;;;;;62201:22:0;::::1;62193:73;;;::::0;-1:-1:-1;;;62193:73:0;;15528:2:1;62193:73:0::1;::::0;::::1;15510:21:1::0;15567:2;15547:18;;;15540:30;15606:34;15586:18;;;15579:62;-1:-1:-1;;;15657:18:1;;;15650:36;15703:19;;62193:73:0::1;15326:402:1::0;62193:73:0::1;62277:28;62296:8;62277:18;:28::i;31889:215::-:0;31991:4;-1:-1:-1;;;;;;32015:41:0;;-1:-1:-1;;;32015:41:0;;:81;;;32060:36;32084:11;32060:23;:36::i;61371:132::-;38174:10;61435:7;:5;:7::i;:::-;-1:-1:-1;;;;;61435:23:0;;61427:68;;;;-1:-1:-1;;;61427:68:0;;17456:2:1;61427:68:0;;;17438:21:1;;;17475:18;;;17468:30;17534:34;17514:18;;;17507:62;17586:18;;61427:68:0;17254:356:1;33251:332:0;32967:5;-1:-1:-1;;;;;33354:33:0;;;;33346:88;;;;-1:-1:-1;;;33346:88:0;;18514:2:1;33346:88:0;;;18496:21:1;18553:2;18533:18;;;18526:30;18592:34;18572:18;;;18565:62;-1:-1:-1;;;18643:18:1;;;18636:40;18693:19;;33346:88:0;18312:406:1;33346:88:0;-1:-1:-1;;;;;33453:22:0;;33445:60;;;;-1:-1:-1;;;33445:60:0;;19637:2:1;33445:60:0;;;19619:21:1;19676:2;19656:18;;;19649:30;-1:-1:-1;;;19695:18:1;;;19688:55;19760:18;;33445:60:0;19435:349:1;33445:60:0;33540:35;;;;;;;;;-1:-1:-1;;;;;33540:35:0;;;;;;-1:-1:-1;;;;;33540:35:0;;;;;;;;;;-1:-1:-1;;;33518:57:0;;;;:19;:57;33251:332::o;47763:174::-;47820:4;47863:7;63865:1;47844:26;;:53;;;;;47884:13;;47874:7;:23;47844:53;:85;;;;-1:-1:-1;;47902:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;47902:27:0;;;;47901:28;;47763:174::o;56985:196::-;57100:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;57100:29:0;-1:-1:-1;;;;;57100:29:0;;;;;;;;;57145:28;;57100:24;;57145:28;;;;;;;56985:196;;;:::o;51933:2130::-;52048:35;52086:21;52099:7;52086:12;:21::i;:::-;52048:59;;52146:4;-1:-1:-1;;;;;52124:26:0;:13;:18;;;-1:-1:-1;;;;;52124:26:0;;52120:67;;52159:28;;-1:-1:-1;;;52159:28:0;;;;;;;;;;;52120:67;52200:22;38174:10;-1:-1:-1;;;;;52226:20:0;;;;:73;;-1:-1:-1;52263:36:0;52280:4;38174:10;46410:164;:::i;52263:36::-;52226:126;;;-1:-1:-1;38174:10:0;52316:20;52328:7;52316:11;:20::i;:::-;-1:-1:-1;;;;;52316:36:0;;52226:126;52200:153;;52371:17;52366:66;;52397:35;;-1:-1:-1;;;52397:35:0;;;;;;;;;;;52366:66;-1:-1:-1;;;;;52447:16:0;;52443:52;;52472:23;;-1:-1:-1;;;52472:23:0;;;;;;;;;;;52443:52;52616:35;52633:1;52637:7;52646:4;52616:8;:35::i;:::-;-1:-1:-1;;;;;52947:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;52947:31:0;;;-1:-1:-1;;;;;52947:31:0;;;-1:-1:-1;;52947:31:0;;;;;;;52993:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;52993:29:0;;;;;;;;;;;53073:20;;;:11;:20;;;;;;53108:18;;-1:-1:-1;;;;;;53141:49:0;;;;-1:-1:-1;;;53174:15:0;53141:49;;;;;;;;;;53464:11;;53524:24;;;;;53567:13;;53073:20;;53524:24;;53567:13;53563:384;;53777:13;;53762:11;:28;53758:174;;53815:20;;53884:28;;;;-1:-1:-1;;;;;53858:54:0;-1:-1:-1;;;53858:54:0;-1:-1:-1;;;;;;53858:54:0;;;-1:-1:-1;;;;;53815:20:0;;53858:54;;;;53758:174;52922:1036;;;53994:7;53990:2;-1:-1:-1;;;;;53975:27:0;53984:4;-1:-1:-1;;;;;53975:27:0;-1:-1:-1;;;;;;;;;;;53975:27:0;;;;;;;;;52037:2026;;51933:2130;;;:::o;48021:104::-;48090:27;48100:2;48104:8;48090:27;;;;;;;;;;;;:9;:27::i;54459:2408::-;54539:35;54577:21;54590:7;54577:12;:21::i;:::-;54626:18;;54539:59;;-1:-1:-1;54657:290:0;;;;54691:22;38174:10;-1:-1:-1;;;;;54717:20:0;;;;:77;;-1:-1:-1;54758:36:0;54775:4;38174:10;46410:164;:::i;54758:36::-;54717:134;;;-1:-1:-1;38174:10:0;54815:20;54827:7;54815:11;:20::i;:::-;-1:-1:-1;;;;;54815:36:0;;54717:134;54691:161;;54874:17;54869:66;;54900:35;;-1:-1:-1;;;54900:35:0;;;;;;;;;;;54869:66;54676:271;54657:290;55075:35;55092:1;55096:7;55105:4;55075:8;:35::i;:::-;-1:-1:-1;;;;;55440:18:0;;;55406:31;55440:18;;;:12;:18;;;;;;;;55473:24;;-1:-1:-1;;;;;;;;;;55473:24:0;;;;;;;;;-1:-1:-1;;;;;;55473:24:0;;;;55512:29;;;;;55496:1;55512:29;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;55512:29:0;;;;;;;;;;55674:20;;;:11;:20;;;;;;55709;;-1:-1:-1;;;;55777:15:0;55744:49;;;-1:-1:-1;;;55744:49:0;-1:-1:-1;;;;;;55744:49:0;;;;;;;;;;55808:22;-1:-1:-1;;;55808:22:0;;;56100:11;;;56160:24;;;;;56203:13;;55440:18;;56160:24;;56203:13;56199:384;;56413:13;;56398:11;:28;56394:174;;56451:20;;56520:28;;;;-1:-1:-1;;;;;56494:54:0;-1:-1:-1;;;56494:54:0;-1:-1:-1;;;;;;56494:54:0;;;-1:-1:-1;;;;;56451:20:0;;56494:54;;;;56394:174;-1:-1:-1;;56611:35:0;;56638:7;;-1:-1:-1;56634:1:0;;-1:-1:-1;;;;;;56611:35:0;;;-1:-1:-1;;;;;;;;;;;56611:35:0;56634:1;;56611:35;-1:-1:-1;;56834:12:0;:14;;;;;;-1:-1:-1;;54459:2408:0:o;42907:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;43018:7:0;;63865:1;43067:23;43063:888;;43103:13;;43096:4;:20;43092:859;;;43137:31;43171:17;;;:11;:17;;;;;;;;;43137:51;;;;;;;;;-1:-1:-1;;;;;43137:51:0;;;;-1:-1:-1;;;43137:51:0;;-1:-1:-1;;;;;43137:51:0;;;;;;;;-1:-1:-1;;;43137:51:0;;;;;;;;;;;;;;43207:729;;43257:14;;-1:-1:-1;;;;;43257:28:0;;43253:101;;43321:9;42907:1111;-1:-1:-1;;;42907:1111:0:o;43253:101::-;-1:-1:-1;;;43696:6:0;43741:17;;;;:11;:17;;;;;;;;;43729:29;;;;;;;;;-1:-1:-1;;;;;43729:29:0;;;;;-1:-1:-1;;;43729:29:0;;-1:-1:-1;;;;;43729:29:0;;;;;;;;-1:-1:-1;;;43729:29:0;;;;;;;;;;;;;43789:28;43785:109;;43857:9;42907:1111;-1:-1:-1;;;42907:1111:0:o;43785:109::-;43656:261;;;43118:833;43092:859;43979:31;;-1:-1:-1;;;43979:31:0;;;;;;;;;;;62473:191;62547:16;62566:6;;-1:-1:-1;;;;;62583:17:0;;;-1:-1:-1;;;;;;62583:17:0;;;;;;62616:40;;62566:6;;;;;;;62616:40;;62547:16;62616:40;62536:128;62473:191;:::o;3836:326::-;-1:-1:-1;;;;;4131:19:0;;:23;;;3836:326::o;57673:667::-;57857:72;;-1:-1:-1;;;57857:72:0;;57836:4;;-1:-1:-1;;;;;57857:36:0;;;;;:72;;38174:10;;57908:4;;57914:7;;57923:5;;57857:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57857:72:0;;;;;;;;-1:-1:-1;;57857:72:0;;;;;;;;;;;;:::i;:::-;;;57853:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58091:13:0;;58087:235;;58137:40;;-1:-1:-1;;;58137:40:0;;;;;;;;;;;58087:235;58280:6;58274:13;58265:6;58261:2;58257:15;58250:38;57853:480;-1:-1:-1;;;;;;57976:55:0;-1:-1:-1;;;57976:55:0;;-1:-1:-1;57853:480:0;57673:667;;;;;;:::o;67500:97::-;67550:13;67578;67571:20;;;;;:::i;13299:723::-;13355:13;13576:10;13572:53;;-1:-1:-1;;13603:10:0;;;;;;;;;;;;-1:-1:-1;;;13603:10:0;;;;;13299:723::o;13572:53::-;13650:5;13635:12;13691:78;13698:9;;13691:78;;13724:8;;;;:::i;:::-;;-1:-1:-1;13747:10:0;;-1:-1:-1;13755:2:0;13747:10;;:::i;:::-;;;13691:78;;;13779:19;13811:6;-1:-1:-1;;;;;13801:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13801:17:0;;13779:39;;13829:154;13836:10;;13829:154;;13863:11;13873:1;13863:11;;:::i;:::-;;-1:-1:-1;13932:10:0;13940:2;13932:5;:10;:::i;:::-;13919:24;;:2;:24;:::i;:::-;13906:39;;13889:6;13896;13889:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;13889:56:0;;;;;;;;-1:-1:-1;13960:11:0;13969:2;13960:11;;:::i;:::-;;;13829:154;;64440:567;64493:13;64516:16;;64561:32;64516:16;32967:5;64561:11;:32::i;:::-;64515:78;;;;64702:283;64814:33;64831:15;64814:16;:33::i;:::-;64889:51;64925:8;-1:-1:-1;;;;;64909:26:0;64937:2;64889:19;:51::i;:::-;64748:213;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64702:13;:283::i;:::-;64633:361;;;;;;;;:::i;:::-;;;;;;;;;;;;;64611:390;;;;64440:567;:::o;41157:305::-;41259:4;-1:-1:-1;;;;;;41296:40:0;;-1:-1:-1;;;41296:40:0;;:105;;-1:-1:-1;;;;;;;41353:48:0;;-1:-1:-1;;;41353:48:0;41296:105;:158;;;-1:-1:-1;;;;;;;;;;29550:40:0;;;41418:36;29441:157;48498:1749;48644:13;;-1:-1:-1;;;;;48672:16:0;;48668:48;;48697:19;;-1:-1:-1;;;48697:19:0;;;;;;;;;;;48668:48;48731:13;48727:44;;48753:18;;-1:-1:-1;;;48753:18:0;;;;;;;;;;;48727:44;-1:-1:-1;;;;;49122:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;49181:49:0;;-1:-1:-1;;;;;49122:44:0;;;;;;;49181:49;;;-1:-1:-1;;;;;;;;;49122:44:0;;;;;;49181:49;;;;;;;;;;;;;;;;49247:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;49297:66:0;;;-1:-1:-1;;;49347:15:0;49297:66;;;;;;;;;;;;;49247:25;;49444:23;;;;49488:15;;:13;:15::i;:::-;49484:631;;;49524:313;49555:38;;49580:12;;-1:-1:-1;;;;;49555:38:0;;;49572:1;;-1:-1:-1;;;;;;;;;;;49555:38:0;49572:1;;49555:38;49621:69;49660:1;49664:2;49668:14;;;;;;49684:5;49621:30;:69::i;:::-;49616:174;;49726:40;;-1:-1:-1;;;49726:40:0;;;;;;;;;;;49616:174;49832:3;49817:12;:18;49524:313;;49918:12;49901:13;;:29;49897:43;;49932:8;;;49897:43;49484:631;;;49981:119;50012:40;;50037:14;;;;;-1:-1:-1;;;;;50012:40:0;;;50029:1;;-1:-1:-1;;;;;;;;;;;50012:40:0;50029:1;;50012:40;50095:3;50080:12;:18;49981:119;;49484:631;-1:-1:-1;50129:13:0;:28;50179:60;50208:1;50212:2;50216:12;50230:8;50179:60;:::i;14600:451::-;14675:13;14701:19;14733:10;14737:6;14733:1;:10;:::i;:::-;:14;;14746:1;14733:14;:::i;:::-;-1:-1:-1;;;;;14723:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14723:25:0;;14701:47;;-1:-1:-1;;;14759:6:0;14766:1;14759:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;14759:15:0;;;;;;;;;-1:-1:-1;;;14785:6:0;14792:1;14785:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;14785:15:0;;;;;;;;-1:-1:-1;14816:9:0;14828:10;14832:6;14828:1;:10;:::i;:::-;:14;;14841:1;14828:14;:::i;:::-;14816:26;;14811:135;14848:1;14844;:5;14811:135;;;-1:-1:-1;;;14896:5:0;14904:3;14896:11;14883:25;;;;;;;:::i;:::-;;;;14871:6;14878:1;14871:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;14871:37:0;;;;;;;;-1:-1:-1;14933:1:0;14923:11;;;;;14851:3;;;:::i;:::-;;;14811:135;;;-1:-1:-1;14964:10:0;;14956:55;;;;-1:-1:-1;;;14956:55:0;;13745:2:1;14956:55:0;;;13727:21:1;;;13764:18;;;13757:30;13823:34;13803:18;;;13796:62;13875:18;;14956:55:0;13543:356:1;14956:55:0;15036:6;14600:451;-1:-1:-1;;;14600:451:0:o;15912:3097::-;15970:13;16207:4;:11;16222:1;16207:16;16203:31;;;-1:-1:-1;;16225:9:0;;;;;;;;;-1:-1:-1;16225:9:0;;;15912:3097::o;16203:31::-;16287:19;16309:6;;;;;;;;;;;;;;;;;16287:28;;16726:20;16785:1;16766:4;:11;16780:1;16766:15;;;;:::i;:::-;16765:21;;;;:::i;:::-;16760:27;;:1;:27;:::i;:::-;-1:-1:-1;;;;;16749:39:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16749:39:0;;16726:62;;16968:1;16961:5;16957:13;17072:2;17064:6;17060:15;17183:4;17235;17229:11;17223:4;17219:22;17145:1432;17269:6;17260:7;17257:19;17145:1432;;;17375:1;17366:7;17362:15;17351:26;;17414:7;17408:14;18067:4;18059:5;18055:2;18051:14;18047:25;18037:8;18033:40;18027:47;18016:9;18008:67;18121:1;18110:9;18106:17;18093:30;;18213:4;18205:5;18201:2;18197:14;18193:25;18183:8;18179:40;18173:47;18162:9;18154:67;18267:1;18256:9;18252:17;18239:30;;18358:4;18350:5;18347:1;18343:13;18339:24;18329:8;18325:39;18319:46;18308:9;18300:66;18412:1;18401:9;18397:17;18384:30;;18495:4;18488:5;18484:16;18474:8;18470:31;18464:38;18453:9;18445:58;;18549:1;18538:9;18534:17;18521:30;;17145:1432;;;17149:107;;18739:1;18732:4;18726:11;18722:19;18760:1;18755:123;;;;18897:1;18892:73;;;;18715:250;;18755:123;18808:4;18804:1;18793:9;18789:17;18781:32;18858:4;18854:1;18843:9;18839:17;18831:32;18755:123;;18892:73;18945:4;18941:1;18930:9;18926:17;18918:32;18715:250;-1:-1:-1;18995:6:0;;15912:3097;-1:-1:-1;;;;;15912:3097:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;101:30:1;;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:723::-;479:5;532:3;525:4;517:6;513:17;509:27;499:55;;550:1;547;540:12;499:55;573:20;;612:4;-1:-1:-1;;;;;628:26:1;;625:52;;;657:18;;:::i;:::-;703:2;700:1;696:10;726:28;750:2;746;742:11;726:28;:::i;:::-;788:15;;;819:12;;;;851:15;;;885;;;881:24;;878:33;-1:-1:-1;875:53:1;;;924:1;921;914:12;875:53;946:1;937:10;;956:163;970:2;967:1;964:9;956:163;;;1027:17;;1015:30;;988:1;981:9;;;;;1065:12;;;;1097;;956:163;;;-1:-1:-1;1137:5:1;425:723;-1:-1:-1;;;;;;;425:723:1:o;1153:160::-;1218:20;;1274:13;;1267:21;1257:32;;1247:60;;1303:1;1300;1293:12;1318:247;1377:6;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1485:9;1472:23;1504:31;1529:5;1504:31;:::i;1570:251::-;1640:6;1693:2;1681:9;1672:7;1668:23;1664:32;1661:52;;;1709:1;1706;1699:12;1661:52;1741:9;1735:16;1760:31;1785:5;1760:31;:::i;1826:388::-;1894:6;1902;1955:2;1943:9;1934:7;1930:23;1926:32;1923:52;;;1971:1;1968;1961:12;1923:52;2010:9;1997:23;2029:31;2054:5;2029:31;:::i;:::-;2079:5;-1:-1:-1;2136:2:1;2121:18;;2108:32;2149:33;2108:32;2149:33;:::i;:::-;2201:7;2191:17;;;1826:388;;;;;:::o;2219:456::-;2296:6;2304;2312;2365:2;2353:9;2344:7;2340:23;2336:32;2333:52;;;2381:1;2378;2371:12;2333:52;2420:9;2407:23;2439:31;2464:5;2439:31;:::i;:::-;2489:5;-1:-1:-1;2546:2:1;2531:18;;2518:32;2559:33;2518:32;2559:33;:::i;:::-;2219:456;;2611:7;;-1:-1:-1;;;2665:2:1;2650:18;;;;2637:32;;2219:456::o;2680:794::-;2775:6;2783;2791;2799;2852:3;2840:9;2831:7;2827:23;2823:33;2820:53;;;2869:1;2866;2859:12;2820:53;2908:9;2895:23;2927:31;2952:5;2927:31;:::i;:::-;2977:5;-1:-1:-1;3034:2:1;3019:18;;3006:32;3047:33;3006:32;3047:33;:::i;:::-;3099:7;-1:-1:-1;3153:2:1;3138:18;;3125:32;;-1:-1:-1;3208:2:1;3193:18;;3180:32;-1:-1:-1;;;;;3224:30:1;;3221:50;;;3267:1;3264;3257:12;3221:50;3290:22;;3343:4;3335:13;;3331:27;-1:-1:-1;3321:55:1;;3372:1;3369;3362:12;3321:55;3395:73;3460:7;3455:2;3442:16;3437:2;3433;3429:11;3395:73;:::i;:::-;3385:83;;;2680:794;;;;;;;:::o;3479:483::-;3572:6;3580;3633:2;3621:9;3612:7;3608:23;3604:32;3601:52;;;3649:1;3646;3639:12;3601:52;3688:9;3675:23;3707:31;3732:5;3707:31;:::i;:::-;3757:5;-1:-1:-1;3813:2:1;3798:18;;3785:32;-1:-1:-1;;;;;3829:30:1;;3826:50;;;3872:1;3869;3862:12;3826:50;3895:61;3948:7;3939:6;3928:9;3924:22;3895:61;:::i;:::-;3885:71;;;3479:483;;;;;:::o;3967:315::-;4032:6;4040;4093:2;4081:9;4072:7;4068:23;4064:32;4061:52;;;4109:1;4106;4099:12;4061:52;4148:9;4135:23;4167:31;4192:5;4167:31;:::i;:::-;4217:5;-1:-1:-1;4241:35:1;4272:2;4257:18;;4241:35;:::i;:::-;4231:45;;3967:315;;;;;:::o;4287:::-;4355:6;4363;4416:2;4404:9;4395:7;4391:23;4387:32;4384:52;;;4432:1;4429;4422:12;4384:52;4471:9;4458:23;4490:31;4515:5;4490:31;:::i;:::-;4540:5;4592:2;4577:18;;;;4564:32;;-1:-1:-1;;;4287:315:1:o;4607:427::-;4674:6;4682;4735:2;4723:9;4714:7;4710:23;4706:32;4703:52;;;4751:1;4748;4741:12;4703:52;4790:9;4777:23;4809:31;4834:5;4809:31;:::i;:::-;4859:5;-1:-1:-1;4916:2:1;4901:18;;4888:32;-1:-1:-1;;;;;4951:32:1;;4939:45;;4929:73;;4998:1;4995;4988:12;5039:180;5095:6;5148:2;5136:9;5127:7;5123:23;5119:32;5116:52;;;5164:1;5161;5154:12;5116:52;5187:26;5203:9;5187:26;:::i;5224:180::-;5283:6;5336:2;5324:9;5315:7;5311:23;5307:32;5304:52;;;5352:1;5349;5342:12;5304:52;-1:-1:-1;5375:23:1;;5224:180;-1:-1:-1;5224:180:1:o;5409:245::-;5467:6;5520:2;5508:9;5499:7;5495:23;5491:32;5488:52;;;5536:1;5533;5526:12;5488:52;5575:9;5562:23;5594:30;5618:5;5594:30;:::i;5659:249::-;5728:6;5781:2;5769:9;5760:7;5756:23;5752:32;5749:52;;;5797:1;5794;5787:12;5749:52;5829:9;5823:16;5848:30;5872:5;5848:30;:::i;5913:450::-;5982:6;6035:2;6023:9;6014:7;6010:23;6006:32;6003:52;;;6051:1;6048;6041:12;6003:52;6078:23;;-1:-1:-1;;;;;6113:30:1;;6110:50;;;6156:1;6153;6146:12;6110:50;6179:22;;6232:4;6224:13;;6220:27;-1:-1:-1;6210:55:1;;6261:1;6258;6251:12;6210:55;6284:73;6349:7;6344:2;6331:16;6326:2;6322;6318:11;6284:73;:::i;6553:315::-;6621:6;6629;6682:2;6670:9;6661:7;6657:23;6653:32;6650:52;;;6698:1;6695;6688:12;6650:52;6734:9;6721:23;6711:33;;6794:2;6783:9;6779:18;6766:32;6807:31;6832:5;6807:31;:::i;6873:416::-;6966:6;6974;7027:2;7015:9;7006:7;7002:23;6998:32;6995:52;;;7043:1;7040;7033:12;6995:52;7066:23;;;-1:-1:-1;7140:2:1;7125:18;;7112:32;-1:-1:-1;;;;;7156:30:1;;7153:50;;;7199:1;7196;7189:12;7294:248;7362:6;7370;7423:2;7411:9;7402:7;7398:23;7394:32;7391:52;;;7439:1;7436;7429:12;7391:52;-1:-1:-1;;7462:23:1;;;7532:2;7517:18;;;7504:32;;-1:-1:-1;7294:248:1:o;7547:257::-;7588:3;7626:5;7620:12;7653:6;7648:3;7641:19;7669:63;7725:6;7718:4;7713:3;7709:14;7702:4;7695:5;7691:16;7669:63;:::i;:::-;7786:2;7765:15;-1:-1:-1;;7761:29:1;7752:39;;;;7793:4;7748:50;;7547:257;-1:-1:-1;;7547:257:1:o;8287:1527::-;8511:3;8549:6;8543:13;8575:4;8588:51;8632:6;8627:3;8622:2;8614:6;8610:15;8588:51;:::i;:::-;8702:13;;8661:16;;;;8724:55;8702:13;8661:16;8746:15;;;8724:55;:::i;:::-;8868:13;;8801:20;;;8841:1;;8928;8950:18;;;;9003;;;;9030:93;;9108:4;9098:8;9094:19;9082:31;;9030:93;9171:2;9161:8;9158:16;9138:18;9135:40;9132:167;;;-1:-1:-1;;;9198:33:1;;9254:4;9251:1;9244:15;9284:4;9205:3;9272:17;9132:167;9315:18;9342:110;;;;9466:1;9461:328;;;;9308:481;;9342:110;-1:-1:-1;;9377:24:1;;9363:39;;9422:20;;;;-1:-1:-1;9342:110:1;;9461:328;20324:1;20317:14;;;20361:4;20348:18;;9556:1;9570:169;9584:8;9581:1;9578:15;9570:169;;;9666:14;;9651:13;;;9644:37;9709:16;;;;9601:10;;9570:169;;;9574:3;;9770:8;9763:5;9759:20;9752:27;;9308:481;-1:-1:-1;9805:3:1;;8287:1527;-1:-1:-1;;;;;;;;;;;8287:1527:1:o;9819:1023::-;-1:-1:-1;;;10319:78:1;;10420:13;;10301:3;;10442:62;10420:13;10492:2;10483:12;;10476:4;10464:17;;10442:62;:::i;:::-;-1:-1:-1;;;10563:2:1;10523:16;;;10555:11;;;10548:71;10644:13;;10666:63;10644:13;10715:2;10707:11;;10700:4;10688:17;;10666:63;:::i;:::-;-1:-1:-1;;;10789:2:1;10748:17;;;;10781:11;;;10774:35;10833:2;10825:11;;9819:1023;-1:-1:-1;;;;9819:1023:1:o;10847:448::-;11109:31;11104:3;11097:44;11079:3;11170:6;11164:13;11186:62;11241:6;11236:2;11231:3;11227:12;11220:4;11212:6;11208:17;11186:62;:::i;:::-;11268:16;;;;11286:2;11264:25;;10847:448;-1:-1:-1;;10847:448:1:o;11718:488::-;-1:-1:-1;;;;;11987:15:1;;;11969:34;;12039:15;;12034:2;12019:18;;12012:43;12086:2;12071:18;;12064:34;;;12134:3;12129:2;12114:18;;12107:31;;;11912:4;;12155:45;;12180:19;;12172:6;12155:45;:::i;:::-;12147:53;11718:488;-1:-1:-1;;;;;;11718:488:1:o;12490:632::-;12661:2;12713:21;;;12783:13;;12686:18;;;12805:22;;;12632:4;;12661:2;12884:15;;;;12858:2;12843:18;;;12632:4;12927:169;12941:6;12938:1;12935:13;12927:169;;;13002:13;;12990:26;;13071:15;;;;13036:12;;;;12963:1;12956:9;12927:169;;;-1:-1:-1;13113:3:1;;12490:632;-1:-1:-1;;;;;;12490:632:1:o;13319:219::-;13468:2;13457:9;13450:21;13431:4;13488:44;13528:2;13517:9;13513:18;13505:6;13488:44;:::i;16495:348::-;16697:2;16679:21;;;16736:2;16716:18;;;16709:30;-1:-1:-1;;;16770:2:1;16755:18;;16748:54;16834:2;16819:18;;16495:348::o;17615:336::-;17817:2;17799:21;;;17856:2;17836:18;;;17829:30;-1:-1:-1;;;17890:2:1;17875:18;;17868:42;17942:2;17927:18;;17615:336::o;18723:355::-;18925:2;18907:21;;;18964:2;18944:18;;;18937:30;19003:33;18998:2;18983:18;;18976:61;19069:2;19054:18;;18723:355::o;19971:275::-;20042:2;20036:9;20107:2;20088:13;;-1:-1:-1;;20084:27:1;20072:40;;-1:-1:-1;;;;;20127:34:1;;20163:22;;;20124:62;20121:88;;;20189:18;;:::i;:::-;20225:2;20218:22;19971:275;;-1:-1:-1;19971:275:1:o;20377:128::-;20417:3;20448:1;20444:6;20441:1;20438:13;20435:39;;;20454:18;;:::i;:::-;-1:-1:-1;20490:9:1;;20377:128::o;20510:120::-;20550:1;20576;20566:35;;20581:18;;:::i;:::-;-1:-1:-1;20615:9:1;;20510:120::o;20635:168::-;20675:7;20741:1;20737;20733:6;20729:14;20726:1;20723:21;20718:1;20711:9;20704:17;20700:45;20697:71;;;20748:18;;:::i;:::-;-1:-1:-1;20788:9:1;;20635:168::o;20808:125::-;20848:4;20876:1;20873;20870:8;20867:34;;;20881:18;;:::i;:::-;-1:-1:-1;20918:9:1;;20808:125::o;20938:258::-;21010:1;21020:113;21034:6;21031:1;21028:13;21020:113;;;21110:11;;;21104:18;21091:11;;;21084:39;21056:2;21049:10;21020:113;;;21151:6;21148:1;21145:13;21142:48;;;-1:-1:-1;;21186:1:1;21168:16;;21161:27;20938:258::o;21201:136::-;21240:3;21268:5;21258:39;;21277:18;;:::i;:::-;-1:-1:-1;;;21313:18:1;;21201:136::o;21342:380::-;21421:1;21417:12;;;;21464;;;21485:61;;21539:4;21531:6;21527:17;21517:27;;21485:61;21592:2;21584:6;21581:14;21561:18;21558:38;21555:161;;;21638:10;21633:3;21629:20;21626:1;21619:31;21673:4;21670:1;21663:15;21701:4;21698:1;21691:15;21555:161;;21342:380;;;:::o;21727:135::-;21766:3;-1:-1:-1;;21787:17:1;;21784:43;;;21807:18;;:::i;:::-;-1:-1:-1;21854:1:1;21843:13;;21727:135::o;21867:112::-;21899:1;21925;21915:35;;21930:18;;:::i;:::-;-1:-1:-1;21964:9:1;;21867:112::o;21984:127::-;22045:10;22040:3;22036:20;22033:1;22026:31;22076:4;22073:1;22066:15;22100:4;22097:1;22090:15;22116:127;22177:10;22172:3;22168:20;22165:1;22158:31;22208:4;22205:1;22198:15;22232:4;22229:1;22222:15;22248:127;22309:10;22304:3;22300:20;22297:1;22290:31;22340:4;22337:1;22330:15;22364:4;22361:1;22354:15;22380:127;22441:10;22436:3;22432:20;22429:1;22422:31;22472:4;22469:1;22462:15;22496:4;22493:1;22486:15;22512:131;-1:-1:-1;;;;;22587:31:1;;22577:42;;22567:70;;22633:1;22630;22623:12;22648:131;-1:-1:-1;;;;;;22722:32:1;;22712:43;;22702:71;;22769:1;22766;22759:12

Swarm Source

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