ETH Price: $2,597.16 (-2.21%)

Token

Meta Punks (Metapunks)
 

Overview

Max Total Supply

5,000 Metapunks

Holders

1,142

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 Metapunks
0xa84f6967a3d1a1977ed84e8757264aa7cd8bc849
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:
MetaPunks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-29
*/

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        //

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

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

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

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


// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

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

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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

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

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

contract MetaPunks is ERC721A, Ownable {

    uint256 constant public maxSupply = 5000;
    uint256 public mintPrice = 0.00 ether;
    uint256 constant public MaxMintPerTx = 3;
    uint256 constant public MaxMintPerWallet = 6; 
    uint256 constant public MaxFreeMintPerWallet = 6;

    bool public isSaleLive = true;
    string public baseURI = "ipfs://QmbXNxWwuLoiP7rCvjoULnCuSx5ouh6hConjCkeHPdR31K/";
     mapping(address => uint) public addressClaimed;

    constructor() ERC721A("Meta Punks", "Metapunks") {}

    function mint(uint256 quantity) external payable {
        require(quantity > 0 && quantity <= MaxMintPerTx, "Invalid quantity");
        uint256 supply = totalSupply();
        require(supply + quantity <= maxSupply, "Max amount of tokens minted");
        require(addressClaimed[_msgSender()] + quantity <= MaxMintPerWallet, "You have already received your Tokens");
        require(msg.value >= quantity * mintPrice, "Insufficient value to mint");
        addressClaimed[_msgSender()] += quantity;
        _safeMint(msg.sender, quantity);
    }
    
    function freemint(uint256 quantity) external {
        require(quantity <= MaxFreeMintPerWallet, "Invalid quantity");
        uint256 supply = totalSupply();
        require(supply + quantity <= maxSupply, "Max amount of tokens minted");
        require(addressClaimed[_msgSender()] + quantity <= MaxFreeMintPerWallet, "You have already received your Tokens");
        addressClaimed[_msgSender()] += quantity;
        _safeMint(msg.sender, quantity);
    }

    function ownerMint(address to, uint256 quantity) external onlyOwner {
        require(totalSupply() + quantity <= maxSupply, "Minting exceeds max supply");
        require(quantity > 0, "Quantity less than 1");

        _safeMint(to, quantity);
    }

    function toggleSaleStatus() external onlyOwner {
        isSaleLive = !isSaleLive;
    }

    function setMintPrice(uint256 _MintPrice) external onlyOwner {
        mintPrice = _MintPrice;
    }

    function withdrawAll() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function setBaseURI(string calldata newURI) external onlyOwner {
        baseURI = newURI;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MaxFreeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MintPrice","type":"uint256"}],"name":"setMintPrice","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":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600955600a805460ff1916600117905560e0604052603660808181529062001f9460a03980516200003b91600b916020909101906200011e565b503480156200004957600080fd5b50604080518082018252600a8152694d6574612050756e6b7360b01b6020808301918252835180850190945260098452684d65746170756e6b7360b81b9084015281519192916200009d916002916200011e565b508051620000b39060039060208401906200011e565b5050600160005550620000c633620000cc565b62000201565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012c90620001c4565b90600052602060002090601f0160209004810192826200015057600085556200019b565b82601f106200016b57805160ff19168380011785556200019b565b828001600101855582156200019b579182015b828111156200019b5782518255916020019190600101906200017e565b50620001a9929150620001ad565b5090565b5b80821115620001a95760008155600101620001ae565b600181811c90821680620001d957607f821691505b60208210811415620001fb57634e487b7160e01b600052602260045260246000fd5b50919050565b611d8380620002116000396000f3fe6080604052600436106101e35760003560e01c8063772dc32f11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c514610522578063f2fde38b1461056b578063f4a0a5281461058b578063f71143ca146105ab57600080fd5b8063a22cb465146104ac578063b88d4fde146104cc578063c87b56dd146104ec578063d5abeb011461050c57600080fd5b80638da5cb5b116100d15780638da5cb5b1461046657806393785a5f1461042757806395d89b4114610484578063a0712d681461049957600080fd5b8063772dc32f146103fa5780637ce6edb814610427578063823903a91461043c578063853828b61461045157600080fd5b806342842e0e1161017a5780636817c76c116101495780636817c76c1461039a5780636c0360eb146103b057806370a08231146103c5578063715018a6146103e557600080fd5b806342842e0e1461031a578063484b973c1461033a57806355f804b31461035a5780636352211e1461037a57600080fd5b8063095ea7b3116101b6578063095ea7b31461028e5780630fbe4fe2146102ae57806318160ddd146102ce57806323b872dd146102fa57600080fd5b806301ffc9a7146101e8578063049c5c491461021d57806306fdde0314610234578063081812fc14610256575b600080fd5b3480156101f457600080fd5b506102086102033660046119ed565b6105c5565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610617565b005b34801561024057600080fd5b5061024961065e565b6040516102149190611b5a565b34801561026257600080fd5b50610276610271366004611a99565b6106f0565b6040516001600160a01b039091168152602001610214565b34801561029a57600080fd5b506102326102a93660046119c3565b610734565b3480156102ba57600080fd5b506102326102c9366004611a99565b6107c2565b3480156102da57600080fd5b506102ec600154600054036000190190565b604051908152602001610214565b34801561030657600080fd5b5061023261031536600461186f565b6108e5565b34801561032657600080fd5b5061023261033536600461186f565b6108f0565b34801561034657600080fd5b506102326103553660046119c3565b61090b565b34801561036657600080fd5b50610232610375366004611a27565b6109f3565b34801561038657600080fd5b50610276610395366004611a99565b610a29565b3480156103a657600080fd5b506102ec60095481565b3480156103bc57600080fd5b50610249610a3b565b3480156103d157600080fd5b506102ec6103e0366004611821565b610ac9565b3480156103f157600080fd5b50610232610b18565b34801561040657600080fd5b506102ec610415366004611821565b600c6020526000908152604090205481565b34801561043357600080fd5b506102ec600681565b34801561044857600080fd5b506102ec600381565b34801561045d57600080fd5b50610232610b4e565b34801561047257600080fd5b506008546001600160a01b0316610276565b34801561049057600080fd5b50610249610bb4565b6102326104a7366004611a99565b610bc3565b3480156104b857600080fd5b506102326104c7366004611987565b610d1b565b3480156104d857600080fd5b506102326104e73660046118ab565b610db1565b3480156104f857600080fd5b50610249610507366004611a99565b610e02565b34801561051857600080fd5b506102ec61138881565b34801561052e57600080fd5b5061020861053d36600461183c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057757600080fd5b50610232610586366004611821565b610e87565b34801561059757600080fd5b506102326105a6366004611a99565b610f1f565b3480156105b757600080fd5b50600a546102089060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806105f657506001600160e01b03198216635b5e139f60e01b145b8061061157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461064a5760405162461bcd60e51b815260040161064190611bb2565b60405180910390fd5b600a805460ff19811660ff90911615179055565b60606002805461066d90611c75565b80601f016020809104026020016040519081016040528092919081815260200182805461069990611c75565b80156106e65780601f106106bb576101008083540402835291602001916106e6565b820191906000526020600020905b8154815290600101906020018083116106c957829003601f168201915b5050505050905090565b60006106fb82610f4e565b610718576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061073f82610a29565b9050806001600160a01b0316836001600160a01b031614156107745760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107945750610792813361053d565b155b156107b2576040516367d9dca160e11b815260040160405180910390fd5b6107bd838383610f87565b505050565b60068111156108065760405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b6044820152606401610641565b6000610819600154600054036000190190565b90506113886108288383611be7565b11156108765760405162461bcd60e51b815260206004820152601b60248201527f4d617820616d6f756e74206f6620746f6b656e73206d696e74656400000000006044820152606401610641565b336000908152600c6020526040902054600690610894908490611be7565b11156108b25760405162461bcd60e51b815260040161064190611b6d565b336000908152600c6020526040812080548492906108d1908490611be7565b909155506108e190503383610fe3565b5050565b6107bd838383610ffd565b6107bd83838360405180602001604052806000815250610db1565b6008546001600160a01b031633146109355760405162461bcd60e51b815260040161064190611bb2565b6113888161094a600154600054036000190190565b6109549190611be7565b11156109a25760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e672065786365656473206d617820737570706c790000000000006044820152606401610641565b600081116109e95760405162461bcd60e51b81526020600482015260146024820152735175616e74697479206c657373207468616e203160601b6044820152606401610641565b6108e18282610fe3565b6008546001600160a01b03163314610a1d5760405162461bcd60e51b815260040161064190611bb2565b6107bd600b838361176c565b6000610a3482611213565b5192915050565b600b8054610a4890611c75565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7490611c75565b8015610ac15780601f10610a9657610100808354040283529160200191610ac1565b820191906000526020600020905b815481529060010190602001808311610aa457829003601f168201915b505050505081565b60006001600160a01b038216610af2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b425760405162461bcd60e51b815260040161064190611bb2565b610b4c600061133c565b565b6008546001600160a01b03163314610b785760405162461bcd60e51b815260040161064190611bb2565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610bb1573d6000803e3d6000fd5b50565b60606003805461066d90611c75565b600081118015610bd4575060038111155b610c135760405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b6044820152606401610641565b6000610c26600154600054036000190190565b9050611388610c358383611be7565b1115610c835760405162461bcd60e51b815260206004820152601b60248201527f4d617820616d6f756e74206f6620746f6b656e73206d696e74656400000000006044820152606401610641565b336000908152600c6020526040902054600690610ca1908490611be7565b1115610cbf5760405162461bcd60e51b815260040161064190611b6d565b600954610ccc9083611c13565b3410156108b25760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742076616c756520746f206d696e740000000000006044820152606401610641565b6001600160a01b038216331415610d455760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dbc848484610ffd565b6001600160a01b0383163b15158015610dde5750610ddc8484848461138e565b155b15610dfc576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e0d82610f4e565b610e2a57604051630a14c4b560e41b815260040160405180910390fd5b6000610e34611486565b9050805160001415610e555760405180602001604052806000815250610e80565b80610e5f84611495565b604051602001610e70929190611ade565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610eb15760405162461bcd60e51b815260040161064190611bb2565b6001600160a01b038116610f165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610641565b610bb18161133c565b6008546001600160a01b03163314610f495760405162461bcd60e51b815260040161064190611bb2565b600955565b600081600111158015610f62575060005482105b8015610611575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108e1828260405180602001604052806000815250611593565b600061100882611213565b80519091506000906001600160a01b0316336001600160a01b0316148061103657508151611036903361053d565b80611051575033611046846106f0565b6001600160a01b0316145b90508061107157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110a65760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166110cd57604051633a954ecd60e21b815260040160405180910390fd5b6110dd6000848460000151610f87565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166111c9576000548110156111c9578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611243575060005481105b1561132357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113215780516001600160a01b0316156112b7579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561131c579392505050565b6112b7565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113c3903390899088908890600401611b1d565b602060405180830381600087803b1580156113dd57600080fd5b505af192505050801561140d575060408051601f3d908101601f1916820190925261140a91810190611a0a565b60015b611468573d80801561143b576040519150601f19603f3d011682016040523d82523d6000602084013e611440565b606091505b508051611460576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461066d90611c75565b6060816114b95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114e357806114cd81611cb0565b91506114dc9050600a83611bff565b91506114bd565b60008167ffffffffffffffff8111156114fe576114fe611d21565b6040519080825280601f01601f191660200182016040528015611528576020820181803683370190505b5090505b841561147e5761153d600183611c32565b915061154a600a86611ccb565b611555906030611be7565b60f81b81838151811061156a5761156a611d0b565b60200101906001600160f81b031916908160001a90535061158c600a86611bff565b945061152c565b6107bd83838360016000546001600160a01b0385166115c457604051622e076360e81b815260040160405180910390fd5b836115e25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561169457506001600160a01b0387163b15155b1561171d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116e5600088848060010195508861138e565b611702576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561169a57826000541461171857600080fd5b611763565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561171e575b5060005561120c565b82805461177890611c75565b90600052602060002090601f01602090048101928261179a57600085556117e0565b82601f106117b35782800160ff198235161785556117e0565b828001600101855582156117e0579182015b828111156117e05782358255916020019190600101906117c5565b506117ec9291506117f0565b5090565b5b808211156117ec57600081556001016117f1565b80356001600160a01b038116811461181c57600080fd5b919050565b60006020828403121561183357600080fd5b610e8082611805565b6000806040838503121561184f57600080fd5b61185883611805565b915061186660208401611805565b90509250929050565b60008060006060848603121561188457600080fd5b61188d84611805565b925061189b60208501611805565b9150604084013590509250925092565b600080600080608085870312156118c157600080fd5b6118ca85611805565b93506118d860208601611805565b925060408501359150606085013567ffffffffffffffff808211156118fc57600080fd5b818701915087601f83011261191057600080fd5b81358181111561192257611922611d21565b604051601f8201601f19908116603f0116810190838211818310171561194a5761194a611d21565b816040528281528a602084870101111561196357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561199a57600080fd5b6119a383611805565b9150602083013580151581146119b857600080fd5b809150509250929050565b600080604083850312156119d657600080fd5b6119df83611805565b946020939093013593505050565b6000602082840312156119ff57600080fd5b8135610e8081611d37565b600060208284031215611a1c57600080fd5b8151610e8081611d37565b60008060208385031215611a3a57600080fd5b823567ffffffffffffffff80821115611a5257600080fd5b818501915085601f830112611a6657600080fd5b813581811115611a7557600080fd5b866020828501011115611a8757600080fd5b60209290920196919550909350505050565b600060208284031215611aab57600080fd5b5035919050565b60008151808452611aca816020860160208601611c49565b601f01601f19169290920160200192915050565b60008351611af0818460208801611c49565b835190830190611b04818360208801611c49565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b5090830184611ab2565b9695505050505050565b602081526000610e806020830184611ab2565b60208082526025908201527f596f75206861766520616c726561647920726563656976656420796f757220546040820152646f6b656e7360d81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611bfa57611bfa611cdf565b500190565b600082611c0e57611c0e611cf5565b500490565b6000816000190483118215151615611c2d57611c2d611cdf565b500290565b600082821015611c4457611c44611cdf565b500390565b60005b83811015611c64578181015183820152602001611c4c565b83811115610dfc5750506000910152565b600181811c90821680611c8957607f821691505b60208210811415611caa57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cc457611cc4611cdf565b5060010190565b600082611cda57611cda611cf5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bb157600080fdfea2646970667358221220194c4866dd58a8089a8017936cab34735db21529fd22250f17af2a95faec1cf664736f6c63430008070033697066733a2f2f516d62584e785777754c6f6950377243766a6f554c6e43755378356f75683668436f6e6a436b654850645233314b2f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063772dc32f11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c514610522578063f2fde38b1461056b578063f4a0a5281461058b578063f71143ca146105ab57600080fd5b8063a22cb465146104ac578063b88d4fde146104cc578063c87b56dd146104ec578063d5abeb011461050c57600080fd5b80638da5cb5b116100d15780638da5cb5b1461046657806393785a5f1461042757806395d89b4114610484578063a0712d681461049957600080fd5b8063772dc32f146103fa5780637ce6edb814610427578063823903a91461043c578063853828b61461045157600080fd5b806342842e0e1161017a5780636817c76c116101495780636817c76c1461039a5780636c0360eb146103b057806370a08231146103c5578063715018a6146103e557600080fd5b806342842e0e1461031a578063484b973c1461033a57806355f804b31461035a5780636352211e1461037a57600080fd5b8063095ea7b3116101b6578063095ea7b31461028e5780630fbe4fe2146102ae57806318160ddd146102ce57806323b872dd146102fa57600080fd5b806301ffc9a7146101e8578063049c5c491461021d57806306fdde0314610234578063081812fc14610256575b600080fd5b3480156101f457600080fd5b506102086102033660046119ed565b6105c5565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610617565b005b34801561024057600080fd5b5061024961065e565b6040516102149190611b5a565b34801561026257600080fd5b50610276610271366004611a99565b6106f0565b6040516001600160a01b039091168152602001610214565b34801561029a57600080fd5b506102326102a93660046119c3565b610734565b3480156102ba57600080fd5b506102326102c9366004611a99565b6107c2565b3480156102da57600080fd5b506102ec600154600054036000190190565b604051908152602001610214565b34801561030657600080fd5b5061023261031536600461186f565b6108e5565b34801561032657600080fd5b5061023261033536600461186f565b6108f0565b34801561034657600080fd5b506102326103553660046119c3565b61090b565b34801561036657600080fd5b50610232610375366004611a27565b6109f3565b34801561038657600080fd5b50610276610395366004611a99565b610a29565b3480156103a657600080fd5b506102ec60095481565b3480156103bc57600080fd5b50610249610a3b565b3480156103d157600080fd5b506102ec6103e0366004611821565b610ac9565b3480156103f157600080fd5b50610232610b18565b34801561040657600080fd5b506102ec610415366004611821565b600c6020526000908152604090205481565b34801561043357600080fd5b506102ec600681565b34801561044857600080fd5b506102ec600381565b34801561045d57600080fd5b50610232610b4e565b34801561047257600080fd5b506008546001600160a01b0316610276565b34801561049057600080fd5b50610249610bb4565b6102326104a7366004611a99565b610bc3565b3480156104b857600080fd5b506102326104c7366004611987565b610d1b565b3480156104d857600080fd5b506102326104e73660046118ab565b610db1565b3480156104f857600080fd5b50610249610507366004611a99565b610e02565b34801561051857600080fd5b506102ec61138881565b34801561052e57600080fd5b5061020861053d36600461183c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057757600080fd5b50610232610586366004611821565b610e87565b34801561059757600080fd5b506102326105a6366004611a99565b610f1f565b3480156105b757600080fd5b50600a546102089060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806105f657506001600160e01b03198216635b5e139f60e01b145b8061061157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461064a5760405162461bcd60e51b815260040161064190611bb2565b60405180910390fd5b600a805460ff19811660ff90911615179055565b60606002805461066d90611c75565b80601f016020809104026020016040519081016040528092919081815260200182805461069990611c75565b80156106e65780601f106106bb576101008083540402835291602001916106e6565b820191906000526020600020905b8154815290600101906020018083116106c957829003601f168201915b5050505050905090565b60006106fb82610f4e565b610718576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061073f82610a29565b9050806001600160a01b0316836001600160a01b031614156107745760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107945750610792813361053d565b155b156107b2576040516367d9dca160e11b815260040160405180910390fd5b6107bd838383610f87565b505050565b60068111156108065760405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b6044820152606401610641565b6000610819600154600054036000190190565b90506113886108288383611be7565b11156108765760405162461bcd60e51b815260206004820152601b60248201527f4d617820616d6f756e74206f6620746f6b656e73206d696e74656400000000006044820152606401610641565b336000908152600c6020526040902054600690610894908490611be7565b11156108b25760405162461bcd60e51b815260040161064190611b6d565b336000908152600c6020526040812080548492906108d1908490611be7565b909155506108e190503383610fe3565b5050565b6107bd838383610ffd565b6107bd83838360405180602001604052806000815250610db1565b6008546001600160a01b031633146109355760405162461bcd60e51b815260040161064190611bb2565b6113888161094a600154600054036000190190565b6109549190611be7565b11156109a25760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e672065786365656473206d617820737570706c790000000000006044820152606401610641565b600081116109e95760405162461bcd60e51b81526020600482015260146024820152735175616e74697479206c657373207468616e203160601b6044820152606401610641565b6108e18282610fe3565b6008546001600160a01b03163314610a1d5760405162461bcd60e51b815260040161064190611bb2565b6107bd600b838361176c565b6000610a3482611213565b5192915050565b600b8054610a4890611c75565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7490611c75565b8015610ac15780601f10610a9657610100808354040283529160200191610ac1565b820191906000526020600020905b815481529060010190602001808311610aa457829003601f168201915b505050505081565b60006001600160a01b038216610af2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b425760405162461bcd60e51b815260040161064190611bb2565b610b4c600061133c565b565b6008546001600160a01b03163314610b785760405162461bcd60e51b815260040161064190611bb2565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610bb1573d6000803e3d6000fd5b50565b60606003805461066d90611c75565b600081118015610bd4575060038111155b610c135760405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b6044820152606401610641565b6000610c26600154600054036000190190565b9050611388610c358383611be7565b1115610c835760405162461bcd60e51b815260206004820152601b60248201527f4d617820616d6f756e74206f6620746f6b656e73206d696e74656400000000006044820152606401610641565b336000908152600c6020526040902054600690610ca1908490611be7565b1115610cbf5760405162461bcd60e51b815260040161064190611b6d565b600954610ccc9083611c13565b3410156108b25760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742076616c756520746f206d696e740000000000006044820152606401610641565b6001600160a01b038216331415610d455760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dbc848484610ffd565b6001600160a01b0383163b15158015610dde5750610ddc8484848461138e565b155b15610dfc576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e0d82610f4e565b610e2a57604051630a14c4b560e41b815260040160405180910390fd5b6000610e34611486565b9050805160001415610e555760405180602001604052806000815250610e80565b80610e5f84611495565b604051602001610e70929190611ade565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610eb15760405162461bcd60e51b815260040161064190611bb2565b6001600160a01b038116610f165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610641565b610bb18161133c565b6008546001600160a01b03163314610f495760405162461bcd60e51b815260040161064190611bb2565b600955565b600081600111158015610f62575060005482105b8015610611575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108e1828260405180602001604052806000815250611593565b600061100882611213565b80519091506000906001600160a01b0316336001600160a01b0316148061103657508151611036903361053d565b80611051575033611046846106f0565b6001600160a01b0316145b90508061107157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110a65760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166110cd57604051633a954ecd60e21b815260040160405180910390fd5b6110dd6000848460000151610f87565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166111c9576000548110156111c9578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611243575060005481105b1561132357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113215780516001600160a01b0316156112b7579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561131c579392505050565b6112b7565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113c3903390899088908890600401611b1d565b602060405180830381600087803b1580156113dd57600080fd5b505af192505050801561140d575060408051601f3d908101601f1916820190925261140a91810190611a0a565b60015b611468573d80801561143b576040519150601f19603f3d011682016040523d82523d6000602084013e611440565b606091505b508051611460576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461066d90611c75565b6060816114b95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114e357806114cd81611cb0565b91506114dc9050600a83611bff565b91506114bd565b60008167ffffffffffffffff8111156114fe576114fe611d21565b6040519080825280601f01601f191660200182016040528015611528576020820181803683370190505b5090505b841561147e5761153d600183611c32565b915061154a600a86611ccb565b611555906030611be7565b60f81b81838151811061156a5761156a611d0b565b60200101906001600160f81b031916908160001a90535061158c600a86611bff565b945061152c565b6107bd83838360016000546001600160a01b0385166115c457604051622e076360e81b815260040160405180910390fd5b836115e25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561169457506001600160a01b0387163b15155b1561171d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116e5600088848060010195508861138e565b611702576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561169a57826000541461171857600080fd5b611763565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561171e575b5060005561120c565b82805461177890611c75565b90600052602060002090601f01602090048101928261179a57600085556117e0565b82601f106117b35782800160ff198235161785556117e0565b828001600101855582156117e0579182015b828111156117e05782358255916020019190600101906117c5565b506117ec9291506117f0565b5090565b5b808211156117ec57600081556001016117f1565b80356001600160a01b038116811461181c57600080fd5b919050565b60006020828403121561183357600080fd5b610e8082611805565b6000806040838503121561184f57600080fd5b61185883611805565b915061186660208401611805565b90509250929050565b60008060006060848603121561188457600080fd5b61188d84611805565b925061189b60208501611805565b9150604084013590509250925092565b600080600080608085870312156118c157600080fd5b6118ca85611805565b93506118d860208601611805565b925060408501359150606085013567ffffffffffffffff808211156118fc57600080fd5b818701915087601f83011261191057600080fd5b81358181111561192257611922611d21565b604051601f8201601f19908116603f0116810190838211818310171561194a5761194a611d21565b816040528281528a602084870101111561196357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561199a57600080fd5b6119a383611805565b9150602083013580151581146119b857600080fd5b809150509250929050565b600080604083850312156119d657600080fd5b6119df83611805565b946020939093013593505050565b6000602082840312156119ff57600080fd5b8135610e8081611d37565b600060208284031215611a1c57600080fd5b8151610e8081611d37565b60008060208385031215611a3a57600080fd5b823567ffffffffffffffff80821115611a5257600080fd5b818501915085601f830112611a6657600080fd5b813581811115611a7557600080fd5b866020828501011115611a8757600080fd5b60209290920196919550909350505050565b600060208284031215611aab57600080fd5b5035919050565b60008151808452611aca816020860160208601611c49565b601f01601f19169290920160200192915050565b60008351611af0818460208801611c49565b835190830190611b04818360208801611c49565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b5090830184611ab2565b9695505050505050565b602081526000610e806020830184611ab2565b60208082526025908201527f596f75206861766520616c726561647920726563656976656420796f757220546040820152646f6b656e7360d81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611bfa57611bfa611cdf565b500190565b600082611c0e57611c0e611cf5565b500490565b6000816000190483118215151615611c2d57611c2d611cdf565b500290565b600082821015611c4457611c44611cdf565b500390565b60005b83811015611c64578181015183820152602001611c4c565b83811115610dfc5750506000910152565b600181811c90821680611c8957607f821691505b60208210811415611caa57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cc457611cc4611cdf565b5060010190565b600082611cda57611cda611cf5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bb157600080fdfea2646970667358221220194c4866dd58a8089a8017936cab34735db21529fd22250f17af2a95faec1cf664736f6c63430008070033

Deployed Bytecode Sourcemap

45429:2369:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25402:305;;;;;;;;;;-1:-1:-1;25402:305:0;;;;;:::i;:::-;;:::i;:::-;;;5791:14:1;;5784:22;5766:41;;5754:2;5739:18;25402:305:0;;;;;;;;47264:90;;;;;;;;;;;;;:::i;:::-;;28787:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30299:204::-;;;;;;;;;;-1:-1:-1;30299:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5089:32:1;;;5071:51;;5059:2;5044:18;30299:204:0;4925:203:1;29862:371:0;;;;;;;;;;-1:-1:-1;29862:371:0;;;;;:::i;:::-;;:::i;46529:464::-;;;;;;;;;;-1:-1:-1;46529:464:0;;;;;:::i;:::-;;:::i;24651:303::-;;;;;;;;;;;;24458:1;24905:12;24695:7;24889:13;:28;-1:-1:-1;;24889:46:0;;24651:303;;;;9122:25:1;;;9110:2;9095:18;24651:303:0;8976:177:1;31156:170:0;;;;;;;;;;-1:-1:-1;31156:170:0;;;;;:::i;:::-;;:::i;31397:185::-;;;;;;;;;;-1:-1:-1;31397:185:0;;;;;:::i;:::-;;:::i;47001:255::-;;;;;;;;;;-1:-1:-1;47001:255:0;;;;;:::i;:::-;;:::i;47589:98::-;;;;;;;;;;-1:-1:-1;47589:98:0;;;;;:::i;:::-;;:::i;28596:124::-;;;;;;;;;;-1:-1:-1;28596:124:0;;;;;:::i;:::-;;:::i;45524:37::-;;;;;;;;;;;;;;;;45760:80;;;;;;;;;;;;;:::i;25771:206::-;;;;;;;;;;-1:-1:-1;25771:206:0;;;;;:::i;:::-;;:::i;44585:103::-;;;;;;;;;;;;;:::i;45848:46::-;;;;;;;;;;-1:-1:-1;45848:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;45615:44;;;;;;;;;;;;45658:1;45615:44;;45568:40;;;;;;;;;;;;45607:1;45568:40;;47472:109;;;;;;;;;;;;;:::i;43934:87::-;;;;;;;;;;-1:-1:-1;44007:6:0;;-1:-1:-1;;;;;44007:6:0;43934:87;;28956:104;;;;;;;;;;;;;:::i;45962:555::-;;;;;;:::i;:::-;;:::i;30575:279::-;;;;;;;;;;-1:-1:-1;30575:279:0;;;;;:::i;:::-;;:::i;31653:369::-;;;;;;;;;;-1:-1:-1;31653:369:0;;;;;:::i;:::-;;:::i;29131:327::-;;;;;;;;;;-1:-1:-1;29131:327:0;;;;;:::i;:::-;;:::i;45477:40::-;;;;;;;;;;;;45513:4;45477:40;;30925:164;;;;;;;;;;-1:-1:-1;30925:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31046:25:0;;;31022:4;31046:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30925:164;44843:201;;;;;;;;;;-1:-1:-1;44843:201:0;;;;;:::i;:::-;;:::i;47362:102::-;;;;;;;;;;-1:-1:-1;47362:102:0;;;;;:::i;:::-;;:::i;45724:29::-;;;;;;;;;;-1:-1:-1;45724:29:0;;;;;;;;25402:305;25504:4;-1:-1:-1;;;;;;25541:40:0;;-1:-1:-1;;;25541:40:0;;:105;;-1:-1:-1;;;;;;;25598:48:0;;-1:-1:-1;;;25598:48:0;25541:105;:158;;;-1:-1:-1;;;;;;;;;;13247:40:0;;;25663:36;25521:178;25402:305;-1:-1:-1;;25402:305:0:o;47264:90::-;44007:6;;-1:-1:-1;;;;;44007:6:0;20800:10;44154:23;44146:68;;;;-1:-1:-1;;;44146:68:0;;;;;;;:::i;:::-;;;;;;;;;47336:10:::1;::::0;;-1:-1:-1;;47322:24:0;::::1;47336:10;::::0;;::::1;47335:11;47322:24;::::0;;47264:90::o;28787:100::-;28841:13;28874:5;28867:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28787:100;:::o;30299:204::-;30367:7;30392:16;30400:7;30392;:16::i;:::-;30387:64;;30417:34;;-1:-1:-1;;;30417:34:0;;;;;;;;;;;30387:64;-1:-1:-1;30471:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30471:24:0;;30299:204::o;29862:371::-;29935:13;29951:24;29967:7;29951:15;:24::i;:::-;29935:40;;29996:5;-1:-1:-1;;;;;29990:11:0;:2;-1:-1:-1;;;;;29990:11:0;;29986:48;;;30010:24;;-1:-1:-1;;;30010:24:0;;;;;;;;;;;29986:48;20800:10;-1:-1:-1;;;;;30051:21:0;;;;;;:63;;-1:-1:-1;30077:37:0;30094:5;20800:10;30925:164;:::i;30077:37::-;30076:38;30051:63;30047:138;;;30138:35;;-1:-1:-1;;;30138:35:0;;;;;;;;;;;30047:138;30197:28;30206:2;30210:7;30219:5;30197:8;:28::i;:::-;29924:309;29862:371;;:::o;46529:464::-;45714:1;46593:8;:32;;46585:61;;;;-1:-1:-1;;;46585:61:0;;8116:2:1;46585:61:0;;;8098:21:1;8155:2;8135:18;;;8128:30;-1:-1:-1;;;8174:18:1;;;8167:46;8230:18;;46585:61:0;7914:340:1;46585:61:0;46657:14;46674:13;24458:1;24905:12;24695:7;24889:13;:28;-1:-1:-1;;24889:46:0;;24651:303;46674:13;46657:30;-1:-1:-1;45513:4:0;46706:17;46715:8;46657:30;46706:17;:::i;:::-;:30;;46698:70;;;;-1:-1:-1;;;46698:70:0;;8822:2:1;46698:70:0;;;8804:21:1;8861:2;8841:18;;;8834:30;8900:29;8880:18;;;8873:57;8947:18;;46698:70:0;8620:351:1;46698:70:0;20800:10;46787:28;;;;:14;:28;;;;;;45714:1;;46787:39;;46818:8;;46787:39;:::i;:::-;:63;;46779:113;;;;-1:-1:-1;;;46779:113:0;;;;;;;:::i;:::-;20800:10;46903:28;;;;:14;:28;;;;;:40;;46935:8;;46903:28;:40;;46935:8;;46903:40;:::i;:::-;;;;-1:-1:-1;46954:31:0;;-1:-1:-1;46964:10:0;46976:8;46954:9;:31::i;:::-;46574:419;46529:464;:::o;31156:170::-;31290:28;31300:4;31306:2;31310:7;31290:9;:28::i;31397:185::-;31535:39;31552:4;31558:2;31562:7;31535:39;;;;;;;;;;;;:16;:39::i;47001:255::-;44007:6;;-1:-1:-1;;;;;44007:6:0;20800:10;44154:23;44146:68;;;;-1:-1:-1;;;44146:68:0;;;;;;;:::i;:::-;45513:4:::1;47104:8;47088:13;24458:1:::0;24905:12;24695:7;24889:13;:28;-1:-1:-1;;24889:46:0;;24651:303;47088:13:::1;:24;;;;:::i;:::-;:37;;47080:76;;;::::0;-1:-1:-1;;;47080:76:0;;7761:2:1;47080:76:0::1;::::0;::::1;7743:21:1::0;7800:2;7780:18;;;7773:30;7839:28;7819:18;;;7812:56;7885:18;;47080:76:0::1;7559:350:1::0;47080:76:0::1;47186:1;47175:8;:12;47167:45;;;::::0;-1:-1:-1;;;47167:45:0;;6650:2:1;47167:45:0::1;::::0;::::1;6632:21:1::0;6689:2;6669:18;;;6662:30;-1:-1:-1;;;6708:18:1;;;6701:50;6768:18;;47167:45:0::1;6448:344:1::0;47167:45:0::1;47225:23;47235:2;47239:8;47225:9;:23::i;47589:98::-:0;44007:6;;-1:-1:-1;;;;;44007:6:0;20800:10;44154:23;44146:68;;;;-1:-1:-1;;;44146:68:0;;;;;;;:::i;:::-;47663:16:::1;:7;47673:6:::0;;47663:16:::1;:::i;28596:124::-:0;28660:7;28687:20;28699:7;28687:11;:20::i;:::-;:25;;28596:124;-1:-1:-1;;28596:124:0:o;45760:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25771:206::-;25835:7;-1:-1:-1;;;;;25859:19:0;;25855:60;;25887:28;;-1:-1:-1;;;25887:28:0;;;;;;;;;;;25855:60;-1:-1:-1;;;;;;25941:19:0;;;;;:12;:19;;;;;:27;;;;25771:206::o;44585:103::-;44007:6;;-1:-1:-1;;;;;44007:6:0;20800:10;44154:23;44146:68;;;;-1:-1:-1;;;44146:68:0;;;;;;;:::i;:::-;44650:30:::1;44677:1;44650:18;:30::i;:::-;44585:103::o:0;47472:109::-;44007:6;;-1:-1:-1;;;;;44007:6:0;20800:10;44154:23;44146:68;;;;-1:-1:-1;;;44146:68:0;;;;;;;:::i;:::-;44007:6;;47525:48:::1;::::0;-1:-1:-1;;;;;44007:6:0;;;;47551:21:::1;47525:48:::0;::::1;;;::::0;::::1;::::0;;;47551:21;44007:6;47525:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47472:109::o:0;28956:104::-;29012:13;29045:7;29038:14;;;;;:::i;45962:555::-;46041:1;46030:8;:12;:40;;;;;45607:1;46046:8;:24;;46030:40;46022:69;;;;-1:-1:-1;;;46022:69:0;;8116:2:1;46022:69:0;;;8098:21:1;8155:2;8135:18;;;8128:30;-1:-1:-1;;;8174:18:1;;;8167:46;8230:18;;46022:69:0;7914:340:1;46022:69:0;46102:14;46119:13;24458:1;24905:12;24695:7;24889:13;:28;-1:-1:-1;;24889:46:0;;24651:303;46119:13;46102:30;-1:-1:-1;45513:4:0;46151:17;46160:8;46102:30;46151:17;:::i;:::-;:30;;46143:70;;;;-1:-1:-1;;;46143:70:0;;8822:2:1;46143:70:0;;;8804:21:1;8861:2;8841:18;;;8834:30;8900:29;8880:18;;;8873:57;8947:18;;46143:70:0;8620:351:1;46143:70:0;20800:10;46232:28;;;;:14;:28;;;;;;45658:1;;46232:39;;46263:8;;46232:39;:::i;:::-;:59;;46224:109;;;;-1:-1:-1;;;46224:109:0;;;;;;;:::i;:::-;46376:9;;46365:20;;:8;:20;:::i;:::-;46352:9;:33;;46344:72;;;;-1:-1:-1;;;46344:72:0;;7406:2:1;46344:72:0;;;7388:21:1;7445:2;7425:18;;;7418:30;7484:28;7464:18;;;7457:56;7530:18;;46344:72:0;7204:350:1;30575:279:0;-1:-1:-1;;;;;30666:24:0;;20800:10;30666:24;30662:54;;;30699:17;;-1:-1:-1;;;30699:17:0;;;;;;;;;;;30662:54;20800:10;30729:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30729:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30729:53:0;;;;;;;;;;30798:48;;5766:41:1;;;30729:42:0;;20800:10;30798:48;;5739:18:1;30798:48:0;;;;;;;30575:279;;:::o;31653:369::-;31820:28;31830:4;31836:2;31840:7;31820:9;:28::i;:::-;-1:-1:-1;;;;;31863:13:0;;3463:19;:23;;31863:76;;;;;31883:56;31914:4;31920:2;31924:7;31933:5;31883:30;:56::i;:::-;31882:57;31863:76;31859:156;;;31963:40;;-1:-1:-1;;;31963:40:0;;;;;;;;;;;31859:156;31653:369;;;;:::o;29131:327::-;29204:13;29235:16;29243:7;29235;:16::i;:::-;29230:59;;29260:29;;-1:-1:-1;;;29260:29:0;;;;;;;;;;;29230:59;29302:21;29326:10;:8;:10::i;:::-;29302:34;;29360:7;29354:21;29379:1;29354:26;;:96;;;;;;;;;;;;;;;;;29407:7;29416:18;:7;:16;:18::i;:::-;29390:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29354:96;29347:103;29131:327;-1:-1:-1;;;29131:327:0:o;44843:201::-;44007:6;;-1:-1:-1;;;;;44007:6:0;20800:10;44154:23;44146:68;;;;-1:-1:-1;;;44146:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44932:22:0;::::1;44924:73;;;::::0;-1:-1:-1;;;44924:73:0;;6999:2:1;44924:73:0::1;::::0;::::1;6981:21:1::0;7038:2;7018:18;;;7011:30;7077:34;7057:18;;;7050:62;-1:-1:-1;;;7128:18:1;;;7121:36;7174:19;;44924:73:0::1;6797:402:1::0;44924:73:0::1;45008:28;45027:8;45008:18;:28::i;47362:102::-:0;44007:6;;-1:-1:-1;;;;;44007:6:0;20800:10;44154:23;44146:68;;;;-1:-1:-1;;;44146:68:0;;;;;;;:::i;:::-;47434:9:::1;:22:::0;47362:102::o;32277:187::-;32334:4;32377:7;24458:1;32358:26;;:53;;;;;32398:13;;32388:7;:23;32358:53;:98;;;;-1:-1:-1;;32429:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32429:27:0;;;;32428:28;;32277:187::o;39888:196::-;40003:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40003:29:0;-1:-1:-1;;;;;40003:29:0;;;;;;;;;40048:28;;40003:24;;40048:28;;;;;;;39888:196;;;:::o;32472:104::-;32541:27;32551:2;32555:8;32541:27;;;;;;;;;;;;:9;:27::i;35390:2112::-;35505:35;35543:20;35555:7;35543:11;:20::i;:::-;35618:18;;35505:58;;-1:-1:-1;35576:22:0;;-1:-1:-1;;;;;35602:34:0;20800:10;-1:-1:-1;;;;;35602:34:0;;:101;;;-1:-1:-1;35670:18:0;;35653:50;;20800:10;30925:164;:::i;35653:50::-;35602:154;;;-1:-1:-1;20800:10:0;35720:20;35732:7;35720:11;:20::i;:::-;-1:-1:-1;;;;;35720:36:0;;35602:154;35576:181;;35775:17;35770:66;;35801:35;;-1:-1:-1;;;35801:35:0;;;;;;;;;;;35770:66;35873:4;-1:-1:-1;;;;;35851:26:0;:13;:18;;;-1:-1:-1;;;;;35851:26:0;;35847:67;;35886:28;;-1:-1:-1;;;35886:28:0;;;;;;;;;;;35847:67;-1:-1:-1;;;;;35929:16:0;;35925:52;;35954:23;;-1:-1:-1;;;35954:23:0;;;;;;;;;;;35925:52;36098:49;36115:1;36119:7;36128:13;:18;;;36098:8;:49::i;:::-;-1:-1:-1;;;;;36443:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36443:31:0;;;;;;;-1:-1:-1;;36443:31:0;;;;;;;36489:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36489:29:0;;;;;;;;;;;36535:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36580:61:0;;;;-1:-1:-1;;;36625:15:0;36580:61;;;;;;;;;;;36915:11;;;36945:24;;;;;:29;36915:11;;36945:29;36941:445;;37170:13;;37156:11;:27;37152:219;;;37240:18;;;37208:24;;;:11;:24;;;;;;;;:50;;37323:28;;;;37281:70;;-1:-1:-1;;;37281:70:0;-1:-1:-1;;;;;;37281:70:0;;;-1:-1:-1;;;;;37208:50:0;;;37281:70;;;;;;;37152:219;36418:979;37433:7;37429:2;-1:-1:-1;;;;;37414:27:0;37423:4;-1:-1:-1;;;;;37414:27:0;;;;;;;;;;;37452:42;35494:2008;;35390:2112;;;:::o;27426:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27536:7:0;;24458:1;27585:23;;:47;;;;;27619:13;;27612:4;:20;27585:47;27581:886;;;27653:31;27687:17;;;:11;:17;;;;;;;;;27653:51;;;;;;;;;-1:-1:-1;;;;;27653:51:0;;;;-1:-1:-1;;;27653:51:0;;;;;;;;;;;-1:-1:-1;;;27653:51:0;;;;;;;;;;;;;;27723:729;;27773:14;;-1:-1:-1;;;;;27773:28:0;;27769:101;;27837:9;27426:1108;-1:-1:-1;;;27426:1108:0:o;27769:101::-;-1:-1:-1;;;28212:6:0;28257:17;;;;:11;:17;;;;;;;;;28245:29;;;;;;;;;-1:-1:-1;;;;;28245:29:0;;;;;-1:-1:-1;;;28245:29:0;;;;;;;;;;;-1:-1:-1;;;28245:29:0;;;;;;;;;;;;;28305:28;28301:109;;28373:9;27426:1108;-1:-1:-1;;;27426:1108:0:o;28301:109::-;28172:261;;;27634:833;27581:886;28495:31;;-1:-1:-1;;;28495:31:0;;;;;;;;;;;45204:191;45297:6;;;-1:-1:-1;;;;;45314:17:0;;;-1:-1:-1;;;;;;45314:17:0;;;;;;;45347:40;;45297:6;;;45314:17;45297:6;;45347:40;;45278:16;;45347:40;45267:128;45204:191;:::o;40576:667::-;40760:72;;-1:-1:-1;;;40760:72:0;;40739:4;;-1:-1:-1;;;;;40760:36:0;;;;;:72;;20800:10;;40811:4;;40817:7;;40826:5;;40760:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40760:72:0;;;;;;;;-1:-1:-1;;40760:72:0;;;;;;;;;;;;:::i;:::-;;;40756:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40994:13:0;;40990:235;;41040:40;;-1:-1:-1;;;41040:40:0;;;;;;;;;;;40990:235;41183:6;41177:13;41168:6;41164:2;41160:15;41153:38;40756:480;-1:-1:-1;;;;;;40879:55:0;-1:-1:-1;;;40879:55:0;;-1:-1:-1;40756:480:0;40576:667;;;;;;:::o;47695:100::-;47747:13;47780:7;47773:14;;;;;:::i;253:613::-;309:13;420:10;416:53;;-1:-1:-1;;447:10:0;;;;;;;;;;;;-1:-1:-1;;;447:10:0;;;;;253:613::o;416:53::-;494:5;479:12;535:78;542:9;;535:78;;568:8;;;;:::i;:::-;;-1:-1:-1;591:10:0;;-1:-1:-1;599:2:0;591:10;;:::i;:::-;;;535:78;;;623:19;655:6;645:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;645:17:0;;623:39;;673:154;680:10;;673:154;;707:11;717:1;707:11;;:::i;:::-;;-1:-1:-1;776:10:0;784:2;776:5;:10;:::i;:::-;763:24;;:2;:24;:::i;:::-;750:39;;733:6;740;733:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;733:56:0;;;;;;;;-1:-1:-1;804:11:0;813:2;804:11;;:::i;:::-;;;673:154;;32939:163;33062:32;33068:2;33072:8;33082:5;33089:4;33500:20;33523:13;-1:-1:-1;;;;;33551:16:0;;33547:48;;33576:19;;-1:-1:-1;;;33576:19:0;;;;;;;;;;;33547:48;33610:13;33606:44;;33632:18;;-1:-1:-1;;;33632:18:0;;;;;;;;;;;33606:44;-1:-1:-1;;;;;34001:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34060:49:0;;34001:44;;;;;;;;34060:49;;;;-1:-1:-1;;34001:44:0;;;;;;34060:49;;;;;;;;;;;;;;;;34126:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;34176:66:0;;;;-1:-1:-1;;;34226:15:0;34176:66;;;;;;;;;;34126:25;34323:23;;;34367:4;:23;;;;-1:-1:-1;;;;;;34375:13:0;;3463:19;:23;;34375:15;34363:641;;;34411:314;34442:38;;34467:12;;-1:-1:-1;;;;;34442:38:0;;;34459:1;;34442:38;;34459:1;;34442:38;34508:69;34547:1;34551:2;34555:14;;;;;;34571:5;34508:30;:69::i;:::-;34503:174;;34613:40;;-1:-1:-1;;;34613:40:0;;;;;;;;;;;34503:174;34720:3;34704:12;:19;;34411:314;;34806:12;34789:13;;:29;34785:43;;34820:8;;;34785:43;34363:641;;;34869:120;34900:40;;34925:14;;;;;-1:-1:-1;;;;;34900:40:0;;;34917:1;;34900:40;;34917:1;;34900:40;34984:3;34968:12;:19;;34869:120;;34363:641;-1:-1:-1;35018:13:0;:28;35068:60;31653:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:637::-;4563:3;4601:6;4595:13;4617:53;4663:6;4658:3;4651:4;4643:6;4639:17;4617:53;:::i;:::-;4733:13;;4692:16;;;;4755:57;4733:13;4692:16;4789:4;4777:17;;4755:57;:::i;:::-;-1:-1:-1;;;4834:20:1;;4863:22;;;4912:1;4901:13;;4283:637;-1:-1:-1;;;;4283:637:1:o;5133:488::-;-1:-1:-1;;;;;5402:15:1;;;5384:34;;5454:15;;5449:2;5434:18;;5427:43;5501:2;5486:18;;5479:34;;;5549:3;5544:2;5529:18;;5522:31;;;5327:4;;5570:45;;5595:19;;5587:6;5570:45;:::i;:::-;5562:53;5133:488;-1:-1:-1;;;;;;5133:488:1:o;5818:219::-;5967:2;5956:9;5949:21;5930:4;5987:44;6027:2;6016:9;6012:18;6004:6;5987:44;:::i;6042:401::-;6244:2;6226:21;;;6283:2;6263:18;;;6256:30;6322:34;6317:2;6302:18;;6295:62;-1:-1:-1;;;6388:2:1;6373:18;;6366:35;6433:3;6418:19;;6042:401::o;8259:356::-;8461:2;8443:21;;;8480:18;;;8473:30;8539:34;8534:2;8519:18;;8512:62;8606:2;8591:18;;8259:356::o;9158:128::-;9198:3;9229:1;9225:6;9222:1;9219:13;9216:39;;;9235:18;;:::i;:::-;-1:-1:-1;9271:9:1;;9158:128::o;9291:120::-;9331:1;9357;9347:35;;9362:18;;:::i;:::-;-1:-1:-1;9396:9:1;;9291:120::o;9416:168::-;9456:7;9522:1;9518;9514:6;9510:14;9507:1;9504:21;9499:1;9492:9;9485:17;9481:45;9478:71;;;9529:18;;:::i;:::-;-1:-1:-1;9569:9:1;;9416:168::o;9589:125::-;9629:4;9657:1;9654;9651:8;9648:34;;;9662:18;;:::i;:::-;-1:-1:-1;9699:9:1;;9589:125::o;9719:258::-;9791:1;9801:113;9815:6;9812:1;9809:13;9801:113;;;9891:11;;;9885:18;9872:11;;;9865:39;9837:2;9830:10;9801:113;;;9932:6;9929:1;9926:13;9923:48;;;-1:-1:-1;;9967:1:1;9949:16;;9942:27;9719:258::o;9982:380::-;10061:1;10057:12;;;;10104;;;10125:61;;10179:4;10171:6;10167:17;10157:27;;10125:61;10232:2;10224:6;10221:14;10201:18;10198:38;10195:161;;;10278:10;10273:3;10269:20;10266:1;10259:31;10313:4;10310:1;10303:15;10341:4;10338:1;10331:15;10195:161;;9982:380;;;:::o;10367:135::-;10406:3;-1:-1:-1;;10427:17:1;;10424:43;;;10447:18;;:::i;:::-;-1:-1:-1;10494:1:1;10483:13;;10367:135::o;10507:112::-;10539:1;10565;10555:35;;10570:18;;:::i;:::-;-1:-1:-1;10604:9:1;;10507:112::o;10624:127::-;10685:10;10680:3;10676:20;10673:1;10666:31;10716:4;10713:1;10706:15;10740:4;10737:1;10730:15;10756:127;10817:10;10812:3;10808:20;10805:1;10798:31;10848:4;10845:1;10838:15;10872:4;10869:1;10862:15;10888:127;10949:10;10944:3;10940:20;10937:1;10930:31;10980:4;10977:1;10970:15;11004:4;11001:1;10994:15;11020:127;11081:10;11076:3;11072:20;11069:1;11062:31;11112:4;11109:1;11102:15;11136:4;11133:1;11126:15;11152:131;-1:-1:-1;;;;;;11226:32:1;;11216:43;;11206:71;;11273:1;11270;11263:12

Swarm Source

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