ETH Price: $2,609.72 (-0.45%)

Token

SKiDDLES (SKDLS)
 

Overview

Max Total Supply

854 SKDLS

Holders

119

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*william🚀️.eth
Balance
3 SKDLS
0xcC9ec80aCB6ca0190A89C7825e14317eB5Cb43d9
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:
SKiDDLES

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
/**
                                                                                                   
 ad88888ba   88      a8P   88  88888888ba,    88888888ba,    88           88888888888  ad88888ba   
d8"     "8b  88    ,88'    ""  88      `"8b   88      `"8b   88           88          d8"     "8b  
Y8,          88  ,88"          88        `8b  88        `8b  88           88          Y8,          
`Y8aaaaa,    88,d88'       88  88         88  88         88  88           88aaaaa     `Y8aaaaa,    
  `"""""8b,  8888"88,      88  88         88  88         88  88           88"""""       `"""""8b,  
        `8b  88P   Y8b     88  88         8P  88         8P  88           88                  `8b  
Y8a     a8P  88     "88,   88  88      .a8P   88      .a8P   88           88          Y8a     a8P  
 "Y88888P"   88       Y8b  88  88888888Y"'    88888888Y"'    88888888888  88888888888  "Y88888P"   
                                                                                                                                                                                           
*/
// 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/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/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * 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();

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    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();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-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 {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    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` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *   - `extraData` = `0`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *   - `extraData` = `<Extra data when token was burned>`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     *   - `extraData` = `<Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}


pragma solidity >=0.8.9 <0.9.0;



contract SKiDDLES is ERC721AQueryable, Ownable, ReentrancyGuard {
    using Strings for uint256;
    uint256 public maxSupply = 8080;
	uint256 public maxTeamReserve = 200;
    uint256 public publicSupply = 6580;


	uint256 public maxMintTx = 5;
	bytes32 public merkleRoot;
	mapping(address => bool) public mintClaimed; 

    bool public paused = true;
    bool public whitelistMintEnabled = false;
    bool public publicMintEnabled = false;

    bool public revealed = false;

	string public uriPrefix = '';
    string public uriSuffix = '.json';
    string public hiddenMetadataUri = "";
	uint256 public cost = 0.003 ether;
    uint256 public whitelistCost = 0 ether;

  constructor(string memory _hiddenMetadataUri) ERC721A("SKiDDLES", "SKDLS") {
      setHiddenMetadataUri(_hiddenMetadataUri); 
      _safeMint(_msgSender(), maxTeamReserve);

  }

  function mint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable nonReentrant{
        require(!paused, 'The contract is paused!');
        require(_mintAmount > 0 && _mintAmount <= maxMintTx, 'Invalid mint amount!');
        require(totalSupply() + _mintAmount <= (maxSupply), 'Max supply exceeded!');
	if (whitelistMintEnabled == true){
	    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');
        require(!mintClaimed[_msgSender()], 'Address already claimed!');
        require(_mintAmount == 1, 'Whitelist can only mint one');
        mintClaimed[_msgSender()] = true;
    }
    if(publicMintEnabled == true){
        require(totalSupply() + _mintAmount <= (publicSupply), 'Public supply exceeded!');
		require(msg.value == cost * _mintAmount, 'Insufficient funds!');
	}
    if(publicMintEnabled == false && whitelistMintEnabled == false){
		require(msg.value == cost * _mintAmount, 'Insufficient funds!');
    }
		
    _safeMint(_msgSender(), _mintAmount);
  }

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

  function setRevealed() public onlyOwner {
    revealed = !revealed;
  }

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

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

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

  function setMintStates(bool statePause, bool stateWhitelist, bool statePublic) public onlyOwner {
    paused = statePause;
    whitelistMintEnabled = stateWhitelist;
    publicMintEnabled = statePublic;
  }

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

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintTx","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":"maxTeamReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"statePause","type":"bool"},{"internalType":"bool","name":"stateWhitelist","type":"bool"},{"internalType":"bool","name":"statePublic","type":"bool"}],"name":"setMintStates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

