ETH Price: $3,505.83 (+2.60%)
Gas: 14 Gwei

Token

AIProbablyNothing (AIPN)
 

Overview

Max Total Supply

3,183 AIPN

Holders

225

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
d00ks.eth
Balance
10 AIPN
0xcAD8c8117B8Bc1b1666AF06B402578a34119a9dF
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:
AIProbablyNothing

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-26
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    /**
     * @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) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_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);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;



contract AIProbablyNothing is ERC721A, Ownable {
    using Strings for uint256;

    string public baseURI;
    uint256 public price = 0.001 ether;
    uint256 public maxPerTx = 100;
    uint256 public totalFree = 767;
    uint256 public maxSupply = 7676;
    uint256 public maxPerWallet = 500;
    uint256 public maxFreePerWallet = 20;
    bool public mintEnabled;
    bool public revealed;
    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("AIProbablyNothing", "AIPN") {
        _safeMint(msg.sender, 5);
    }

    function mint(uint256 amt) external payable {
        uint256 cost = price;
        bool isFree = (totalSupply() + amt < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] + amt <= maxFreePerWallet);
        if (isFree) {
            cost = 0;
        }

        require(msg.value >= amt * cost, "Please send the exact amount.");
        require(totalSupply() + amt < maxSupply + 1, "No more");
        require(mintEnabled, "Minting is not live yet, hold on.");
        require(amt < maxPerTx + 1, "Max per TX reached.");
        require(
            _numberMinted(msg.sender) + amt <= maxPerWallet,
            "Too many per wallet!"
        );

        if(isFree) {
            _mintedFreeAmount[msg.sender] += amt;
        }

        _safeMint(msg.sender, amt);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return
            revealed
                ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json"))
                : "https://ipfs.io/ipfs/QmWCJw7XnNGgYDg8iZeFUef7oPA6HpjKNGFgRdR1UQUZ3z";
    }

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFree = amount;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function setMaxPerWallet(uint256 _newAmount) external onlyOwner {
       maxPerWallet = _newAmount;
    }

    function setMaxPerTx(uint256 _newAmount) external onlyOwner {
       maxPerTx = _newAmount;
    }

    function flipSale() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function flipReveal() external onlyOwner {
        revealed = !revealed;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }
}

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"},{"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":[{"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":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","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":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266038d7ea4c68000600a556064600b556102ff600c55611dfc600d556101f4600e556014600f553480156200003857600080fd5b506040805180820182526011815270414950726f6261626c794e6f7468696e6760781b60208083019182528351808501909452600484526320a4a82760e11b9084015281519192916200008e916002916200041c565b508051620000a49060039060208401906200041c565b50506000805550620000b633620000c9565b620000c33360056200011b565b620005ac565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200013d8282604051806020016040528060008152506200014160201b60201c565b5050565b62000150838383600162000155565b505050565b6000546001600160a01b0385166200017f57604051622e076360e81b815260040160405180910390fd5b83600003620001a15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156200025a57506200025a876001600160a01b03166200031960201b6200103f1760201c565b15620002d9575b60405182906001600160a01b0389169060009060008051602062002468833981519152908290a460018201916200029e9060009089908862000328565b620002bc576040516368d2bf6b60e11b815260040160405180910390fd5b80820362000261578260005414620002d357600080fd5b6200030e565b5b6040516001830192906001600160a01b0389169060009060008051602062002468833981519152908290a4808203620002da575b506000555050505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200035f903390899088908890600401620004c2565b6020604051808303816000875af19250505080156200039d575060408051601f3d908101601f191682019092526200039a918101906200053d565b60015b620003ff573d808015620003ce576040519150601f19603f3d011682016040523d82523d6000602084013e620003d3565b606091505b508051600003620003f7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b8280546200042a9062000570565b90600052602060002090601f0160209004810192826200044e576000855562000499565b82601f106200046957805160ff191683800117855562000499565b8280016001018555821562000499579182015b82811115620004995782518255916020019190600101906200047c565b50620004a7929150620004ab565b5090565b5b80821115620004a75760008155600101620004ac565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620005115785810182015185820160a001528101620004f3565b828111156200052457600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000602082840312156200055057600080fd5b81516001600160e01b0319811681146200056957600080fd5b9392505050565b600181811c908216806200058557607f821691505b602082108103620005a657634e487b7160e01b600052602260045260246000fd5b50919050565b611eac80620005bc6000396000f3fe6080604052600436106102045760003560e01c80637ba5e62111610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb011461057d578063e268e4d314610593578063e985e9c5146105b3578063f2fde38b146105fc578063f968adbe1461061c57600080fd5b8063b88d4fde14610503578063c6f6f21614610523578063c87b56dd14610543578063d12397301461056357600080fd5b806395d89b41116100e757806395d89b411461048f578063a035b1fe146104a4578063a0712d68146104ba578063a22cb465146104cd578063a7027357146104ed57600080fd5b80637ba5e6211461041c5780638da5cb5b1461043157806391b7f5ed1461044f57806392910eec1461046f57600080fd5b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146103925780636352211e146103b25780636c0360eb146103d257806370a08231146103e7578063715018a61461040757600080fd5b80633ccfd60b1461032857806342842e0e1461033d578063453c23101461035d578063518302271461037357600080fd5b806318160ddd116101d757806318160ddd146102ba57806323b872dd146102dd578063333e44e6146102fd5780633b84d9c61461031357600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b506102296102243660046118be565b610632565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610684565b604051610235919061193a565b34801561026c57600080fd5b5061028061027b36600461194d565b610716565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611982565b61075a565b005b3480156102c657600080fd5b50600154600054035b604051908152602001610235565b3480156102e957600080fd5b506102b86102f83660046119ac565b6107e7565b34801561030957600080fd5b506102cf600c5481565b34801561031f57600080fd5b506102b86107f2565b34801561033457600080fd5b506102b8610842565b34801561034957600080fd5b506102b86103583660046119ac565b6108fa565b34801561036957600080fd5b506102cf600e5481565b34801561037f57600080fd5b5060105461022990610100900460ff1681565b34801561039e57600080fd5b506102b86103ad366004611a74565b610915565b3480156103be57600080fd5b506102806103cd36600461194d565b610956565b3480156103de57600080fd5b50610253610968565b3480156103f357600080fd5b506102cf610402366004611abd565b6109f6565b34801561041357600080fd5b506102b8610a45565b34801561042857600080fd5b506102b8610a7b565b34801561043d57600080fd5b506008546001600160a01b0316610280565b34801561045b57600080fd5b506102b861046a36600461194d565b610ab9565b34801561047b57600080fd5b506102b861048a36600461194d565b610ae8565b34801561049b57600080fd5b50610253610b17565b3480156104b057600080fd5b506102cf600a5481565b6102b86104c836600461194d565b610b26565b3480156104d957600080fd5b506102b86104e8366004611ad8565b610d96565b3480156104f957600080fd5b506102cf600f5481565b34801561050f57600080fd5b506102b861051e366004611b14565b610e2b565b34801561052f57600080fd5b506102b861053e36600461194d565b610e7c565b34801561054f57600080fd5b5061025361055e36600461194d565b610eab565b34801561056f57600080fd5b506010546102299060ff1681565b34801561058957600080fd5b506102cf600d5481565b34801561059f57600080fd5b506102b86105ae36600461194d565b610f78565b3480156105bf57600080fd5b506102296105ce366004611b90565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060857600080fd5b506102b8610617366004611abd565b610fa7565b34801561062857600080fd5b506102cf600b5481565b60006001600160e01b031982166380ac58cd60e01b148061066357506001600160e01b03198216635b5e139f60e01b145b8061067e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461069390611bc3565b80601f01602080910402602001604051908101604052809291908181526020018280546106bf90611bc3565b801561070c5780601f106106e15761010080835404028352916020019161070c565b820191906000526020600020905b8154815290600101906020018083116106ef57829003601f168201915b5050505050905090565b60006107218261104e565b61073e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061076582610956565b9050806001600160a01b0316836001600160a01b0316036107995760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107b957506107b781336105ce565b155b156107d7576040516367d9dca160e11b815260040160405180910390fd5b6107e2838383611079565b505050565b6107e28383836110d5565b6008546001600160a01b031633146108255760405162461bcd60e51b815260040161081c90611bfd565b60405180910390fd5b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b0316331461086c5760405162461bcd60e51b815260040161081c90611bfd565b604051600090339047908381818185875af1925050503d80600081146108ae576040519150601f19603f3d011682016040523d82523d6000602084013e6108b3565b606091505b50509050806108f75760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161081c565b50565b6107e283838360405180602001604052806000815250610e2b565b6008546001600160a01b0316331461093f5760405162461bcd60e51b815260040161081c90611bfd565b805161095290600990602084019061180f565b5050565b6000610961826112c5565b5192915050565b6009805461097590611bc3565b80601f01602080910402602001604051908101604052809291908181526020018280546109a190611bc3565b80156109ee5780601f106109c3576101008083540402835291602001916109ee565b820191906000526020600020905b8154815290600101906020018083116109d157829003601f168201915b505050505081565b60006001600160a01b038216610a1f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a6f5760405162461bcd60e51b815260040161081c90611bfd565b610a7960006113e1565b565b6008546001600160a01b03163314610aa55760405162461bcd60e51b815260040161081c90611bfd565b6010805460ff19811660ff90911615179055565b6008546001600160a01b03163314610ae35760405162461bcd60e51b815260040161081c90611bfd565b600a55565b6008546001600160a01b03163314610b125760405162461bcd60e51b815260040161081c90611bfd565b600c55565b60606003805461069390611bc3565b600a54600c54600090610b3a906001611c48565b83610b486001546000540390565b610b529190611c48565b108015610b7b5750600f5433600090815260116020526040902054610b78908590611c48565b11155b90508015610b8857600091505b610b928284611c60565b341015610be15760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e000000604482015260640161081c565b600d54610bef906001611c48565b83610bfd6001546000540390565b610c079190611c48565b10610c3e5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b604482015260640161081c565b60105460ff16610c9a5760405162461bcd60e51b815260206004820152602160248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e6044820152601760f91b606482015260840161081c565b600b54610ca8906001611c48565b8310610cec5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b604482015260640161081c565b600e54336000908152600560205260409020548490600160401b900467ffffffffffffffff16610d1c9190611c48565b1115610d615760405162461bcd60e51b8152602060048201526014602482015273546f6f206d616e79207065722077616c6c65742160601b604482015260640161081c565b8015610d8c573360009081526011602052604081208054859290610d86908490611c48565b90915550505b6107e23384611433565b336001600160a01b03831603610dbf5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e368484846110d5565b6001600160a01b0383163b15158015610e585750610e568484848461144d565b155b15610e76576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610ea65760405162461bcd60e51b815260040161081c90611bfd565b600b55565b6060610eb68261104e565b610f1a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161081c565b601054610100900460ff16610f4757604051806080016040528060438152602001611e346043913961067e565b6009610f5283611539565b604051602001610f63929190611c9b565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610fa25760405162461bcd60e51b815260040161081c90611bfd565b600e55565b6008546001600160a01b03163314610fd15760405162461bcd60e51b815260040161081c90611bfd565b6001600160a01b0381166110365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081c565b6108f7816113e1565b6001600160a01b03163b151590565b600080548210801561067e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110e0826112c5565b9050836001600160a01b031681600001516001600160a01b0316146111175760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611135575061113585336105ce565b8061115057503361114584610716565b6001600160a01b0316145b90508061117057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661119757604051633a954ecd60e21b815260040160405180910390fd5b6111a360008487611079565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611279576000548214611279578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156113c857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113c65780516001600160a01b03161561135c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156113c1579392505050565b61135c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61095282826040518060200160405280600081525061163a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611482903390899088908890600401611d55565b6020604051808303816000875af19250505080156114bd575060408051601f3d908101601f191682019092526114ba91810190611d92565b60015b61151b573d8080156114eb576040519150601f19603f3d011682016040523d82523d6000602084013e6114f0565b606091505b508051600003611513576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036115605750506040805180820190915260018152600360fc1b602082015290565b8160005b811561158a578061157481611daf565b91506115839050600a83611dde565b9150611564565b60008167ffffffffffffffff8111156115a5576115a56119e8565b6040519080825280601f01601f1916602001820160405280156115cf576020820181803683370190505b5090505b8415611531576115e4600183611df2565b91506115f1600a86611e09565b6115fc906030611c48565b60f81b81838151811061161157611611611e1d565b60200101906001600160f81b031916908160001a905350611633600a86611dde565b94506115d3565b6107e283838360016000546001600160a01b03851661166b57604051622e076360e81b815260040160405180910390fd5b8360000361168c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561173957506001600160a01b0387163b15155b156117c1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461178a600088848060010195508861144d565b6117a7576040516368d2bf6b60e11b815260040160405180910390fd5b80820361173f5782600054146117bc57600080fd5b611806565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036117c2575b506000556112be565b82805461181b90611bc3565b90600052602060002090601f01602090048101928261183d5760008555611883565b82601f1061185657805160ff1916838001178555611883565b82800160010185558215611883579182015b82811115611883578251825591602001919060010190611868565b5061188f929150611893565b5090565b5b8082111561188f5760008155600101611894565b6001600160e01b0319811681146108f757600080fd5b6000602082840312156118d057600080fd5b81356118db816118a8565b9392505050565b60005b838110156118fd5781810151838201526020016118e5565b83811115610e765750506000910152565b600081518084526119268160208601602086016118e2565b601f01601f19169290920160200192915050565b6020815260006118db602083018461190e565b60006020828403121561195f57600080fd5b5035919050565b80356001600160a01b038116811461197d57600080fd5b919050565b6000806040838503121561199557600080fd5b61199e83611966565b946020939093013593505050565b6000806000606084860312156119c157600080fd5b6119ca84611966565b92506119d860208501611966565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a1957611a196119e8565b604051601f8501601f19908116603f01168101908282118183101715611a4157611a416119e8565b81604052809350858152868686011115611a5a57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a8657600080fd5b813567ffffffffffffffff811115611a9d57600080fd5b8201601f81018413611aae57600080fd5b611531848235602084016119fe565b600060208284031215611acf57600080fd5b6118db82611966565b60008060408385031215611aeb57600080fd5b611af483611966565b915060208301358015158114611b0957600080fd5b809150509250929050565b60008060008060808587031215611b2a57600080fd5b611b3385611966565b9350611b4160208601611966565b925060408501359150606085013567ffffffffffffffff811115611b6457600080fd5b8501601f81018713611b7557600080fd5b611b84878235602084016119fe565b91505092959194509250565b60008060408385031215611ba357600080fd5b611bac83611966565b9150611bba60208401611966565b90509250929050565b600181811c90821680611bd757607f821691505b602082108103611bf757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611c5b57611c5b611c32565b500190565b6000816000190483118215151615611c7a57611c7a611c32565b500290565b60008151611c918185602086016118e2565b9290920192915050565b600080845481600182811c915080831680611cb757607f831692505b60208084108203611cd657634e487b7160e01b86526022600452602486fd5b818015611cea5760018114611cfb57611d28565b60ff19861689528489019650611d28565b60008b81526020902060005b86811015611d205781548b820152908501908301611d07565b505084890196505b505050505050611d4c611d3b8286611c7f565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d889083018461190e565b9695505050505050565b600060208284031215611da457600080fd5b81516118db816118a8565b600060018201611dc157611dc1611c32565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ded57611ded611dc8565b500490565b600082821015611e0457611e04611c32565b500390565b600082611e1857611e18611dc8565b500690565b634e487b7160e01b600052603260045260246000fdfe68747470733a2f2f697066732e696f2f697066732f516d57434a7737586e4e476759446738695a6546556566376f50413648706a4b4e474667526452315551555a337aa2646970667358221220745c2f28aee87e88550f0b3c195589e1da004271cda2b8028488e92e48cf941864736f6c634300080e0033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6080604052600436106102045760003560e01c80637ba5e62111610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb011461057d578063e268e4d314610593578063e985e9c5146105b3578063f2fde38b146105fc578063f968adbe1461061c57600080fd5b8063b88d4fde14610503578063c6f6f21614610523578063c87b56dd14610543578063d12397301461056357600080fd5b806395d89b41116100e757806395d89b411461048f578063a035b1fe146104a4578063a0712d68146104ba578063a22cb465146104cd578063a7027357146104ed57600080fd5b80637ba5e6211461041c5780638da5cb5b1461043157806391b7f5ed1461044f57806392910eec1461046f57600080fd5b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146103925780636352211e146103b25780636c0360eb146103d257806370a08231146103e7578063715018a61461040757600080fd5b80633ccfd60b1461032857806342842e0e1461033d578063453c23101461035d578063518302271461037357600080fd5b806318160ddd116101d757806318160ddd146102ba57806323b872dd146102dd578063333e44e6146102fd5780633b84d9c61461031357600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b506102296102243660046118be565b610632565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610684565b604051610235919061193a565b34801561026c57600080fd5b5061028061027b36600461194d565b610716565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611982565b61075a565b005b3480156102c657600080fd5b50600154600054035b604051908152602001610235565b3480156102e957600080fd5b506102b86102f83660046119ac565b6107e7565b34801561030957600080fd5b506102cf600c5481565b34801561031f57600080fd5b506102b86107f2565b34801561033457600080fd5b506102b8610842565b34801561034957600080fd5b506102b86103583660046119ac565b6108fa565b34801561036957600080fd5b506102cf600e5481565b34801561037f57600080fd5b5060105461022990610100900460ff1681565b34801561039e57600080fd5b506102b86103ad366004611a74565b610915565b3480156103be57600080fd5b506102806103cd36600461194d565b610956565b3480156103de57600080fd5b50610253610968565b3480156103f357600080fd5b506102cf610402366004611abd565b6109f6565b34801561041357600080fd5b506102b8610a45565b34801561042857600080fd5b506102b8610a7b565b34801561043d57600080fd5b506008546001600160a01b0316610280565b34801561045b57600080fd5b506102b861046a36600461194d565b610ab9565b34801561047b57600080fd5b506102b861048a36600461194d565b610ae8565b34801561049b57600080fd5b50610253610b17565b3480156104b057600080fd5b506102cf600a5481565b6102b86104c836600461194d565b610b26565b3480156104d957600080fd5b506102b86104e8366004611ad8565b610d96565b3480156104f957600080fd5b506102cf600f5481565b34801561050f57600080fd5b506102b861051e366004611b14565b610e2b565b34801561052f57600080fd5b506102b861053e36600461194d565b610e7c565b34801561054f57600080fd5b5061025361055e36600461194d565b610eab565b34801561056f57600080fd5b506010546102299060ff1681565b34801561058957600080fd5b506102cf600d5481565b34801561059f57600080fd5b506102b86105ae36600461194d565b610f78565b3480156105bf57600080fd5b506102296105ce366004611b90565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060857600080fd5b506102b8610617366004611abd565b610fa7565b34801561062857600080fd5b506102cf600b5481565b60006001600160e01b031982166380ac58cd60e01b148061066357506001600160e01b03198216635b5e139f60e01b145b8061067e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461069390611bc3565b80601f01602080910402602001604051908101604052809291908181526020018280546106bf90611bc3565b801561070c5780601f106106e15761010080835404028352916020019161070c565b820191906000526020600020905b8154815290600101906020018083116106ef57829003601f168201915b5050505050905090565b60006107218261104e565b61073e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061076582610956565b9050806001600160a01b0316836001600160a01b0316036107995760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107b957506107b781336105ce565b155b156107d7576040516367d9dca160e11b815260040160405180910390fd5b6107e2838383611079565b505050565b6107e28383836110d5565b6008546001600160a01b031633146108255760405162461bcd60e51b815260040161081c90611bfd565b60405180910390fd5b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b0316331461086c5760405162461bcd60e51b815260040161081c90611bfd565b604051600090339047908381818185875af1925050503d80600081146108ae576040519150601f19603f3d011682016040523d82523d6000602084013e6108b3565b606091505b50509050806108f75760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161081c565b50565b6107e283838360405180602001604052806000815250610e2b565b6008546001600160a01b0316331461093f5760405162461bcd60e51b815260040161081c90611bfd565b805161095290600990602084019061180f565b5050565b6000610961826112c5565b5192915050565b6009805461097590611bc3565b80601f01602080910402602001604051908101604052809291908181526020018280546109a190611bc3565b80156109ee5780601f106109c3576101008083540402835291602001916109ee565b820191906000526020600020905b8154815290600101906020018083116109d157829003601f168201915b505050505081565b60006001600160a01b038216610a1f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a6f5760405162461bcd60e51b815260040161081c90611bfd565b610a7960006113e1565b565b6008546001600160a01b03163314610aa55760405162461bcd60e51b815260040161081c90611bfd565b6010805460ff19811660ff90911615179055565b6008546001600160a01b03163314610ae35760405162461bcd60e51b815260040161081c90611bfd565b600a55565b6008546001600160a01b03163314610b125760405162461bcd60e51b815260040161081c90611bfd565b600c55565b60606003805461069390611bc3565b600a54600c54600090610b3a906001611c48565b83610b486001546000540390565b610b529190611c48565b108015610b7b5750600f5433600090815260116020526040902054610b78908590611c48565b11155b90508015610b8857600091505b610b928284611c60565b341015610be15760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e000000604482015260640161081c565b600d54610bef906001611c48565b83610bfd6001546000540390565b610c079190611c48565b10610c3e5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b604482015260640161081c565b60105460ff16610c9a5760405162461bcd60e51b815260206004820152602160248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e6044820152601760f91b606482015260840161081c565b600b54610ca8906001611c48565b8310610cec5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b604482015260640161081c565b600e54336000908152600560205260409020548490600160401b900467ffffffffffffffff16610d1c9190611c48565b1115610d615760405162461bcd60e51b8152602060048201526014602482015273546f6f206d616e79207065722077616c6c65742160601b604482015260640161081c565b8015610d8c573360009081526011602052604081208054859290610d86908490611c48565b90915550505b6107e23384611433565b336001600160a01b03831603610dbf5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e368484846110d5565b6001600160a01b0383163b15158015610e585750610e568484848461144d565b155b15610e76576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610ea65760405162461bcd60e51b815260040161081c90611bfd565b600b55565b6060610eb68261104e565b610f1a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161081c565b601054610100900460ff16610f4757604051806080016040528060438152602001611e346043913961067e565b6009610f5283611539565b604051602001610f63929190611c9b565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610fa25760405162461bcd60e51b815260040161081c90611bfd565b600e55565b6008546001600160a01b03163314610fd15760405162461bcd60e51b815260040161081c90611bfd565b6001600160a01b0381166110365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081c565b6108f7816113e1565b6001600160a01b03163b151590565b600080548210801561067e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110e0826112c5565b9050836001600160a01b031681600001516001600160a01b0316146111175760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611135575061113585336105ce565b8061115057503361114584610716565b6001600160a01b0316145b90508061117057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661119757604051633a954ecd60e21b815260040160405180910390fd5b6111a360008487611079565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611279576000548214611279578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156113c857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113c65780516001600160a01b03161561135c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156113c1579392505050565b61135c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61095282826040518060200160405280600081525061163a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611482903390899088908890600401611d55565b6020604051808303816000875af19250505080156114bd575060408051601f3d908101601f191682019092526114ba91810190611d92565b60015b61151b573d8080156114eb576040519150601f19603f3d011682016040523d82523d6000602084013e6114f0565b606091505b508051600003611513576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036115605750506040805180820190915260018152600360fc1b602082015290565b8160005b811561158a578061157481611daf565b91506115839050600a83611dde565b9150611564565b60008167ffffffffffffffff8111156115a5576115a56119e8565b6040519080825280601f01601f1916602001820160405280156115cf576020820181803683370190505b5090505b8415611531576115e4600183611df2565b91506115f1600a86611e09565b6115fc906030611c48565b60f81b81838151811061161157611611611e1d565b60200101906001600160f81b031916908160001a905350611633600a86611dde565b94506115d3565b6107e283838360016000546001600160a01b03851661166b57604051622e076360e81b815260040160405180910390fd5b8360000361168c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561173957506001600160a01b0387163b15155b156117c1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461178a600088848060010195508861144d565b6117a7576040516368d2bf6b60e11b815260040160405180910390fd5b80820361173f5782600054146117bc57600080fd5b611806565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036117c2575b506000556112be565b82805461181b90611bc3565b90600052602060002090601f01602090048101928261183d5760008555611883565b82601f1061185657805160ff1916838001178555611883565b82800160010185558215611883579182015b82811115611883578251825591602001919060010190611868565b5061188f929150611893565b5090565b5b8082111561188f5760008155600101611894565b6001600160e01b0319811681146108f757600080fd5b6000602082840312156118d057600080fd5b81356118db816118a8565b9392505050565b60005b838110156118fd5781810151838201526020016118e5565b83811115610e765750506000910152565b600081518084526119268160208601602086016118e2565b601f01601f19169290920160200192915050565b6020815260006118db602083018461190e565b60006020828403121561195f57600080fd5b5035919050565b80356001600160a01b038116811461197d57600080fd5b919050565b6000806040838503121561199557600080fd5b61199e83611966565b946020939093013593505050565b6000806000606084860312156119c157600080fd5b6119ca84611966565b92506119d860208501611966565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a1957611a196119e8565b604051601f8501601f19908116603f01168101908282118183101715611a4157611a416119e8565b81604052809350858152868686011115611a5a57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a8657600080fd5b813567ffffffffffffffff811115611a9d57600080fd5b8201601f81018413611aae57600080fd5b611531848235602084016119fe565b600060208284031215611acf57600080fd5b6118db82611966565b60008060408385031215611aeb57600080fd5b611af483611966565b915060208301358015158114611b0957600080fd5b809150509250929050565b60008060008060808587031215611b2a57600080fd5b611b3385611966565b9350611b4160208601611966565b925060408501359150606085013567ffffffffffffffff811115611b6457600080fd5b8501601f81018713611b7557600080fd5b611b84878235602084016119fe565b91505092959194509250565b60008060408385031215611ba357600080fd5b611bac83611966565b9150611bba60208401611966565b90509250929050565b600181811c90821680611bd757607f821691505b602082108103611bf757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611c5b57611c5b611c32565b500190565b6000816000190483118215151615611c7a57611c7a611c32565b500290565b60008151611c918185602086016118e2565b9290920192915050565b600080845481600182811c915080831680611cb757607f831692505b60208084108203611cd657634e487b7160e01b86526022600452602486fd5b818015611cea5760018114611cfb57611d28565b60ff19861689528489019650611d28565b60008b81526020902060005b86811015611d205781548b820152908501908301611d07565b505084890196505b505050505050611d4c611d3b8286611c7f565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d889083018461190e565b9695505050505050565b600060208284031215611da457600080fd5b81516118db816118a8565b600060018201611dc157611dc1611c32565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ded57611ded611dc8565b500490565b600082821015611e0457611e04611c32565b500390565b600082611e1857611e18611dc8565b500690565b634e487b7160e01b600052603260045260246000fdfe68747470733a2f2f697066732e696f2f697066732f516d57434a7737586e4e476759446738695a6546556566376f50413648706a4b4e474667526452315551555a337aa2646970667358221220745c2f28aee87e88550f0b3c195589e1da004271cda2b8028488e92e48cf941864736f6c634300080e0033

Deployed Bytecode Sourcemap

44847:2896:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27029:305;;;;;;;;;;-1:-1:-1;27029:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27029:305:0;;;;;;;;30142:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31645:204::-;;;;;;;;;;-1:-1:-1;31645:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;31645:204:0;1550:203:1;31208:371:0;;;;;;;;;;-1:-1:-1;31208:371:0;;;;;:::i;:::-;;:::i;:::-;;26278:303;;;;;;;;;;-1:-1:-1;26532:12:0;;26322:7;26516:13;:28;26278:303;;;2341:25:1;;;2329:2;2314:18;26278:303:0;2195:177:1;32510:170:0;;;;;;;;;;-1:-1:-1;32510:170:0;;;;;:::i;:::-;;:::i;45040:30::-;;;;;;;;;;;;;;;;47446:80;;;;;;;;;;;;;:::i;47534:206::-;;;;;;;;;;;;;:::i;32751:185::-;;;;;;;;;;-1:-1:-1;32751:185:0;;;;;:::i;:::-;;:::i;45115:33::-;;;;;;;;;;;;;;;;45228:20;;;;;;;;;;-1:-1:-1;45228:20:0;;;;;;;;;;;46833:88;;;;;;;;;;-1:-1:-1;46833:88:0;;;;;:::i;:::-;;:::i;29950:125::-;;;;;;;;;;-1:-1:-1;29950:125:0;;;;;:::i;:::-;;:::i;44935:21::-;;;;;;;;;;;;;:::i;27398:206::-;;;;;;;;;;-1:-1:-1;27398:206:0;;;;;:::i;:::-;;:::i;4757:103::-;;;;;;;;;;;;;:::i;47354:84::-;;;;;;;;;;;;;:::i;4106:87::-;;;;;;;;;;-1:-1:-1;4179:6:0;;-1:-1:-1;;;;;4179:6:0;4106:87;;47032:92;;;;;;;;;;-1:-1:-1;47032:92:0;;;;;:::i;:::-;;:::i;46929:95::-;;;;;;;;;;-1:-1:-1;46929:95:0;;;;;:::i;:::-;;:::i;30311:104::-;;;;;;;;;;;;;:::i;44963:34::-;;;;;;;;;;;;;;;;45419:802;;;;;;:::i;:::-;;:::i;31921:287::-;;;;;;;;;;-1:-1:-1;31921:287:0;;;;;:::i;:::-;;:::i;45155:36::-;;;;;;;;;;;;;;;;33007:369;;;;;;;;;;-1:-1:-1;33007:369:0;;;;;:::i;:::-;;:::i;47247:99::-;;;;;;;;;;-1:-1:-1;47247:99:0;;;;;:::i;:::-;;:::i;46345:480::-;;;;;;;;;;-1:-1:-1;46345:480:0;;;;;:::i;:::-;;:::i;45198:23::-;;;;;;;;;;-1:-1:-1;45198:23:0;;;;;;;;45077:31;;;;;;;;;;;;;;;;47132:107;;;;;;;;;;-1:-1:-1;47132:107:0;;;;;:::i;:::-;;:::i;32279:164::-;;;;;;;;;;-1:-1:-1;32279:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32400:25:0;;;32376:4;32400:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32279:164;5015:201;;;;;;;;;;-1:-1:-1;5015:201:0;;;;;:::i;:::-;;:::i;45004:29::-;;;;;;;;;;;;;;;;27029:305;27131:4;-1:-1:-1;;;;;;27168:40:0;;-1:-1:-1;;;27168:40:0;;:105;;-1:-1:-1;;;;;;;27225:48:0;;-1:-1:-1;;;27225:48:0;27168:105;:158;;;-1:-1:-1;;;;;;;;;;17022:40:0;;;27290:36;27148:178;27029:305;-1:-1:-1;;27029:305:0:o;30142:100::-;30196:13;30229:5;30222:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30142:100;:::o;31645:204::-;31713:7;31738:16;31746:7;31738;:16::i;:::-;31733:64;;31763:34;;-1:-1:-1;;;31763:34:0;;;;;;;;;;;31733:64;-1:-1:-1;31817:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31817:24:0;;31645:204::o;31208:371::-;31281:13;31297:24;31313:7;31297:15;:24::i;:::-;31281:40;;31342:5;-1:-1:-1;;;;;31336:11:0;:2;-1:-1:-1;;;;;31336:11:0;;31332:48;;31356:24;;-1:-1:-1;;;31356:24:0;;;;;;;;;;;31332:48;2910:10;-1:-1:-1;;;;;31397:21:0;;;;;;:63;;-1:-1:-1;31423:37:0;31440:5;2910:10;32279:164;:::i;31423:37::-;31422:38;31397:63;31393:138;;;31484:35;;-1:-1:-1;;;31484:35:0;;;;;;;;;;;31393:138;31543:28;31552:2;31556:7;31565:5;31543:8;:28::i;:::-;31270:309;31208:371;;:::o;32510:170::-;32644:28;32654:4;32660:2;32664:7;32644:9;:28::i;47446:80::-;4179:6;;-1:-1:-1;;;;;4179:6:0;2910:10;4326:23;4318:68;;;;-1:-1:-1;;;4318:68:0;;;;;;;:::i;:::-;;;;;;;;;47510:8:::1;::::0;;-1:-1:-1;;47498:20:0;::::1;47510:8;::::0;;;::::1;;;47509:9;47498:20:::0;;::::1;;::::0;;47446:80::o;47534:206::-;4179:6;;-1:-1:-1;;;;;4179:6:0;2910:10;4326:23;4318:68;;;;-1:-1:-1;;;4318:68:0;;;;;;;:::i;:::-;47603:82:::1;::::0;47585:12:::1;::::0;47611:10:::1;::::0;47649:21:::1;::::0;47585:12;47603:82;47585:12;47603:82;47649:21;47611:10;47603:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47584:101;;;47704:7;47696:36;;;::::0;-1:-1:-1;;;47696:36:0;;6573:2:1;47696:36:0::1;::::0;::::1;6555:21:1::0;6612:2;6592:18;;;6585:30;-1:-1:-1;;;6631:18:1;;;6624:46;6687:18;;47696:36:0::1;6371:340:1::0;47696:36:0::1;47573:167;47534:206::o:0;32751:185::-;32889:39;32906:4;32912:2;32916:7;32889:39;;;;;;;;;;;;:16;:39::i;46833:88::-;4179:6;;-1:-1:-1;;;;;4179:6:0;2910:10;4326:23;4318:68;;;;-1:-1:-1;;;4318:68:0;;;;;;;:::i;:::-;46900:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46833:88:::0;:::o;29950:125::-;30014:7;30041:21;30054:7;30041:12;:21::i;:::-;:26;;29950:125;-1:-1:-1;;29950:125:0:o;44935:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27398:206::-;27462:7;-1:-1:-1;;;;;27486:19:0;;27482:60;;27514:28;;-1:-1:-1;;;27514:28:0;;;;;;;;;;;27482:60;-1:-1:-1;;;;;;27568:19:0;;;;;:12;:19;;;;;:27;;;;27398:206::o;4757:103::-;4179:6;;-1:-1:-1;;;;;4179:6:0;2910:10;4326:23;4318:68;;;;-1:-1:-1;;;4318:68:0;;;;;;;:::i;:::-;4822:30:::1;4849:1;4822:18;:30::i;:::-;4757:103::o:0;47354:84::-;4179:6;;-1:-1:-1;;;;;4179:6:0;2910:10;4326:23;4318:68;;;;-1:-1:-1;;;4318:68:0;;;;;;;:::i;:::-;47419:11:::1;::::0;;-1:-1:-1;;47404:26:0;::::1;47419:11;::::0;;::::1;47418:12;47404:26;::::0;;47354:84::o;47032:92::-;4179:6;;-1:-1:-1;;;;;4179:6:0;2910:10;4326:23;4318:68;;;;-1:-1:-1;;;4318:68:0;;;;;;;:::i;:::-;47099:5:::1;:17:::0;47032:92::o;46929:95::-;4179:6;;-1:-1:-1;;;;;4179:6:0;2910:10;4326:23;4318:68;;;;-1:-1:-1;;;4318:68:0;;;;;;;:::i;:::-;46998:9:::1;:18:::0;46929:95::o;30311:104::-;30367:13;30400:7;30393:14;;;;;:::i;45419:802::-;45489:5;;45542:9;;45474:12;;45542:13;;45554:1;45542:13;:::i;:::-;45536:3;45520:13;26532:12;;26322:7;26516:13;:28;;26278:303;45520:13;:19;;;;:::i;:::-;:35;45519:111;;;;-1:-1:-1;45613:16:0;;45592:10;45574:29;;;;:17;:29;;;;;;:35;;45606:3;;45574:35;:::i;:::-;:55;;45519:111;45505:125;;45645:6;45641:47;;;45675:1;45668:8;;45641:47;45721:10;45727:4;45721:3;:10;:::i;:::-;45708:9;:23;;45700:65;;;;-1:-1:-1;;;45700:65:0;;7356:2:1;45700:65:0;;;7338:21:1;7395:2;7375:18;;;7368:30;7434:31;7414:18;;;7407:59;7483:18;;45700:65:0;7154:353:1;45700:65:0;45806:9;;:13;;45818:1;45806:13;:::i;:::-;45800:3;45784:13;26532:12;;26322:7;26516:13;:28;;26278:303;45784:13;:19;;;;:::i;:::-;:35;45776:55;;;;-1:-1:-1;;;45776:55:0;;7714:2:1;45776:55:0;;;7696:21:1;7753:1;7733:18;;;7726:29;-1:-1:-1;;;7771:18:1;;;7764:37;7818:18;;45776:55:0;7512:330:1;45776:55:0;45850:11;;;;45842:57;;;;-1:-1:-1;;;45842:57:0;;8049:2:1;45842:57:0;;;8031:21:1;8088:2;8068:18;;;8061:30;8127:34;8107:18;;;8100:62;-1:-1:-1;;;8178:18:1;;;8171:31;8219:19;;45842:57:0;7847:397:1;45842:57:0;45924:8;;:12;;45935:1;45924:12;:::i;:::-;45918:3;:18;45910:50;;;;-1:-1:-1;;;45910:50:0;;8451:2:1;45910:50:0;;;8433:21:1;8490:2;8470:18;;;8463:30;-1:-1:-1;;;8509:18:1;;;8502:49;8568:18;;45910:50:0;8249:343:1;45910:50:0;46028:12;;46007:10;27747:7;27782:19;;;:12;:19;;;;;:32;46021:3;;-1:-1:-1;;;27782:32:0;;;;45993:31;;;;:::i;:::-;:47;;45971:117;;;;-1:-1:-1;;;45971:117:0;;8799:2:1;45971:117:0;;;8781:21:1;8838:2;8818:18;;;8811:30;-1:-1:-1;;;8857:18:1;;;8850:50;8917:18;;45971:117:0;8597:344:1;45971:117:0;46104:6;46101:74;;;46145:10;46127:29;;;;:17;:29;;;;;:36;;46160:3;;46127:29;:36;;46160:3;;46127:36;:::i;:::-;;;;-1:-1:-1;;46101:74:0;46187:26;46197:10;46209:3;46187:9;:26::i;31921:287::-;2910:10;-1:-1:-1;;;;;32020:24:0;;;32016:54;;32053:17;;-1:-1:-1;;;32053:17:0;;;;;;;;;;;32016:54;2910:10;32083:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32083:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32083:53:0;;;;;;;;;;32152:48;;540:41:1;;;32083:42:0;;2910:10;32152:48;;513:18:1;32152:48:0;;;;;;;31921:287;;:::o;33007:369::-;33174:28;33184:4;33190:2;33194:7;33174:9;:28::i;:::-;-1:-1:-1;;;;;33217:13:0;;7102:19;:23;;33217:76;;;;;33237:56;33268:4;33274:2;33278:7;33287:5;33237:30;:56::i;:::-;33236:57;33217:76;33213:156;;;33317:40;;-1:-1:-1;;;33317:40:0;;;;;;;;;;;33213:156;33007:369;;;;:::o;47247:99::-;4179:6;;-1:-1:-1;;;;;4179:6:0;2910:10;4326:23;4318:68;;;;-1:-1:-1;;;4318:68:0;;;;;;;:::i;:::-;47317:8:::1;:21:::0;47247:99::o;46345:480::-;46463:13;46516:16;46524:7;46516;:16::i;:::-;46494:113;;;;-1:-1:-1;;;46494:113:0;;9148:2:1;46494:113:0;;;9130:21:1;9187:2;9167:18;;;9160:30;9226:34;9206:18;;;9199:62;-1:-1:-1;;;9277:18:1;;;9270:45;9332:19;;46494:113:0;8946:411:1;46494:113:0;46638:8;;;;;;;:179;;;;;;;;;;;;;;;;;;;;;;46690:7;46699:18;:7;:16;:18::i;:::-;46673:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46618:199;46345:480;-1:-1:-1;;46345:480:0:o;47132:107::-;4179:6;;-1:-1:-1;;;;;4179:6:0;2910:10;4326:23;4318:68;;;;-1:-1:-1;;;4318:68:0;;;;;;;:::i;:::-;47206:12:::1;:25:::0;47132:107::o;5015:201::-;4179:6;;-1:-1:-1;;;;;4179:6:0;2910:10;4326:23;4318:68;;;;-1:-1:-1;;;4318:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5104:22:0;::::1;5096:73;;;::::0;-1:-1:-1;;;5096:73:0;;11304:2:1;5096:73:0::1;::::0;::::1;11286:21:1::0;11343:2;11323:18;;;11316:30;11382:34;11362:18;;;11355:62;-1:-1:-1;;;11433:18:1;;;11426:36;11479:19;;5096:73:0::1;11102:402:1::0;5096:73:0::1;5180:28;5199:8;5180:18;:28::i;6807:326::-:0;-1:-1:-1;;;;;7102:19:0;;:23;;;6807:326::o;33631:174::-;33688:4;33752:13;;33742:7;:23;33712:85;;;;-1:-1:-1;;33770:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33770:27:0;;;;33769:28;;33631:174::o;41788:196::-;41903:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41903:29:0;-1:-1:-1;;;;;41903:29:0;;;;;;;;;41948:28;;41903:24;;41948:28;;;;;;;41788:196;;;:::o;36731:2130::-;36846:35;36884:21;36897:7;36884:12;:21::i;:::-;36846:59;;36944:4;-1:-1:-1;;;;;36922:26:0;:13;:18;;;-1:-1:-1;;;;;36922:26:0;;36918:67;;36957:28;;-1:-1:-1;;;36957:28:0;;;;;;;;;;;36918:67;36998:22;2910:10;-1:-1:-1;;;;;37024:20:0;;;;:73;;-1:-1:-1;37061:36:0;37078:4;2910:10;32279:164;:::i;37061:36::-;37024:126;;;-1:-1:-1;2910:10:0;37114:20;37126:7;37114:11;:20::i;:::-;-1:-1:-1;;;;;37114:36:0;;37024:126;36998:153;;37169:17;37164:66;;37195:35;;-1:-1:-1;;;37195:35:0;;;;;;;;;;;37164:66;-1:-1:-1;;;;;37245:16:0;;37241:52;;37270:23;;-1:-1:-1;;;37270:23:0;;;;;;;;;;;37241:52;37414:35;37431:1;37435:7;37444:4;37414:8;:35::i;:::-;-1:-1:-1;;;;;37745:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37745:31:0;;;;;;;-1:-1:-1;;37745:31:0;;;;;;;37791:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37791:29:0;;;;;;;;;;;37871:20;;;:11;:20;;;;;;37906:18;;-1:-1:-1;;;;;;37939:49:0;;;;-1:-1:-1;;;37972:15:0;37939:49;;;;;;;;;;38262:11;;38322:24;;;;;38365:13;;37871:20;;38322:24;;38365:13;38361:384;;38575:13;;38560:11;:28;38556:174;;38613:20;;38682:28;;;;38656:54;;-1:-1:-1;;;38656:54:0;-1:-1:-1;;;;;;38656:54:0;;;-1:-1:-1;;;;;38613:20:0;;38656:54;;;;38556:174;37720:1036;;;38792:7;38788:2;-1:-1:-1;;;;;38773:27:0;38782:4;-1:-1:-1;;;;;38773:27:0;;;;;;;;;;;38811:42;36835:2026;;36731:2130;;;:::o;28779:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28890:7:0;28973:13;;28966:4;:20;28935:886;;;29007:31;29041:17;;;:11;:17;;;;;;;;;29007:51;;;;;;;;;-1:-1:-1;;;;;29007:51:0;;;;-1:-1:-1;;;29007:51:0;;;;;;;;;;;-1:-1:-1;;;29007:51:0;;;;;;;;;;;;;;29077:729;;29127:14;;-1:-1:-1;;;;;29127:28:0;;29123:101;;29191:9;28779:1109;-1:-1:-1;;;28779:1109:0:o;29123:101::-;-1:-1:-1;;;29566:6:0;29611:17;;;;:11;:17;;;;;;;;;29599:29;;;;;;;;;-1:-1:-1;;;;;29599:29:0;;;;;-1:-1:-1;;;29599:29:0;;;;;;;;;;;-1:-1:-1;;;29599:29:0;;;;;;;;;;;;;29659:28;29655:109;;29727:9;28779:1109;-1:-1:-1;;;28779:1109:0:o;29655:109::-;29526:261;;;28988:833;28935:886;29849:31;;-1:-1:-1;;;29849:31:0;;;;;;;;;;;5376:191;5469:6;;;-1:-1:-1;;;;;5486:17:0;;;-1:-1:-1;;;;;;5486:17:0;;;;;;;5519:40;;5469:6;;;5486:17;5469:6;;5519:40;;5450:16;;5519:40;5439:128;5376:191;:::o;33813:104::-;33882:27;33892:2;33896:8;33882:27;;;;;;;;;;;;:9;:27::i;42476:667::-;42660:72;;-1:-1:-1;;;42660:72:0;;42639:4;;-1:-1:-1;;;;;42660:36:0;;;;;:72;;2910:10;;42711:4;;42717:7;;42726:5;;42660:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42660:72:0;;;;;;;;-1:-1:-1;;42660:72:0;;;;;;;;;;;;:::i;:::-;;;42656:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42894:6;:13;42911:1;42894:18;42890:235;;42940:40;;-1:-1:-1;;;42940:40:0;;;;;;;;;;;42890:235;43083:6;43077:13;43068:6;43064:2;43060:15;43053:38;42656:480;-1:-1:-1;;;;;;42779:55:0;-1:-1:-1;;;42779:55:0;;-1:-1:-1;42656:480:0;42476:667;;;;;;:::o;392:723::-;448:13;669:5;678:1;669:10;665:53;;-1:-1:-1;;696:10:0;;;;;;;;;;;;-1:-1:-1;;;696:10:0;;;;;392:723::o;665:53::-;743:5;728:12;784:78;791:9;;784:78;;817:8;;;;:::i;:::-;;-1:-1:-1;840:10:0;;-1:-1:-1;848:2:0;840:10;;:::i;:::-;;;784:78;;;872:19;904:6;894:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;894:17:0;;872:39;;922:154;929:10;;922:154;;956:11;966:1;956:11;;:::i;:::-;;-1:-1:-1;1025:10:0;1033:2;1025:5;:10;:::i;:::-;1012:24;;:2;:24;:::i;:::-;999:39;;982:6;989;982:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;982:56:0;;;;;;;;-1:-1:-1;1053:11:0;1062:2;1053:11;;:::i;:::-;;;922:154;;34280:163;34403:32;34409:2;34413:8;34423:5;34430:4;34841:20;34864:13;-1:-1:-1;;;;;34892:16:0;;34888:48;;34917:19;;-1:-1:-1;;;34917:19:0;;;;;;;;;;;34888:48;34951:8;34963:1;34951:13;34947:44;;34973:18;;-1:-1:-1;;;34973:18:0;;;;;;;;;;;34947:44;-1:-1:-1;;;;;35342:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35401:49:0;;35342:44;;;;;;;;35401:49;;;-1:-1:-1;;;;;35342:44:0;;;;;;35401:49;;;;;;;;;;;;;;;;35467:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35517:66:0;;;;-1:-1:-1;;;35567:15:0;35517:66;;;;;;;;;;35467:25;35664:23;;;35708:4;:23;;;;-1:-1:-1;;;;;;35716:13:0;;7102:19;:23;;35716:15;35704:641;;;35752:314;35783:38;;35808:12;;-1:-1:-1;;;;;35783:38:0;;;35800:1;;35783:38;;35800:1;;35783:38;35849:69;35888:1;35892:2;35896:14;;;;;;35912:5;35849:30;:69::i;:::-;35844:174;;35954:40;;-1:-1:-1;;;35954:40:0;;;;;;;;;;;35844:174;36061:3;36045:12;:19;35752:314;;36147:12;36130:13;;:29;36126:43;;36161:8;;;36126:43;35704:641;;;36210:120;36241:40;;36266:14;;;;;-1:-1:-1;;;;;36241:40:0;;;36258:1;;36241:40;;36258:1;;36241:40;36325:3;36309:12;:19;36210:120;;35704:641;-1:-1:-1;36359:13:0;:28;36409:60;33007:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:127::-;2771:10;2766:3;2762:20;2759:1;2752:31;2802:4;2799:1;2792:15;2826:4;2823:1;2816:15;2842:632;2907:5;2937:18;2978:2;2970:6;2967:14;2964:40;;;2984:18;;:::i;:::-;3059:2;3053:9;3027:2;3113:15;;-1:-1:-1;;3109:24:1;;;3135:2;3105:33;3101:42;3089:55;;;3159:18;;;3179:22;;;3156:46;3153:72;;;3205:18;;:::i;:::-;3245:10;3241:2;3234:22;3274:6;3265:15;;3304:6;3296;3289:22;3344:3;3335:6;3330:3;3326:16;3323:25;3320:45;;;3361:1;3358;3351:12;3320:45;3411:6;3406:3;3399:4;3391:6;3387:17;3374:44;3466:1;3459:4;3450:6;3442;3438:19;3434:30;3427:41;;;;2842:632;;;;;:::o;3479:451::-;3548:6;3601:2;3589:9;3580:7;3576:23;3572:32;3569:52;;;3617:1;3614;3607:12;3569:52;3657:9;3644:23;3690:18;3682:6;3679:30;3676:50;;;3722:1;3719;3712:12;3676:50;3745:22;;3798:4;3790:13;;3786:27;-1:-1:-1;3776:55:1;;3827:1;3824;3817:12;3776:55;3850:74;3916:7;3911:2;3898:16;3893:2;3889;3885:11;3850:74;:::i;3935:186::-;3994:6;4047:2;4035:9;4026:7;4022:23;4018:32;4015:52;;;4063:1;4060;4053:12;4015:52;4086:29;4105:9;4086:29;:::i;4126:347::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4291:29;4310:9;4291:29;:::i;:::-;4281:39;;4370:2;4359:9;4355:18;4342:32;4417:5;4410:13;4403:21;4396:5;4393:32;4383:60;;4439:1;4436;4429:12;4383:60;4462:5;4452:15;;;4126:347;;;;;:::o;4478:667::-;4573:6;4581;4589;4597;4650:3;4638:9;4629:7;4625:23;4621:33;4618:53;;;4667:1;4664;4657:12;4618:53;4690:29;4709:9;4690:29;:::i;:::-;4680:39;;4738:38;4772:2;4761:9;4757:18;4738:38;:::i;:::-;4728:48;;4823:2;4812:9;4808:18;4795:32;4785:42;;4878:2;4867:9;4863:18;4850:32;4905:18;4897:6;4894:30;4891:50;;;4937:1;4934;4927:12;4891:50;4960:22;;5013:4;5005:13;;5001:27;-1:-1:-1;4991:55:1;;5042:1;5039;5032:12;4991:55;5065:74;5131:7;5126:2;5113:16;5108:2;5104;5100:11;5065:74;:::i;:::-;5055:84;;;4478:667;;;;;;;:::o;5150:260::-;5218:6;5226;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5318:29;5337:9;5318:29;:::i;:::-;5308:39;;5366:38;5400:2;5389:9;5385:18;5366:38;:::i;:::-;5356:48;;5150:260;;;;;:::o;5415:380::-;5494:1;5490:12;;;;5537;;;5558:61;;5612:4;5604:6;5600:17;5590:27;;5558:61;5665:2;5657:6;5654:14;5634:18;5631:38;5628:161;;5711:10;5706:3;5702:20;5699:1;5692:31;5746:4;5743:1;5736:15;5774:4;5771:1;5764:15;5628:161;;5415:380;;;:::o;5800:356::-;6002:2;5984:21;;;6021:18;;;6014:30;6080:34;6075:2;6060:18;;6053:62;6147:2;6132:18;;5800:356::o;6716:127::-;6777:10;6772:3;6768:20;6765:1;6758:31;6808:4;6805:1;6798:15;6832:4;6829:1;6822:15;6848:128;6888:3;6919:1;6915:6;6912:1;6909:13;6906:39;;;6925:18;;:::i;:::-;-1:-1:-1;6961:9:1;;6848:128::o;6981:168::-;7021:7;7087:1;7083;7079:6;7075:14;7072:1;7069:21;7064:1;7057:9;7050:17;7046:45;7043:71;;;7094:18;;:::i;:::-;-1:-1:-1;7134:9:1;;6981:168::o;9488:185::-;9530:3;9568:5;9562:12;9583:52;9628:6;9623:3;9616:4;9609:5;9605:16;9583:52;:::i;:::-;9651:16;;;;;9488:185;-1:-1:-1;;9488:185:1:o;9796:1301::-;10073:3;10102:1;10135:6;10129:13;10165:3;10187:1;10215:9;10211:2;10207:18;10197:28;;10275:2;10264:9;10260:18;10297;10287:61;;10341:4;10333:6;10329:17;10319:27;;10287:61;10367:2;10415;10407:6;10404:14;10384:18;10381:38;10378:165;;-1:-1:-1;;;10442:33:1;;10498:4;10495:1;10488:15;10528:4;10449:3;10516:17;10378:165;10559:18;10586:104;;;;10704:1;10699:320;;;;10552:467;;10586:104;-1:-1:-1;;10619:24:1;;10607:37;;10664:16;;;;-1:-1:-1;10586:104:1;;10699:320;9435:1;9428:14;;;9472:4;9459:18;;10794:1;10808:165;10822:6;10819:1;10816:13;10808:165;;;10900:14;;10887:11;;;10880:35;10943:16;;;;10837:10;;10808:165;;;10812:3;;11002:6;10997:3;10993:16;10986:23;;10552:467;;;;;;;11035:56;11060:30;11086:3;11078:6;11060:30;:::i;:::-;-1:-1:-1;;;9738:20:1;;9783:1;9774:11;;9678:113;11035:56;11028:63;9796:1301;-1:-1:-1;;;;;9796:1301:1:o;11509:500::-;-1:-1:-1;;;;;11778:15:1;;;11760:34;;11830:15;;11825:2;11810:18;;11803:43;11877:2;11862:18;;11855:34;;;11925:3;11920:2;11905:18;;11898:31;;;11703:4;;11946:57;;11983:19;;11975:6;11946:57;:::i;:::-;11938:65;11509:500;-1:-1:-1;;;;;;11509:500:1:o;12014:249::-;12083:6;12136:2;12124:9;12115:7;12111:23;12107:32;12104:52;;;12152:1;12149;12142:12;12104:52;12184:9;12178:16;12203:30;12227:5;12203:30;:::i;12268:135::-;12307:3;12328:17;;;12325:43;;12348:18;;:::i;:::-;-1:-1:-1;12395:1:1;12384:13;;12268:135::o;12408:127::-;12469:10;12464:3;12460:20;12457:1;12450:31;12500:4;12497:1;12490:15;12524:4;12521:1;12514:15;12540:120;12580:1;12606;12596:35;;12611:18;;:::i;:::-;-1:-1:-1;12645:9:1;;12540:120::o;12665:125::-;12705:4;12733:1;12730;12727:8;12724:34;;;12738:18;;:::i;:::-;-1:-1:-1;12775:9:1;;12665:125::o;12795:112::-;12827:1;12853;12843:35;;12858:18;;:::i;:::-;-1:-1:-1;12892:9:1;;12795:112::o;12912:127::-;12973:10;12968:3;12964:20;12961:1;12954:31;13004:4;13001:1;12994:15;13028:4;13025:1;13018:15

Swarm Source

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