APE Price: $0.50 (-4.22%)
    /

    Token

    Test Dungeon NFT (TDNFT)

    Overview

    Max Total Supply

    0 TDNFT

    Holders

    1

    Market

    Volume (24H)

    N/A

    Min Price (24H)

    N/A

    Max Price (24H)

    N/A
    Balance
    17 TDNFT
    0x2603fe7b19417d8305624f65dd269ab844473fd4
    Loading...
    Loading
    Loading...
    Loading
    Loading...
    Loading

    Click here to update the token information / general information

    Similar Match Source Code
    This contract matches the deployed Bytecode of the Source Code for Contract 0xC280Ec1d...181f338fe
    The constructor portion of the code might be different and could alter the actual behaviour of the contract

    Contract Name:
    TestNFT

    Compiler Version
    v0.8.20+commit.a1b79de6

    Optimization Enabled:
    Yes with 200 runs

    Other Settings:
    shanghai EvmVersion
    File 1 of 16 : TestNFT.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.20;
    import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
    import "@openzeppelin/contracts/access/Ownable.sol";
    /// @title TestNFT
    /// @notice A simple NFT collection for testing the dungeon game
    contract TestNFT is ERC721, Ownable {
    uint256 private _tokenIds;
    string private _baseTokenURI;
    constructor(
    string memory name,
    string memory symbol
    ) ERC721(name, symbol) Ownable(msg.sender) {}
    function mint() external onlyOwner returns (uint256) {
    _tokenIds++;
    uint256 newItemId = _tokenIds;
    _mint(msg.sender, newItemId);
    return newItemId;
    }
    function _baseURI() internal view override returns (string memory) {
    return _baseTokenURI;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 16 : ERC721.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/ERC721.sol)
    pragma solidity ^0.8.20;
    import {IERC721} from "./IERC721.sol";
    import {IERC721Metadata} from "./extensions/IERC721Metadata.sol";
    import {ERC721Utils} from "./utils/ERC721Utils.sol";
    import {Context} from "../../utils/Context.sol";
    import {Strings} from "../../utils/Strings.sol";
    import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";
    import {IERC721Errors} from "../../interfaces/draft-IERC6093.sol";
    /**
    * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC-721] Non-Fungible Token Standard, including
    * the Metadata extension, but not including the Enumerable extension, which is available separately as
    * {ERC721Enumerable}.
    */
    abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
    using Strings for uint256;
    // Token name
    string private _name;
    // Token symbol
    string private _symbol;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 16 : Ownable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
    pragma solidity ^0.8.20;
    import {Context} from "../utils/Context.sol";
    /**
    * @dev Contract module which provides a basic access control mechanism, where
    * there is an account (an owner) that can be granted exclusive access to
    * specific functions.
    *
    * The initial owner is set to the address provided by the deployer. This can
    * later be changed with {transferOwnership}.
    *
    * This module is used through inheritance. It will make available the modifier
    * `onlyOwner`, which can be applied to your functions to restrict their use to
    * the owner.
    */
    abstract contract Ownable is Context {
    address private _owner;
    /**
    * @dev The caller account is not authorized to perform an operation.
    */
    error OwnableUnauthorizedAccount(address account);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 4 of 16 : IERC721.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol)
    pragma solidity ^0.8.20;
    import {IERC165} from "../../utils/introspection/IERC165.sol";
    /**
    * @dev Required interface of an ERC-721 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);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 5 of 16 : IERC721Metadata.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)
    pragma solidity ^0.8.20;
    import {IERC721} from "../IERC721.sol";
    /**
    * @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);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 6 of 16 : ERC721Utils.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/utils/ERC721Utils.sol)
    pragma solidity ^0.8.20;
    import {IERC721Receiver} from "../IERC721Receiver.sol";
    import {IERC721Errors} from "../../../interfaces/draft-IERC6093.sol";
    /**
    * @dev Library that provide common ERC-721 utility functions.
    *
    * See https://eips.ethereum.org/EIPS/eip-721[ERC-721].
    *
    * _Available since v5.1._
    */
    library ERC721Utils {
    /**
    * @dev Performs an acceptance check for the provided `operator` by calling {IERC721-onERC721Received}
    * on the `to` address. The `operator` is generally the address that initiated the token transfer (i.e. `msg.sender`).
    *
    * The acceptance call is not executed and treated as a no-op if the target address doesn't contain code (i.e. an EOA).
    * Otherwise, the recipient must implement {IERC721Receiver-onERC721Received} and return the acceptance magic value to accept
    * the transfer.
    */
    function checkOnERC721Received(
    address operator,
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 7 of 16 : Context.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
    pragma solidity ^0.8.20;
    /**
    * @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;
    }
    function _contextSuffixLength() internal view virtual returns (uint256) {
    return 0;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 8 of 16 : Strings.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.2.0) (utils/Strings.sol)
    pragma solidity ^0.8.20;
    import {Math} from "./math/Math.sol";
    import {SafeCast} from "./math/SafeCast.sol";
    import {SignedMath} from "./math/SignedMath.sol";
    /**
    * @dev String operations.
    */
    library Strings {
    using SafeCast for *;
    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;
    /**
    * @dev The `value` string doesn't fit in the specified `length`.
    */
    error StringsInsufficientHexLength(uint256 value, uint256 length);
    /**
    * @dev The string being parsed contains characters that are not in scope of the given base.
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 9 of 16 : ERC165.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)
    pragma solidity ^0.8.20;
    import {IERC165} from "./IERC165.sol";
    /**
    * @dev Implementation of the {IERC165} interface.
    *
    * Contracts that want to implement ERC-165 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);
    * }
    * ```
    */
    abstract contract ERC165 is IERC165 {
    /**
    * @dev See {IERC165-supportsInterface}.
    */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
    return interfaceId == type(IERC165).interfaceId;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 10 of 16 : draft-IERC6093.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Standard ERC-20 Errors
    * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
    */
    interface IERC20Errors {
    /**
    * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    * @param balance Current balance for the interacting account.
    * @param needed Minimum amount required to perform a transfer.
    */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
    /**
    * @dev Indicates a failure with the token `sender`. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    */
    error ERC20InvalidSender(address sender);
    /**
    * @dev Indicates a failure with the token `receiver`. Used in transfers.
    * @param receiver Address to which tokens are being transferred.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 11 of 16 : IERC165.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Interface of the ERC-165 standard, as defined in the
    * https://eips.ethereum.org/EIPS/eip-165[ERC].
    *
    * 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[ERC 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);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 12 of 16 : IERC721Receiver.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721Receiver.sol)
    pragma solidity ^0.8.20;
    /**
    * @title ERC-721 token receiver interface
    * @dev Interface for any contract that wants to support safeTransfers
    * from ERC-721 asset contracts.
    */
    interface IERC721Receiver {
    /**
    * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
    * by `operator` from `from`, this function is called.
    *
    * It must return its Solidity selector to confirm the token transfer.
    * If any other value is returned or the interface is not implemented by the recipient, the transfer will be
    * reverted.
    *
    * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
    */
    function onERC721Received(
    address operator,
    address from,
    uint256 tokenId,
    bytes calldata data
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 13 of 16 : Math.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol)
    pragma solidity ^0.8.20;
    import {Panic} from "../Panic.sol";
    import {SafeCast} from "./SafeCast.sol";
    /**
    * @dev Standard math utilities missing in the Solidity language.
    */
    library Math {
    enum Rounding {
    Floor, // Toward negative infinity
    Ceil, // Toward positive infinity
    Trunc, // Toward zero
    Expand // Away from zero
    }
    /**
    * @dev Returns the addition of two unsigned integers, with an success flag (no overflow).
    */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
    unchecked {
    uint256 c = a + b;
    if (c < a) return (false, 0);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 14 of 16 : SafeCast.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)
    // This file was procedurally generated from scripts/generate/templates/SafeCast.js.
    pragma solidity ^0.8.20;
    /**
    * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow
    * checks.
    *
    * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
    * easily result in undesired exploitation or bugs, since developers usually
    * assume that overflows raise errors. `SafeCast` restores this intuition by
    * reverting the transaction when such an operation overflows.
    *
    * Using this library instead of the unchecked operations eliminates an entire
    * class of bugs, so it's recommended to use it always.
    */
    library SafeCast {
    /**
    * @dev Value doesn't fit in an uint of `bits` size.
    */
    error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);
    /**
    * @dev An int value doesn't fit in an uint of `bits` size.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 15 of 16 : SignedMath.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)
    pragma solidity ^0.8.20;
    import {SafeCast} from "./SafeCast.sol";
    /**
    * @dev Standard signed math utilities missing in the Solidity language.
    */
    library SignedMath {
    /**
    * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.
    *
    * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
    * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute
    * one branch when needed, making this function more expensive.
    */
    function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {
    unchecked {
    // branchless ternary works because:
    // b ^ (a ^ b) == a
    // b ^ 0 == b
    return b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));
    }
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 16 of 16 : Panic.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Helper library for emitting standardized panic codes.
    *
    * ```solidity
    * contract Example {
    * using Panic for uint256;
    *
    * // Use any of the declared internal constants
    * function foo() { Panic.GENERIC.panic(); }
    *
    * // Alternatively
    * function foo() { Panic.panic(Panic.GENERIC); }
    * }
    * ```
    *
    * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].
    *
    * _Available since v5.1._
    */
    // slither-disable-next-line unused-state
    library Panic {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Settings
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    {
    "remappings": [
    "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "@pythnetwork/entropy-sdk-solidity/=../node_modules/@pythnetwork/entropy-sdk-solidity/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "pyth-sdk-solidity/=lib/pyth-sdk-solidity/"
    ],
    "optimizer": {
    "enabled": true,
    "runs": 200
    },
    "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
    },
    "outputSelection": {
    "*": {
    "*": [
    "evm.bytecode",
    "evm.deployedBytecode",
    "devdoc",
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Contract Security Audit

    Contract ABI

    API
    [{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","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":[{"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"}]

    608060405234801562000010575f80fd5b506040516200157c3803806200157c8339810160408190526200003391620001a6565b3382825f62000043838262000298565b50600162000052828262000298565b5050506001600160a01b0381166200008357604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6200008e8162000097565b50505062000360565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126200010c575f80fd5b81516001600160401b0380821115620001295762000129620000e8565b604051601f8301601f19908116603f01168101908282118183101715620001545762000154620000e8565b8160405283815260209250868385880101111562000170575f80fd5b5f91505b8382101562000193578582018301518183018401529082019062000174565b5f93810190920192909252949350505050565b5f8060408385031215620001b8575f80fd5b82516001600160401b0380821115620001cf575f80fd5b620001dd86838701620000fc565b93506020850151915080821115620001f3575f80fd5b506200020285828601620000fc565b9150509250929050565b600181811c908216806200022157607f821691505b6020821081036200024057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000293575f81815260208120601f850160051c810160208610156200026e5750805b601f850160051c820191505b818110156200028f578281556001016200027a565b5050505b505050565b81516001600160401b03811115620002b457620002b4620000e8565b620002cc81620002c584546200020c565b8462000246565b602080601f83116001811462000302575f8415620002ea5750858301515b5f19600386901b1c1916600185901b1785556200028f565b5f85815260208120601f198616915b82811015620003325788860151825594840194600190910190840162000311565b50858210156200035057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b61120e806200036e5f395ff3fe608060405234801561000f575f80fd5b5060043610610111575f3560e01c806370a082311161009e578063a22cb4651161006e578063a22cb46514610228578063b88d4fde1461023b578063c87b56dd1461024e578063e985e9c514610261578063f2fde38b14610274575f80fd5b806370a08231146101f4578063715018a6146102075780638da5cb5b1461020f57806395d89b4114610220575f80fd5b80631249c58b116100e45780631249c58b1461019257806323b872dd146101a857806342842e0e146101bb57806355f804b3146101ce5780636352211e146101e1575f80fd5b806301ffc9a71461011557806306fdde031461013d578063081812fc14610152578063095ea7b31461017d575b5f80fd5b610128610123366004610d23565b610287565b60405190151581526020015b60405180910390f35b6101456102d8565b6040516101349190610d8b565b610165610160366004610d9d565b610367565b6040516001600160a01b039091168152602001610134565b61019061018b366004610dcf565b61038e565b005b61019a61039d565b604051908152602001610134565b6101906101b6366004610df7565b6103cc565b6101906101c9366004610df7565b61045a565b6101906101dc366004610eb7565b610479565b6101656101ef366004610d9d565b61048d565b61019a610202366004610efc565b610497565b6101906104dc565b6006546001600160a01b0316610165565b6101456104ef565b610190610236366004610f15565b6104fe565b610190610249366004610f4e565b610509565b61014561025c366004610d9d565b610521565b61012861026f366004610fc5565b610586565b610190610282366004610efc565b6105b3565b5f6001600160e01b031982166380ac58cd60e01b14806102b757506001600160e01b03198216635b5e139f60e01b145b806102d257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60605f80546102e690610ff6565b80601f016020809104026020016040519081016040528092919081815260200182805461031290610ff6565b801561035d5780601f106103345761010080835404028352916020019161035d565b820191905f5260205f20905b81548152906001019060200180831161034057829003601f168201915b5050505050905090565b5f610371826105f0565b505f828152600460205260409020546001600160a01b03166102d2565b610399828233610628565b5050565b5f6103a6610635565b60078054905f6103b58361102e565b90915550506007546103c73382610662565b905090565b6001600160a01b0382166103fa57604051633250574960e11b81525f60048201526024015b60405180910390fd5b5f6104068383336106c3565b9050836001600160a01b0316816001600160a01b031614610454576040516364283d7b60e01b81526001600160a01b03808616600483015260248201849052821660448201526064016103f1565b50505050565b61047483838360405180602001604052805f815250610509565b505050565b610481610635565b60086103998282611097565b5f6102d2826105f0565b5f6001600160a01b0382166104c1576040516322718ad960e21b81525f60048201526024016103f1565b506001600160a01b03165f9081526003602052604090205490565b6104e4610635565b6104ed5f6107b5565b565b6060600180546102e690610ff6565b610399338383610806565b6105148484846103cc565b61045433858585856108a4565b606061052c826105f0565b505f6105366109cc565b90505f8151116105545760405180602001604052805f81525061057f565b8061055e846109db565b60405160200161056f929190611153565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b6105bb610635565b6001600160a01b0381166105e457604051631e4fbdf760e01b81525f60048201526024016103f1565b6105ed816107b5565b50565b5f818152600260205260408120546001600160a01b0316806102d257604051637e27328960e01b8152600481018490526024016103f1565b6104748383836001610a6b565b6006546001600160a01b031633146104ed5760405163118cdaa760e01b81523360048201526024016103f1565b6001600160a01b03821661068b57604051633250574960e11b81525f60048201526024016103f1565b5f61069783835f6106c3565b90506001600160a01b03811615610474576040516339e3563760e11b81525f60048201526024016103f1565b5f828152600260205260408120546001600160a01b03908116908316156106ef576106ef818486610b6f565b6001600160a01b038116156107295761070a5f855f80610a6b565b6001600160a01b0381165f90815260036020526040902080545f190190555b6001600160a01b03851615610757576001600160a01b0385165f908152600360205260409020805460010190555b5f8481526002602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03821661083857604051630b61174360e31b81526001600160a01b03831660048201526024016103f1565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383163b156109c557604051630a85bd0160e11b81526001600160a01b0384169063150b7a02906108e6908890889087908790600401611181565b6020604051808303815f875af1925050508015610920575060408051601f3d908101601f1916820190925261091d918101906111bd565b60015b610987573d80801561094d576040519150601f19603f3d011682016040523d82523d5f602084013e610952565b606091505b5080515f0361097f57604051633250574960e11b81526001600160a01b03851660048201526024016103f1565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b146109c357604051633250574960e11b81526001600160a01b03851660048201526024016103f1565b505b5050505050565b6060600880546102e690610ff6565b60605f6109e783610bd3565b60010190505f8167ffffffffffffffff811115610a0657610a06610e30565b6040519080825280601f01601f191660200182016040528015610a30576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084610a3a57509392505050565b8080610a7f57506001600160a01b03821615155b15610b40575f610a8e846105f0565b90506001600160a01b03831615801590610aba5750826001600160a01b0316816001600160a01b031614155b8015610acd5750610acb8184610586565b155b15610af65760405163a9fbf51f60e01b81526001600160a01b03841660048201526024016103f1565b8115610b3e5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b50505f90815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b610b7a838383610caa565b610474576001600160a01b038316610ba857604051637e27328960e01b8152600481018290526024016103f1565b60405163177e802f60e01b81526001600160a01b0383166004820152602481018290526044016103f1565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310610c115772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310610c3d576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310610c5b57662386f26fc10000830492506010015b6305f5e1008310610c73576305f5e100830492506008015b6127108310610c8757612710830492506004015b60648310610c99576064830492506002015b600a83106102d25760010192915050565b5f6001600160a01b03831615801590610d065750826001600160a01b0316846001600160a01b03161480610ce35750610ce38484610586565b80610d0657505f828152600460205260409020546001600160a01b038481169116145b949350505050565b6001600160e01b0319811681146105ed575f80fd5b5f60208284031215610d33575f80fd5b813561057f81610d0e565b5f5b83811015610d58578181015183820152602001610d40565b50505f910152565b5f8151808452610d77816020860160208601610d3e565b601f01601f19169290920160200192915050565b602081525f61057f6020830184610d60565b5f60208284031215610dad575f80fd5b5035919050565b80356001600160a01b0381168114610dca575f80fd5b919050565b5f8060408385031215610de0575f80fd5b610de983610db4565b946020939093013593505050565b5f805f60608486031215610e09575f80fd5b610e1284610db4565b9250610e2060208501610db4565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115610e5e57610e5e610e30565b604051601f8501601f19908116603f01168101908282118183101715610e8657610e86610e30565b81604052809350858152868686011115610e9e575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215610ec7575f80fd5b813567ffffffffffffffff811115610edd575f80fd5b8201601f81018413610eed575f80fd5b610d0684823560208401610e44565b5f60208284031215610f0c575f80fd5b61057f82610db4565b5f8060408385031215610f26575f80fd5b610f2f83610db4565b915060208301358015158114610f43575f80fd5b809150509250929050565b5f805f8060808587031215610f61575f80fd5b610f6a85610db4565b9350610f7860208601610db4565b925060408501359150606085013567ffffffffffffffff811115610f9a575f80fd5b8501601f81018713610faa575f80fd5b610fb987823560208401610e44565b91505092959194509250565b5f8060408385031215610fd6575f80fd5b610fdf83610db4565b9150610fed60208401610db4565b90509250929050565b600181811c9082168061100a57607f821691505b60208210810361102857634e487b7160e01b5f52602260045260245ffd5b50919050565b5f6001820161104b57634e487b7160e01b5f52601160045260245ffd5b5060010190565b601f821115610474575f81815260208120601f850160051c810160208610156110785750805b601f850160051c820191505b818110156109c357828155600101611084565b815167ffffffffffffffff8111156110b1576110b1610e30565b6110c5816110bf8454610ff6565b84611052565b602080601f8311600181146110f8575f84156110e15750858301515b5f19600386901b1c1916600185901b1785556109c3565b5f85815260208120601f198616915b8281101561112657888601518255948401946001909101908401611107565b508582101561114357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f8351611164818460208801610d3e565b835190830190611178818360208801610d3e565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906111b390830184610d60565b9695505050505050565b5f602082840312156111cd575f80fd5b815161057f81610d0e56fea2646970667358221220f3721f079f8825372feace94acaa9680f7b65624d3cb1b5381336a6a277ec52b64736f6c63430008140033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000010546573742044756e67656f6e204e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000554444e4654000000000000000000000000000000000000000000000000000000

    Deployed Bytecode

    0x608060405234801561000f575f80fd5b5060043610610111575f3560e01c806370a082311161009e578063a22cb4651161006e578063a22cb46514610228578063b88d4fde1461023b578063c87b56dd1461024e578063e985e9c514610261578063f2fde38b14610274575f80fd5b806370a08231146101f4578063715018a6146102075780638da5cb5b1461020f57806395d89b4114610220575f80fd5b80631249c58b116100e45780631249c58b1461019257806323b872dd146101a857806342842e0e146101bb57806355f804b3146101ce5780636352211e146101e1575f80fd5b806301ffc9a71461011557806306fdde031461013d578063081812fc14610152578063095ea7b31461017d575b5f80fd5b610128610123366004610d23565b610287565b60405190151581526020015b60405180910390f35b6101456102d8565b6040516101349190610d8b565b610165610160366004610d9d565b610367565b6040516001600160a01b039091168152602001610134565b61019061018b366004610dcf565b61038e565b005b61019a61039d565b604051908152602001610134565b6101906101b6366004610df7565b6103cc565b6101906101c9366004610df7565b61045a565b6101906101dc366004610eb7565b610479565b6101656101ef366004610d9d565b61048d565b61019a610202366004610efc565b610497565b6101906104dc565b6006546001600160a01b0316610165565b6101456104ef565b610190610236366004610f15565b6104fe565b610190610249366004610f4e565b610509565b61014561025c366004610d9d565b610521565b61012861026f366004610fc5565b610586565b610190610282366004610efc565b6105b3565b5f6001600160e01b031982166380ac58cd60e01b14806102b757506001600160e01b03198216635b5e139f60e01b145b806102d257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60605f80546102e690610ff6565b80601f016020809104026020016040519081016040528092919081815260200182805461031290610ff6565b801561035d5780601f106103345761010080835404028352916020019161035d565b820191905f5260205f20905b81548152906001019060200180831161034057829003601f168201915b5050505050905090565b5f610371826105f0565b505f828152600460205260409020546001600160a01b03166102d2565b610399828233610628565b5050565b5f6103a6610635565b60078054905f6103b58361102e565b90915550506007546103c73382610662565b905090565b6001600160a01b0382166103fa57604051633250574960e11b81525f60048201526024015b60405180910390fd5b5f6104068383336106c3565b9050836001600160a01b0316816001600160a01b031614610454576040516364283d7b60e01b81526001600160a01b03808616600483015260248201849052821660448201526064016103f1565b50505050565b61047483838360405180602001604052805f815250610509565b505050565b610481610635565b60086103998282611097565b5f6102d2826105f0565b5f6001600160a01b0382166104c1576040516322718ad960e21b81525f60048201526024016103f1565b506001600160a01b03165f9081526003602052604090205490565b6104e4610635565b6104ed5f6107b5565b565b6060600180546102e690610ff6565b610399338383610806565b6105148484846103cc565b61045433858585856108a4565b606061052c826105f0565b505f6105366109cc565b90505f8151116105545760405180602001604052805f81525061057f565b8061055e846109db565b60405160200161056f929190611153565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b6105bb610635565b6001600160a01b0381166105e457604051631e4fbdf760e01b81525f60048201526024016103f1565b6105ed816107b5565b50565b5f818152600260205260408120546001600160a01b0316806102d257604051637e27328960e01b8152600481018490526024016103f1565b6104748383836001610a6b565b6006546001600160a01b031633146104ed5760405163118cdaa760e01b81523360048201526024016103f1565b6001600160a01b03821661068b57604051633250574960e11b81525f60048201526024016103f1565b5f61069783835f6106c3565b90506001600160a01b03811615610474576040516339e3563760e11b81525f60048201526024016103f1565b5f828152600260205260408120546001600160a01b03908116908316156106ef576106ef818486610b6f565b6001600160a01b038116156107295761070a5f855f80610a6b565b6001600160a01b0381165f90815260036020526040902080545f190190555b6001600160a01b03851615610757576001600160a01b0385165f908152600360205260409020805460010190555b5f8481526002602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03821661083857604051630b61174360e31b81526001600160a01b03831660048201526024016103f1565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383163b156109c557604051630a85bd0160e11b81526001600160a01b0384169063150b7a02906108e6908890889087908790600401611181565b6020604051808303815f875af1925050508015610920575060408051601f3d908101601f1916820190925261091d918101906111bd565b60015b610987573d80801561094d576040519150601f19603f3d011682016040523d82523d5f602084013e610952565b606091505b5080515f0361097f57604051633250574960e11b81526001600160a01b03851660048201526024016103f1565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b146109c357604051633250574960e11b81526001600160a01b03851660048201526024016103f1565b505b5050505050565b6060600880546102e690610ff6565b60605f6109e783610bd3565b60010190505f8167ffffffffffffffff811115610a0657610a06610e30565b6040519080825280601f01601f191660200182016040528015610a30576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084610a3a57509392505050565b8080610a7f57506001600160a01b03821615155b15610b40575f610a8e846105f0565b90506001600160a01b03831615801590610aba5750826001600160a01b0316816001600160a01b031614155b8015610acd5750610acb8184610586565b155b15610af65760405163a9fbf51f60e01b81526001600160a01b03841660048201526024016103f1565b8115610b3e5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b50505f90815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b610b7a838383610caa565b610474576001600160a01b038316610ba857604051637e27328960e01b8152600481018290526024016103f1565b60405163177e802f60e01b81526001600160a01b0383166004820152602481018290526044016103f1565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310610c115772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310610c3d576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310610c5b57662386f26fc10000830492506010015b6305f5e1008310610c73576305f5e100830492506008015b6127108310610c8757612710830492506004015b60648310610c99576064830492506002015b600a83106102d25760010192915050565b5f6001600160a01b03831615801590610d065750826001600160a01b0316846001600160a01b03161480610ce35750610ce38484610586565b80610d0657505f828152600460205260409020546001600160a01b038481169116145b949350505050565b6001600160e01b0319811681146105ed575f80fd5b5f60208284031215610d33575f80fd5b813561057f81610d0e565b5f5b83811015610d58578181015183820152602001610d40565b50505f910152565b5f8151808452610d77816020860160208601610d3e565b601f01601f19169290920160200192915050565b602081525f61057f6020830184610d60565b5f60208284031215610dad575f80fd5b5035919050565b80356001600160a01b0381168114610dca575f80fd5b919050565b5f8060408385031215610de0575f80fd5b610de983610db4565b946020939093013593505050565b5f805f60608486031215610e09575f80fd5b610e1284610db4565b9250610e2060208501610db4565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115610e5e57610e5e610e30565b604051601f8501601f19908116603f01168101908282118183101715610e8657610e86610e30565b81604052809350858152868686011115610e9e575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215610ec7575f80fd5b813567ffffffffffffffff811115610edd575f80fd5b8201601f81018413610eed575f80fd5b610d0684823560208401610e44565b5f60208284031215610f0c575f80fd5b61057f82610db4565b5f8060408385031215610f26575f80fd5b610f2f83610db4565b915060208301358015158114610f43575f80fd5b809150509250929050565b5f805f8060808587031215610f61575f80fd5b610f6a85610db4565b9350610f7860208601610db4565b925060408501359150606085013567ffffffffffffffff811115610f9a575f80fd5b8501601f81018713610faa575f80fd5b610fb987823560208401610e44565b91505092959194509250565b5f8060408385031215610fd6575f80fd5b610fdf83610db4565b9150610fed60208401610db4565b90509250929050565b600181811c9082168061100a57607f821691505b60208210810361102857634e487b7160e01b5f52602260045260245ffd5b50919050565b5f6001820161104b57634e487b7160e01b5f52601160045260245ffd5b5060010190565b601f821115610474575f81815260208120601f850160051c810160208610156110785750805b601f850160051c820191505b818110156109c357828155600101611084565b815167ffffffffffffffff8111156110b1576110b1610e30565b6110c5816110bf8454610ff6565b84611052565b602080601f8311600181146110f8575f84156110e15750858301515b5f19600386901b1c1916600185901b1785556109c3565b5f85815260208120601f198616915b8281101561112657888601518255948401946001909101908401611107565b508582101561114357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f8351611164818460208801610d3e565b835190830190611178818360208801610d3e565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906111b390830184610d60565b9695505050505050565b5f602082840312156111cd575f80fd5b815161057f81610d0e56fea2646970667358221220f3721f079f8825372feace94acaa9680f7b65624d3cb1b5381336a6a277ec52b64736f6c63430008140033

    [ 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.