611f90600a5560c8600b556119b4600c556005600d556010805463ffffffff1916600117905560a06040819052600060808190526200004191601191620004c3565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200007091601291620004c3565b506040805160208101918290526000908190526200009191601391620004c3565b50660aa87bee5380006014556000601555348015620000af57600080fd5b5060405162002e3b38038062002e3b833981016040819052620000d291620005ae565b6040805180820182526008815267534b6944444c455360c01b602080830191825283518085019094526005845264534b444c5360d81b9084015281519192916200011f91600291620004c3565b50805162000135906003906020840190620004c3565b505060016000555062000148336200016d565b60016009556200015881620001bf565b6200016633600b54620001e2565b506200072c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001c962000204565b8051620001de906013906020840190620004c3565b5050565b620001de8282604051806020016040528060008152506200026560201b60201c565b6008546001600160a01b03163314620002635760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b620002718383620002dc565b6001600160a01b0383163b15620002d7576000548281035b60018101906200029f90600090879086620003bc565b620002bd576040516368d2bf6b60e11b815260040160405180910390fd5b81811062000289578160005414620002d457600080fd5b50505b505050565b6000546001600160a01b0383166200030657604051622e076360e81b815260040160405180910390fd5b81620003255760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106200036f5760005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620003f390339089908890889060040162000666565b602060405180830381600087803b1580156200040e57600080fd5b505af192505050801562000441575060408051601f3d908101601f191682019092526200043e91810190620006bc565b60015b620004a0573d80801562000472576040519150601f19603f3d011682016040523d82523d6000602084013e62000477565b606091505b50805162000498576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b50505050565b828054620004d190620006ef565b90600052602060002090601f016020900481019282620004f5576000855562000540565b82601f106200051057805160ff191683800117855562000540565b8280016001018555821562000540579182015b828111156200054057825182559160200191906001019062000523565b506200054e92915062000552565b5090565b5b808211156200054e576000815560010162000553565b634e487b7160e01b600052604160045260246000fd5b60005b838110156200059c57818101518382015260200162000582565b83811115620004bd5750506000910152565b600060208284031215620005c157600080fd5b81516001600160401b0380821115620005d957600080fd5b818401915084601f830112620005ee57600080fd5b81518181111562000603576200060362000569565b604051601f8201601f19908116603f011681019083821181831017156200062e576200062e62000569565b816040528281528760208487010111156200064857600080fd5b6200065b8360208301602088016200057f565b979650505050505050565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620006a58160a08501602087016200057f565b601f01601f19169190910160a00195945050505050565b600060208284031215620006cf57600080fd5b81516001600160e01b031981168114620006e857600080fd5b9392505050565b600181811c908216806200070457607f821691505b602082108114156200072657634e487b7160e01b600052602260045260246000fd5b50919050565b6126ff806200073c6000396000f3fe6080604052600436106102675760003560e01c80636352211e11610144578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd14610715578063d5abeb0114610735578063e7b99ec71461074b578063e985e9c514610761578063eb42c4c014610781578063f2fde38b1461079757600080fd5b8063a22cb46514610680578063a45ba8e7146106a0578063b88d4fde146106b5578063ba41b0c6146106d5578063c23dc68f146106e857600080fd5b80637cb64759116101085780637cb64759146105c05780637ec4a659146105e05780638462151c146106005780638da5cb5b1461062d57806395d89b411461064b57806399a2557a1461066057600080fd5b80636352211e1461053657806363869a5d146105565780636caede3d1461056c57806370a082311461058b578063715018a6146105ab57600080fd5b80633bd64968116101dd57806351830227116101a1578063518302271461048e5780635503a0e8146104af5780635bbb2177146104c45780635c975abb146104f15780635e84d7231461050b57806362b99ad41461052157600080fd5b80633bd64968146104045780633ccfd60b1461041957806342842e0e1461042e578063451f4ce51461044e5780634fdd43cb1461046e57600080fd5b80631237e5e81161022f5780631237e5e81461033d57806313faede61461036d57806316ba10e01461039157806318160ddd146103b157806323b872dd146103ce5780632eb4a7ab146103ee57600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780630f4161aa1461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004611f35565b6107b7565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610809565b6040516102989190611faa565b3480156102cf57600080fd5b506102e36102de366004611fbd565b61089b565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004611ff2565b6108df565b005b34801561032957600080fd5b5060105461028c9062010000900460ff1681565b34801561034957600080fd5b5061028c61035836600461201c565b600f6020526000908152604090205460ff1681565b34801561037957600080fd5b5061038360145481565b604051908152602001610298565b34801561039d57600080fd5b5061031b6103ac3660046120d4565b61097f565b3480156103bd57600080fd5b506001546000540360001901610383565b3480156103da57600080fd5b5061031b6103e936600461211c565b61099e565b3480156103fa57600080fd5b50610383600e5481565b34801561041057600080fd5b5061031b610b2f565b34801561042557600080fd5b5061031b610b58565b34801561043a57600080fd5b5061031b61044936600461211c565b610b8f565b34801561045a57600080fd5b5061031b610469366004612168565b610baf565b34801561047a57600080fd5b5061031b6104893660046120d4565b610bf0565b34801561049a57600080fd5b5060105461028c906301000000900460ff1681565b3480156104bb57600080fd5b506102b6610c0b565b3480156104d057600080fd5b506104e46104df3660046121ab565b610c99565b604051610298919061228c565b3480156104fd57600080fd5b5060105461028c9060ff1681565b34801561051757600080fd5b50610383600c5481565b34801561052d57600080fd5b506102b6610d66565b34801561054257600080fd5b506102e3610551366004611fbd565b610d73565b34801561056257600080fd5b50610383600d5481565b34801561057857600080fd5b5060105461028c90610100900460ff1681565b34801561059757600080fd5b506103836105a636600461201c565b610d7e565b3480156105b757600080fd5b5061031b610dcc565b3480156105cc57600080fd5b5061031b6105db366004611fbd565b610de0565b3480156105ec57600080fd5b5061031b6105fb3660046120d4565b610ded565b34801561060c57600080fd5b5061062061061b36600461201c565b610e08565b60405161029891906122ce565b34801561063957600080fd5b506008546001600160a01b03166102e3565b34801561065757600080fd5b506102b6610f17565b34801561066c57600080fd5b5061062061067b366004612306565b610f26565b34801561068c57600080fd5b5061031b61069b366004612339565b6110b1565b3480156106ac57600080fd5b506102b6611147565b3480156106c157600080fd5b5061031b6106d036600461236c565b611154565b61031b6106e33660046123e7565b61119e565b3480156106f457600080fd5b50610708610703366004611fbd565b6115f9565b6040516102989190612465565b34801561072157600080fd5b506102b6610730366004611fbd565b611681565b34801561074157600080fd5b50610383600a5481565b34801561075757600080fd5b5061038360155481565b34801561076d57600080fd5b5061028c61077c366004612473565b6117f1565b34801561078d57600080fd5b50610383600b5481565b3480156107a357600080fd5b5061031b6107b236600461201c565b61181f565b60006301ffc9a760e01b6001600160e01b0319831614806107e857506380ac58cd60e01b6001600160e01b03198316145b806108035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546108189061249d565b80601f01602080910402602001604051908101604052809291908181526020018280546108449061249d565b80156108915780601f1061086657610100808354040283529160200191610891565b820191906000526020600020905b81548152906001019060200180831161087457829003601f168201915b5050505050905090565b60006108a682611895565b6108c3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ea82610d73565b9050336001600160a01b038216146109235761090681336117f1565b610923576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109876118ca565b805161099a906012906020840190611e86565b5050565b60006109a982611924565b9050836001600160a01b0316816001600160a01b0316146109dc5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a2957610a0c86336117f1565b610a2957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a5057604051633a954ecd60e21b815260040160405180910390fd5b8015610a5b57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610ae65760018401600081815260046020526040902054610ae4576000548114610ae45760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610b376118ca565b6010805463ff00000019811663010000009182900460ff1615909102179055565b610b606118ca565b60405133904780156108fc02916000818181858888f19350505050158015610b8c573d6000803e3d6000fd5b50565b610baa83838360405180602001604052806000815250611154565b505050565b610bb76118ca565b6010805461ffff191693151561ff00191693909317610100921515929092029190911762ff000019166201000091151591909102179055565b610bf86118ca565b805161099a906013906020840190611e86565b60128054610c189061249d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c449061249d565b8015610c915780601f10610c6657610100808354040283529160200191610c91565b820191906000526020600020905b815481529060010190602001808311610c7457829003601f168201915b505050505081565b80516060906000816001600160401b03811115610cb857610cb8612037565b604051908082528060200260200182016040528015610d0a57816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610cd65790505b50905060005b828114610d5e57610d39858281518110610d2c57610d2c6124d8565b60200260200101516115f9565b828281518110610d4b57610d4b6124d8565b6020908102919091010152600101610d10565b509392505050565b60118054610c189061249d565b600061080382611924565b60006001600160a01b038216610da7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610dd46118ca565b610dde600061198d565b565b610de86118ca565b600e55565b610df56118ca565b805161099a906011906020840190611e86565b60606000806000610e1885610d7e565b90506000816001600160401b03811115610e3457610e34612037565b604051908082528060200260200182016040528015610e5d578160200160208202803683370190505b509050610e8a60408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610f0b57610e9d816119df565b9150816040015115610eae57610f03565b81516001600160a01b031615610ec357815194505b876001600160a01b0316856001600160a01b03161415610f035780838780600101985081518110610ef657610ef66124d8565b6020026020010181815250505b600101610e8d565b50909695505050505050565b6060600380546108189061249d565b6060818310610f4857604051631960ccad60e11b815260040160405180910390fd5b600080610f5460005490565b90506001851015610f6457600194505b80841115610f70578093505b6000610f7b87610d7e565b905084861015610f9a5785850381811015610f94578091505b50610f9e565b5060005b6000816001600160401b03811115610fb857610fb8612037565b604051908082528060200260200182016040528015610fe1578160200160208202803683370190505b50905081610ff45793506110aa92505050565b6000610fff886115f9565b905060008160400151611010575080515b885b8881141580156110225750848714155b1561109e57611030816119df565b925082604001511561104157611096565b82516001600160a01b03161561105657825191505b8a6001600160a01b0316826001600160a01b031614156110965780848880600101995081518110611089576110896124d8565b6020026020010181815250505b600101611012565b50505092835250909150505b9392505050565b6001600160a01b0382163314156110db5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60138054610c189061249d565b61115f84848461099e565b6001600160a01b0383163b156111985761117b84848484611a1b565b611198576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600260095414156111f65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260095560105460ff161561124e5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016111ed565b6000831180156112605750600d548311155b6112a35760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016111ed565b600a5460015460005485919003600019016112be9190612504565b11156113035760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016111ed565b60105460ff6101009091041615156001141561149c576040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061139383838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611b13565b6113d05760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b60448201526064016111ed565b336000908152600f602052604090205460ff16156114305760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d656421000000000000000060448201526064016111ed565b836001146114805760405162461bcd60e51b815260206004820152601b60248201527f57686974656c6973742063616e206f6e6c79206d696e74206f6e65000000000060448201526064016111ed565b50336000908152600f60205260409020805460ff191660011790555b60105462010000900460ff1615156001141561156d57600c5460015460005485919003600019016114cd9190612504565b111561151b5760405162461bcd60e51b815260206004820152601760248201527f5075626c696320737570706c792065786365656465642100000000000000000060448201526064016111ed565b82601454611529919061251c565b341461156d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016111ed565b60105462010000900460ff1615801561158e5750601054610100900460ff16155b156115e557826014546115a1919061251c565b34146115e55760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016111ed565b6115ef3384611b29565b5050600160095550565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061165257506000548310155b1561165d5792915050565b611666836119df565b90508060400151156116785792915050565b6110aa83611b43565b606061168c82611895565b6116f05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016111ed565b6010546301000000900460ff16611793576013805461170e9061249d565b80601f016020809104026020016040519081016040528092919081815260200182805461173a9061249d565b80156117875780601f1061175c57610100808354040283529160200191611787565b820191906000526020600020905b81548152906001019060200180831161176a57829003601f168201915b50505050509050919050565b600061179d611b78565b905060008151116117bd57604051806020016040528060008152506110aa565b806117c784611b87565b60126040516020016117db9392919061253b565b6040516020818303038152906040529392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6118276118ca565b6001600160a01b03811661188c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016111ed565b610b8c8161198d565b6000816001111580156118a9575060005482105b8015610803575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610dde5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016111ed565b600081806001116119745760005481101561197457600081815260046020526040902054600160e01b8116611972575b806110aa575060001901600081815260046020526040902054611954565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461080390611c84565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a509033908990889088906004016125ff565b602060405180830381600087803b158015611a6a57600080fd5b505af1925050508015611a9a575060408051601f3d908101601f19168201909252611a979181019061263c565b60015b611af5573d808015611ac8576040519150601f19603f3d011682016040523d82523d6000602084013e611acd565b606091505b508051611aed576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600082611b208584611ccb565b14949350505050565b61099a828260405180602001604052806000815250611d10565b604080516080810182526000808252602082018190529181018290526060810191909152610803611b7383611924565b611c84565b6060601180546108189061249d565b606081611bab5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bd55780611bbf81612659565b9150611bce9050600a8361268a565b9150611baf565b6000816001600160401b03811115611bef57611bef612037565b6040519080825280601f01601f191660200182016040528015611c19576020820181803683370190505b5090505b8415611b0b57611c2e60018361269e565b9150611c3b600a866126b5565b611c46906030612504565b60f81b818381518110611c5b57611c5b6124d8565b60200101906001600160f81b031916908160001a905350611c7d600a8661268a565b9450611c1d565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b600081815b8451811015610d5e57611cfc82868381518110611cef57611cef6124d8565b6020026020010151611d7d565b915080611d0881612659565b915050611cd0565b611d1a8383611da9565b6001600160a01b0383163b15610baa576000548281035b611d446000868380600101945086611a1b565b611d61576040516368d2bf6b60e11b815260040160405180910390fd5b818110611d31578160005414611d7657600080fd5b5050505050565b6000818310611d995760008281526020849052604090206110aa565b5060009182526020526040902090565b6000546001600160a01b038316611dd257604051622e076360e81b815260040160405180910390fd5b81611df05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611e3a5760005550505050565b828054611e929061249d565b90600052602060002090601f016020900481019282611eb45760008555611efa565b82601f10611ecd57805160ff1916838001178555611efa565b82800160010185558215611efa579182015b82811115611efa578251825591602001919060010190611edf565b50611f06929150611f0a565b5090565b5b80821115611f065760008155600101611f0b565b6001600160e01b031981168114610b8c57600080fd5b600060208284031215611f4757600080fd5b81356110aa81611f1f565b60005b83811015611f6d578181015183820152602001611f55565b838111156111985750506000910152565b60008151808452611f96816020860160208601611f52565b601f01601f19169290920160200192915050565b6020815260006110aa6020830184611f7e565b600060208284031215611fcf57600080fd5b5035919050565b80356001600160a01b0381168114611fed57600080fd5b919050565b6000806040838503121561200557600080fd5b61200e83611fd6565b946020939093013593505050565b60006020828403121561202e57600080fd5b6110aa82611fd6565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561207557612075612037565b604052919050565b60006001600160401b0383111561209657612096612037565b6120a9601f8401601f191660200161204d565b90508281528383830111156120bd57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156120e657600080fd5b81356001600160401b038111156120fc57600080fd5b8201601f8101841361210d57600080fd5b611b0b8482356020840161207d565b60008060006060848603121561213157600080fd5b61213a84611fd6565b925061214860208501611fd6565b9150604084013590509250925092565b80358015158114611fed57600080fd5b60008060006060848603121561217d57600080fd5b61218684612158565b925061219460208501612158565b91506121a260408501612158565b90509250925092565b600060208083850312156121be57600080fd5b82356001600160401b03808211156121d557600080fd5b818501915085601f8301126121e957600080fd5b8135818111156121fb576121fb612037565b8060051b915061220c84830161204d565b818152918301840191848101908884111561222657600080fd5b938501935b838510156122445784358252938501939085019061222b565b98975050505050505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610f0b576122bb838551612250565b92840192608092909201916001016122a8565b6020808252825182820181905260009190848201906040850190845b81811015610f0b578351835292840192918401916001016122ea565b60008060006060848603121561231b57600080fd5b61232484611fd6565b95602085013595506040909401359392505050565b6000806040838503121561234c57600080fd5b61235583611fd6565b915061236360208401612158565b90509250929050565b6000806000806080858703121561238257600080fd5b61238b85611fd6565b935061239960208601611fd6565b92506040850135915060608501356001600160401b038111156123bb57600080fd5b8501601f810187136123cc57600080fd5b6123db8782356020840161207d565b91505092959194509250565b6000806000604084860312156123fc57600080fd5b8335925060208401356001600160401b038082111561241a57600080fd5b818601915086601f83011261242e57600080fd5b81358181111561243d57600080fd5b8760208260051b850101111561245257600080fd5b6020830194508093505050509250925092565b608081016108038284612250565b6000806040838503121561248657600080fd5b61248f83611fd6565b915061236360208401611fd6565b600181811c908216806124b157607f821691505b602082108114156124d257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115612517576125176124ee565b500190565b6000816000190483118215151615612536576125366124ee565b500290565b60008451602061254e8285838a01611f52565b8551918401916125618184848a01611f52565b8554920191600090600181811c908083168061257e57607f831692505b85831081141561259c57634e487b7160e01b85526022600452602485fd5b8080156125b057600181146125c1576125ee565b60ff198516885283880195506125ee565b60008b81526020902060005b858110156125e65781548a8201529084019088016125cd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061263290830184611f7e565b9695505050505050565b60006020828403121561264e57600080fd5b81516110aa81611f1f565b600060001982141561266d5761266d6124ee565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261269957612699612674565b500490565b6000828210156126b0576126b06124ee565b500390565b6000826126c4576126c4612674565b50069056fea2646970667358221220fe53a804c11bd7b27ca7fb7dd420b6cc9533df5fa2f91b8ecaaed4fc4632ca6164736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e6951476951695a486b73587567755655797879506f46474a6e6370596d453974544d6954363652366769392f00000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636352211e11610144578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd14610715578063d5abeb0114610735578063e7b99ec71461074b578063e985e9c514610761578063eb42c4c014610781578063f2fde38b1461079757600080fd5b8063a22cb46514610680578063a45ba8e7146106a0578063b88d4fde146106b5578063ba41b0c6146106d5578063c23dc68f146106e857600080fd5b80637cb64759116101085780637cb64759146105c05780637ec4a659146105e05780638462151c146106005780638da5cb5b1461062d57806395d89b411461064b57806399a2557a1461066057600080fd5b80636352211e1461053657806363869a5d146105565780636caede3d1461056c57806370a082311461058b578063715018a6146105ab57600080fd5b80633bd64968116101dd57806351830227116101a1578063518302271461048e5780635503a0e8146104af5780635bbb2177146104c45780635c975abb146104f15780635e84d7231461050b57806362b99ad41461052157600080fd5b80633bd64968146104045780633ccfd60b1461041957806342842e0e1461042e578063451f4ce51461044e5780634fdd43cb1461046e57600080fd5b80631237e5e81161022f5780631237e5e81461033d57806313faede61461036d57806316ba10e01461039157806318160ddd146103b157806323b872dd146103ce5780632eb4a7ab146103ee57600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780630f4161aa1461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004611f35565b6107b7565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610809565b6040516102989190611faa565b3480156102cf57600080fd5b506102e36102de366004611fbd565b61089b565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004611ff2565b6108df565b005b34801561032957600080fd5b5060105461028c9062010000900460ff1681565b34801561034957600080fd5b5061028c61035836600461201c565b600f6020526000908152604090205460ff1681565b34801561037957600080fd5b5061038360145481565b604051908152602001610298565b34801561039d57600080fd5b5061031b6103ac3660046120d4565b61097f565b3480156103bd57600080fd5b506001546000540360001901610383565b3480156103da57600080fd5b5061031b6103e936600461211c565b61099e565b3480156103fa57600080fd5b50610383600e5481565b34801561041057600080fd5b5061031b610b2f565b34801561042557600080fd5b5061031b610b58565b34801561043a57600080fd5b5061031b61044936600461211c565b610b8f565b34801561045a57600080fd5b5061031b610469366004612168565b610baf565b34801561047a57600080fd5b5061031b6104893660046120d4565b610bf0565b34801561049a57600080fd5b5060105461028c906301000000900460ff1681565b3480156104bb57600080fd5b506102b6610c0b565b3480156104d057600080fd5b506104e46104df3660046121ab565b610c99565b604051610298919061228c565b3480156104fd57600080fd5b5060105461028c9060ff1681565b34801561051757600080fd5b50610383600c5481565b34801561052d57600080fd5b506102b6610d66565b34801561054257600080fd5b506102e3610551366004611fbd565b610d73565b34801561056257600080fd5b50610383600d5481565b34801561057857600080fd5b5060105461028c90610100900460ff1681565b34801561059757600080fd5b506103836105a636600461201c565b610d7e565b3480156105b757600080fd5b5061031b610dcc565b3480156105cc57600080fd5b5061031b6105db366004611fbd565b610de0565b3480156105ec57600080fd5b5061031b6105fb3660046120d4565b610ded565b34801561060c57600080fd5b5061062061061b36600461201c565b610e08565b60405161029891906122ce565b34801561063957600080fd5b506008546001600160a01b03166102e3565b34801561065757600080fd5b506102b6610f17565b34801561066c57600080fd5b5061062061067b366004612306565b610f26565b34801561068c57600080fd5b5061031b61069b366004612339565b6110b1565b3480156106ac57600080fd5b506102b6611147565b3480156106c157600080fd5b5061031b6106d036600461236c565b611154565b61031b6106e33660046123e7565b61119e565b3480156106f457600080fd5b50610708610703366004611fbd565b6115f9565b6040516102989190612465565b34801561072157600080fd5b506102b6610730366004611fbd565b611681565b34801561074157600080fd5b50610383600a5481565b34801561075757600080fd5b5061038360155481565b34801561076d57600080fd5b5061028c61077c366004612473565b6117f1565b34801561078d57600080fd5b50610383600b5481565b3480156107a357600080fd5b5061031b6107b236600461201c565b61181f565b60006301ffc9a760e01b6001600160e01b0319831614806107e857506380ac58cd60e01b6001600160e01b03198316145b806108035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546108189061249d565b80601f01602080910402602001604051908101604052809291908181526020018280546108449061249d565b80156108915780601f1061086657610100808354040283529160200191610891565b820191906000526020600020905b81548152906001019060200180831161087457829003601f168201915b5050505050905090565b60006108a682611895565b6108c3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ea82610d73565b9050336001600160a01b038216146109235761090681336117f1565b610923576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109876118ca565b805161099a906012906020840190611e86565b5050565b60006109a982611924565b9050836001600160a01b0316816001600160a01b0316146109dc5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a2957610a0c86336117f1565b610a2957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a5057604051633a954ecd60e21b815260040160405180910390fd5b8015610a5b57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610ae65760018401600081815260046020526040902054610ae4576000548114610ae45760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610b376118ca565b6010805463ff00000019811663010000009182900460ff1615909102179055565b610b606118ca565b60405133904780156108fc02916000818181858888f19350505050158015610b8c573d6000803e3d6000fd5b50565b610baa83838360405180602001604052806000815250611154565b505050565b610bb76118ca565b6010805461ffff191693151561ff00191693909317610100921515929092029190911762ff000019166201000091151591909102179055565b610bf86118ca565b805161099a906013906020840190611e86565b60128054610c189061249d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c449061249d565b8015610c915780601f10610c6657610100808354040283529160200191610c91565b820191906000526020600020905b815481529060010190602001808311610c7457829003601f168201915b505050505081565b80516060906000816001600160401b03811115610cb857610cb8612037565b604051908082528060200260200182016040528015610d0a57816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610cd65790505b50905060005b828114610d5e57610d39858281518110610d2c57610d2c6124d8565b60200260200101516115f9565b828281518110610d4b57610d4b6124d8565b6020908102919091010152600101610d10565b509392505050565b60118054610c189061249d565b600061080382611924565b60006001600160a01b038216610da7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610dd46118ca565b610dde600061198d565b565b610de86118ca565b600e55565b610df56118ca565b805161099a906011906020840190611e86565b60606000806000610e1885610d7e565b90506000816001600160401b03811115610e3457610e34612037565b604051908082528060200260200182016040528015610e5d578160200160208202803683370190505b509050610e8a60408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610f0b57610e9d816119df565b9150816040015115610eae57610f03565b81516001600160a01b031615610ec357815194505b876001600160a01b0316856001600160a01b03161415610f035780838780600101985081518110610ef657610ef66124d8565b6020026020010181815250505b600101610e8d565b50909695505050505050565b6060600380546108189061249d565b6060818310610f4857604051631960ccad60e11b815260040160405180910390fd5b600080610f5460005490565b90506001851015610f6457600194505b80841115610f70578093505b6000610f7b87610d7e565b905084861015610f9a5785850381811015610f94578091505b50610f9e565b5060005b6000816001600160401b03811115610fb857610fb8612037565b604051908082528060200260200182016040528015610fe1578160200160208202803683370190505b50905081610ff45793506110aa92505050565b6000610fff886115f9565b905060008160400151611010575080515b885b8881141580156110225750848714155b1561109e57611030816119df565b925082604001511561104157611096565b82516001600160a01b03161561105657825191505b8a6001600160a01b0316826001600160a01b031614156110965780848880600101995081518110611089576110896124d8565b6020026020010181815250505b600101611012565b50505092835250909150505b9392505050565b6001600160a01b0382163314156110db5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60138054610c189061249d565b61115f84848461099e565b6001600160a01b0383163b156111985761117b84848484611a1b565b611198576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600260095414156111f65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260095560105460ff161561124e5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016111ed565b6000831180156112605750600d548311155b6112a35760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016111ed565b600a5460015460005485919003600019016112be9190612504565b11156113035760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016111ed565b60105460ff6101009091041615156001141561149c576040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061139383838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611b13565b6113d05760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b60448201526064016111ed565b336000908152600f602052604090205460ff16156114305760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d656421000000000000000060448201526064016111ed565b836001146114805760405162461bcd60e51b815260206004820152601b60248201527f57686974656c6973742063616e206f6e6c79206d696e74206f6e65000000000060448201526064016111ed565b50336000908152600f60205260409020805460ff191660011790555b60105462010000900460ff1615156001141561156d57600c5460015460005485919003600019016114cd9190612504565b111561151b5760405162461bcd60e51b815260206004820152601760248201527f5075626c696320737570706c792065786365656465642100000000000000000060448201526064016111ed565b82601454611529919061251c565b341461156d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016111ed565b60105462010000900460ff1615801561158e5750601054610100900460ff16155b156115e557826014546115a1919061251c565b34146115e55760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016111ed565b6115ef3384611b29565b5050600160095550565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061165257506000548310155b1561165d5792915050565b611666836119df565b90508060400151156116785792915050565b6110aa83611b43565b606061168c82611895565b6116f05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016111ed565b6010546301000000900460ff16611793576013805461170e9061249d565b80601f016020809104026020016040519081016040528092919081815260200182805461173a9061249d565b80156117875780601f1061175c57610100808354040283529160200191611787565b820191906000526020600020905b81548152906001019060200180831161176a57829003601f168201915b50505050509050919050565b600061179d611b78565b905060008151116117bd57604051806020016040528060008152506110aa565b806117c784611b87565b60126040516020016117db9392919061253b565b6040516020818303038152906040529392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6118276118ca565b6001600160a01b03811661188c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016111ed565b610b8c8161198d565b6000816001111580156118a9575060005482105b8015610803575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610dde5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016111ed565b600081806001116119745760005481101561197457600081815260046020526040902054600160e01b8116611972575b806110aa575060001901600081815260046020526040902054611954565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461080390611c84565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a509033908990889088906004016125ff565b602060405180830381600087803b158015611a6a57600080fd5b505af1925050508015611a9a575060408051601f3d908101601f19168201909252611a979181019061263c565b60015b611af5573d808015611ac8576040519150601f19603f3d011682016040523d82523d6000602084013e611acd565b606091505b508051611aed576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600082611b208584611ccb565b14949350505050565b61099a828260405180602001604052806000815250611d10565b604080516080810182526000808252602082018190529181018290526060810191909152610803611b7383611924565b611c84565b6060601180546108189061249d565b606081611bab5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bd55780611bbf81612659565b9150611bce9050600a8361268a565b9150611baf565b6000816001600160401b03811115611bef57611bef612037565b6040519080825280601f01601f191660200182016040528015611c19576020820181803683370190505b5090505b8415611b0b57611c2e60018361269e565b9150611c3b600a866126b5565b611c46906030612504565b60f81b818381518110611c5b57611c5b6124d8565b60200101906001600160f81b031916908160001a905350611c7d600a8661268a565b9450611c1d565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b600081815b8451811015610d5e57611cfc82868381518110611cef57611cef6124d8565b6020026020010151611d7d565b915080611d0881612659565b915050611cd0565b611d1a8383611da9565b6001600160a01b0383163b15610baa576000548281035b611d446000868380600101945086611a1b565b611d61576040516368d2bf6b60e11b815260040160405180910390fd5b818110611d31578160005414611d7657600080fd5b5050505050565b6000818310611d995760008281526020849052604090206110aa565b5060009182526020526040902090565b6000546001600160a01b038316611dd257604051622e076360e81b815260040160405180910390fd5b81611df05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611e3a5760005550505050565b828054611e929061249d565b90600052602060002090601f016020900481019282611eb45760008555611efa565b82601f10611ecd57805160ff1916838001178555611efa565b82800160010185558215611efa579182015b82811115611efa578251825591602001919060010190611edf565b50611f06929150611f0a565b5090565b5b80821115611f065760008155600101611f0b565b6001600160e01b031981168114610b8c57600080fd5b600060208284031215611f4757600080fd5b81356110aa81611f1f565b60005b83811015611f6d578181015183820152602001611f55565b838111156111985750506000910152565b60008151808452611f96816020860160208601611f52565b601f01601f19169290920160200192915050565b6020815260006110aa6020830184611f7e565b600060208284031215611fcf57600080fd5b5035919050565b80356001600160a01b0381168114611fed57600080fd5b919050565b6000806040838503121561200557600080fd5b61200e83611fd6565b946020939093013593505050565b60006020828403121561202e57600080fd5b6110aa82611fd6565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561207557612075612037565b604052919050565b60006001600160401b0383111561209657612096612037565b6120a9601f8401601f191660200161204d565b90508281528383830111156120bd57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156120e657600080fd5b81356001600160401b038111156120fc57600080fd5b8201601f8101841361210d57600080fd5b611b0b8482356020840161207d565b60008060006060848603121561213157600080fd5b61213a84611fd6565b925061214860208501611fd6565b9150604084013590509250925092565b80358015158114611fed57600080fd5b60008060006060848603121561217d57600080fd5b61218684612158565b925061219460208501612158565b91506121a260408501612158565b90509250925092565b600060208083850312156121be57600080fd5b82356001600160401b03808211156121d557600080fd5b818501915085601f8301126121e957600080fd5b8135818111156121fb576121fb612037565b8060051b915061220c84830161204d565b818152918301840191848101908884111561222657600080fd5b938501935b838510156122445784358252938501939085019061222b565b98975050505050505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610f0b576122bb838551612250565b92840192608092909201916001016122a8565b6020808252825182820181905260009190848201906040850190845b81811015610f0b578351835292840192918401916001016122ea565b60008060006060848603121561231b57600080fd5b61232484611fd6565b95602085013595506040909401359392505050565b6000806040838503121561234c57600080fd5b61235583611fd6565b915061236360208401612158565b90509250929050565b6000806000806080858703121561238257600080fd5b61238b85611fd6565b935061239960208601611fd6565b92506040850135915060608501356001600160401b038111156123bb57600080fd5b8501601f810187136123cc57600080fd5b6123db8782356020840161207d565b91505092959194509250565b6000806000604084860312156123fc57600080fd5b8335925060208401356001600160401b038082111561241a57600080fd5b818601915086601f83011261242e57600080fd5b81358181111561243d57600080fd5b8760208260051b850101111561245257600080fd5b6020830194508093505050509250925092565b608081016108038284612250565b6000806040838503121561248657600080fd5b61248f83611fd6565b915061236360208401611fd6565b600181811c908216806124b157607f821691505b602082108114156124d257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115612517576125176124ee565b500190565b6000816000190483118215151615612536576125366124ee565b500290565b60008451602061254e8285838a01611f52565b8551918401916125618184848a01611f52565b8554920191600090600181811c908083168061257e57607f831692505b85831081141561259c57634e487b7160e01b85526022600452602485fd5b8080156125b057600181146125c1576125ee565b60ff198516885283880195506125ee565b60008b81526020902060005b858110156125e65781548a8201529084019088016125cd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061263290830184611f7e565b9695505050505050565b60006020828403121561264e57600080fd5b81516110aa81611f1f565b600060001982141561266d5761266d6124ee565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261269957612699612674565b500490565b6000828210156126b0576126b06124ee565b500390565b6000826126c4576126c4612674565b50069056fea2646970667358221220fe53a804c11bd7b27ca7fb7dd420b6cc9533df5fa2f91b8ecaaed4fc4632ca6164736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e6951476951695a486b73587567755655797879506f46474a6e6370596d453974544d6954363652366769392f00000000000000000000

