ETH Price: $2,641.86 (+1.75%)

Token

Ancient Shrooms (ANCIENTSHROOM)
 

Overview

Max Total Supply

0 ANCIENTSHROOM

Holders

133

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 ANCIENTSHROOM
0x7ba8c98bdf82df709535eb39a563a486425c1bd4
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:
NFT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-06
*/

// SPDX-License-Identifier: Unlicense

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

/**
 * @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) {
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

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

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

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

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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

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

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

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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @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)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _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 {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "All are OfferCreated out");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            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(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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

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

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721URIStorage: URI query for nonexistent token"
        );

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI)
        internal
        virtual
    {
        require(
            _exists(tokenId),
            "ERC721URIStorage: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

contract NFT is Ownable, ERC721 {
    using Strings for string;

    uint public constant OG_SALE_MAX_TOKENS = 150;

    string private _baseTokenURI;

    uint public supply = 0;

    constructor() ERC721("Ancient Shrooms", "ANCIENTSHROOM") {}

    function mintToken(uint256 amount) external payable
    {
        require(supply + amount <= OG_SALE_MAX_TOKENS, "Purchase would exceed max supply");

        for (uint i = 0; i < amount; i++)
        {
            _safeMint(msg.sender, supply);
            supply++;
        }
    }

    function withdraw() external
    {
        require(msg.sender == owner(), "Invalid sender");

        payable(owner()).transfer(address(this).balance);
    }

    ////
    //URI management part
    ////

    function _setBaseURI(string memory baseURI) internal virtual {
        _baseTokenURI = baseURI;
    }

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

    function setBaseURI(string memory baseURI) external onlyOwner {
        _setBaseURI(baseURI);
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        string memory _tokenURI = super.tokenURI(tokenId);
        return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI)) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OG_SALE_MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintToken","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006008553480156200001657600080fd5b506040518060400160405280600f81526020016e416e6369656e74205368726f6f6d7360881b8152506040518060400160405280600d81526020016c414e4349454e545348524f4f4d60981b8152506200007f62000079620000b360201b60201c565b620000b7565b81516200009490600190602085019062000107565b508051620000aa90600290602084019062000107565b505050620001ea565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200011590620001ad565b90600052602060002090601f01602090048101928262000139576000855562000184565b82601f106200015457805160ff191683800117855562000184565b8280016001018555821562000184579182015b828111156200018457825182559160200191906001019062000167565b506200019292915062000196565b5090565b5b8082111562000192576000815560010162000197565b600281046001821680620001c257607f821691505b60208210811415620001e457634e487b7160e01b600052602260045260246000fd5b50919050565b611ae980620001fa6000396000f3fe60806040526004361061012a5760003560e01c806370a08231116100ab578063a5a4f4021161006f578063a5a4f4021461030c578063b88d4fde14610321578063c634d03214610341578063c87b56dd14610354578063e985e9c514610374578063f2fde38b146103945761012a565b806370a082311461028d578063715018a6146102ad5780638da5cb5b146102c257806395d89b41146102d7578063a22cb465146102ec5761012a565b806323b872dd116100f257806323b872dd146101f85780633ccfd60b1461021857806342842e0e1461022d57806355f804b31461024d5780636352211e1461026d5761012a565b806301ffc9a71461012f578063047fc9aa1461016557806306fdde0314610187578063081812fc146101a9578063095ea7b3146101d6575b600080fd5b34801561013b57600080fd5b5061014f61014a36600461133a565b6103b4565b60405161015c9190611498565b60405180910390f35b34801561017157600080fd5b5061017a6103fc565b60405161015c9190611979565b34801561019357600080fd5b5061019c610402565b60405161015c91906114a3565b3480156101b557600080fd5b506101c96101c43660046113b8565b610494565b60405161015c9190611447565b3480156101e257600080fd5b506101f66101f1366004611311565b6104e0565b005b34801561020457600080fd5b506101f6610213366004611223565b610578565b34801561022457600080fd5b506101f66105b0565b34801561023957600080fd5b506101f6610248366004611223565b61062b565b34801561025957600080fd5b506101f6610268366004611372565b610646565b34801561027957600080fd5b506101c96102883660046113b8565b61068e565b34801561029957600080fd5b5061017a6102a83660046111d7565b6106c3565b3480156102b957600080fd5b506101f6610707565b3480156102ce57600080fd5b506101c9610752565b3480156102e357600080fd5b5061019c610761565b3480156102f857600080fd5b506101f66103073660046112d7565b610770565b34801561031857600080fd5b5061017a61083e565b34801561032d57600080fd5b506101f661033c36600461125e565b610843565b6101f661034f3660046113b8565b610882565b34801561036057600080fd5b5061019c61036f3660046113b8565b6108f3565b34801561038057600080fd5b5061014f61038f3660046111f1565b610948565b3480156103a057600080fd5b506101f66103af3660046111d7565b610976565b60006001600160e01b031982166380ac58cd60e01b14806103e557506001600160e01b03198216635b5e139f60e01b145b806103f457506103f4826109e4565b90505b919050565b60085481565b606060018054610411906119f1565b80601f016020809104026020016040519081016040528092919081815260200182805461043d906119f1565b801561048a5780601f1061045f5761010080835404028352916020019161048a565b820191906000526020600020905b81548152906001019060200180831161046d57829003601f168201915b5050505050905090565b600061049f826109fd565b6104c45760405162461bcd60e51b81526004016104bb90611797565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006104eb8261068e565b9050806001600160a01b0316836001600160a01b0316141561051f5760405162461bcd60e51b81526004016104bb906118e7565b806001600160a01b0316610531610a1a565b6001600160a01b0316148061054d575061054d8161038f610a1a565b6105695760405162461bcd60e51b81526004016104bb9061163d565b6105738383610a1e565b505050565b610589610583610a1a565b82610a8c565b6105a55760405162461bcd60e51b81526004016104bb90611928565b610573838383610b11565b6105b8610752565b6001600160a01b0316336001600160a01b0316146105e85760405162461bcd60e51b81526004016104bb90611615565b6105f0610752565b6001600160a01b03166108fc479081150290604051600060405180830381858888f19350505050158015610628573d6000803e3d6000fd5b50565b61057383838360405180602001604052806000815250610843565b61064e610a1a565b6001600160a01b031661065f610752565b6001600160a01b0316146106855760405162461bcd60e51b81526004016104bb9061181a565b61062881610c3e565b6000818152600360205260408120546001600160a01b0316806103f45760405162461bcd60e51b81526004016104bb906116e4565b60006001600160a01b0382166106eb5760405162461bcd60e51b81526004016104bb9061169a565b506001600160a01b031660009081526004602052604090205490565b61070f610a1a565b6001600160a01b0316610720610752565b6001600160a01b0316146107465760405162461bcd60e51b81526004016104bb9061181a565b6107506000610c51565b565b6000546001600160a01b031690565b606060028054610411906119f1565b610778610a1a565b6001600160a01b0316826001600160a01b031614156107a95760405162461bcd60e51b81526004016104bb90611592565b80600660006107b6610a1a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556107fa610a1a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516108329190611498565b60405180910390a35050565b609681565b61085461084e610a1a565b83610a8c565b6108705760405162461bcd60e51b81526004016104bb90611928565b61087c84848484610ca1565b50505050565b6096816008546108929190611982565b11156108b05760405162461bcd60e51b81526004016104bb9061172d565b60005b818110156108ef576108c733600854610cd4565b600880549060006108d783611a2c565b919050555080806108e790611a2c565b9150506108b3565b5050565b6060600061090083610cee565b905060008151116109205760405180602001604052806000815250610941565b8060405160200161093191906113fc565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61097e610a1a565b6001600160a01b031661098f610752565b6001600160a01b0316146109b55760405162461bcd60e51b81526004016104bb9061181a565b6001600160a01b0381166109db5760405162461bcd60e51b81526004016104bb90611508565b61062881610c51565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610a538261068e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610a97826109fd565b610ab35760405162461bcd60e51b81526004016104bb906115c9565b6000610abe8361068e565b9050806001600160a01b0316846001600160a01b03161480610af95750836001600160a01b0316610aee84610494565b6001600160a01b0316145b80610b095750610b098185610948565b949350505050565b826001600160a01b0316610b248261068e565b6001600160a01b031614610b4a5760405162461bcd60e51b81526004016104bb9061184f565b6001600160a01b038216610b705760405162461bcd60e51b81526004016104bb9061154e565b610b7b838383610573565b610b86600082610a1e565b6001600160a01b0383166000908152600460205260408120805460019290610baf9084906119ae565b90915550506001600160a01b0382166000908152600460205260408120805460019290610bdd908490611982565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b80516108ef9060079060208401906110b7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610cac848484610b11565b610cb884848484610d5a565b61087c5760405162461bcd60e51b81526004016104bb906114b6565b6108ef828260405180602001604052806000815250610e75565b6060610cf9826109fd565b610d155760405162461bcd60e51b81526004016104bb90611898565b6000610d1f610ea8565b90506000815111610d3f5760405180602001604052806000815250610941565b80610d4984610eb7565b604051602001610931929190611418565b6000610d6e846001600160a01b0316610fd2565b15610e6a57836001600160a01b031663150b7a02610d8a610a1a565b8786866040518563ffffffff1660e01b8152600401610dac949392919061145b565b602060405180830381600087803b158015610dc657600080fd5b505af1925050508015610df6575060408051601f3d908101601f19168201909252610df391810190611356565b60015b610e50573d808015610e24576040519150601f19603f3d011682016040523d82523d6000602084013e610e29565b606091505b508051610e485760405162461bcd60e51b81526004016104bb906114b6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b09565b506001949350505050565b610e7f8383610fd8565b610e8c6000848484610d5a565b6105735760405162461bcd60e51b81526004016104bb906114b6565b606060078054610411906119f1565b606081610edc57506040805180820190915260018152600360fc1b60208201526103f7565b8160005b8115610f065780610ef081611a2c565b9150610eff9050600a8361199a565b9150610ee0565b60008167ffffffffffffffff811115610f2f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610f59576020820181803683370190505b5090505b8415610b0957610f6e6001836119ae565b9150610f7b600a86611a47565b610f86906030611982565b60f81b818381518110610fa957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610fcb600a8661199a565b9450610f5d565b3b151590565b6001600160a01b038216610ffe5760405162461bcd60e51b81526004016104bb90611762565b611007816109fd565b156110245760405162461bcd60e51b81526004016104bb906117e3565b61103060008383610573565b6001600160a01b0382166000908152600460205260408120805460019290611059908490611982565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546110c3906119f1565b90600052602060002090601f0160209004810192826110e5576000855561112b565b82601f106110fe57805160ff191683800117855561112b565b8280016001018555821561112b579182015b8281111561112b578251825591602001919060010190611110565b5061113792915061113b565b5090565b5b80821115611137576000815560010161113c565b600067ffffffffffffffff8084111561116b5761116b611a87565b604051601f8501601f19168101602001828111828210171561118f5761118f611a87565b6040528481529150818385018610156111a757600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146103f757600080fd5b6000602082840312156111e8578081fd5b610941826111c0565b60008060408385031215611203578081fd5b61120c836111c0565b915061121a602084016111c0565b90509250929050565b600080600060608486031215611237578081fd5b611240846111c0565b925061124e602085016111c0565b9150604084013590509250925092565b60008060008060808587031215611273578081fd5b61127c856111c0565b935061128a602086016111c0565b925060408501359150606085013567ffffffffffffffff8111156112ac578182fd5b8501601f810187136112bc578182fd5b6112cb87823560208401611150565b91505092959194509250565b600080604083850312156112e9578182fd5b6112f2836111c0565b915060208301358015158114611306578182fd5b809150509250929050565b60008060408385031215611323578182fd5b61132c836111c0565b946020939093013593505050565b60006020828403121561134b578081fd5b813561094181611a9d565b600060208284031215611367578081fd5b815161094181611a9d565b600060208284031215611383578081fd5b813567ffffffffffffffff811115611399578182fd5b8201601f810184136113a9578182fd5b610b0984823560208401611150565b6000602082840312156113c9578081fd5b5035919050565b600081518084526113e88160208601602086016119c5565b601f01601f19169290920160200192915050565b6000825161140e8184602087016119c5565b9190910192915050565b6000835161142a8184602088016119c5565b83519083019061143e8183602088016119c5565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061148e908301846113d0565b9695505050505050565b901515815260200190565b60006020825261094160208301846113d0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600e908201526d24b73b30b634b21039b2b73232b960911b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526018908201527f416c6c20617265204f6666657243726561746564206f75740000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b6000821982111561199557611995611a5b565b500190565b6000826119a9576119a9611a71565b500490565b6000828210156119c0576119c0611a5b565b500390565b60005b838110156119e05781810151838201526020016119c8565b8381111561087c5750506000910152565b600281046001821680611a0557607f821691505b60208210811415611a2657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a4057611a40611a5b565b5060010190565b600082611a5657611a56611a71565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461062857600080fdfea2646970667358221220b580cb35fc826e4948eecbdc86bc5481d6fa52dc57a166f078803eccae2ba25964736f6c63430008000033

Deployed Bytecode

0x60806040526004361061012a5760003560e01c806370a08231116100ab578063a5a4f4021161006f578063a5a4f4021461030c578063b88d4fde14610321578063c634d03214610341578063c87b56dd14610354578063e985e9c514610374578063f2fde38b146103945761012a565b806370a082311461028d578063715018a6146102ad5780638da5cb5b146102c257806395d89b41146102d7578063a22cb465146102ec5761012a565b806323b872dd116100f257806323b872dd146101f85780633ccfd60b1461021857806342842e0e1461022d57806355f804b31461024d5780636352211e1461026d5761012a565b806301ffc9a71461012f578063047fc9aa1461016557806306fdde0314610187578063081812fc146101a9578063095ea7b3146101d6575b600080fd5b34801561013b57600080fd5b5061014f61014a36600461133a565b6103b4565b60405161015c9190611498565b60405180910390f35b34801561017157600080fd5b5061017a6103fc565b60405161015c9190611979565b34801561019357600080fd5b5061019c610402565b60405161015c91906114a3565b3480156101b557600080fd5b506101c96101c43660046113b8565b610494565b60405161015c9190611447565b3480156101e257600080fd5b506101f66101f1366004611311565b6104e0565b005b34801561020457600080fd5b506101f6610213366004611223565b610578565b34801561022457600080fd5b506101f66105b0565b34801561023957600080fd5b506101f6610248366004611223565b61062b565b34801561025957600080fd5b506101f6610268366004611372565b610646565b34801561027957600080fd5b506101c96102883660046113b8565b61068e565b34801561029957600080fd5b5061017a6102a83660046111d7565b6106c3565b3480156102b957600080fd5b506101f6610707565b3480156102ce57600080fd5b506101c9610752565b3480156102e357600080fd5b5061019c610761565b3480156102f857600080fd5b506101f66103073660046112d7565b610770565b34801561031857600080fd5b5061017a61083e565b34801561032d57600080fd5b506101f661033c36600461125e565b610843565b6101f661034f3660046113b8565b610882565b34801561036057600080fd5b5061019c61036f3660046113b8565b6108f3565b34801561038057600080fd5b5061014f61038f3660046111f1565b610948565b3480156103a057600080fd5b506101f66103af3660046111d7565b610976565b60006001600160e01b031982166380ac58cd60e01b14806103e557506001600160e01b03198216635b5e139f60e01b145b806103f457506103f4826109e4565b90505b919050565b60085481565b606060018054610411906119f1565b80601f016020809104026020016040519081016040528092919081815260200182805461043d906119f1565b801561048a5780601f1061045f5761010080835404028352916020019161048a565b820191906000526020600020905b81548152906001019060200180831161046d57829003601f168201915b5050505050905090565b600061049f826109fd565b6104c45760405162461bcd60e51b81526004016104bb90611797565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006104eb8261068e565b9050806001600160a01b0316836001600160a01b0316141561051f5760405162461bcd60e51b81526004016104bb906118e7565b806001600160a01b0316610531610a1a565b6001600160a01b0316148061054d575061054d8161038f610a1a565b6105695760405162461bcd60e51b81526004016104bb9061163d565b6105738383610a1e565b505050565b610589610583610a1a565b82610a8c565b6105a55760405162461bcd60e51b81526004016104bb90611928565b610573838383610b11565b6105b8610752565b6001600160a01b0316336001600160a01b0316146105e85760405162461bcd60e51b81526004016104bb90611615565b6105f0610752565b6001600160a01b03166108fc479081150290604051600060405180830381858888f19350505050158015610628573d6000803e3d6000fd5b50565b61057383838360405180602001604052806000815250610843565b61064e610a1a565b6001600160a01b031661065f610752565b6001600160a01b0316146106855760405162461bcd60e51b81526004016104bb9061181a565b61062881610c3e565b6000818152600360205260408120546001600160a01b0316806103f45760405162461bcd60e51b81526004016104bb906116e4565b60006001600160a01b0382166106eb5760405162461bcd60e51b81526004016104bb9061169a565b506001600160a01b031660009081526004602052604090205490565b61070f610a1a565b6001600160a01b0316610720610752565b6001600160a01b0316146107465760405162461bcd60e51b81526004016104bb9061181a565b6107506000610c51565b565b6000546001600160a01b031690565b606060028054610411906119f1565b610778610a1a565b6001600160a01b0316826001600160a01b031614156107a95760405162461bcd60e51b81526004016104bb90611592565b80600660006107b6610a1a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556107fa610a1a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516108329190611498565b60405180910390a35050565b609681565b61085461084e610a1a565b83610a8c565b6108705760405162461bcd60e51b81526004016104bb90611928565b61087c84848484610ca1565b50505050565b6096816008546108929190611982565b11156108b05760405162461bcd60e51b81526004016104bb9061172d565b60005b818110156108ef576108c733600854610cd4565b600880549060006108d783611a2c565b919050555080806108e790611a2c565b9150506108b3565b5050565b6060600061090083610cee565b905060008151116109205760405180602001604052806000815250610941565b8060405160200161093191906113fc565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61097e610a1a565b6001600160a01b031661098f610752565b6001600160a01b0316146109b55760405162461bcd60e51b81526004016104bb9061181a565b6001600160a01b0381166109db5760405162461bcd60e51b81526004016104bb90611508565b61062881610c51565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610a538261068e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610a97826109fd565b610ab35760405162461bcd60e51b81526004016104bb906115c9565b6000610abe8361068e565b9050806001600160a01b0316846001600160a01b03161480610af95750836001600160a01b0316610aee84610494565b6001600160a01b0316145b80610b095750610b098185610948565b949350505050565b826001600160a01b0316610b248261068e565b6001600160a01b031614610b4a5760405162461bcd60e51b81526004016104bb9061184f565b6001600160a01b038216610b705760405162461bcd60e51b81526004016104bb9061154e565b610b7b838383610573565b610b86600082610a1e565b6001600160a01b0383166000908152600460205260408120805460019290610baf9084906119ae565b90915550506001600160a01b0382166000908152600460205260408120805460019290610bdd908490611982565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b80516108ef9060079060208401906110b7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610cac848484610b11565b610cb884848484610d5a565b61087c5760405162461bcd60e51b81526004016104bb906114b6565b6108ef828260405180602001604052806000815250610e75565b6060610cf9826109fd565b610d155760405162461bcd60e51b81526004016104bb90611898565b6000610d1f610ea8565b90506000815111610d3f5760405180602001604052806000815250610941565b80610d4984610eb7565b604051602001610931929190611418565b6000610d6e846001600160a01b0316610fd2565b15610e6a57836001600160a01b031663150b7a02610d8a610a1a565b8786866040518563ffffffff1660e01b8152600401610dac949392919061145b565b602060405180830381600087803b158015610dc657600080fd5b505af1925050508015610df6575060408051601f3d908101601f19168201909252610df391810190611356565b60015b610e50573d808015610e24576040519150601f19603f3d011682016040523d82523d6000602084013e610e29565b606091505b508051610e485760405162461bcd60e51b81526004016104bb906114b6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b09565b506001949350505050565b610e7f8383610fd8565b610e8c6000848484610d5a565b6105735760405162461bcd60e51b81526004016104bb906114b6565b606060078054610411906119f1565b606081610edc57506040805180820190915260018152600360fc1b60208201526103f7565b8160005b8115610f065780610ef081611a2c565b9150610eff9050600a8361199a565b9150610ee0565b60008167ffffffffffffffff811115610f2f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610f59576020820181803683370190505b5090505b8415610b0957610f6e6001836119ae565b9150610f7b600a86611a47565b610f86906030611982565b60f81b818381518110610fa957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610fcb600a8661199a565b9450610f5d565b3b151590565b6001600160a01b038216610ffe5760405162461bcd60e51b81526004016104bb90611762565b611007816109fd565b156110245760405162461bcd60e51b81526004016104bb906117e3565b61103060008383610573565b6001600160a01b0382166000908152600460205260408120805460019290611059908490611982565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546110c3906119f1565b90600052602060002090601f0160209004810192826110e5576000855561112b565b82601f106110fe57805160ff191683800117855561112b565b8280016001018555821561112b579182015b8281111561112b578251825591602001919060010190611110565b5061113792915061113b565b5090565b5b80821115611137576000815560010161113c565b600067ffffffffffffffff8084111561116b5761116b611a87565b604051601f8501601f19168101602001828111828210171561118f5761118f611a87565b6040528481529150818385018610156111a757600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146103f757600080fd5b6000602082840312156111e8578081fd5b610941826111c0565b60008060408385031215611203578081fd5b61120c836111c0565b915061121a602084016111c0565b90509250929050565b600080600060608486031215611237578081fd5b611240846111c0565b925061124e602085016111c0565b9150604084013590509250925092565b60008060008060808587031215611273578081fd5b61127c856111c0565b935061128a602086016111c0565b925060408501359150606085013567ffffffffffffffff8111156112ac578182fd5b8501601f810187136112bc578182fd5b6112cb87823560208401611150565b91505092959194509250565b600080604083850312156112e9578182fd5b6112f2836111c0565b915060208301358015158114611306578182fd5b809150509250929050565b60008060408385031215611323578182fd5b61132c836111c0565b946020939093013593505050565b60006020828403121561134b578081fd5b813561094181611a9d565b600060208284031215611367578081fd5b815161094181611a9d565b600060208284031215611383578081fd5b813567ffffffffffffffff811115611399578182fd5b8201601f810184136113a9578182fd5b610b0984823560208401611150565b6000602082840312156113c9578081fd5b5035919050565b600081518084526113e88160208601602086016119c5565b601f01601f19169290920160200192915050565b6000825161140e8184602087016119c5565b9190910192915050565b6000835161142a8184602088016119c5565b83519083019061143e8183602088016119c5565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061148e908301846113d0565b9695505050505050565b901515815260200190565b60006020825261094160208301846113d0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600e908201526d24b73b30b634b21039b2b73232b960911b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526018908201527f416c6c20617265204f6666657243726561746564206f75740000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b6000821982111561199557611995611a5b565b500190565b6000826119a9576119a9611a71565b500490565b6000828210156119c0576119c0611a5b565b500390565b60005b838110156119e05781810151838201526020016119c8565b8381111561087c5750506000910152565b600281046001821680611a0557607f821691505b60208210811415611a2657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a4057611a40611a5b565b5060010190565b600082611a5657611a56611a71565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461062857600080fdfea2646970667358221220b580cb35fc826e4948eecbdc86bc5481d6fa52dc57a166f078803eccae2ba25964736f6c63430008000033

Deployed Bytecode Sourcemap

54803:1361:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24608:355;;;;;;;;;;-1:-1:-1;24608:355:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54966:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25777:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27470:308::-;;;;;;;;;;-1:-1:-1;27470:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26993:411::-;;;;;;;;;;-1:-1:-1;26993:411:0;;;;;:::i;:::-;;:::i;:::-;;28529:376;;;;;;;;;;-1:-1:-1;28529:376:0;;;;;:::i;:::-;;:::i;55364:162::-;;;;;;;;;;;;;:::i;28976:185::-;;;;;;;;;;-1:-1:-1;28976:185:0;;;;;:::i;:::-;;:::i;55808:101::-;;;;;;;;;;-1:-1:-1;55808:101:0;;;;;:::i;:::-;;:::i;25384:326::-;;;;;;;;;;-1:-1:-1;25384:326:0;;;;;:::i;:::-;;:::i;25027:295::-;;;;;;;;;;-1:-1:-1;25027:295:0;;;;;:::i;:::-;;:::i;12112:94::-;;;;;;;;;;;;;:::i;11461:87::-;;;;;;;;;;;;;:::i;25946:104::-;;;;;;;;;;;;;:::i;27850:327::-;;;;;;;;;;-1:-1:-1;27850:327:0;;;;;:::i;:::-;;:::i;54875:45::-;;;;;;;;;;;;;:::i;29232:365::-;;;;;;;;;;-1:-1:-1;29232:365:0;;;;;:::i;:::-;;:::i;55064:292::-;;;;;;:::i;:::-;;:::i;55917:244::-;;;;;;;;;;-1:-1:-1;55917:244:0;;;;;:::i;:::-;;:::i;28248:214::-;;;;;;;;;;-1:-1:-1;28248:214:0;;;;;:::i;:::-;;:::i;12361:229::-;;;;;;;;;;-1:-1:-1;12361:229:0;;;;;:::i;:::-;;:::i;24608:355::-;24755:4;-1:-1:-1;;;;;;24797:40:0;;-1:-1:-1;;;24797:40:0;;:105;;-1:-1:-1;;;;;;;24854:48:0;;-1:-1:-1;;;24854:48:0;24797:105;:158;;;;24919:36;24943:11;24919:23;:36::i;:::-;24777:178;;24608:355;;;;:::o;54966:22::-;;;;:::o;25777:100::-;25831:13;25864:5;25857:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25777:100;:::o;27470:308::-;27591:7;27638:16;27646:7;27638;:16::i;:::-;27616:110;;;;-1:-1:-1;;;27616:110:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;27746:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27746:24:0;;27470:308::o;26993:411::-;27074:13;27090:23;27105:7;27090:14;:23::i;:::-;27074:39;;27138:5;-1:-1:-1;;;;;27132:11:0;:2;-1:-1:-1;;;;;27132:11:0;;;27124:57;;;;-1:-1:-1;;;27124:57:0;;;;;;;:::i;:::-;27232:5;-1:-1:-1;;;;;27216:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;27216:21:0;;:62;;;;27241:37;27258:5;27265:12;:10;:12::i;27241:37::-;27194:168;;;;-1:-1:-1;;;27194:168:0;;;;;;;:::i;:::-;27375:21;27384:2;27388:7;27375:8;:21::i;:::-;26993:411;;;:::o;28529:376::-;28738:41;28757:12;:10;:12::i;:::-;28771:7;28738:18;:41::i;:::-;28716:140;;;;-1:-1:-1;;;28716:140:0;;;;;;;:::i;:::-;28869:28;28879:4;28885:2;28889:7;28869:9;:28::i;55364:162::-;55431:7;:5;:7::i;:::-;-1:-1:-1;;;;;55417:21:0;:10;-1:-1:-1;;;;;55417:21:0;;55409:48;;;;-1:-1:-1;;;55409:48:0;;;;;;;:::i;:::-;55478:7;:5;:7::i;:::-;-1:-1:-1;;;;;55470:25:0;:48;55496:21;55470:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55364:162::o;28976:185::-;29114:39;29131:4;29137:2;29141:7;29114:39;;;;;;;;;;;;:16;:39::i;55808:101::-;11692:12;:10;:12::i;:::-;-1:-1:-1;;;;;11681:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;11681:23:0;;11673:68;;;;-1:-1:-1;;;11673:68:0;;;;;;;:::i;:::-;55881:20:::1;55893:7;55881:11;:20::i;25384:326::-:0;25501:7;25542:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25542:16:0;25591:19;25569:110;;;;-1:-1:-1;;;25569:110:0;;;;;;;:::i;25027:295::-;25144:7;-1:-1:-1;;;;;25191:19:0;;25169:111;;;;-1:-1:-1;;;25169:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;25298:16:0;;;;;:9;:16;;;;;;;25027:295::o;12112:94::-;11692:12;:10;:12::i;:::-;-1:-1:-1;;;;;11681:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;11681:23:0;;11673:68;;;;-1:-1:-1;;;11673:68:0;;;;;;;:::i;:::-;12177:21:::1;12195:1;12177:9;:21::i;:::-;12112:94::o:0;11461:87::-;11507:7;11534:6;-1:-1:-1;;;;;11534:6:0;11461:87;:::o;25946:104::-;26002:13;26035:7;26028:14;;;;;:::i;27850:327::-;27997:12;:10;:12::i;:::-;-1:-1:-1;;;;;27985:24:0;:8;-1:-1:-1;;;;;27985:24:0;;;27977:62;;;;-1:-1:-1;;;27977:62:0;;;;;;;:::i;:::-;28097:8;28052:18;:32;28071:12;:10;:12::i;:::-;-1:-1:-1;;;;;28052:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;28052:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;28052:53:0;;;;;;;;;;;28136:12;:10;:12::i;:::-;-1:-1:-1;;;;;28121:48:0;;28160:8;28121:48;;;;;;:::i;:::-;;;;;;;;27850:327;;:::o;54875:45::-;54917:3;54875:45;:::o;29232:365::-;29421:41;29440:12;:10;:12::i;:::-;29454:7;29421:18;:41::i;:::-;29399:140;;;;-1:-1:-1;;;29399:140:0;;;;;;;:::i;:::-;29550:39;29564:4;29570:2;29574:7;29583:5;29550:13;:39::i;:::-;29232:365;;;;:::o;55064:292::-;54917:3;55149:6;55140;;:15;;;;:::i;:::-;:37;;55132:82;;;;-1:-1:-1;;;55132:82:0;;;;;;;:::i;:::-;55232:6;55227:122;55248:6;55244:1;:10;55227:122;;;55285:29;55295:10;55307:6;;55285:9;:29::i;:::-;55329:6;:8;;;:6;:8;;;:::i;:::-;;;;;;55256:3;;;;;:::i;:::-;;;;55227:122;;;;55064:292;:::o;55917:244::-;55990:13;56016:23;56042;56057:7;56042:14;:23::i;:::-;56016:49;;56109:1;56089:9;56083:23;:27;:70;;;;;;;;;;;;;;;;;56137:9;56120:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;56083:70;56076:77;55917:244;-1:-1:-1;;;55917:244:0:o;28248:214::-;-1:-1:-1;;;;;28419:25:0;;;28390:4;28419:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28248:214::o;12361:229::-;11692:12;:10;:12::i;:::-;-1:-1:-1;;;;;11681:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;11681:23:0;;11673:68;;;;-1:-1:-1;;;11673:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12464:22:0;::::1;12442:110;;;;-1:-1:-1::0;;;12442:110:0::1;;;;;;;:::i;:::-;12563:19;12573:8;12563:9;:19::i;22547:207::-:0;-1:-1:-1;;;;;;22706:40:0;;-1:-1:-1;;;22706:40:0;22547:207;;;:::o;31144:127::-;31209:4;31233:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31233:16:0;:30;;;31144:127::o;10819:98::-;10899:10;10819:98;:::o;35263:174::-;35338:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35338:29:0;-1:-1:-1;;;;;35338:29:0;;;;;;;;:24;;35392:23;35338:24;35392:14;:23::i;:::-;-1:-1:-1;;;;;35383:46:0;;;;;;;;;;;35263:174;;:::o;31438:452::-;31567:4;31611:16;31619:7;31611;:16::i;:::-;31589:110;;;;-1:-1:-1;;;31589:110:0;;;;;;;:::i;:::-;31710:13;31726:23;31741:7;31726:14;:23::i;:::-;31710:39;;31779:5;-1:-1:-1;;;;;31768:16:0;:7;-1:-1:-1;;;;;31768:16:0;;:64;;;;31825:7;-1:-1:-1;;;;;31801:31:0;:20;31813:7;31801:11;:20::i;:::-;-1:-1:-1;;;;;31801:31:0;;31768:64;:113;;;;31849:32;31866:5;31873:7;31849:16;:32::i;:::-;31760:122;31438:452;-1:-1:-1;;;;31438:452:0:o;34530:615::-;34703:4;-1:-1:-1;;;;;34676:31:0;:23;34691:7;34676:14;:23::i;:::-;-1:-1:-1;;;;;34676:31:0;;34654:122;;;;-1:-1:-1;;;34654:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34795:16:0;;34787:65;;;;-1:-1:-1;;;34787:65:0;;;;;;;:::i;:::-;34865:39;34886:4;34892:2;34896:7;34865:20;:39::i;:::-;34969:29;34986:1;34990:7;34969:8;:29::i;:::-;-1:-1:-1;;;;;35011:15:0;;;;;;:9;:15;;;;;:20;;35030:1;;35011:15;:20;;35030:1;;35011:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35042:13:0;;;;;;:9;:13;;;;;:18;;35059:1;;35042:13;:18;;35059:1;;35042:18;:::i;:::-;;;;-1:-1:-1;;35071:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35071:21:0;-1:-1:-1;;;;;35071:21:0;;;;;;;;;35110:27;;35071:16;;35110:27;;;;;;;34530:615;;;:::o;55583:103::-;55655:23;;;;:13;;:23;;;;;:::i;12598:173::-;12654:16;12673:6;;-1:-1:-1;;;;;12690:17:0;;;-1:-1:-1;;;;;;12690:17:0;;;;;;12723:40;;12673:6;;;;;;;12723:40;;12654:16;12723:40;12598:173;;:::o;30479:352::-;30636:28;30646:4;30652:2;30656:7;30636:9;:28::i;:::-;30697:48;30720:4;30726:2;30730:7;30739:5;30697:22;:48::i;:::-;30675:148;;;;-1:-1:-1;;;30675:148:0;;;;;;;:::i;32232:110::-;32308:26;32318:2;32322:7;32308:26;;;;;;;;;;;;:9;:26::i;26121:468::-;26239:13;26292:16;26300:7;26292;:16::i;:::-;26270:113;;;;-1:-1:-1;;;26270:113:0;;;;;;;:::i;:::-;26396:21;26420:10;:8;:10::i;:::-;26396:34;;26485:1;26467:7;26461:21;:25;:120;;;;;;;;;;;;;;;;;26530:7;26539:18;:7;:16;:18::i;:::-;26513:45;;;;;;;;;:::i;36002:984::-;36157:4;36178:15;:2;-1:-1:-1;;;;;36178:13:0;;:15::i;:::-;36174:805;;;36247:2;-1:-1:-1;;;;;36231:36:0;;36290:12;:10;:12::i;:::-;36325:4;36352:7;36382:5;36231:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36231:175:0;;;;;;;;-1:-1:-1;;36231:175:0;;;;;;;;;;;;:::i;:::-;;;36210:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36593:13:0;;36589:320;;36636:108;;-1:-1:-1;;;36636:108:0;;;;;;;:::i;36589:320::-;36859:6;36853:13;36844:6;36840:2;36836:15;36829:38;36210:714;-1:-1:-1;;;;;;36470:55:0;-1:-1:-1;;;36470:55:0;;-1:-1:-1;36463:62:0;;36174:805;-1:-1:-1;36963:4:0;36002:984;;;;;;:::o;32569:321::-;32699:18;32705:2;32709:7;32699:5;:18::i;:::-;32750:54;32781:1;32785:2;32789:7;32798:5;32750:22;:54::i;:::-;32728:154;;;;-1:-1:-1;;;32728:154:0;;;;;;;:::i;55694:106::-;55746:13;55779;55772:20;;;;;:::i;8556:656::-;8612:13;8766:10;8762:53;;-1:-1:-1;8793:10:0;;;;;;;;;;;;-1:-1:-1;;;8793:10:0;;;;;;8762:53;8840:5;8825:12;8881:78;8888:9;;8881:78;;8914:8;;;;:::i;:::-;;-1:-1:-1;8937:10:0;;-1:-1:-1;8945:2:0;8937:10;;:::i;:::-;;;8881:78;;;8969:19;9001:6;8991:17;;;;;;-1:-1:-1;;;8991:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8991:17:0;;8969:39;;9019:154;9026:10;;9019:154;;9053:11;9063:1;9053:11;;:::i;:::-;;-1:-1:-1;9122:10:0;9130:2;9122:5;:10;:::i;:::-;9109:24;;:2;:24;:::i;:::-;9096:39;;9079:6;9086;9079:14;;;;;;-1:-1:-1;;;9079:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;9079:56:0;;;;;;;;-1:-1:-1;9150:11:0;9159:2;9150:11;;:::i;:::-;;;9019:154;;749:387;1072:20;1120:8;;;749:387::o;33226:378::-;-1:-1:-1;;;;;33306:16:0;;33298:61;;;;-1:-1:-1;;;33298:61:0;;;;;;;:::i;:::-;33379:16;33387:7;33379;:16::i;:::-;33378:17;33370:54;;;;-1:-1:-1;;;33370:54:0;;;;;;;:::i;:::-;33437:45;33466:1;33470:2;33474:7;33437:20;:45::i;:::-;-1:-1:-1;;;;;33495:13:0;;;;;;:9;:13;;;;;:18;;33512:1;;33495:13;:18;;33512:1;;33495:18;:::i;:::-;;;;-1:-1:-1;;33524:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33524:21:0;-1:-1:-1;;;;;33524:21:0;;;;;;;;33563:33;;33524:16;;;33563:33;;33524:16;;33563:33;33226:378;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:257::-;;3098:2;3086:9;3077:7;3073:23;3069:32;3066:2;;;3119:6;3111;3104:22;3066:2;3163:9;3150:23;3182:32;3208:5;3182:32;:::i;3249:261::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:32;3474:5;3448:32;:::i;3515:482::-;;3637:2;3625:9;3616:7;3612:23;3608:32;3605:2;;;3658:6;3650;3643:22;3605:2;3703:9;3690:23;3736:18;3728:6;3725:30;3722:2;;;3773:6;3765;3758:22;3722:2;3801:22;;3854:4;3846:13;;3842:27;-1:-1:-1;3832:2:1;;3888:6;3880;3873:22;3832:2;3916:75;3983:7;3978:2;3965:16;3960:2;3956;3952:11;3916:75;:::i;4002:190::-;;4114:2;4102:9;4093:7;4089:23;4085:32;4082:2;;;4135:6;4127;4120:22;4082:2;-1:-1:-1;4163:23:1;;4072:120;-1:-1:-1;4072:120:1:o;4197:259::-;;4278:5;4272:12;4305:6;4300:3;4293:19;4321:63;4377:6;4370:4;4365:3;4361:14;4354:4;4347:5;4343:16;4321:63;:::i;:::-;4438:2;4417:15;-1:-1:-1;;4413:29:1;4404:39;;;;4445:4;4400:50;;4248:208;-1:-1:-1;;4248:208:1:o;4461:276::-;;4630:6;4624:13;4646:53;4692:6;4687:3;4680:4;4672:6;4668:17;4646:53;:::i;:::-;4715:16;;;;;4600:137;-1:-1:-1;;4600:137:1:o;4742:470::-;;4959:6;4953:13;4975:53;5021:6;5016:3;5009:4;5001:6;4997:17;4975:53;:::i;:::-;5091:13;;5050:16;;;;5113:57;5091:13;5050:16;5147:4;5135:17;;5113:57;:::i;:::-;5186:20;;4929:283;-1:-1:-1;;;;4929:283:1:o;5217:203::-;-1:-1:-1;;;;;5381:32:1;;;;5363:51;;5351:2;5336:18;;5318:102::o;5425:490::-;-1:-1:-1;;;;;5694:15:1;;;5676:34;;5746:15;;5741:2;5726:18;;5719:43;5793:2;5778:18;;5771:34;;;5841:3;5836:2;5821:18;;5814:31;;;5425:490;;5862:47;;5889:19;;5881:6;5862:47;:::i;:::-;5854:55;5628:287;-1:-1:-1;;;;;;5628:287:1:o;5920:187::-;6085:14;;6078:22;6060:41;;6048:2;6033:18;;6015:92::o;6112:221::-;;6261:2;6250:9;6243:21;6281:46;6323:2;6312:9;6308:18;6300:6;6281:46;:::i;6338:414::-;6540:2;6522:21;;;6579:2;6559:18;;;6552:30;6618:34;6613:2;6598:18;;6591:62;-1:-1:-1;;;6684:2:1;6669:18;;6662:48;6742:3;6727:19;;6512:240::o;6757:402::-;6959:2;6941:21;;;6998:2;6978:18;;;6971:30;7037:34;7032:2;7017:18;;7010:62;-1:-1:-1;;;7103:2:1;7088:18;;7081:36;7149:3;7134:19;;6931:228::o;7164:400::-;7366:2;7348:21;;;7405:2;7385:18;;;7378:30;7444:34;7439:2;7424:18;;7417:62;-1:-1:-1;;;7510:2:1;7495:18;;7488:34;7554:3;7539:19;;7338:226::o;7569:349::-;7771:2;7753:21;;;7810:2;7790:18;;;7783:30;7849:27;7844:2;7829:18;;7822:55;7909:2;7894:18;;7743:175::o;7923:408::-;8125:2;8107:21;;;8164:2;8144:18;;;8137:30;8203:34;8198:2;8183:18;;8176:62;-1:-1:-1;;;8269:2:1;8254:18;;8247:42;8321:3;8306:19;;8097:234::o;8336:338::-;8538:2;8520:21;;;8577:2;8557:18;;;8550:30;-1:-1:-1;;;8611:2:1;8596:18;;8589:44;8665:2;8650:18;;8510:164::o;8679:420::-;8881:2;8863:21;;;8920:2;8900:18;;;8893:30;8959:34;8954:2;8939:18;;8932:62;9030:26;9025:2;9010:18;;9003:54;9089:3;9074:19;;8853:246::o;9104:406::-;9306:2;9288:21;;;9345:2;9325:18;;;9318:30;9384:34;9379:2;9364:18;;9357:62;-1:-1:-1;;;9450:2:1;9435:18;;9428:40;9500:3;9485:19;;9278:232::o;9515:405::-;9717:2;9699:21;;;9756:2;9736:18;;;9729:30;9795:34;9790:2;9775:18;;9768:62;-1:-1:-1;;;9861:2:1;9846:18;;9839:39;9910:3;9895:19;;9689:231::o;9925:356::-;10127:2;10109:21;;;10146:18;;;10139:30;10205:34;10200:2;10185:18;;10178:62;10272:2;10257:18;;10099:182::o;10286:356::-;10488:2;10470:21;;;10507:18;;;10500:30;10566:34;10561:2;10546:18;;10539:62;10633:2;10618:18;;10460:182::o;10647:408::-;10849:2;10831:21;;;10888:2;10868:18;;;10861:30;10927:34;10922:2;10907:18;;10900:62;-1:-1:-1;;;10993:2:1;10978:18;;10971:42;11045:3;11030:19;;10821:234::o;11060:348::-;11262:2;11244:21;;;11301:2;11281:18;;;11274:30;11340:26;11335:2;11320:18;;11313:54;11399:2;11384:18;;11234:174::o;11413:356::-;11615:2;11597:21;;;11634:18;;;11627:30;11693:34;11688:2;11673:18;;11666:62;11760:2;11745:18;;11587:182::o;11774:405::-;11976:2;11958:21;;;12015:2;11995:18;;;11988:30;12054:34;12049:2;12034:18;;12027:62;-1:-1:-1;;;12120:2:1;12105:18;;12098:39;12169:3;12154:19;;11948:231::o;12184:411::-;12386:2;12368:21;;;12425:2;12405:18;;;12398:30;12464:34;12459:2;12444:18;;12437:62;-1:-1:-1;;;12530:2:1;12515:18;;12508:45;12585:3;12570:19;;12358:237::o;12600:397::-;12802:2;12784:21;;;12841:2;12821:18;;;12814:30;12880:34;12875:2;12860:18;;12853:62;-1:-1:-1;;;12946:2:1;12931:18;;12924:31;12987:3;12972:19;;12774:223::o;13002:413::-;13204:2;13186:21;;;13243:2;13223:18;;;13216:30;13282:34;13277:2;13262:18;;13255:62;-1:-1:-1;;;13348:2:1;13333:18;;13326:47;13405:3;13390:19;;13176:239::o;13420:177::-;13566:25;;;13554:2;13539:18;;13521:76::o;13602:128::-;;13673:1;13669:6;13666:1;13663:13;13660:2;;;13679:18;;:::i;:::-;-1:-1:-1;13715:9:1;;13650:80::o;13735:120::-;;13801:1;13791:2;;13806:18;;:::i;:::-;-1:-1:-1;13840:9:1;;13781:74::o;13860:125::-;;13928:1;13925;13922:8;13919:2;;;13933:18;;:::i;:::-;-1:-1:-1;13970:9:1;;13909:76::o;13990:258::-;14062:1;14072:113;14086:6;14083:1;14080:13;14072:113;;;14162:11;;;14156:18;14143:11;;;14136:39;14108:2;14101:10;14072:113;;;14203:6;14200:1;14197:13;14194:2;;;-1:-1:-1;;14238:1:1;14220:16;;14213:27;14043:205::o;14253:380::-;14338:1;14328:12;;14385:1;14375:12;;;14396:2;;14450:4;14442:6;14438:17;14428:27;;14396:2;14503;14495:6;14492:14;14472:18;14469:38;14466:2;;;14549:10;14544:3;14540:20;14537:1;14530:31;14584:4;14581:1;14574:15;14612:4;14609:1;14602:15;14466:2;;14308:325;;;:::o;14638:135::-;;-1:-1:-1;;14698:17:1;;14695:2;;;14718:18;;:::i;:::-;-1:-1:-1;14765:1:1;14754:13;;14685:88::o;14778:112::-;;14836:1;14826:2;;14841:18;;:::i;:::-;-1:-1:-1;14875:9:1;;14816:74::o;14895:127::-;14956:10;14951:3;14947:20;14944:1;14937:31;14987:4;14984:1;14977:15;15011:4;15008:1;15001:15;15027:127;15088:10;15083:3;15079:20;15076:1;15069:31;15119:4;15116:1;15109:15;15143:4;15140:1;15133:15;15159:127;15220:10;15215:3;15211:20;15208:1;15201:31;15251:4;15248:1;15241:15;15275:4;15272:1;15265:15;15291:133;-1:-1:-1;;;;;;15367:32:1;;15357:43;;15347:2;;15414:1;15411;15404:12

Swarm Source

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