ETH Price: $3,393.17 (+6.31%)
Gas: 22 Gwei

Token

Imaginary Flowers (Imaginary Flowers)
 

Overview

Max Total Supply

535 Imaginary Flowers

Holders

45

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 Imaginary Flowers
0x7406e7ffdde8937f0348b7af24fb853e649d3d77
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:
ImaginaryFlowers

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// 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 v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * 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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See 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: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: Ownable.sol



pragma solidity >=0.7.0 <0.9.0;



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

  string baseURI;
  string notRevURI;
  string public baseExtension = ".json";
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 2500;
  uint256 public maxMintAmount = 20;
  uint256 public freeAmount = 333;

  bool public paused = false;
  bool public revealed = false;
  mapping(address => uint256) nftPerWallet;

  constructor(
    string memory _initBaseURI,
    string memory _initNotRevURI
  ) ERC721A("Imaginary Flowers", "Imaginary Flowers") {
    setBaseURI(_initBaseURI);
    notRevURI = _initNotRevURI;
  }

  modifier checks(uint256 _mintAmount) {
    require(!paused);
    require(_mintAmount > 0);
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(nftPerWallet[msg.sender] < 20, "You can't posses more than 20");

    if(totalSupply() >= freeAmount){
        if(msg.sender != owner()) require(msg.value >= cost * _mintAmount, "Insufficient funds!");
        nftPerWallet[msg.sender]++;
    }
    else require(totalSupply() + _mintAmount <= freeAmount, "Free NFTs amount exceeded");
    require(_mintAmount <= maxMintAmount, "Max mint amount exceeded");
    _;
  }

  function mint(uint256 _mintAmount) public payable checks(_mintAmount) {
      _safeMint(msg.sender, _mintAmount);
  }

  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"
    );

    if(!revealed){
      return notRevURI;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function reveal() public onlyOwner {
    revealed = true;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause() public onlyOwner {
    paused = !paused;
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"maxMintAmount","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":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600b9190620001e1565b506000600c556109c4600d556014600e5561014d600f556010805461ffff191690553480156200005757600080fd5b5060405162002244380380620022448339810160408190526200007a916200033e565b604080518082018252601180825270496d6167696e61727920466c6f7765727360781b602080840182815285518087019096529285528401528151919291620000c691600291620001e1565b508051620000dc906003906020840190620001e1565b50506000805550620000ee3362000117565b620000f98262000169565b80516200010e90600a906020840190620001e1565b505050620003fb565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001c85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001dd906009906020840190620001e1565b5050565b828054620001ef90620003a8565b90600052602060002090601f0160209004810192826200021357600085556200025e565b82601f106200022e57805160ff19168380011785556200025e565b828001600101855582156200025e579182015b828111156200025e57825182559160200191906001019062000241565b506200026c92915062000270565b5090565b5b808211156200026c576000815560010162000271565b600082601f8301126200029957600080fd5b81516001600160401b0380821115620002b657620002b6620003e5565b604051601f8301601f19908116603f01168101908282118183101715620002e157620002e1620003e5565b81604052838152602092508683858801011115620002fe57600080fd5b600091505b8382101562000322578582018301518183018401529082019062000303565b83821115620003345760008385830101525b9695505050505050565b600080604083850312156200035257600080fd5b82516001600160401b03808211156200036a57600080fd5b620003788683870162000287565b935060208501519150808211156200038f57600080fd5b506200039e8582860162000287565b9150509250929050565b600181811c90821680620003bd57607f821691505b60208210811415620003df57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611e39806200040b6000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a475b5dd11610095578063d5abeb0111610064578063d5abeb011461051d578063da3ef23f14610533578063e985e9c514610553578063f2fde38b1461059c57600080fd5b8063a475b5dd146104b3578063b88d4fde146104c8578063c6682862146104e8578063c87b56dd146104fd57600080fd5b80638da5cb5b116100d15780638da5cb5b1461044d57806395d89b411461046b578063a0712d6814610480578063a22cb4651461049357600080fd5b806370a08231146103e3578063715018a6146104035780637f00c7a6146104185780638456cb591461043857600080fd5b806323b872dd1161017a5780635183022711610149578063518302271461036a57806355f804b3146103895780635c975abb146103a95780636352211e146103c357600080fd5b806323b872dd146103025780633ccfd60b1461032257806342842e0e1461032a57806344a0d68a1461034a57600080fd5b8063095ea7b3116101b6578063095ea7b31461029b57806313faede6146102bd57806318160ddd146102d3578063239c70ae146102ec57600080fd5b806301ffc9a7146101e85780630451a9f11461021d57806306fdde0314610241578063081812fc14610263575b600080fd5b3480156101f457600080fd5b50610208610203366004611a8c565b6105bc565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610233600f5481565b604051908152602001610214565b34801561024d57600080fd5b5061025661060e565b6040516102149190611c55565b34801561026f57600080fd5b5061028361027e366004611b0f565b6106a0565b6040516001600160a01b039091168152602001610214565b3480156102a757600080fd5b506102bb6102b6366004611a62565b6106e4565b005b3480156102c957600080fd5b50610233600c5481565b3480156102df57600080fd5b5060015460005403610233565b3480156102f857600080fd5b50610233600e5481565b34801561030e57600080fd5b506102bb61031d36600461196e565b610772565b6102bb61077d565b34801561033657600080fd5b506102bb61034536600461196e565b610824565b34801561035657600080fd5b506102bb610365366004611b0f565b61083f565b34801561037657600080fd5b5060105461020890610100900460ff1681565b34801561039557600080fd5b506102bb6103a4366004611ac6565b61086e565b3480156103b557600080fd5b506010546102089060ff1681565b3480156103cf57600080fd5b506102836103de366004611b0f565b6108af565b3480156103ef57600080fd5b506102336103fe366004611920565b6108c1565b34801561040f57600080fd5b506102bb610910565b34801561042457600080fd5b506102bb610433366004611b0f565b610946565b34801561044457600080fd5b506102bb610975565b34801561045957600080fd5b506008546001600160a01b0316610283565b34801561047757600080fd5b506102566109b3565b6102bb61048e366004611b0f565b6109c2565b34801561049f57600080fd5b506102bb6104ae366004611a26565b610bfe565b3480156104bf57600080fd5b506102bb610c94565b3480156104d457600080fd5b506102bb6104e33660046119aa565b610ccf565b3480156104f457600080fd5b50610256610d20565b34801561050957600080fd5b50610256610518366004611b0f565b610dae565b34801561052957600080fd5b50610233600d5481565b34801561053f57600080fd5b506102bb61054e366004611ac6565b610f1d565b34801561055f57600080fd5b5061020861056e36600461193b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a857600080fd5b506102bb6105b7366004611920565b610f5a565b60006001600160e01b031982166380ac58cd60e01b14806105ed57506001600160e01b03198216635b5e139f60e01b145b8061060857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461061d90611d2b565b80601f016020809104026020016040519081016040528092919081815260200182805461064990611d2b565b80156106965780601f1061066b57610100808354040283529160200191610696565b820191906000526020600020905b81548152906001019060200180831161067957829003601f168201915b5050505050905090565b60006106ab82610ff2565b6106c8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ef826108af565b9050806001600160a01b0316836001600160a01b031614156107245760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107445750610742813361056e565b155b15610762576040516367d9dca160e11b815260040160405180910390fd5b61076d83838361101d565b505050565b61076d838383611079565b6008546001600160a01b031633146107b05760405162461bcd60e51b81526004016107a790611c68565b60405180910390fd5b60006107c46008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461080e576040519150601f19603f3d011682016040523d82523d6000602084013e610813565b606091505b505090508061082157600080fd5b50565b61076d83838360405180602001604052806000815250610ccf565b6008546001600160a01b031633146108695760405162461bcd60e51b81526004016107a790611c68565b600c55565b6008546001600160a01b031633146108985760405162461bcd60e51b81526004016107a790611c68565b80516108ab9060099060208401906117f5565b5050565b60006108ba8261128f565b5192915050565b60006001600160a01b0382166108ea576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461093a5760405162461bcd60e51b81526004016107a790611c68565b61094460006113ab565b565b6008546001600160a01b031633146109705760405162461bcd60e51b81526004016107a790611c68565b600e55565b6008546001600160a01b0316331461099f5760405162461bcd60e51b81526004016107a790611c68565b6010805460ff19811660ff90911615179055565b60606003805461061d90611d2b565b601054819060ff16156109d457600080fd5b600081116109e157600080fd5b600d54816109f26001546000540390565b6109fc9190611c9d565b1115610a415760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016107a7565b33600090815260116020526040902054601411610aa05760405162461bcd60e51b815260206004820152601d60248201527f596f752063616e277420706f73736573206d6f7265207468616e20323000000060448201526064016107a7565b600f546001546000540310610b39576008546001600160a01b03163314610b145780600c54610acf9190611cc9565b341015610b145760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016107a7565b336000908152601160205260408120805491610b2f83611d66565b9190505550610ba2565b600f5481610b4a6001546000540390565b610b549190611c9d565b1115610ba25760405162461bcd60e51b815260206004820152601960248201527f46726565204e46547320616d6f756e742065786365656465640000000000000060448201526064016107a7565b600e54811115610bf45760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e74206578636565646564000000000000000060448201526064016107a7565b6108ab33836113fd565b6001600160a01b038216331415610c285760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610cbe5760405162461bcd60e51b81526004016107a790611c68565b6010805461ff001916610100179055565b610cda848484611079565b6001600160a01b0383163b15158015610cfc5750610cfa84848484611417565b155b15610d1a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b8054610d2d90611d2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5990611d2b565b8015610da65780601f10610d7b57610100808354040283529160200191610da6565b820191906000526020600020905b815481529060010190602001808311610d8957829003601f168201915b505050505081565b6060610db982610ff2565b610e1d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107a7565b601054610100900460ff16610ebe57600a8054610e3990611d2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6590611d2b565b8015610eb25780601f10610e8757610100808354040283529160200191610eb2565b820191906000526020600020905b815481529060010190602001808311610e9557829003601f168201915b50505050509050919050565b6000610ec861150f565b90506000815111610ee85760405180602001604052806000815250610f16565b80610ef28461151e565b600b604051602001610f0693929190611b54565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610f475760405162461bcd60e51b81526004016107a790611c68565b80516108ab90600b9060208401906117f5565b6008546001600160a01b03163314610f845760405162461bcd60e51b81526004016107a790611c68565b6001600160a01b038116610fe95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a7565b610821816113ab565b6000805482108015610608575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110848261128f565b80519091506000906001600160a01b0316336001600160a01b031614806110b2575081516110b2903361056e565b806110cd5750336110c2846106a0565b6001600160a01b0316145b9050806110ed57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146111225760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661114957604051633a954ecd60e21b815260040160405180910390fd5b611159600084846000015161101d565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661124557600054811015611245578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561139257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113905780516001600160a01b031615611326579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561138b579392505050565b611326565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108ab82826040518060200160405280600081525061161c565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061144c903390899088908890600401611c18565b602060405180830381600087803b15801561146657600080fd5b505af1925050508015611496575060408051601f3d908101601f1916820190925261149391810190611aa9565b60015b6114f1573d8080156114c4576040519150601f19603f3d011682016040523d82523d6000602084013e6114c9565b606091505b5080516114e9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461061d90611d2b565b6060816115425750506040805180820190915260018152600360fc1b602082015290565b8160005b811561156c578061155681611d66565b91506115659050600a83611cb5565b9150611546565b60008167ffffffffffffffff81111561158757611587611dd7565b6040519080825280601f01601f1916602001820160405280156115b1576020820181803683370190505b5090505b8415611507576115c6600183611ce8565b91506115d3600a86611d81565b6115de906030611c9d565b60f81b8183815181106115f3576115f3611dc1565b60200101906001600160f81b031916908160001a905350611615600a86611cb5565b94506115b5565b61076d83838360016000546001600160a01b03851661164d57604051622e076360e81b815260040160405180910390fd5b8361166b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561171d57506001600160a01b0387163b15155b156117a6575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461176e6000888480600101955088611417565b61178b576040516368d2bf6b60e11b815260040160405180910390fd5b808214156117235782600054146117a157600080fd5b6117ec565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156117a7575b50600055611288565b82805461180190611d2b565b90600052602060002090601f0160209004810192826118235760008555611869565b82601f1061183c57805160ff1916838001178555611869565b82800160010185558215611869579182015b8281111561186957825182559160200191906001019061184e565b50611875929150611879565b5090565b5b80821115611875576000815560010161187a565b600067ffffffffffffffff808411156118a9576118a9611dd7565b604051601f8501601f19908116603f011681019082821181831017156118d1576118d1611dd7565b816040528093508581528686860111156118ea57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461191b57600080fd5b919050565b60006020828403121561193257600080fd5b610f1682611904565b6000806040838503121561194e57600080fd5b61195783611904565b915061196560208401611904565b90509250929050565b60008060006060848603121561198357600080fd5b61198c84611904565b925061199a60208501611904565b9150604084013590509250925092565b600080600080608085870312156119c057600080fd5b6119c985611904565b93506119d760208601611904565b925060408501359150606085013567ffffffffffffffff8111156119fa57600080fd5b8501601f81018713611a0b57600080fd5b611a1a8782356020840161188e565b91505092959194509250565b60008060408385031215611a3957600080fd5b611a4283611904565b915060208301358015158114611a5757600080fd5b809150509250929050565b60008060408385031215611a7557600080fd5b611a7e83611904565b946020939093013593505050565b600060208284031215611a9e57600080fd5b8135610f1681611ded565b600060208284031215611abb57600080fd5b8151610f1681611ded565b600060208284031215611ad857600080fd5b813567ffffffffffffffff811115611aef57600080fd5b8201601f81018413611b0057600080fd5b6115078482356020840161188e565b600060208284031215611b2157600080fd5b5035919050565b60008151808452611b40816020860160208601611cff565b601f01601f19169290920160200192915050565b600084516020611b678285838a01611cff565b855191840191611b7a8184848a01611cff565b8554920191600090600181811c9080831680611b9757607f831692505b858310811415611bb557634e487b7160e01b85526022600452602485fd5b808015611bc95760018114611bda57611c07565b60ff19851688528388019550611c07565b60008b81526020902060005b85811015611bff5781548a820152908401908801611be6565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c4b90830184611b28565b9695505050505050565b602081526000610f166020830184611b28565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611cb057611cb0611d95565b500190565b600082611cc457611cc4611dab565b500490565b6000816000190483118215151615611ce357611ce3611d95565b500290565b600082821015611cfa57611cfa611d95565b500390565b60005b83811015611d1a578181015183820152602001611d02565b83811115610d1a5750506000910152565b600181811c90821680611d3f57607f821691505b60208210811415611d6057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d7a57611d7a611d95565b5060010190565b600082611d9057611d90611dab565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461082157600080fdfea26469706673582212200cb211d90d34f2cb7cc1eb295e1304bc41f2d4eef7fa8e5994f815437973ab0e64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5057526456524d553363737976426b4b56366e735a5571344d6e6f476e396b6b686579414d556a31635045372f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d657a72524145717263655070646772483939485a373645644a6f5256355543387733385245736663646d65502f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063a475b5dd11610095578063d5abeb0111610064578063d5abeb011461051d578063da3ef23f14610533578063e985e9c514610553578063f2fde38b1461059c57600080fd5b8063a475b5dd146104b3578063b88d4fde146104c8578063c6682862146104e8578063c87b56dd146104fd57600080fd5b80638da5cb5b116100d15780638da5cb5b1461044d57806395d89b411461046b578063a0712d6814610480578063a22cb4651461049357600080fd5b806370a08231146103e3578063715018a6146104035780637f00c7a6146104185780638456cb591461043857600080fd5b806323b872dd1161017a5780635183022711610149578063518302271461036a57806355f804b3146103895780635c975abb146103a95780636352211e146103c357600080fd5b806323b872dd146103025780633ccfd60b1461032257806342842e0e1461032a57806344a0d68a1461034a57600080fd5b8063095ea7b3116101b6578063095ea7b31461029b57806313faede6146102bd57806318160ddd146102d3578063239c70ae146102ec57600080fd5b806301ffc9a7146101e85780630451a9f11461021d57806306fdde0314610241578063081812fc14610263575b600080fd5b3480156101f457600080fd5b50610208610203366004611a8c565b6105bc565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610233600f5481565b604051908152602001610214565b34801561024d57600080fd5b5061025661060e565b6040516102149190611c55565b34801561026f57600080fd5b5061028361027e366004611b0f565b6106a0565b6040516001600160a01b039091168152602001610214565b3480156102a757600080fd5b506102bb6102b6366004611a62565b6106e4565b005b3480156102c957600080fd5b50610233600c5481565b3480156102df57600080fd5b5060015460005403610233565b3480156102f857600080fd5b50610233600e5481565b34801561030e57600080fd5b506102bb61031d36600461196e565b610772565b6102bb61077d565b34801561033657600080fd5b506102bb61034536600461196e565b610824565b34801561035657600080fd5b506102bb610365366004611b0f565b61083f565b34801561037657600080fd5b5060105461020890610100900460ff1681565b34801561039557600080fd5b506102bb6103a4366004611ac6565b61086e565b3480156103b557600080fd5b506010546102089060ff1681565b3480156103cf57600080fd5b506102836103de366004611b0f565b6108af565b3480156103ef57600080fd5b506102336103fe366004611920565b6108c1565b34801561040f57600080fd5b506102bb610910565b34801561042457600080fd5b506102bb610433366004611b0f565b610946565b34801561044457600080fd5b506102bb610975565b34801561045957600080fd5b506008546001600160a01b0316610283565b34801561047757600080fd5b506102566109b3565b6102bb61048e366004611b0f565b6109c2565b34801561049f57600080fd5b506102bb6104ae366004611a26565b610bfe565b3480156104bf57600080fd5b506102bb610c94565b3480156104d457600080fd5b506102bb6104e33660046119aa565b610ccf565b3480156104f457600080fd5b50610256610d20565b34801561050957600080fd5b50610256610518366004611b0f565b610dae565b34801561052957600080fd5b50610233600d5481565b34801561053f57600080fd5b506102bb61054e366004611ac6565b610f1d565b34801561055f57600080fd5b5061020861056e36600461193b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a857600080fd5b506102bb6105b7366004611920565b610f5a565b60006001600160e01b031982166380ac58cd60e01b14806105ed57506001600160e01b03198216635b5e139f60e01b145b8061060857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461061d90611d2b565b80601f016020809104026020016040519081016040528092919081815260200182805461064990611d2b565b80156106965780601f1061066b57610100808354040283529160200191610696565b820191906000526020600020905b81548152906001019060200180831161067957829003601f168201915b5050505050905090565b60006106ab82610ff2565b6106c8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ef826108af565b9050806001600160a01b0316836001600160a01b031614156107245760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107445750610742813361056e565b155b15610762576040516367d9dca160e11b815260040160405180910390fd5b61076d83838361101d565b505050565b61076d838383611079565b6008546001600160a01b031633146107b05760405162461bcd60e51b81526004016107a790611c68565b60405180910390fd5b60006107c46008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461080e576040519150601f19603f3d011682016040523d82523d6000602084013e610813565b606091505b505090508061082157600080fd5b50565b61076d83838360405180602001604052806000815250610ccf565b6008546001600160a01b031633146108695760405162461bcd60e51b81526004016107a790611c68565b600c55565b6008546001600160a01b031633146108985760405162461bcd60e51b81526004016107a790611c68565b80516108ab9060099060208401906117f5565b5050565b60006108ba8261128f565b5192915050565b60006001600160a01b0382166108ea576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461093a5760405162461bcd60e51b81526004016107a790611c68565b61094460006113ab565b565b6008546001600160a01b031633146109705760405162461bcd60e51b81526004016107a790611c68565b600e55565b6008546001600160a01b0316331461099f5760405162461bcd60e51b81526004016107a790611c68565b6010805460ff19811660ff90911615179055565b60606003805461061d90611d2b565b601054819060ff16156109d457600080fd5b600081116109e157600080fd5b600d54816109f26001546000540390565b6109fc9190611c9d565b1115610a415760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016107a7565b33600090815260116020526040902054601411610aa05760405162461bcd60e51b815260206004820152601d60248201527f596f752063616e277420706f73736573206d6f7265207468616e20323000000060448201526064016107a7565b600f546001546000540310610b39576008546001600160a01b03163314610b145780600c54610acf9190611cc9565b341015610b145760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016107a7565b336000908152601160205260408120805491610b2f83611d66565b9190505550610ba2565b600f5481610b4a6001546000540390565b610b549190611c9d565b1115610ba25760405162461bcd60e51b815260206004820152601960248201527f46726565204e46547320616d6f756e742065786365656465640000000000000060448201526064016107a7565b600e54811115610bf45760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e74206578636565646564000000000000000060448201526064016107a7565b6108ab33836113fd565b6001600160a01b038216331415610c285760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610cbe5760405162461bcd60e51b81526004016107a790611c68565b6010805461ff001916610100179055565b610cda848484611079565b6001600160a01b0383163b15158015610cfc5750610cfa84848484611417565b155b15610d1a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b8054610d2d90611d2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5990611d2b565b8015610da65780601f10610d7b57610100808354040283529160200191610da6565b820191906000526020600020905b815481529060010190602001808311610d8957829003601f168201915b505050505081565b6060610db982610ff2565b610e1d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107a7565b601054610100900460ff16610ebe57600a8054610e3990611d2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6590611d2b565b8015610eb25780601f10610e8757610100808354040283529160200191610eb2565b820191906000526020600020905b815481529060010190602001808311610e9557829003601f168201915b50505050509050919050565b6000610ec861150f565b90506000815111610ee85760405180602001604052806000815250610f16565b80610ef28461151e565b600b604051602001610f0693929190611b54565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610f475760405162461bcd60e51b81526004016107a790611c68565b80516108ab90600b9060208401906117f5565b6008546001600160a01b03163314610f845760405162461bcd60e51b81526004016107a790611c68565b6001600160a01b038116610fe95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a7565b610821816113ab565b6000805482108015610608575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110848261128f565b80519091506000906001600160a01b0316336001600160a01b031614806110b2575081516110b2903361056e565b806110cd5750336110c2846106a0565b6001600160a01b0316145b9050806110ed57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146111225760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661114957604051633a954ecd60e21b815260040160405180910390fd5b611159600084846000015161101d565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661124557600054811015611245578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561139257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113905780516001600160a01b031615611326579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561138b579392505050565b611326565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108ab82826040518060200160405280600081525061161c565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061144c903390899088908890600401611c18565b602060405180830381600087803b15801561146657600080fd5b505af1925050508015611496575060408051601f3d908101601f1916820190925261149391810190611aa9565b60015b6114f1573d8080156114c4576040519150601f19603f3d011682016040523d82523d6000602084013e6114c9565b606091505b5080516114e9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461061d90611d2b565b6060816115425750506040805180820190915260018152600360fc1b602082015290565b8160005b811561156c578061155681611d66565b91506115659050600a83611cb5565b9150611546565b60008167ffffffffffffffff81111561158757611587611dd7565b6040519080825280601f01601f1916602001820160405280156115b1576020820181803683370190505b5090505b8415611507576115c6600183611ce8565b91506115d3600a86611d81565b6115de906030611c9d565b60f81b8183815181106115f3576115f3611dc1565b60200101906001600160f81b031916908160001a905350611615600a86611cb5565b94506115b5565b61076d83838360016000546001600160a01b03851661164d57604051622e076360e81b815260040160405180910390fd5b8361166b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561171d57506001600160a01b0387163b15155b156117a6575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461176e6000888480600101955088611417565b61178b576040516368d2bf6b60e11b815260040160405180910390fd5b808214156117235782600054146117a157600080fd5b6117ec565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156117a7575b50600055611288565b82805461180190611d2b565b90600052602060002090601f0160209004810192826118235760008555611869565b82601f1061183c57805160ff1916838001178555611869565b82800160010185558215611869579182015b8281111561186957825182559160200191906001019061184e565b50611875929150611879565b5090565b5b80821115611875576000815560010161187a565b600067ffffffffffffffff808411156118a9576118a9611dd7565b604051601f8501601f19908116603f011681019082821181831017156118d1576118d1611dd7565b816040528093508581528686860111156118ea57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461191b57600080fd5b919050565b60006020828403121561193257600080fd5b610f1682611904565b6000806040838503121561194e57600080fd5b61195783611904565b915061196560208401611904565b90509250929050565b60008060006060848603121561198357600080fd5b61198c84611904565b925061199a60208501611904565b9150604084013590509250925092565b600080600080608085870312156119c057600080fd5b6119c985611904565b93506119d760208601611904565b925060408501359150606085013567ffffffffffffffff8111156119fa57600080fd5b8501601f81018713611a0b57600080fd5b611a1a8782356020840161188e565b91505092959194509250565b60008060408385031215611a3957600080fd5b611a4283611904565b915060208301358015158114611a5757600080fd5b809150509250929050565b60008060408385031215611a7557600080fd5b611a7e83611904565b946020939093013593505050565b600060208284031215611a9e57600080fd5b8135610f1681611ded565b600060208284031215611abb57600080fd5b8151610f1681611ded565b600060208284031215611ad857600080fd5b813567ffffffffffffffff811115611aef57600080fd5b8201601f81018413611b0057600080fd5b6115078482356020840161188e565b600060208284031215611b2157600080fd5b5035919050565b60008151808452611b40816020860160208601611cff565b601f01601f19169290920160200192915050565b600084516020611b678285838a01611cff565b855191840191611b7a8184848a01611cff565b8554920191600090600181811c9080831680611b9757607f831692505b858310811415611bb557634e487b7160e01b85526022600452602485fd5b808015611bc95760018114611bda57611c07565b60ff19851688528388019550611c07565b60008b81526020902060005b85811015611bff5781548a820152908401908801611be6565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c4b90830184611b28565b9695505050505050565b602081526000610f166020830184611b28565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611cb057611cb0611d95565b500190565b600082611cc457611cc4611dab565b500490565b6000816000190483118215151615611ce357611ce3611d95565b500290565b600082821015611cfa57611cfa611d95565b500390565b60005b83811015611d1a578181015183820152602001611d02565b83811115610d1a5750506000910152565b600181811c90821680611d3f57607f821691505b60208210811415611d6057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d7a57611d7a611d95565b5060010190565b600082611d9057611d90611dab565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461082157600080fdfea26469706673582212200cb211d90d34f2cb7cc1eb295e1304bc41f2d4eef7fa8e5994f815437973ab0e64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5057526456524d553363737976426b4b56366e735a5571344d6e6f476e396b6b686579414d556a31635045372f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d657a72524145717263655070646772483939485a373645644a6f5256355543387733385245736663646d65502f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmPWRdVRMU3csyvBkKV6nsZUq4MnoGn9kkheyAMUj1cPE7/
Arg [1] : _initNotRevURI (string): ipfs://QmezrRAEqrcePpdgrH99HZ76EdJoRV5UC8w38REsfcdmeP/hidden.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5057526456524d553363737976426b4b56366e735a5571
Arg [4] : 344d6e6f476e396b6b686579414d556a31635045372f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [6] : 697066733a2f2f516d657a72524145717263655070646772483939485a373645
Arg [7] : 644a6f5256355543387733385245736663646d65502f68696464656e2e6a736f
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45946:2692:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28416:305;;;;;;;;;;-1:-1:-1;28416:305:0;;;;;:::i;:::-;;:::i;:::-;;;6913:14:1;;6906:22;6888:41;;6876:2;6861:18;28416:305:0;;;;;;;;46219:31;;;;;;;;;;;;;;;;;;;10256:25:1;;;10244:2;10229:18;46219:31:0;10110:177:1;31801:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33304:204::-;;;;;;;;;;-1:-1:-1;33304:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6211:32:1;;;6193:51;;6181:2;6166:18;33304:204:0;6047:203:1;32867:371:0;;;;;;;;;;-1:-1:-1;32867:371:0;;;;;:::i;:::-;;:::i;:::-;;46111:29;;;;;;;;;;;;;;;;27665:303;;;;;;;;;;-1:-1:-1;27919:12:0;;27709:7;27903:13;:28;27665:303;;46181:33;;;;;;;;;;;;;;;;34161:170;;;;;;;;;;-1:-1:-1;34161:170:0;;;;;:::i;:::-;;:::i;48490:145::-;;;:::i;34402:185::-;;;;;;;;;;-1:-1:-1;34402:185:0;;;;;:::i;:::-;;:::i;47911:80::-;;;;;;;;;;-1:-1:-1;47911:80:0;;;;;:::i;:::-;;:::i;46288:28::-;;;;;;;;;;-1:-1:-1;46288:28:0;;;;;;;;;;;48188:98;;;;;;;;;;-1:-1:-1;48188:98:0;;;;;:::i;:::-;;:::i;46257:26::-;;;;;;;;;;-1:-1:-1;46257:26:0;;;;;;;;31610:124;;;;;;;;;;-1:-1:-1;31610:124:0;;;;;:::i;:::-;;:::i;28785:206::-;;;;;;;;;;-1:-1:-1;28785:206:0;;;;;:::i;:::-;;:::i;4834:103::-;;;;;;;;;;;;;:::i;48066:116::-;;;;;;;;;;-1:-1:-1;48066:116:0;;;;;:::i;:::-;;:::i;48420:63::-;;;;;;;;;;;;;:::i;4183:87::-;;;;;;;;;;-1:-1:-1;4256:6:0;;-1:-1:-1;;;;;4256:6:0;4183:87;;31970:104;;;;;;;;;;;;;:::i;47195:119::-;;;;;;:::i;:::-;;:::i;33580:279::-;;;;;;;;;;-1:-1:-1;33580:279:0;;;;;:::i;:::-;;:::i;47997:63::-;;;;;;;;;;;;;:::i;34658:369::-;;;;;;;;;;-1:-1:-1;34658:369:0;;;;;:::i;:::-;;:::i;46069:37::-;;;;;;;;;;;;;:::i;47428:477::-;;;;;;;;;;-1:-1:-1;47428:477:0;;;;;:::i;:::-;;:::i;46145:31::-;;;;;;;;;;;;;;;;48292:122;;;;;;;;;;-1:-1:-1;48292:122:0;;;;;:::i;:::-;;:::i;33930:164::-;;;;;;;;;;-1:-1:-1;33930:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34051:25:0;;;34027:4;34051:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33930:164;5092:201;;;;;;;;;;-1:-1:-1;5092:201:0;;;;;:::i;:::-;;:::i;28416:305::-;28518:4;-1:-1:-1;;;;;;28555:40:0;;-1:-1:-1;;;28555:40:0;;:105;;-1:-1:-1;;;;;;;28612:48:0;;-1:-1:-1;;;28612:48:0;28555:105;:158;;;-1:-1:-1;;;;;;;;;;17076:40:0;;;28677:36;28535:178;28416:305;-1:-1:-1;;28416:305:0:o;31801:100::-;31855:13;31888:5;31881:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31801:100;:::o;33304:204::-;33372:7;33397:16;33405:7;33397;:16::i;:::-;33392:64;;33422:34;;-1:-1:-1;;;33422:34:0;;;;;;;;;;;33392:64;-1:-1:-1;33476:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33476:24:0;;33304:204::o;32867:371::-;32940:13;32956:24;32972:7;32956:15;:24::i;:::-;32940:40;;33001:5;-1:-1:-1;;;;;32995:11:0;:2;-1:-1:-1;;;;;32995:11:0;;32991:48;;;33015:24;;-1:-1:-1;;;33015:24:0;;;;;;;;;;;32991:48;2987:10;-1:-1:-1;;;;;33056:21:0;;;;;;:63;;-1:-1:-1;33082:37:0;33099:5;2987:10;33930:164;:::i;33082:37::-;33081:38;33056:63;33052:138;;;33143:35;;-1:-1:-1;;;33143:35:0;;;;;;;;;;;33052:138;33202:28;33211:2;33215:7;33224:5;33202:8;:28::i;:::-;32929:309;32867:371;;:::o;34161:170::-;34295:28;34305:4;34311:2;34315:7;34295:9;:28::i;48490:145::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;;;;;;;;;48543:7:::1;48564;4256:6:::0;;-1:-1:-1;;;;;4256:6:0;;4183:87;48564:7:::1;-1:-1:-1::0;;;;;48556:21:0::1;48585;48556:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48542:69;;;48626:2;48618:11;;;::::0;::::1;;48535:100;48490:145::o:0;34402:185::-;34540:39;34557:4;34563:2;34567:7;34540:39;;;;;;;;;;;;:16;:39::i;47911:80::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;47970:4:::1;:15:::0;47911:80::o;48188:98::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;48259:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48188:98:::0;:::o;31610:124::-;31674:7;31701:20;31713:7;31701:11;:20::i;:::-;:25;;31610:124;-1:-1:-1;;31610:124:0:o;28785:206::-;28849:7;-1:-1:-1;;;;;28873:19:0;;28869:60;;28901:28;;-1:-1:-1;;;28901:28:0;;;;;;;;;;;28869:60;-1:-1:-1;;;;;;28955:19:0;;;;;:12;:19;;;;;:27;;;;28785:206::o;4834:103::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;4899:30:::1;4926:1;4899:18;:30::i;:::-;4834:103::o:0;48066:116::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;48143:13:::1;:33:::0;48066:116::o;48420:63::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;48471:6:::1;::::0;;-1:-1:-1;;48461:16:0;::::1;48471:6;::::0;;::::1;48470:7;48461:16;::::0;;48420:63::o;31970:104::-;32026:13;32059:7;32052:14;;;;;:::i;47195:119::-;46632:6;;47252:11;;46632:6;;46631:7;46623:16;;;;;;46668:1;46654:11;:15;46646:24;;;;;;46716:9;;46701:11;46685:13;27919:12;;27709:7;27903:13;:28;;27665:303;46685:13;:27;;;;:::i;:::-;:40;;46677:73;;;;-1:-1:-1;;;46677:73:0;;9615:2:1;46677:73:0;;;9597:21:1;9654:2;9634:18;;;9627:30;-1:-1:-1;;;9673:18:1;;;9666:50;9733:18;;46677:73:0;9413:344:1;46677:73:0;46778:10;46765:24;;;;:12;:24;;;;;;46792:2;-1:-1:-1;46757:71:0;;;;-1:-1:-1;;;46757:71:0;;7366:2:1;46757:71:0;;;7348:21:1;7405:2;7385:18;;;7378:30;7444:31;7424:18;;;7417:59;7493:18;;46757:71:0;7164:353:1;46757:71:0;46857:10;;27919:12;;27709:7;27903:13;:28;46840:27;46837:266;;4256:6;;-1:-1:-1;;;;;4256:6:0;46882:10;:21;46879:89;;46933:11;46926:4;;:18;;;;:::i;:::-;46913:9;:31;;46905:63;;;;-1:-1:-1;;;46905:63:0;;9964:2:1;46905:63:0;;;9946:21:1;10003:2;9983:18;;;9976:30;-1:-1:-1;;;10022:18:1;;;10015:49;10081:18;;46905:63:0;9762:343:1;46905:63:0;46992:10;46979:24;;;;:12;:24;;;;;:26;;;;;;:::i;:::-;;;;;;46837:266;;;47063:10;;47048:11;47032:13;27919:12;;27709:7;27903:13;:28;;27665:303;47032:13;:27;;;;:::i;:::-;:41;;47024:79;;;;-1:-1:-1;;;47024:79:0;;8131:2:1;47024:79:0;;;8113:21:1;8170:2;8150:18;;;8143:30;8209:27;8189:18;;;8182:55;8254:18;;47024:79:0;7929:349:1;47024:79:0;47133:13;;47118:11;:28;;47110:65;;;;-1:-1:-1;;;47110:65:0;;8485:2:1;47110:65:0;;;8467:21:1;8524:2;8504:18;;;8497:30;8563:26;8543:18;;;8536:54;8607:18;;47110:65:0;8283:348:1;47110:65:0;47274:34:::1;47284:10;47296:11;47274:9;:34::i;33580:279::-:0;-1:-1:-1;;;;;33671:24:0;;2987:10;33671:24;33667:54;;;33704:17;;-1:-1:-1;;;33704:17:0;;;;;;;;;;;33667:54;2987:10;33734:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33734:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33734:53:0;;;;;;;;;;33803:48;;6888:41:1;;;33734:42:0;;2987:10;33803:48;;6861:18:1;33803:48:0;;;;;;;33580:279;;:::o;47997:63::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;48039:8:::1;:15:::0;;-1:-1:-1;;48039:15:0::1;;;::::0;;47997:63::o;34658:369::-;34825:28;34835:4;34841:2;34845:7;34825:9;:28::i;:::-;-1:-1:-1;;;;;34868:13:0;;7179:19;:23;;34868:76;;;;;34888:56;34919:4;34925:2;34929:7;34938:5;34888:30;:56::i;:::-;34887:57;34868:76;34864:156;;;34968:40;;-1:-1:-1;;;34968:40:0;;;;;;;;;;;34864:156;34658:369;;;;:::o;46069:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47428:477::-;47526:13;47567:16;47575:7;47567;:16::i;:::-;47551:97;;;;-1:-1:-1;;;47551:97:0;;9199:2:1;47551:97:0;;;9181:21:1;9238:2;9218:18;;;9211:30;9277:34;9257:18;;;9250:62;-1:-1:-1;;;9328:18:1;;;9321:45;9383:19;;47551:97:0;8997:411:1;47551:97:0;47661:8;;;;;;;47657:46;;47686:9;47679:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47428:477;;;:::o;47657:46::-;47711:28;47742:10;:8;:10::i;:::-;47711:41;;47797:1;47772:14;47766:28;:32;:133;;;;;;;;;;;;;;;;;47834:14;47850:18;:7;:16;:18::i;:::-;47870:13;47817:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47766:133;47759:140;47428:477;-1:-1:-1;;;47428:477:0:o;48292:122::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;48375:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;5092:201::-:0;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5181:22:0;::::1;5173:73;;;::::0;-1:-1:-1;;;5173:73:0;;7724:2:1;5173:73:0::1;::::0;::::1;7706:21:1::0;7763:2;7743:18;;;7736:30;7802:34;7782:18;;;7775:62;-1:-1:-1;;;7853:18:1;;;7846:36;7899:19;;5173:73:0::1;7522:402:1::0;5173:73:0::1;5257:28;5276:8;5257:18;:28::i;35282:187::-:0;35339:4;35403:13;;35393:7;:23;35363:98;;;;-1:-1:-1;;35434:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35434:27:0;;;;35433:28;;35282:187::o;42893:196::-;43008:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43008:29:0;-1:-1:-1;;;;;43008:29:0;;;;;;;;;43053:28;;43008:24;;43053:28;;;;;;;42893:196;;;:::o;38395:2112::-;38510:35;38548:20;38560:7;38548:11;:20::i;:::-;38623:18;;38510:58;;-1:-1:-1;38581:22:0;;-1:-1:-1;;;;;38607:34:0;2987:10;-1:-1:-1;;;;;38607:34:0;;:101;;;-1:-1:-1;38675:18:0;;38658:50;;2987:10;33930:164;:::i;38658:50::-;38607:154;;;-1:-1:-1;2987:10:0;38725:20;38737:7;38725:11;:20::i;:::-;-1:-1:-1;;;;;38725:36:0;;38607:154;38581:181;;38780:17;38775:66;;38806:35;;-1:-1:-1;;;38806:35:0;;;;;;;;;;;38775:66;38878:4;-1:-1:-1;;;;;38856:26:0;:13;:18;;;-1:-1:-1;;;;;38856:26:0;;38852:67;;38891:28;;-1:-1:-1;;;38891:28:0;;;;;;;;;;;38852:67;-1:-1:-1;;;;;38934:16:0;;38930:52;;38959:23;;-1:-1:-1;;;38959:23:0;;;;;;;;;;;38930:52;39103:49;39120:1;39124:7;39133:13;:18;;;39103:8;:49::i;:::-;-1:-1:-1;;;;;39448:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39448:31:0;;;;;;;-1:-1:-1;;39448:31:0;;;;;;;39494:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39494:29:0;;;;;;;;;;;39540:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39585:61:0;;;;-1:-1:-1;;;39630:15:0;39585:61;;;;;;;;;;;39920:11;;;39950:24;;;;;:29;39920:11;;39950:29;39946:445;;40175:13;;40161:11;:27;40157:219;;;40245:18;;;40213:24;;;:11;:24;;;;;;;;:50;;40328:28;;;;40286:70;;-1:-1:-1;;;40286:70:0;-1:-1:-1;;;;;;40286:70:0;;;-1:-1:-1;;;;;40213:50:0;;;40286:70;;;;;;;40157:219;39423:979;40438:7;40434:2;-1:-1:-1;;;;;40419:27:0;40428:4;-1:-1:-1;;;;;40419:27:0;;;;;;;;;;;40457:42;38499:2008;;38395:2112;;;:::o;30440:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30550:7:0;30633:13;;30626:4;:20;30595:886;;;30667:31;30701:17;;;:11;:17;;;;;;;;;30667:51;;;;;;;;;-1:-1:-1;;;;;30667:51:0;;;;-1:-1:-1;;;30667:51:0;;;;;;;;;;;-1:-1:-1;;;30667:51:0;;;;;;;;;;;;;;30737:729;;30787:14;;-1:-1:-1;;;;;30787:28:0;;30783:101;;30851:9;30440:1108;-1:-1:-1;;;30440:1108:0:o;30783:101::-;-1:-1:-1;;;31226:6:0;31271:17;;;;:11;:17;;;;;;;;;31259:29;;;;;;;;;-1:-1:-1;;;;;31259:29:0;;;;;-1:-1:-1;;;31259:29:0;;;;;;;;;;;-1:-1:-1;;;31259:29:0;;;;;;;;;;;;;31319:28;31315:109;;31387:9;30440:1108;-1:-1:-1;;;30440:1108:0:o;31315:109::-;31186:261;;;30648:833;30595:886;31509:31;;-1:-1:-1;;;31509:31:0;;;;;;;;;;;5453:191;5546:6;;;-1:-1:-1;;;;;5563:17:0;;;-1:-1:-1;;;;;;5563:17:0;;;;;;;5596:40;;5546:6;;;5563:17;5546:6;;5596:40;;5527:16;;5596:40;5516:128;5453:191;:::o;35477:104::-;35546:27;35556:2;35560:8;35546:27;;;;;;;;;;;;:9;:27::i;43581:667::-;43765:72;;-1:-1:-1;;;43765:72:0;;43744:4;;-1:-1:-1;;;;;43765:36:0;;;;;:72;;2987:10;;43816:4;;43822:7;;43831:5;;43765:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43765:72:0;;;;;;;;-1:-1:-1;;43765:72:0;;;;;;;;;;;;:::i;:::-;;;43761:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43999:13:0;;43995:235;;44045:40;;-1:-1:-1;;;44045:40:0;;;;;;;;;;;43995:235;44188:6;44182:13;44173:6;44169:2;44165:15;44158:38;43761:480;-1:-1:-1;;;;;;43884:55:0;-1:-1:-1;;;43884:55:0;;-1:-1:-1;43761:480:0;43581:667;;;;;;:::o;47320:102::-;47380:13;47409:7;47402:14;;;;;:::i;469:723::-;525:13;746:10;742:53;;-1:-1:-1;;773:10:0;;;;;;;;;;;;-1:-1:-1;;;773:10:0;;;;;469:723::o;742:53::-;820:5;805:12;861:78;868:9;;861:78;;894:8;;;;:::i;:::-;;-1:-1:-1;917:10:0;;-1:-1:-1;925:2:0;917:10;;:::i;:::-;;;861:78;;;949:19;981:6;971:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;971:17:0;;949:39;;999:154;1006:10;;999:154;;1033:11;1043:1;1033:11;;:::i;:::-;;-1:-1:-1;1102:10:0;1110:2;1102:5;:10;:::i;:::-;1089:24;;:2;:24;:::i;:::-;1076:39;;1059:6;1066;1059:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1059:56:0;;;;;;;;-1:-1:-1;1130:11:0;1139:2;1130:11;;:::i;:::-;;;999:154;;35944:163;36067:32;36073:2;36077:8;36087:5;36094:4;36505:20;36528:13;-1:-1:-1;;;;;36556:16:0;;36552:48;;36581:19;;-1:-1:-1;;;36581:19:0;;;;;;;;;;;36552:48;36615:13;36611:44;;36637:18;;-1:-1:-1;;;36637:18:0;;;;;;;;;;;36611:44;-1:-1:-1;;;;;37006:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37065:49:0;;37006:44;;;;;;;;37065:49;;;;-1:-1:-1;;37006:44:0;;;;;;37065:49;;;;;;;;;;;;;;;;37131:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37181:66:0;;;;-1:-1:-1;;;37231:15:0;37181:66;;;;;;;;;;37131:25;37328:23;;;37372:4;:23;;;;-1:-1:-1;;;;;;37380:13:0;;7179:19;:23;;37380:15;37368:641;;;37416:314;37447:38;;37472:12;;-1:-1:-1;;;;;37447:38:0;;;37464:1;;37447:38;;37464:1;;37447:38;37513:69;37552:1;37556:2;37560:14;;;;;;37576:5;37513:30;:69::i;:::-;37508:174;;37618:40;;-1:-1:-1;;;37618:40:0;;;;;;;;;;;37508:174;37725:3;37709:12;:19;;37416:314;;37811:12;37794:13;;:29;37790:43;;37825:8;;;37790:43;37368:641;;;37874:120;37905:40;;37930:14;;;;;-1:-1:-1;;;;;37905:40:0;;;37922:1;;37905:40;;37922:1;;37905:40;37989:3;37973:12;:19;;37874:120;;37368:641;-1:-1:-1;38023:13:0;:28;38073:60;34658:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:1527::-;4529:3;4567:6;4561:13;4593:4;4606:51;4650:6;4645:3;4640:2;4632:6;4628:15;4606:51;:::i;:::-;4720:13;;4679:16;;;;4742:55;4720:13;4679:16;4764:15;;;4742:55;:::i;:::-;4886:13;;4819:20;;;4859:1;;4946;4968:18;;;;5021;;;;5048:93;;5126:4;5116:8;5112:19;5100:31;;5048:93;5189:2;5179:8;5176:16;5156:18;5153:40;5150:167;;;-1:-1:-1;;;5216:33:1;;5272:4;5269:1;5262:15;5302:4;5223:3;5290:17;5150:167;5333:18;5360:110;;;;5484:1;5479:328;;;;5326:481;;5360:110;-1:-1:-1;;5395:24:1;;5381:39;;5440:20;;;;-1:-1:-1;5360:110:1;;5479:328;10365:1;10358:14;;;10402:4;10389:18;;5574:1;5588:169;5602:8;5599:1;5596:15;5588:169;;;5684:14;;5669:13;;;5662:37;5727:16;;;;5619:10;;5588:169;;;5592:3;;5788:8;5781:5;5777:20;5770:27;;5326:481;-1:-1:-1;5823:3:1;;4305:1527;-1:-1:-1;;;;;;;;;;;4305:1527:1:o;6255:488::-;-1:-1:-1;;;;;6524:15:1;;;6506:34;;6576:15;;6571:2;6556:18;;6549:43;6623:2;6608:18;;6601:34;;;6671:3;6666:2;6651:18;;6644:31;;;6449:4;;6692:45;;6717:19;;6709:6;6692:45;:::i;:::-;6684:53;6255:488;-1:-1:-1;;;;;;6255:488:1:o;6940:219::-;7089:2;7078:9;7071:21;7052:4;7109:44;7149:2;7138:9;7134:18;7126:6;7109:44;:::i;8636:356::-;8838:2;8820:21;;;8857:18;;;8850:30;8916:34;8911:2;8896:18;;8889:62;8983:2;8968:18;;8636:356::o;10418:128::-;10458:3;10489:1;10485:6;10482:1;10479:13;10476:39;;;10495:18;;:::i;:::-;-1:-1:-1;10531:9:1;;10418:128::o;10551:120::-;10591:1;10617;10607:35;;10622:18;;:::i;:::-;-1:-1:-1;10656:9:1;;10551:120::o;10676:168::-;10716:7;10782:1;10778;10774:6;10770:14;10767:1;10764:21;10759:1;10752:9;10745:17;10741:45;10738:71;;;10789:18;;:::i;:::-;-1:-1:-1;10829:9:1;;10676:168::o;10849:125::-;10889:4;10917:1;10914;10911:8;10908:34;;;10922:18;;:::i;:::-;-1:-1:-1;10959:9:1;;10849:125::o;10979:258::-;11051:1;11061:113;11075:6;11072:1;11069:13;11061:113;;;11151:11;;;11145:18;11132:11;;;11125:39;11097:2;11090:10;11061:113;;;11192:6;11189:1;11186:13;11183:48;;;-1:-1:-1;;11227:1:1;11209:16;;11202:27;10979:258::o;11242:380::-;11321:1;11317:12;;;;11364;;;11385:61;;11439:4;11431:6;11427:17;11417:27;;11385:61;11492:2;11484:6;11481:14;11461:18;11458:38;11455:161;;;11538:10;11533:3;11529:20;11526:1;11519:31;11573:4;11570:1;11563:15;11601:4;11598:1;11591:15;11455:161;;11242:380;;;:::o;11627:135::-;11666:3;-1:-1:-1;;11687:17:1;;11684:43;;;11707:18;;:::i;:::-;-1:-1:-1;11754:1:1;11743:13;;11627:135::o;11767:112::-;11799:1;11825;11815:35;;11830:18;;:::i;:::-;-1:-1:-1;11864:9:1;;11767:112::o;11884:127::-;11945:10;11940:3;11936:20;11933:1;11926:31;11976:4;11973:1;11966:15;12000:4;11997:1;11990:15;12016:127;12077:10;12072:3;12068:20;12065:1;12058:31;12108:4;12105:1;12098:15;12132:4;12129:1;12122:15;12148:127;12209:10;12204:3;12200:20;12197:1;12190:31;12240:4;12237:1;12230:15;12264:4;12261:1;12254:15;12280:127;12341:10;12336:3;12332:20;12329:1;12322:31;12372:4;12369:1;12362:15;12396:4;12393:1;12386:15;12412:131;-1:-1:-1;;;;;;12486:32:1;;12476:43;;12466:71;;12533:1;12530;12523:12

Swarm Source

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