-----Decoded View---------------
Arg [0] : _hiddenMetadataUri (string): ipfs://QmNiQGiQiZHksXuguVUyxyPoFGJncpYmE9tTMiT66R6gi9/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d4e6951476951695a486b73587567755655797879506f46
Arg [3] : 474a6e6370596d453974544d6954363652366769392f00000000000000000000


Deployed Bytecode Sourcemap

72280:3500:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33302:615;;;;;;;;;;-1:-1:-1;33302:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;33302:615:0;;;;;;;;38949:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40895:204::-;;;;;;;;;;-1:-1:-1;40895:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;40895:204:0;1528:203:1;40443:386:0;;;;;;;;;;-1:-1:-1;40443:386:0;;;;;:::i;:::-;;:::i;:::-;;72695:37;;;;;;;;;;-1:-1:-1;72695:37:0;;;;;;;;;;;72563:43;;;;;;;;;;-1:-1:-1;72563:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;72890:33;;;;;;;;;;;;;;;;;;;2510:25:1;;;2498:2;2483:18;72890:33:0;2364:177:1;74900:100:0;;;;;;;;;;-1:-1:-1;74900:100:0;;;;;:::i;:::-;;:::i;32356:315::-;;;;;;;;;;-1:-1:-1;75522:1:0;32622:12;32409:7;32606:13;:28;-1:-1:-1;;32606:46:0;32356:315;;50160:2800;;;;;;;;;;-1:-1:-1;50160:2800:0;;;;;:::i;:::-;;:::i;72534:25::-;;;;;;;;;;;;;;;;74715:73;;;;;;;;;;;;;:::i;75326:102::-;;;;;;;;;;;;;:::i;41785:185::-;;;;;;;;;;-1:-1:-1;41785:185:0;;;;;:::i;:::-;;:::i;75110:210::-;;;;;;;;;;-1:-1:-1;75110:210:0;;;;;:::i;:::-;;:::i;75535:132::-;;;;;;;;;;-1:-1:-1;75535:132:0;;;;;:::i;:::-;;:::i;72741:28::-;;;;;;;;;;-1:-1:-1;72741:28:0;;;;;;;;;;;72810:33;;;;;;;;;;;;;:::i;67528:468::-;;;;;;;;;;-1:-1:-1;67528:468:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;72616:25::-;;;;;;;;;;-1:-1:-1;72616:25:0;;;;;;;;72460:34;;;;;;;;;;;;;;;;72775:28;;;;;;;;;;;;;:::i;38738:144::-;;;;;;;;;;-1:-1:-1;38738:144:0;;;;;:::i;:::-;;:::i;72502:28::-;;;;;;;;;;;;;;;;72648:40;;;;;;;;;;-1:-1:-1;72648:40:0;;;;;;;;;;;33981:224;;;;;;;;;;-1:-1:-1;33981:224:0;;;;;:::i;:::-;;:::i;17893:103::-;;;;;;;;;;;;;:::i;75006:98::-;;;;;;;;;;-1:-1:-1;75006:98:0;;;;;:::i;:::-;;:::i;74794:100::-;;;;;;;;;;-1:-1:-1;74794:100:0;;;;;:::i;:::-;;:::i;71340:892::-;;;;;;;;;;-1:-1:-1;71340:892:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;17245:87::-;;;;;;;;;;-1:-1:-1;17318:6:0;;-1:-1:-1;;;;;17318:6:0;17245:87;;39118:104;;;;;;;;;;;;;:::i;68386:2505::-;;;;;;;;;;-1:-1:-1;68386:2505:0;;;;;:::i;:::-;;:::i;41171:308::-;;;;;;;;;;-1:-1:-1;41171:308:0;;;;;:::i;:::-;;:::i;72850:36::-;;;;;;;;;;;;;:::i;42041:399::-;;;;;;;;;;-1:-1:-1;42041:399:0;;;;;:::i;:::-;;:::i;73162:1100::-;;;;;;:::i;:::-;;:::i;66949:420::-;;;;;;;;;;-1:-1:-1;66949:420:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;74268:441::-;;;;;;;;;;-1:-1:-1;74268:441:0;;;;;:::i;:::-;;:::i;72383:31::-;;;;;;;;;;;;;;;;72930:38;;;;;;;;;;;;;;;;41550:164;;;;;;;;;;-1:-1:-1;41550:164:0;;;;;:::i;:::-;;:::i;72418:35::-;;;;;;;;;;;;;;;;18151:201;;;;;;;;;;-1:-1:-1;18151:201:0;;;;;:::i;:::-;;:::i;33302:615::-;33387:4;-1:-1:-1;;;;;;;;;33687:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;33764:25:0;;;33687:102;:179;;;-1:-1:-1;;;;;;;;;;33841:25:0;;;33687:179;33667:199;33302:615;-1:-1:-1;;33302:615:0:o;38949:100::-;39003:13;39036:5;39029:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38949:100;:::o;40895:204::-;40963:7;40988:16;40996:7;40988;:16::i;:::-;40983:64;;41013:34;;-1:-1:-1;;;41013:34:0;;;;;;;;;;;40983:64;-1:-1:-1;41067:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41067:24:0;;40895:204::o;40443:386::-;40516:13;40532:16;40540:7;40532;:16::i;:::-;40516:32;-1:-1:-1;61343:10:0;-1:-1:-1;;;;;40565:28:0;;;40561:175;;40613:44;40630:5;61343:10;41550:164;:::i;40613:44::-;40608:128;;40685:35;;-1:-1:-1;;;40685:35:0;;;;;;;;;;;40608:128;40748:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40748:29:0;-1:-1:-1;;;;;40748:29:0;;;;;;;;;40793:28;;40748:24;;40793:28;;;;;;;40505:324;40443:386;;:::o;74900:100::-;17131:13;:11;:13::i;:::-;74972:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;74900:100:::0;:::o;50160:2800::-;50294:27;50324;50343:7;50324:18;:27::i;:::-;50294:57;;50409:4;-1:-1:-1;;;;;50368:45:0;50384:19;-1:-1:-1;;;;;50368:45:0;;50364:86;;50422:28;;-1:-1:-1;;;50422:28:0;;;;;;;;;;;50364:86;50464:27;48890:21;;;48717:15;48932:4;48925:36;49014:4;48998:21;;49104:26;;61343:10;49857:30;;;-1:-1:-1;;;;;49555:26:0;;49836:19;;;49833:55;50643:174;;50730:43;50747:4;61343:10;41550:164;:::i;50730:43::-;50725:92;;50782:35;;-1:-1:-1;;;50782:35:0;;;;;;;;;;;50725:92;-1:-1:-1;;;;;50834:16:0;;50830:52;;50859:23;;-1:-1:-1;;;50859:23:0;;;;;;;;;;;50830:52;51031:15;51028:160;;;51171:1;51150:19;51143:30;51028:160;-1:-1:-1;;;;;51566:24:0;;;;;;;:18;:24;;;;;;51564:26;;-1:-1:-1;;51564:26:0;;;51635:22;;;;;;;;;51633:24;;-1:-1:-1;51633:24:0;;;38637:11;38613:22;38609:40;38596:62;-1:-1:-1;;;38596:62:0;51928:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;52222:46:0;;52218:626;;52326:1;52316:11;;52294:19;52449:30;;;:17;:30;;;;;;52445:384;;52587:13;;52572:11;:28;52568:242;;52734:30;;;;:17;:30;;;;;:52;;;52568:242;52275:569;52218:626;52891:7;52887:2;-1:-1:-1;;;;;52872:27:0;52881:4;-1:-1:-1;;;;;52872:27:0;;;;;;;;;;;50283:2677;;;50160:2800;;;:::o;74715:73::-;17131:13;:11;:13::i;:::-;74774:8:::1;::::0;;-1:-1:-1;;74762:20:0;::::1;74774:8:::0;;;;::::1;;;74773:9;74762:20:::0;;::::1;;::::0;;74715:73::o;75326:102::-;17131:13;:11;:13::i;:::-;75371:51:::1;::::0;75379:10:::1;::::0;75400:21:::1;75371:51:::0;::::1;;;::::0;::::1;::::0;;;75400:21;75379:10;75371:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;75326:102::o:0;41785:185::-;41923:39;41940:4;41946:2;41950:7;41923:39;;;;;;;;;;;;:16;:39::i;:::-;41785:185;;;:::o;75110:210::-;17131:13;:11;:13::i;:::-;75213:6:::1;:19:::0;;-1:-1:-1;;75239:37:0;75213:19;::::1;;-1:-1:-1::0;;75239:37:0;;;;;75213:19:::1;75239:37:::0;::::1;;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;75283:31:0::1;::::0;;::::1;;::::0;;;::::1;;::::0;;75110:210::o;75535:132::-;17131:13;:11;:13::i;:::-;75623:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;72810:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67528:468::-;67703:15;;67617:23;;67678:22;67703:15;-1:-1:-1;;;;;67770:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67770:36:0;;-1:-1:-1;;67770:36:0;;;;;;;;;;;;67733:73;;67826:9;67821:125;67842:14;67837:1;:19;67821:125;;67898:32;67918:8;67927:1;67918:11;;;;;;;;:::i;:::-;;;;;;;67898:19;:32::i;:::-;67882:10;67893:1;67882:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;67858:3;;67821:125;;;-1:-1:-1;67967:10:0;67528:468;-1:-1:-1;;;67528:468:0:o;72775:28::-;;;;;;;:::i;38738:144::-;38802:7;38845:27;38864:7;38845:18;:27::i;33981:224::-;34045:7;-1:-1:-1;;;;;34069:19:0;;34065:60;;34097:28;;-1:-1:-1;;;34097:28:0;;;;;;;;;;;34065:60;-1:-1:-1;;;;;;34143:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;34143:54:0;;33981:224::o;17893:103::-;17131:13;:11;:13::i;:::-;17958:30:::1;17985:1;17958:18;:30::i;:::-;17893:103::o:0;75006:98::-;17131:13;:11;:13::i;:::-;75074:10:::1;:24:::0;75006:98::o;74794:100::-;17131:13;:11;:13::i;:::-;74866:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;71340:892::-:0;71410:16;71464:19;71498:25;71538:22;71563:16;71573:5;71563:9;:16::i;:::-;71538:41;;71594:25;71636:14;-1:-1:-1;;;;;71622:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71622:29:0;;71594:57;;71666:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71666:31:0;75522:1;71712:472;71761:14;71746:11;:29;71712:472;;71813:15;71826:1;71813:12;:15::i;:::-;71801:27;;71851:9;:16;;;71847:73;;;71892:8;;71847:73;71942:14;;-1:-1:-1;;;;;71942:28:0;;71938:111;;72015:14;;;-1:-1:-1;71938:111:0;72092:5;-1:-1:-1;;;;;72071:26:0;:17;-1:-1:-1;;;;;72071:26:0;;72067:102;;;72148:1;72122:8;72131:13;;;;;;72122:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;72067:102;71777:3;;71712:472;;;-1:-1:-1;72205:8:0;;71340:892;-1:-1:-1;;;;;;71340:892:0:o;39118:104::-;39174:13;39207:7;39200:14;;;;;:::i;68386:2505::-;68521:16;68588:4;68579:5;:13;68575:45;;68601:19;;-1:-1:-1;;;68601:19:0;;;;;;;;;;;68575:45;68635:19;68669:17;68689:14;32098:7;32125:13;;32051:95;68689:14;68669:34;-1:-1:-1;75522:1:0;68781:5;:23;68777:87;;;75522:1;68825:23;;68777:87;68940:9;68933:4;:16;68929:73;;;68977:9;68970:16;;68929:73;69016:25;69044:16;69054:5;69044:9;:16::i;:::-;69016:44;;69238:4;69230:5;:12;69226:278;;;69285:12;;;69320:31;;;69316:111;;;69396:11;69376:31;;69316:111;69244:198;69226:278;;;-1:-1:-1;69487:1:0;69226:278;69518:25;69560:17;-1:-1:-1;;;;;69546:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69546:32:0;-1:-1:-1;69518:60:0;-1:-1:-1;69597:22:0;69593:78;;69647:8;-1:-1:-1;69640:15:0;;-1:-1:-1;;;69640:15:0;69593:78;69815:31;69849:26;69869:5;69849:19;:26::i;:::-;69815:60;;69890:25;70135:9;:16;;;70130:92;;-1:-1:-1;70192:14:0;;70130:92;70253:5;70236:478;70265:4;70260:1;:9;;:45;;;;;70288:17;70273:11;:32;;70260:45;70236:478;;;70343:15;70356:1;70343:12;:15::i;:::-;70331:27;;70381:9;:16;;;70377:73;;;70422:8;;70377:73;70472:14;;-1:-1:-1;;;;;70472:28:0;;70468:111;;70545:14;;;-1:-1:-1;70468:111:0;70622:5;-1:-1:-1;;;;;70601:26:0;:17;-1:-1:-1;;;;;70601:26:0;;70597:102;;;70678:1;70652:8;70661:13;;;;;;70652:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;70597:102;70307:3;;70236:478;;;-1:-1:-1;;;70799:29:0;;;-1:-1:-1;70806:8:0;;-1:-1:-1;;68386:2505:0;;;;;;:::o;41171:308::-;-1:-1:-1;;;;;41270:31:0;;61343:10;41270:31;41266:61;;;41310:17;;-1:-1:-1;;;41310:17:0;;;;;;;;;;;41266:61;61343:10;41340:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;41340:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;41340:60:0;;;;;;;;;;41416:55;;540:41:1;;;41340:49:0;;61343:10;41416:55;;513:18:1;41416:55:0;;;;;;;41171:308;;:::o;72850:36::-;;;;;;;:::i;42041:399::-;42208:31;42221:4;42227:2;42231:7;42208:12;:31::i;:::-;-1:-1:-1;;;;;42254:14:0;;;:19;42250:183;;42293:56;42324:4;42330:2;42334:7;42343:5;42293:30;:56::i;:::-;42288:145;;42377:40;;-1:-1:-1;;;42377:40:0;;;;;;;;;;;42288:145;42041:399;;;;:::o;73162:1100::-;2948:1;3546:7;;:19;;3538:63;;;;-1:-1:-1;;;3538:63:0;;10882:2:1;3538:63:0;;;10864:21:1;10921:2;10901:18;;;10894:30;10960:33;10940:18;;;10933:61;11011:18;;3538:63:0;;;;;;;;;2948:1;3679:7;:18;73277:6:::1;::::0;::::1;;73276:7;73268:43;;;::::0;-1:-1:-1;;;73268:43:0;;11242:2:1;73268:43:0::1;::::0;::::1;11224:21:1::0;11281:2;11261:18;;;11254:30;11320:25;11300:18;;;11293:53;11363:18;;73268:43:0::1;11040:347:1::0;73268:43:0::1;73344:1;73330:11;:15;:43;;;;;73364:9;;73349:11;:24;;73330:43;73322:76;;;::::0;-1:-1:-1;;;73322:76:0;;11594:2:1;73322:76:0::1;::::0;::::1;11576:21:1::0;11633:2;11613:18;;;11606:30;-1:-1:-1;;;11652:18:1;;;11645:50;11712:18;;73322:76:0::1;11392:344:1::0;73322:76:0::1;73449:9;::::0;75522:1;32622:12;32409:7;32606:13;73433:11;;32606:28;;-1:-1:-1;;32606:46:0;73417:27:::1;;;;:::i;:::-;:42;;73409:75;;;::::0;-1:-1:-1;;;73409:75:0;;12208:2:1;73409:75:0::1;::::0;::::1;12190:21:1::0;12247:2;12227:18;;;12220:30;-1:-1:-1;;;12266:18:1;;;12259:50;12326:18;;73409:75:0::1;12006:344:1::0;73409:75:0::1;73492:20;::::0;::::1;;::::0;;::::1;;:28;;:20;:28;73488:377;;;73554:30;::::0;-1:-1:-1;;61343:10:0;12504:2:1;12500:15;12496:53;73554:30:0::1;::::0;::::1;12484:66:1::0;73529:12:0::1;::::0;12566::1;;73554:30:0::1;;;;;;;;;;;;73544:41;;;;;;73529:56;;73604:50;73623:12;;73604:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;73637:10:0::1;::::0;;-1:-1:-1;73649:4:0;;-1:-1:-1;73604:18:0::1;:50::i;:::-;73596:77;;;::::0;-1:-1:-1;;;73596:77:0;;12791:2:1;73596:77:0::1;::::0;::::1;12773:21:1::0;12830:2;12810:18;;;12803:30;-1:-1:-1;;;12849:18:1;;;12842:44;12903:18;;73596:77:0::1;12589:338:1::0;73596:77:0::1;61343:10:::0;73693:25:::1;::::0;;;:11:::1;:25;::::0;;;;;::::1;;73692:26;73684:63;;;::::0;-1:-1:-1;;;73684:63:0;;13134:2:1;73684:63:0::1;::::0;::::1;13116:21:1::0;13173:2;13153:18;;;13146:30;13212:26;13192:18;;;13185:54;13256:18;;73684:63:0::1;12932:348:1::0;73684:63:0::1;73766:11;73781:1;73766:16;73758:56;;;::::0;-1:-1:-1;;;73758:56:0;;13487:2:1;73758:56:0::1;::::0;::::1;13469:21:1::0;13526:2;13506:18;;;13499:30;13565:29;13545:18;;;13538:57;13612:18;;73758:56:0::1;13285:351:1::0;73758:56:0::1;-1:-1:-1::0;61343:10:0;73825:25:::1;::::0;;;:11:::1;:25;::::0;;;;:32;;-1:-1:-1;;73825:32:0::1;73853:4;73825:32;::::0;;73488:377:::1;73874:17;::::0;;;::::1;;;:25;;73895:4;73874:25;73871:194;;;73951:12;::::0;75522:1;32622:12;32409:7;32606:13;73935:11;;32606:28;;-1:-1:-1;;32606:46:0;73919:27:::1;;;;:::i;:::-;:45;;73911:81;;;::::0;-1:-1:-1;;;73911:81:0;;13843:2:1;73911:81:0::1;::::0;::::1;13825:21:1::0;13882:2;13862:18;;;13855:30;13921:25;13901:18;;;13894:53;13964:18;;73911:81:0::1;13641:347:1::0;73911:81:0::1;74025:11;74018:4;;:18;;;;:::i;:::-;74005:9;:31;73997:63;;;::::0;-1:-1:-1;;;73997:63:0;;14368:2:1;73997:63:0::1;::::0;::::1;14350:21:1::0;14407:2;14387:18;;;14380:30;-1:-1:-1;;;14426:18:1;;;14419:49;14485:18;;73997:63:0::1;14166:343:1::0;73997:63:0::1;74074:17;::::0;;;::::1;;;:26;::::0;::::1;:59;;-1:-1:-1::0;74104:20:0::1;::::0;::::1;::::0;::::1;;;:29;74074:59;74071:139;;;74167:11;74160:4;;:18;;;;:::i;:::-;74147:9;:31;74139:63;;;::::0;-1:-1:-1;;;74139:63:0;;14368:2:1;74139:63:0::1;::::0;::::1;14350:21:1::0;14407:2;14387:18;;;14380:30;-1:-1:-1;;;14426:18:1;;;14419:49;14485:18;;74139:63:0::1;14166:343:1::0;74139:63:0::1;74220:36;61343:10:::0;74244:11:::1;74220:9;:36::i;:::-;-1:-1:-1::0;;2904:1:0;3858:7;:22;-1:-1:-1;73162:1100:0:o;66949:420::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75522:1:0;67105:7;:25;:54;;;-1:-1:-1;32098:7:0;32125:13;67134:7;:25;;67105:54;67101:103;;;67183:9;66949:420;-1:-1:-1;;66949:420:0:o;67101:103::-;67226:21;67239:7;67226:12;:21::i;:::-;67214:33;;67262:9;:16;;;67258:65;;;67302:9;66949:420;-1:-1:-1;;66949:420:0:o;67258:65::-;67340:21;67353:7;67340:12;:21::i;74268:441::-;74342:13;74372:17;74380:8;74372:7;:17::i;:::-;74364:77;;;;-1:-1:-1;;;74364:77:0;;14716:2:1;74364:77:0;;;14698:21:1;14755:2;14735:18;;;14728:30;14794:34;14774:18;;;14767:62;-1:-1:-1;;;14845:18:1;;;14838:45;14900:19;;74364:77:0;14514:411:1;74364:77:0;74452:8;;;;;;;74448:64;;74487:17;74480:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74268:441;;;:::o;74448:64::-;74518:28;74549:10;:8;:10::i;:::-;74518:41;;74604:1;74579:14;74573:28;:32;:130;;;;;;;;;;;;;;;;;74641:14;74657:19;:8;:17;:19::i;:::-;74678:9;74624:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74566:137;74268:441;-1:-1:-1;;;74268:441:0:o;41550:164::-;-1:-1:-1;;;;;41671:25:0;;;41647:4;41671:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41550:164::o;18151:201::-;17131:13;:11;:13::i;:::-;-1:-1:-1;;;;;18240:22:0;::::1;18232:73;;;::::0;-1:-1:-1;;;18232:73:0;;16790:2:1;18232:73:0::1;::::0;::::1;16772:21:1::0;16829:2;16809:18;;;16802:30;16868:34;16848:18;;;16841:62;-1:-1:-1;;;16919:18:1;;;16912:36;16965:19;;18232:73:0::1;16588:402:1::0;18232:73:0::1;18316:28;18335:8;18316:18;:28::i;42695:273::-:0;42752:4;42808:7;75522:1;42789:26;;:66;;;;;42842:13;;42832:7;:23;42789:66;:152;;;;-1:-1:-1;;42893:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;42893:43:0;:48;;42695:273::o;17410:132::-;17318:6;;-1:-1:-1;;;;;17318:6:0;61343:10;17474:23;17466:68;;;;-1:-1:-1;;;17466:68:0;;17197:2:1;17466:68:0;;;17179:21:1;;;17216:18;;;17209:30;17275:34;17255:18;;;17248:62;17327:18;;17466:68:0;16995:356:1;35655:1129:0;35722:7;35757;;75522:1;35806:23;35802:915;;35859:13;;35852:4;:20;35848:869;;;35897:14;35914:23;;;:17;:23;;;;;;-1:-1:-1;;;36003:23:0;;35999:699;;36522:113;36529:11;36522:113;;-1:-1:-1;;;36600:6:0;36582:25;;;;:17;:25;;;;;;36522:113;;35999:699;35874:843;35848:869;36745:31;;-1:-1:-1;;;36745:31:0;;;;;;;;;;;18512:191;18605:6;;;-1:-1:-1;;;;;18622:17:0;;;-1:-1:-1;;;;;;18622:17:0;;;;;;;18655:40;;18605:6;;;18622:17;18605:6;;18655:40;;18586:16;;18655:40;18575:128;18512:191;:::o;37332:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37452:24:0;;;;:17;:24;;;;;;37433:44;;:18;:44::i;56911:716::-;57095:88;;-1:-1:-1;;;57095:88:0;;57074:4;;-1:-1:-1;;;;;57095:45:0;;;;;:88;;61343:10;;57162:4;;57168:7;;57177:5;;57095:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57095:88:0;;;;;;;;-1:-1:-1;;57095:88:0;;;;;;;;;;;;:::i;:::-;;;57091:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57378:13:0;;57374:235;;57424:40;;-1:-1:-1;;;57424:40:0;;;;;;;;;;;57374:235;57567:6;57561:13;57552:6;57548:2;57544:15;57537:38;57091:529;-1:-1:-1;;;;;;57254:64:0;-1:-1:-1;;;57254:64:0;;-1:-1:-1;57091:529:0;56911:716;;;;;;:::o;7611:190::-;7736:4;7789;7760:25;7773:5;7780:4;7760:12;:25::i;:::-;:33;;7611:190;-1:-1:-1;;;;7611:190:0:o;43052:104::-;43121:27;43131:2;43135:8;43121:27;;;;;;;;;;;;:9;:27::i;37988:158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38091:47:0;38110:27;38129:7;38110:18;:27::i;:::-;38091:18;:47::i;75673:104::-;75733:13;75762:9;75755:16;;;;;:::i;4325:723::-;4381:13;4602:10;4598:53;;-1:-1:-1;;4629:10:0;;;;;;;;;;;;-1:-1:-1;;;4629:10:0;;;;;4325:723::o;4598:53::-;4676:5;4661:12;4717:78;4724:9;;4717:78;;4750:8;;;;:::i;:::-;;-1:-1:-1;4773:10:0;;-1:-1:-1;4781:2:0;4773:10;;:::i;:::-;;;4717:78;;;4805:19;4837:6;-1:-1:-1;;;;;4827:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4827:17:0;;4805:39;;4855:154;4862:10;;4855:154;;4889:11;4899:1;4889:11;;:::i;:::-;;-1:-1:-1;4958:10:0;4966:2;4958:5;:10;:::i;:::-;4945:24;;:2;:24;:::i;:::-;4932:39;;4915:6;4922;4915:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4915:56:0;;;;;;;;-1:-1:-1;4986:11:0;4995:2;4986:11;;:::i;:::-;;;4855:154;;36878:363;-1:-1:-1;;;;;;;;;;;;;36988:41:0;;;;29190:3;37074:32;;;-1:-1:-1;;;;;37040:67:0;-1:-1:-1;;;37040:67:0;-1:-1:-1;;;37137:23:0;;:28;;-1:-1:-1;;;37118:47:0;;;;29707:3;37205:27;;;;-1:-1:-1;;;37176:57:0;-1:-1:-1;36878:363:0:o;8478:296::-;8561:7;8604:4;8561:7;8619:118;8643:5;:12;8639:1;:16;8619:118;;;8692:33;8702:12;8716:5;8722:1;8716:8;;;;;;;;:::i;:::-;;;;;;;8692:9;:33::i;:::-;8677:48;-1:-1:-1;8657:3:0;;;;:::i;:::-;;;;8619:118;;43572:681;43695:19;43701:2;43705:8;43695:5;:19::i;:::-;-1:-1:-1;;;;;43756:14:0;;;:19;43752:483;;43796:11;43810:13;43858:14;;;43891:233;43922:62;43961:1;43965:2;43969:7;;;;;;43978:5;43922:30;:62::i;:::-;43917:167;;44020:40;;-1:-1:-1;;;44020:40:0;;;;;;;;;;;43917:167;44119:3;44111:5;:11;43891:233;;44206:3;44189:13;;:20;44185:34;;44211:8;;;44185:34;43777:458;;43572:681;;;:::o;14685:149::-;14748:7;14779:1;14775;:5;:51;;14910:13;15004:15;;;15040:4;15033:15;;;15087:4;15071:21;;14775:51;;;-1:-1:-1;14910:13:0;15004:15;;;15040:4;15033:15;15087:4;15071:21;;;14685:149::o;44526:1529::-;44591:20;44614:13;-1:-1:-1;;;;;44642:16:0;;44638:48;;44667:19;;-1:-1:-1;;;44667:19:0;;;;;;;;;;;44638:48;44701:13;44697:44;;44723:18;;-1:-1:-1;;;44723:18:0;;;;;;;;;;;44697:44;-1:-1:-1;;;;;45229:22:0;;;;;;:18;:22;;28673:2;45229:22;;:70;;45267:31;45255:44;;45229:70;;;38637:11;38613:22;38609:40;-1:-1:-1;40347:15:0;;40322:23;40318:45;38606:51;38596:62;45542:31;;;;:17;:31;;;;;:173;45560:12;45791:23;;;45829:101;45856:35;;45881:9;;;;;-1:-1:-1;;;;;45856:35:0;;;45873:1;;45856:35;;45873:1;;45856:35;45925:3;45915:7;:13;45829:101;;45946:13;:19;-1:-1:-1;41785:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:186::-;2232:6;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2324:29;2343:9;2324:29;:::i;2546:127::-;2607:10;2602:3;2598:20;2595:1;2588:31;2638:4;2635:1;2628:15;2662:4;2659:1;2652:15;2678:275;2749:2;2743:9;2814:2;2795:13;;-1:-1:-1;;2791:27:1;2779:40;;-1:-1:-1;;;;;2834:34:1;;2870:22;;;2831:62;2828:88;;;2896:18;;:::i;:::-;2932:2;2925:22;2678:275;;-1:-1:-1;2678:275:1:o;2958:407::-;3023:5;-1:-1:-1;;;;;3049:6:1;3046:30;3043:56;;;3079:18;;:::i;:::-;3117:57;3162:2;3141:15;;-1:-1:-1;;3137:29:1;3168:4;3133:40;3117:57;:::i;:::-;3108:66;;3197:6;3190:5;3183:21;3237:3;3228:6;3223:3;3219:16;3216:25;3213:45;;;3254:1;3251;3244:12;3213:45;3303:6;3298:3;3291:4;3284:5;3280:16;3267:43;3357:1;3350:4;3341:6;3334:5;3330:18;3326:29;3319:40;2958:407;;;;;:::o;3370:451::-;3439:6;3492:2;3480:9;3471:7;3467:23;3463:32;3460:52;;;3508:1;3505;3498:12;3460:52;3548:9;3535:23;-1:-1:-1;;;;;3573:6:1;3570:30;3567:50;;;3613:1;3610;3603:12;3567:50;3636:22;;3689:4;3681:13;;3677:27;-1:-1:-1;3667:55:1;;3718:1;3715;3708:12;3667:55;3741:74;3807:7;3802:2;3789:16;3784:2;3780;3776:11;3741:74;:::i;3826:328::-;3903:6;3911;3919;3972:2;3960:9;3951:7;3947:23;3943:32;3940:52;;;3988:1;3985;3978:12;3940:52;4011:29;4030:9;4011:29;:::i;:::-;4001:39;;4059:38;4093:2;4082:9;4078:18;4059:38;:::i;:::-;4049:48;;4144:2;4133:9;4129:18;4116:32;4106:42;;3826:328;;;;;:::o;4341:160::-;4406:20;;4462:13;;4455:21;4445:32;;4435:60;;4491:1;4488;4481:12;4506:316;4574:6;4582;4590;4643:2;4631:9;4622:7;4618:23;4614:32;4611:52;;;4659:1;4656;4649:12;4611:52;4682:26;4698:9;4682:26;:::i;:::-;4672:36;;4727:35;4758:2;4747:9;4743:18;4727:35;:::i;:::-;4717:45;;4781:35;4812:2;4801:9;4797:18;4781:35;:::i;:::-;4771:45;;4506:316;;;;;:::o;4827:946::-;4911:6;4942:2;4985;4973:9;4964:7;4960:23;4956:32;4953:52;;;5001:1;4998;4991:12;4953:52;5041:9;5028:23;-1:-1:-1;;;;;5111:2:1;5103:6;5100:14;5097:34;;;5127:1;5124;5117:12;5097:34;5165:6;5154:9;5150:22;5140:32;;5210:7;5203:4;5199:2;5195:13;5191:27;5181:55;;5232:1;5229;5222:12;5181:55;5268:2;5255:16;5290:2;5286;5283:10;5280:36;;;5296:18;;:::i;:::-;5342:2;5339:1;5335:10;5325:20;;5365:28;5389:2;5385;5381:11;5365:28;:::i;:::-;5427:15;;;5497:11;;;5493:20;;;5458:12;;;;5525:19;;;5522:39;;;5557:1;5554;5547:12;5522:39;5581:11;;;;5601:142;5617:6;5612:3;5609:15;5601:142;;;5683:17;;5671:30;;5634:12;;;;5721;;;;5601:142;;;5762:5;4827:946;-1:-1:-1;;;;;;;;4827:946:1:o;5778:349::-;5862:12;;-1:-1:-1;;;;;5858:38:1;5846:51;;5950:4;5939:16;;;5933:23;-1:-1:-1;;;;;5929:48:1;5913:14;;;5906:72;6041:4;6030:16;;;6024:23;6017:31;6010:39;5994:14;;;5987:63;6103:4;6092:16;;;6086:23;6111:8;6082:38;6066:14;;6059:62;5778:349::o;6132:722::-;6365:2;6417:21;;;6487:13;;6390:18;;;6509:22;;;6336:4;;6365:2;6588:15;;;;6562:2;6547:18;;;6336:4;6631:197;6645:6;6642:1;6639:13;6631:197;;;6694:52;6742:3;6733:6;6727:13;6694:52;:::i;:::-;6803:15;;;;6775:4;6766:14;;;;;6667:1;6660:9;6631:197;;7044:632;7215:2;7267:21;;;7337:13;;7240:18;;;7359:22;;;7186:4;;7215:2;7438:15;;;;7412:2;7397:18;;;7186:4;7481:169;7495:6;7492:1;7489:13;7481:169;;;7556:13;;7544:26;;7625:15;;;;7590:12;;;;7517:1;7510:9;7481:169;;7681:322;7758:6;7766;7774;7827:2;7815:9;7806:7;7802:23;7798:32;7795:52;;;7843:1;7840;7833:12;7795:52;7866:29;7885:9;7866:29;:::i;:::-;7856:39;7942:2;7927:18;;7914:32;;-1:-1:-1;7993:2:1;7978:18;;;7965:32;;7681:322;-1:-1:-1;;;7681:322:1:o;8008:254::-;8073:6;8081;8134:2;8122:9;8113:7;8109:23;8105:32;8102:52;;;8150:1;8147;8140:12;8102:52;8173:29;8192:9;8173:29;:::i;:::-;8163:39;;8221:35;8252:2;8241:9;8237:18;8221:35;:::i;:::-;8211:45;;8008:254;;;;;:::o;8267:667::-;8362:6;8370;8378;8386;8439:3;8427:9;8418:7;8414:23;8410:33;8407:53;;;8456:1;8453;8446:12;8407:53;8479:29;8498:9;8479:29;:::i;:::-;8469:39;;8527:38;8561:2;8550:9;8546:18;8527:38;:::i;:::-;8517:48;;8612:2;8601:9;8597:18;8584:32;8574:42;;8667:2;8656:9;8652:18;8639:32;-1:-1:-1;;;;;8686:6:1;8683:30;8680:50;;;8726:1;8723;8716:12;8680:50;8749:22;;8802:4;8794:13;;8790:27;-1:-1:-1;8780:55:1;;8831:1;8828;8821:12;8780:55;8854:74;8920:7;8915:2;8902:16;8897:2;8893;8889:11;8854:74;:::i;:::-;8844:84;;;8267:667;;;;;;;:::o;8939:683::-;9034:6;9042;9050;9103:2;9091:9;9082:7;9078:23;9074:32;9071:52;;;9119:1;9116;9109:12;9071:52;9155:9;9142:23;9132:33;;9216:2;9205:9;9201:18;9188:32;-1:-1:-1;;;;;9280:2:1;9272:6;9269:14;9266:34;;;9296:1;9293;9286:12;9266:34;9334:6;9323:9;9319:22;9309:32;;9379:7;9372:4;9368:2;9364:13;9360:27;9350:55;;9401:1;9398;9391:12;9350:55;9441:2;9428:16;9467:2;9459:6;9456:14;9453:34;;;9483:1;9480;9473:12;9453:34;9536:7;9531:2;9521:6;9518:1;9514:14;9510:2;9506:23;9502:32;9499:45;9496:65;;;9557:1;9554;9547:12;9496:65;9588:2;9584;9580:11;9570:21;;9610:6;9600:16;;;;;8939:683;;;;;:::o;9627:266::-;9823:3;9808:19;;9836:51;9812:9;9869:6;9836:51;:::i;9898:260::-;9966:6;9974;10027:2;10015:9;10006:7;10002:23;9998:32;9995:52;;;10043:1;10040;10033:12;9995:52;10066:29;10085:9;10066:29;:::i;:::-;10056:39;;10114:38;10148:2;10137:9;10133:18;10114:38;:::i;10163:380::-;10242:1;10238:12;;;;10285;;;10306:61;;10360:4;10352:6;10348:17;10338:27;;10306:61;10413:2;10405:6;10402:14;10382:18;10379:38;10376:161;;;10459:10;10454:3;10450:20;10447:1;10440:31;10494:4;10491:1;10484:15;10522:4;10519:1;10512:15;10376:161;;10163:380;;;:::o;10548:127::-;10609:10;10604:3;10600:20;10597:1;10590:31;10640:4;10637:1;10630:15;10664:4;10661:1;10654:15;11741:127;11802:10;11797:3;11793:20;11790:1;11783:31;11833:4;11830:1;11823:15;11857:4;11854:1;11847:15;11873:128;11913:3;11944:1;11940:6;11937:1;11934:13;11931:39;;;11950:18;;:::i;:::-;-1:-1:-1;11986:9:1;;11873:128::o;13993:168::-;14033:7;14099:1;14095;14091:6;14087:14;14084:1;14081:21;14076:1;14069:9;14062:17;14058:45;14055:71;;;14106:18;;:::i;:::-;-1:-1:-1;14146:9:1;;13993:168::o;15056:1527::-;15280:3;15318:6;15312:13;15344:4;15357:51;15401:6;15396:3;15391:2;15383:6;15379:15;15357:51;:::i;:::-;15471:13;;15430:16;;;;15493:55;15471:13;15430:16;15515:15;;;15493:55;:::i;:::-;15637:13;;15570:20;;;15610:1;;15697;15719:18;;;;15772;;;;15799:93;;15877:4;15867:8;15863:19;15851:31;;15799:93;15940:2;15930:8;15927:16;15907:18;15904:40;15901:167;;;-1:-1:-1;;;15967:33:1;;16023:4;16020:1;16013:15;16053:4;15974:3;16041:17;15901:167;16084:18;16111:110;;;;16235:1;16230:328;;;;16077:481;;16111:110;-1:-1:-1;;16146:24:1;;16132:39;;16191:20;;;;-1:-1:-1;16111:110:1;;16230:328;15003:1;14996:14;;;15040:4;15027:18;;16325:1;16339:169;16353:8;16350:1;16347:15;16339:169;;;16435:14;;16420:13;;;16413:37;16478:16;;;;16370:10;;16339:169;;;16343:3;;16539:8;16532:5;16528:20;16521:27;;16077:481;-1:-1:-1;16574:3:1;;15056:1527;-1:-1:-1;;;;;;;;;;;15056:1527:1:o;17356:489::-;-1:-1:-1;;;;;17625:15:1;;;17607:34;;17677:15;;17672:2;17657:18;;17650:43;17724:2;17709:18;;17702:34;;;17772:3;17767:2;17752:18;;17745:31;;;17550:4;;17793:46;;17819:19;;17811:6;17793:46;:::i;:::-;17785:54;17356:489;-1:-1:-1;;;;;;17356:489:1:o;17850:249::-;17919:6;17972:2;17960:9;17951:7;17947:23;17943:32;17940:52;;;17988:1;17985;17978:12;17940:52;18020:9;18014:16;18039:30;18063:5;18039:30;:::i;18104:135::-;18143:3;-1:-1:-1;;18164:17:1;;18161:43;;;18184:18;;:::i;:::-;-1:-1:-1;18231:1:1;18220:13;;18104:135::o;18244:127::-;18305:10;18300:3;18296:20;18293:1;18286:31;18336:4;18333:1;18326:15;18360:4;18357:1;18350:15;18376:120;18416:1;18442;18432:35;;18447:18;;:::i;:::-;-1:-1:-1;18481:9:1;;18376:120::o;18501:125::-;18541:4;18569:1;18566;18563:8;18560:34;;;18574:18;;:::i;:::-;-1:-1:-1;18611:9:1;;18501:125::o;18631:112::-;18663:1;18689;18679:35;;18694:18;;:::i;:::-;-1:-1:-1;18728:9:1;;18631:112::o

Swarm Source

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