ETH Price: $3,167.73 (-4.52%)
 

Overview

Max Total Supply

69 ZEON

Holders

69

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ZEON
0xdfdbbc65b9f033cae3d55e4ff66a7747c8a98eea
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:
ZEON

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: erc721a/contracts/IERC721A.sol

// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

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

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

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

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

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

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

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

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

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

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

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

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: zeon.sol

pragma solidity 0.8.7;




contract ZEON is ERC721A, Ownable {
  string private baseURI;

  bool public started = false;
  uint256 public price;
  bool public claimed = false;
  uint256 public constant MAX_SUPPLY = 69;
  uint256 public constant MAX_MINT = 1;

  mapping(address => uint) public addressClaimed;

  constructor() ERC721A("Zeon Genesis", "ZEON") {}

  // Start tokenid at 1 instead of 0
  function _startTokenId() internal view virtual override returns (uint256) {
      return 1;
  }

  function mint(uint256 _nbTokens) external payable {
    require(msg.sender==tx.origin, "Zeon doesnt like contracts");
    require(started, "Zeon Genesis didnt start yet!");
    require(_nbTokens <= MAX_MINT, "Ser thats too many zeons");
    require(addressClaimed[_msgSender()] < MAX_MINT, "You have enough zeons!");
    require(totalSupply() < MAX_SUPPLY, "We ran out of zeons!");
    // mint a zeon if youre good person
    addressClaimed[_msgSender()] += 1;
    _safeMint(msg.sender, 1);
  }


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

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

  function enableMint(bool mintStarted) external onlyOwner {
      started = mintStarted;
  }
  function setPrice(uint256 _price) external onlyOwner {
       price = _price;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"mintStarted","type":"bool"}],"name":"enableMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nbTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805460ff19908116909155600c805490911690553480156200002757600080fd5b50604080518082018252600c81526b5a656f6e2047656e6573697360a01b6020808301918252835180850190945260048452632d22a7a760e11b9084015281519192916200007891600291620000f9565b5080516200008e906003906020840190620000f9565b5050600160005550620000a133620000a7565b620001dc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000107906200019f565b90600052602060002090601f0160209004810192826200012b576000855562000176565b82601f106200014657805160ff191683800117855562000176565b8280016001018555821562000176579182015b828111156200017657825182559160200191906001019062000159565b506200018492915062000188565b5090565b5b8082111562000184576000815560010162000189565b600181811c90821680620001b457607f821691505b60208210811415620001d657634e487b7160e01b600052602260045260246000fd5b50919050565b6116f680620001ec6000396000f3fe60806040526004361061019c5760003560e01c8063772dc32f116100ec578063b88d4fde1161008a578063e834a83411610064578063e834a83414610486578063e985e9c5146104a0578063f0292a03146104e9578063f2fde38b146104fe57600080fd5b8063b88d4fde14610426578063c68b330514610446578063c87b56dd1461046657600080fd5b806395d89b41116100c657806395d89b41146103c8578063a035b1fe146103dd578063a0712d68146103f3578063a22cb4651461040657600080fd5b8063772dc32f1461035d5780638da5cb5b1461038a57806391b7f5ed146103a857600080fd5b806323b872dd1161015957806355f804b31161013357806355f804b3146102e85780636352211e1461030857806370a0823114610328578063715018a61461034857600080fd5b806323b872dd1461029357806332cb6b0c146102b357806342842e0e146102c857600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd146102525780631f2698ab14610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461148b565b61051e565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610570565b6040516101cd91906115bf565b34801561020457600080fd5b5061021861021336600461150e565b610602565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611446565b610646565b005b34801561025e57600080fd5b5060015460005403600019015b6040519081526020016101cd565b34801561028557600080fd5b50600a546101c19060ff1681565b34801561029f57600080fd5b506102506102ae366004611364565b610719565b3480156102bf57600080fd5b5061026b604581565b3480156102d457600080fd5b506102506102e3366004611364565b610729565b3480156102f457600080fd5b506102506103033660046114c5565b610744565b34801561031457600080fd5b5061021861032336600461150e565b61078e565b34801561033457600080fd5b5061026b610343366004611316565b610799565b34801561035457600080fd5b506102506107e8565b34801561036957600080fd5b5061026b610378366004611316565b600d6020526000908152604090205481565b34801561039657600080fd5b506008546001600160a01b0316610218565b3480156103b457600080fd5b506102506103c336600461150e565b61081e565b3480156103d457600080fd5b506101eb61084d565b3480156103e957600080fd5b5061026b600b5481565b61025061040136600461150e565b61085c565b34801561041257600080fd5b5061025061042136600461141c565b610a2d565b34801561043257600080fd5b506102506104413660046113a0565b610ac3565b34801561045257600080fd5b50610250610461366004611470565b610b0d565b34801561047257600080fd5b506101eb61048136600461150e565b610b4a565b34801561049257600080fd5b50600c546101c19060ff1681565b3480156104ac57600080fd5b506101c16104bb366004611331565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104f557600080fd5b5061026b600181565b34801561050a57600080fd5b50610250610519366004611316565b610bcf565b60006301ffc9a760e01b6001600160e01b03198316148061054f57506380ac58cd60e01b6001600160e01b03198316145b8061056a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461057f90611659565b80601f01602080910402602001604051908101604052809291908181526020018280546105ab90611659565b80156105f85780601f106105cd576101008083540402835291602001916105f8565b820191906000526020600020905b8154815290600101906020018083116105db57829003601f168201915b5050505050905090565b600061060d82610c67565b61062a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061065182610c9c565b9050806001600160a01b0316836001600160a01b031614156106865760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106bd576106a081336104bb565b6106bd576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610724838383610d05565b505050565b61072483838360405180602001604052806000815250610ac3565b6008546001600160a01b031633146107775760405162461bcd60e51b815260040161076e906115d2565b60405180910390fd5b805161078a9060099060208401906111db565b5050565b600061056a82610c9c565b60006001600160a01b0382166107c2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108125760405162461bcd60e51b815260040161076e906115d2565b61081c6000610ea8565b565b6008546001600160a01b031633146108485760405162461bcd60e51b815260040161076e906115d2565b600b55565b60606003805461057f90611659565b3332146108ab5760405162461bcd60e51b815260206004820152601a60248201527f5a656f6e20646f65736e74206c696b6520636f6e747261637473000000000000604482015260640161076e565b600a5460ff166108fd5760405162461bcd60e51b815260206004820152601d60248201527f5a656f6e2047656e65736973206469646e742073746172742079657421000000604482015260640161076e565b600181111561094e5760405162461bcd60e51b815260206004820152601860248201527f53657220746861747320746f6f206d616e79207a656f6e730000000000000000604482015260640161076e565b336000908152600d60205260409020546001116109a65760405162461bcd60e51b8152602060048201526016602482015275596f75206861766520656e6f756768207a656f6e732160501b604482015260640161076e565b600154600054604591900360001901106109f95760405162461bcd60e51b815260206004820152601460248201527357652072616e206f7574206f66207a656f6e732160601b604482015260640161076e565b336000908152600d60205260408120805460019290610a19908490611607565b90915550610a2a9050336001610efa565b50565b6001600160a01b038216331415610a575760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ace848484610d05565b6001600160a01b0383163b15610b0757610aea84848484610f14565b610b07576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610b375760405162461bcd60e51b815260040161076e906115d2565b600a805460ff1916911515919091179055565b6060610b5582610c67565b610b7257604051630a14c4b560e41b815260040160405180910390fd5b6000610b7c61100c565b9050805160001415610b9d5760405180602001604052806000815250610bc8565b80610ba78461101b565b604051602001610bb8929190611553565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610bf95760405162461bcd60e51b815260040161076e906115d2565b6001600160a01b038116610c5e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076e565b610a2a81610ea8565b600081600111158015610c7b575060005482105b801561056a575050600090815260046020526040902054600160e01b161590565b60008180600111610cec57600054811015610cec57600081815260046020526040902054600160e01b8116610cea575b80610bc8575060001901600081815260046020526040902054610ccc565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610d1082610c9c565b9050836001600160a01b0316816001600160a01b031614610d435760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610d615750610d6185336104bb565b80610d7c575033610d7184610602565b6001600160a01b0316145b905080610d9c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610dc357604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216610e605760018301600081815260046020526040902054610e5e576000548114610e5e5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61078a82826040518060200160405280600081525061106a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f49903390899088908890600401611582565b602060405180830381600087803b158015610f6357600080fd5b505af1925050508015610f93575060408051601f3d908101601f19168201909252610f90918101906114a8565b60015b610fee573d808015610fc1576040519150601f19603f3d011682016040523d82523d6000602084013e610fc6565b606091505b508051610fe6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461057f90611659565b604080516080810191829052607f0190826030600a8206018353600a90045b801561105857600183039250600a81066030018353600a900461103a565b50819003601f19909101908152919050565b6000546001600160a01b03841661109357604051622e076360e81b815260040160405180910390fd5b826110b15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611186575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461114f6000878480600101955087610f14565b61116c576040516368d2bf6b60e11b815260040160405180910390fd5b80821061110457826000541461118157600080fd5b6111cb565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611187575b506000908155610b079085838684565b8280546111e790611659565b90600052602060002090601f016020900481019282611209576000855561124f565b82601f1061122257805160ff191683800117855561124f565b8280016001018555821561124f579182015b8281111561124f578251825591602001919060010190611234565b5061125b92915061125f565b5090565b5b8082111561125b5760008155600101611260565b600067ffffffffffffffff8084111561128f5761128f611694565b604051601f8501601f19908116603f011681019082821181831017156112b7576112b7611694565b816040528093508581528686860111156112d057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461130157600080fd5b919050565b8035801515811461130157600080fd5b60006020828403121561132857600080fd5b610bc8826112ea565b6000806040838503121561134457600080fd5b61134d836112ea565b915061135b602084016112ea565b90509250929050565b60008060006060848603121561137957600080fd5b611382846112ea565b9250611390602085016112ea565b9150604084013590509250925092565b600080600080608085870312156113b657600080fd5b6113bf856112ea565b93506113cd602086016112ea565b925060408501359150606085013567ffffffffffffffff8111156113f057600080fd5b8501601f8101871361140157600080fd5b61141087823560208401611274565b91505092959194509250565b6000806040838503121561142f57600080fd5b611438836112ea565b915061135b60208401611306565b6000806040838503121561145957600080fd5b611462836112ea565b946020939093013593505050565b60006020828403121561148257600080fd5b610bc882611306565b60006020828403121561149d57600080fd5b8135610bc8816116aa565b6000602082840312156114ba57600080fd5b8151610bc8816116aa565b6000602082840312156114d757600080fd5b813567ffffffffffffffff8111156114ee57600080fd5b8201601f810184136114ff57600080fd5b61100484823560208401611274565b60006020828403121561152057600080fd5b5035919050565b6000815180845261153f81602086016020860161162d565b601f01601f19169290920160200192915050565b6000835161156581846020880161162d565b83519083019061157981836020880161162d565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906115b590830184611527565b9695505050505050565b602081526000610bc86020830184611527565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561162857634e487b7160e01b600052601160045260246000fd5b500190565b60005b83811015611648578181015183820152602001611630565b83811115610b075750506000910152565b600181811c9082168061166d57607f821691505b6020821081141561168e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a2a57600080fdfea264697066735822122099ec8ebe5082a276fa7e47bcdf47b8f8c374cb54dab93d83ba685510c112ae8564736f6c63430008070033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c8063772dc32f116100ec578063b88d4fde1161008a578063e834a83411610064578063e834a83414610486578063e985e9c5146104a0578063f0292a03146104e9578063f2fde38b146104fe57600080fd5b8063b88d4fde14610426578063c68b330514610446578063c87b56dd1461046657600080fd5b806395d89b41116100c657806395d89b41146103c8578063a035b1fe146103dd578063a0712d68146103f3578063a22cb4651461040657600080fd5b8063772dc32f1461035d5780638da5cb5b1461038a57806391b7f5ed146103a857600080fd5b806323b872dd1161015957806355f804b31161013357806355f804b3146102e85780636352211e1461030857806370a0823114610328578063715018a61461034857600080fd5b806323b872dd1461029357806332cb6b0c146102b357806342842e0e146102c857600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd146102525780631f2698ab14610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461148b565b61051e565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610570565b6040516101cd91906115bf565b34801561020457600080fd5b5061021861021336600461150e565b610602565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611446565b610646565b005b34801561025e57600080fd5b5060015460005403600019015b6040519081526020016101cd565b34801561028557600080fd5b50600a546101c19060ff1681565b34801561029f57600080fd5b506102506102ae366004611364565b610719565b3480156102bf57600080fd5b5061026b604581565b3480156102d457600080fd5b506102506102e3366004611364565b610729565b3480156102f457600080fd5b506102506103033660046114c5565b610744565b34801561031457600080fd5b5061021861032336600461150e565b61078e565b34801561033457600080fd5b5061026b610343366004611316565b610799565b34801561035457600080fd5b506102506107e8565b34801561036957600080fd5b5061026b610378366004611316565b600d6020526000908152604090205481565b34801561039657600080fd5b506008546001600160a01b0316610218565b3480156103b457600080fd5b506102506103c336600461150e565b61081e565b3480156103d457600080fd5b506101eb61084d565b3480156103e957600080fd5b5061026b600b5481565b61025061040136600461150e565b61085c565b34801561041257600080fd5b5061025061042136600461141c565b610a2d565b34801561043257600080fd5b506102506104413660046113a0565b610ac3565b34801561045257600080fd5b50610250610461366004611470565b610b0d565b34801561047257600080fd5b506101eb61048136600461150e565b610b4a565b34801561049257600080fd5b50600c546101c19060ff1681565b3480156104ac57600080fd5b506101c16104bb366004611331565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104f557600080fd5b5061026b600181565b34801561050a57600080fd5b50610250610519366004611316565b610bcf565b60006301ffc9a760e01b6001600160e01b03198316148061054f57506380ac58cd60e01b6001600160e01b03198316145b8061056a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461057f90611659565b80601f01602080910402602001604051908101604052809291908181526020018280546105ab90611659565b80156105f85780601f106105cd576101008083540402835291602001916105f8565b820191906000526020600020905b8154815290600101906020018083116105db57829003601f168201915b5050505050905090565b600061060d82610c67565b61062a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061065182610c9c565b9050806001600160a01b0316836001600160a01b031614156106865760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106bd576106a081336104bb565b6106bd576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610724838383610d05565b505050565b61072483838360405180602001604052806000815250610ac3565b6008546001600160a01b031633146107775760405162461bcd60e51b815260040161076e906115d2565b60405180910390fd5b805161078a9060099060208401906111db565b5050565b600061056a82610c9c565b60006001600160a01b0382166107c2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108125760405162461bcd60e51b815260040161076e906115d2565b61081c6000610ea8565b565b6008546001600160a01b031633146108485760405162461bcd60e51b815260040161076e906115d2565b600b55565b60606003805461057f90611659565b3332146108ab5760405162461bcd60e51b815260206004820152601a60248201527f5a656f6e20646f65736e74206c696b6520636f6e747261637473000000000000604482015260640161076e565b600a5460ff166108fd5760405162461bcd60e51b815260206004820152601d60248201527f5a656f6e2047656e65736973206469646e742073746172742079657421000000604482015260640161076e565b600181111561094e5760405162461bcd60e51b815260206004820152601860248201527f53657220746861747320746f6f206d616e79207a656f6e730000000000000000604482015260640161076e565b336000908152600d60205260409020546001116109a65760405162461bcd60e51b8152602060048201526016602482015275596f75206861766520656e6f756768207a656f6e732160501b604482015260640161076e565b600154600054604591900360001901106109f95760405162461bcd60e51b815260206004820152601460248201527357652072616e206f7574206f66207a656f6e732160601b604482015260640161076e565b336000908152600d60205260408120805460019290610a19908490611607565b90915550610a2a9050336001610efa565b50565b6001600160a01b038216331415610a575760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ace848484610d05565b6001600160a01b0383163b15610b0757610aea84848484610f14565b610b07576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610b375760405162461bcd60e51b815260040161076e906115d2565b600a805460ff1916911515919091179055565b6060610b5582610c67565b610b7257604051630a14c4b560e41b815260040160405180910390fd5b6000610b7c61100c565b9050805160001415610b9d5760405180602001604052806000815250610bc8565b80610ba78461101b565b604051602001610bb8929190611553565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610bf95760405162461bcd60e51b815260040161076e906115d2565b6001600160a01b038116610c5e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076e565b610a2a81610ea8565b600081600111158015610c7b575060005482105b801561056a575050600090815260046020526040902054600160e01b161590565b60008180600111610cec57600054811015610cec57600081815260046020526040902054600160e01b8116610cea575b80610bc8575060001901600081815260046020526040902054610ccc565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610d1082610c9c565b9050836001600160a01b0316816001600160a01b031614610d435760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610d615750610d6185336104bb565b80610d7c575033610d7184610602565b6001600160a01b0316145b905080610d9c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610dc357604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216610e605760018301600081815260046020526040902054610e5e576000548114610e5e5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61078a82826040518060200160405280600081525061106a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f49903390899088908890600401611582565b602060405180830381600087803b158015610f6357600080fd5b505af1925050508015610f93575060408051601f3d908101601f19168201909252610f90918101906114a8565b60015b610fee573d808015610fc1576040519150601f19603f3d011682016040523d82523d6000602084013e610fc6565b606091505b508051610fe6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461057f90611659565b604080516080810191829052607f0190826030600a8206018353600a90045b801561105857600183039250600a81066030018353600a900461103a565b50819003601f19909101908152919050565b6000546001600160a01b03841661109357604051622e076360e81b815260040160405180910390fd5b826110b15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611186575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461114f6000878480600101955087610f14565b61116c576040516368d2bf6b60e11b815260040160405180910390fd5b80821061110457826000541461118157600080fd5b6111cb565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611187575b506000908155610b079085838684565b8280546111e790611659565b90600052602060002090601f016020900481019282611209576000855561124f565b82601f1061122257805160ff191683800117855561124f565b8280016001018555821561124f579182015b8281111561124f578251825591602001919060010190611234565b5061125b92915061125f565b5090565b5b8082111561125b5760008155600101611260565b600067ffffffffffffffff8084111561128f5761128f611694565b604051601f8501601f19908116603f011681019082821181831017156112b7576112b7611694565b816040528093508581528686860111156112d057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461130157600080fd5b919050565b8035801515811461130157600080fd5b60006020828403121561132857600080fd5b610bc8826112ea565b6000806040838503121561134457600080fd5b61134d836112ea565b915061135b602084016112ea565b90509250929050565b60008060006060848603121561137957600080fd5b611382846112ea565b9250611390602085016112ea565b9150604084013590509250925092565b600080600080608085870312156113b657600080fd5b6113bf856112ea565b93506113cd602086016112ea565b925060408501359150606085013567ffffffffffffffff8111156113f057600080fd5b8501601f8101871361140157600080fd5b61141087823560208401611274565b91505092959194509250565b6000806040838503121561142f57600080fd5b611438836112ea565b915061135b60208401611306565b6000806040838503121561145957600080fd5b611462836112ea565b946020939093013593505050565b60006020828403121561148257600080fd5b610bc882611306565b60006020828403121561149d57600080fd5b8135610bc8816116aa565b6000602082840312156114ba57600080fd5b8151610bc8816116aa565b6000602082840312156114d757600080fd5b813567ffffffffffffffff8111156114ee57600080fd5b8201601f810184136114ff57600080fd5b61100484823560208401611274565b60006020828403121561152057600080fd5b5035919050565b6000815180845261153f81602086016020860161162d565b601f01601f19169290920160200192915050565b6000835161156581846020880161162d565b83519083019061157981836020880161162d565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906115b590830184611527565b9695505050505050565b602081526000610bc86020830184611527565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561162857634e487b7160e01b600052601160045260246000fd5b500190565b60005b83811015611648578181015183820152602001611630565b83811115610b075750506000910152565b600181811c9082168061166d57607f821691505b6020821081141561168e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a2a57600080fdfea264697066735822122099ec8ebe5082a276fa7e47bcdf47b8f8c374cb54dab93d83ba685510c112ae8564736f6c63430008070033

Deployed Bytecode Sourcemap

41854:1398:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13104:615;;;;;;;;;;-1:-1:-1;13104:615:0;;;;;:::i;:::-;;:::i;:::-;;;5903:14:1;;5896:22;5878:41;;5866:2;5851:18;13104:615:0;;;;;;;;18117:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20185:204::-;;;;;;;;;;-1:-1:-1;20185:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5201:32:1;;;5183:51;;5171:2;5156:18;20185:204:0;5037:203:1;19645:474:0;;;;;;;;;;-1:-1:-1;19645:474:0;;;;;:::i;:::-;;:::i;:::-;;12158:315;;;;;;;;;;-1:-1:-1;42333:1:0;12424:12;12211:7;12408:13;:28;-1:-1:-1;;12408:46:0;12158:315;;;8834:25:1;;;8822:2;8807:18;12158:315:0;8688:177:1;41922:27:0;;;;;;;;;;-1:-1:-1;41922:27:0;;;;;;;;21071:170;;;;;;;;;;-1:-1:-1;21071:170:0;;;;;:::i;:::-;;:::i;42011:39::-;;;;;;;;;;;;42048:2;42011:39;;21312:185;;;;;;;;;;-1:-1:-1;21312:185:0;;;;;:::i;:::-;;:::i;42857:96::-;;;;;;;;;;-1:-1:-1;42857:96:0;;;;;:::i;:::-;;:::i;17906:144::-;;;;;;;;;;-1:-1:-1;17906:144:0;;;;;:::i;:::-;;:::i;13783:224::-;;;;;;;;;;-1:-1:-1;13783:224:0;;;;;:::i;:::-;;:::i;40984:103::-;;;;;;;;;;;;;:::i;42098:46::-;;;;;;;;;;-1:-1:-1;42098:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;40333:87;;;;;;;;;;-1:-1:-1;40406:6:0;;-1:-1:-1;;;;;40406:6:0;40333:87;;43166:83;;;;;;;;;;-1:-1:-1;43166:83:0;;;;;:::i;:::-;;:::i;18286:104::-;;;;;;;;;;;;;:::i;41954:20::-;;;;;;;;;;;;;;;;42346:503;;;;;;:::i;:::-;;:::i;20461:308::-;;;;;;;;;;-1:-1:-1;20461:308:0;;;;;:::i;:::-;;:::i;21568:396::-;;;;;;;;;;-1:-1:-1;21568:396:0;;;;;:::i;:::-;;:::i;43069:93::-;;;;;;;;;;-1:-1:-1;43069:93:0;;;;;:::i;:::-;;:::i;18461:318::-;;;;;;;;;;-1:-1:-1;18461:318:0;;;;;:::i;:::-;;:::i;41979:27::-;;;;;;;;;;-1:-1:-1;41979:27:0;;;;;;;;20840:164;;;;;;;;;;-1:-1:-1;20840:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;20961:25:0;;;20937:4;20961:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20840:164;42055:36;;;;;;;;;;;;42090:1;42055:36;;41242:201;;;;;;;;;;-1:-1:-1;41242:201:0;;;;;:::i;:::-;;:::i;13104:615::-;13189:4;-1:-1:-1;;;;;;;;;13489:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;13566:25:0;;;13489:102;:179;;;-1:-1:-1;;;;;;;;;;13643:25:0;;;13489:179;13469:199;13104:615;-1:-1:-1;;13104:615:0:o;18117:100::-;18171:13;18204:5;18197:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18117:100;:::o;20185:204::-;20253:7;20278:16;20286:7;20278;:16::i;:::-;20273:64;;20303:34;;-1:-1:-1;;;20303:34:0;;;;;;;;;;;20273:64;-1:-1:-1;20357:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20357:24:0;;20185:204::o;19645:474::-;19718:13;19750:27;19769:7;19750:18;:27::i;:::-;19718:61;;19800:5;-1:-1:-1;;;;;19794:11:0;:2;-1:-1:-1;;;;;19794:11:0;;19790:48;;;19814:24;;-1:-1:-1;;;19814:24:0;;;;;;;;;;;19790:48;36288:10;-1:-1:-1;;;;;19855:28:0;;;19851:175;;19903:44;19920:5;36288:10;20840:164;:::i;19903:44::-;19898:128;;19975:35;;-1:-1:-1;;;19975:35:0;;;;;;;;;;;19898:128;20038:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20038:29:0;-1:-1:-1;;;;;20038:29:0;;;;;;;;;20083:28;;20038:24;;20083:28;;;;;;;19707:412;19645:474;;:::o;21071:170::-;21205:28;21215:4;21221:2;21225:7;21205:9;:28::i;:::-;21071:170;;;:::o;21312:185::-;21450:39;21467:4;21473:2;21477:7;21450:39;;;;;;;;;;;;:16;:39::i;42857:96::-;40406:6;;-1:-1:-1;;;;;40406:6:0;36288:10;40553:23;40545:68;;;;-1:-1:-1;;;40545:68:0;;;;;;;:::i;:::-;;;;;;;;;42929:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42857:96:::0;:::o;17906:144::-;17970:7;18013:27;18032:7;18013:18;:27::i;13783:224::-;13847:7;-1:-1:-1;;;;;13871:19:0;;13867:60;;13899:28;;-1:-1:-1;;;13899:28:0;;;;;;;;;;;13867:60;-1:-1:-1;;;;;;13945:25:0;;;;;:18;:25;;;;;;9122:13;13945:54;;13783:224::o;40984:103::-;40406:6;;-1:-1:-1;;;;;40406:6:0;36288:10;40553:23;40545:68;;;;-1:-1:-1;;;40545:68:0;;;;;;;:::i;:::-;41049:30:::1;41076:1;41049:18;:30::i;:::-;40984:103::o:0;43166:83::-;40406:6;;-1:-1:-1;;;;;40406:6:0;36288:10;40553:23;40545:68;;;;-1:-1:-1;;;40545:68:0;;;;;;;:::i;:::-;43229:5:::1;:14:::0;43166:83::o;18286:104::-;18342:13;18375:7;18368:14;;;;;:::i;42346:503::-;42411:10;42423:9;42411:21;42403:60;;;;-1:-1:-1;;;42403:60:0;;7116:2:1;42403:60:0;;;7098:21:1;7155:2;7135:18;;;7128:30;7194:28;7174:18;;;7167:56;7240:18;;42403:60:0;6914:350:1;42403:60:0;42478:7;;;;42470:49;;;;-1:-1:-1;;;42470:49:0;;8532:2:1;42470:49:0;;;8514:21:1;8571:2;8551:18;;;8544:30;8610:31;8590:18;;;8583:59;8659:18;;42470:49:0;8330:353:1;42470:49:0;42090:1;42534:9;:21;;42526:58;;;;-1:-1:-1;;;42526:58:0;;6356:2:1;42526:58:0;;;6338:21:1;6395:2;6375:18;;;6368:30;6434:26;6414:18;;;6407:54;6478:18;;42526:58:0;6154:348:1;42526:58:0;36288:10;42599:28;;;;:14;:28;;;;;;42090:1;-1:-1:-1;42591:74:0;;;;-1:-1:-1;;;42591:74:0;;8181:2:1;42591:74:0;;;8163:21:1;8220:2;8200:18;;;8193:30;-1:-1:-1;;;8239:18:1;;;8232:52;8301:18;;42591:74:0;7979:346:1;42591:74:0;42333:1;12424:12;12211:7;12408:13;42048:2;;12408:28;;-1:-1:-1;;12408:46:0;42680:26;42672:59;;;;-1:-1:-1;;;42672:59:0;;7832:2:1;42672:59:0;;;7814:21:1;7871:2;7851:18;;;7844:30;-1:-1:-1;;;7890:18:1;;;7883:50;7950:18;;42672:59:0;7630:344:1;42672:59:0;36288:10;42779:28;;;;:14;:28;;;;;:33;;42811:1;;42779:28;:33;;42811:1;;42779:33;:::i;:::-;;;;-1:-1:-1;42819:24:0;;-1:-1:-1;42829:10:0;42841:1;42819:9;:24::i;:::-;42346:503;:::o;20461:308::-;-1:-1:-1;;;;;20560:31:0;;36288:10;20560:31;20556:61;;;20600:17;;-1:-1:-1;;;20600:17:0;;;;;;;;;;;20556:61;36288:10;20630:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;20630:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;20630:60:0;;;;;;;;;;20706:55;;5878:41:1;;;20630:49:0;;36288:10;20706:55;;5851:18:1;20706:55:0;;;;;;;20461:308;;:::o;21568:396::-;21735:28;21745:4;21751:2;21755:7;21735:9;:28::i;:::-;-1:-1:-1;;;;;21778:14:0;;;:19;21774:183;;21817:56;21848:4;21854:2;21858:7;21867:5;21817:30;:56::i;:::-;21812:145;;21901:40;;-1:-1:-1;;;21901:40:0;;;;;;;;;;;21812:145;21568:396;;;;:::o;43069:93::-;40406:6;;-1:-1:-1;;;;;40406:6:0;36288:10;40553:23;40545:68;;;;-1:-1:-1;;;40545:68:0;;;;;;;:::i;:::-;43135:7:::1;:21:::0;;-1:-1:-1;;43135:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43069:93::o;18461:318::-;18534:13;18565:16;18573:7;18565;:16::i;:::-;18560:59;;18590:29;;-1:-1:-1;;;18590:29:0;;;;;;;;;;;18560:59;18632:21;18656:10;:8;:10::i;:::-;18632:34;;18690:7;18684:21;18709:1;18684:26;;:87;;;;;;;;;;;;;;;;;18737:7;18746:18;18756:7;18746:9;:18::i;:::-;18720:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18684:87;18677:94;18461:318;-1:-1:-1;;;18461:318:0:o;41242:201::-;40406:6;;-1:-1:-1;;;;;40406:6:0;36288:10;40553:23;40545:68;;;;-1:-1:-1;;;40545:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41331:22:0;::::1;41323:73;;;::::0;-1:-1:-1;;;41323:73:0;;6709:2:1;41323:73:0::1;::::0;::::1;6691:21:1::0;6748:2;6728:18;;;6721:30;6787:34;6767:18;;;6760:62;-1:-1:-1;;;6838:18:1;;;6831:36;6884:19;;41323:73:0::1;6507:402:1::0;41323:73:0::1;41407:28;41426:8;41407:18;:28::i;22219:273::-:0;22276:4;22332:7;42333:1;22313:26;;:66;;;;;22366:13;;22356:7;:23;22313:66;:152;;;;-1:-1:-1;;22417:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;22417:43:0;:48;;22219:273::o;15421:1129::-;15488:7;15523;;42333:1;15572:23;15568:915;;15625:13;;15618:4;:20;15614:869;;;15663:14;15680:23;;;:17;:23;;;;;;-1:-1:-1;;;15769:23:0;;15765:699;;16288:113;16295:11;16288:113;;-1:-1:-1;;;16366:6:0;16348:25;;;;:17;:25;;;;;;16288:113;;15765:699;15640:843;15614:869;16511:31;;-1:-1:-1;;;16511:31:0;;;;;;;;;;;27458:2515;27573:27;27603;27622:7;27603:18;:27::i;:::-;27573:57;;27688:4;-1:-1:-1;;;;;27647:45:0;27663:19;-1:-1:-1;;;;;27647:45:0;;27643:86;;27701:28;;-1:-1:-1;;;27701:28:0;;;;;;;;;;;27643:86;27742:22;36288:10;-1:-1:-1;;;;;27768:27:0;;;;:87;;-1:-1:-1;27812:43:0;27829:4;36288:10;20840:164;:::i;27812:43::-;27768:147;;;-1:-1:-1;36288:10:0;27872:20;27884:7;27872:11;:20::i;:::-;-1:-1:-1;;;;;27872:43:0;;27768:147;27742:174;;27934:17;27929:66;;27960:35;;-1:-1:-1;;;27960:35:0;;;;;;;;;;;27929:66;-1:-1:-1;;;;;28010:16:0;;28006:52;;28035:23;;-1:-1:-1;;;28035:23:0;;;;;;;;;;;28006:52;28187:24;;;;:15;:24;;;;;;;;28180:31;;-1:-1:-1;;;;;;28180:31:0;;;-1:-1:-1;;;;;28579:24:0;;;;;:18;:24;;;;;28577:26;;-1:-1:-1;;28577:26:0;;;28648:22;;;;;;;28646:24;;-1:-1:-1;28646:24:0;;;28941:26;;;:17;:26;;;;;-1:-1:-1;;;29029:15:0;9776:3;29029:41;28987:84;;:128;;28941:174;;;29235:46;;29231:626;;29339:1;29329:11;;29307:19;29462:30;;;:17;:30;;;;;;29458:384;;29600:13;;29585:11;:28;29581:242;;29747:30;;;;:17;:30;;;;;:52;;;29581:242;29288:569;29231:626;29904:7;29900:2;-1:-1:-1;;;;;29885:27:0;29894:4;-1:-1:-1;;;;;29885:27:0;;;;;;;;;;;27562:2411;;27458:2515;;;:::o;41603:191::-;41696:6;;;-1:-1:-1;;;;;41713:17:0;;;-1:-1:-1;;;;;;41713:17:0;;;;;;;41746:40;;41696:6;;;41713:17;41696:6;;41746:40;;41677:16;;41746:40;41666:128;41603:191;:::o;22576:104::-;22645:27;22655:2;22659:8;22645:27;;;;;;;;;;;;:9;:27::i;33670:716::-;33854:88;;-1:-1:-1;;;33854:88:0;;33833:4;;-1:-1:-1;;;;;33854:45:0;;;;;:88;;36288:10;;33921:4;;33927:7;;33936:5;;33854:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33854:88:0;;;;;;;;-1:-1:-1;;33854:88:0;;;;;;;;;;;;:::i;:::-;;;33850:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34137:13:0;;34133:235;;34183:40;;-1:-1:-1;;;34183:40:0;;;;;;;;;;;34133:235;34326:6;34320:13;34311:6;34307:2;34303:15;34296:38;33850:529;-1:-1:-1;;;;;;34013:64:0;-1:-1:-1;;;34013:64:0;;-1:-1:-1;33850:529:0;33670:716;;;;;;:::o;42959:104::-;43019:13;43050:7;43043:14;;;;;:::i;36412:1959::-;36883:4;36877:11;;36890:3;36873:21;;36968:17;;;;37665:11;;;37544:5;37797:2;37811;37801:13;;37793:22;37665:11;37780:36;37852:2;37842:13;;37435:682;37871:4;37435:682;;;38046:1;38041:3;38037:11;38030:18;;38097:2;38091:4;38087:13;38083:2;38079:22;38074:3;38066:36;37967:2;37957:13;;37435:682;;;-1:-1:-1;38159:13:0;;;-1:-1:-1;;38274:12:0;;;38334:19;;;38274:12;36412:1959;-1:-1:-1;36412:1959:0:o;23053:2236::-;23176:20;23199:13;-1:-1:-1;;;;;23227:16:0;;23223:48;;23252:19;;-1:-1:-1;;;23252:19:0;;;;;;;;;;;23223:48;23286:13;23282:44;;23308:18;;-1:-1:-1;;;23308:18:0;;;;;;;;;;;23282:44;-1:-1:-1;;;;;23875:22:0;;;;;;:18;:22;;;;9259:2;23875:22;;;:70;;23913:31;23901:44;;23875:70;;;24188:31;;;:17;:31;;;;;24281:15;9776:3;24281:41;24239:84;;-1:-1:-1;24359:13:0;;10039:3;24344:56;24239:162;24188:213;;:31;;24482:23;;;;24526:14;:19;24522:635;;24566:313;24597:38;;24622:12;;-1:-1:-1;;;;;24597:38:0;;;24614:1;;24597:38;;24614:1;;24597:38;24663:69;24702:1;24706:2;24710:14;;;;;;24726:5;24663:30;:69::i;:::-;24658:174;;24768:40;;-1:-1:-1;;;24768:40:0;;;;;;;;;;;24658:174;24874:3;24859:12;:18;24566:313;;24960:12;24943:13;;:29;24939:43;;24974:8;;;24939:43;24522:635;;;25023:119;25054:40;;25079:14;;;;;-1:-1:-1;;;;;25054:40:0;;;25071:1;;25054:40;;25071:1;;25054:40;25137:3;25122:12;:18;25023:119;;24522:635;-1:-1:-1;25171:13:0;:28;;;25221:60;;25254:2;25258:12;25272:8;25221:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5245:488::-;-1:-1:-1;;;;;5514:15:1;;;5496:34;;5566:15;;5561:2;5546:18;;5539:43;5613:2;5598:18;;5591:34;;;5661:3;5656:2;5641:18;;5634:31;;;5439:4;;5682:45;;5707:19;;5699:6;5682:45;:::i;:::-;5674:53;5245:488;-1:-1:-1;;;;;;5245:488:1:o;5930:219::-;6079:2;6068:9;6061:21;6042:4;6099:44;6139:2;6128:9;6124:18;6116:6;6099:44;:::i;7269:356::-;7471:2;7453:21;;;7490:18;;;7483:30;7549:34;7544:2;7529:18;;7522:62;7616:2;7601:18;;7269:356::o;8870:225::-;8910:3;8941:1;8937:6;8934:1;8931:13;8928:136;;;8986:10;8981:3;8977:20;8974:1;8967:31;9021:4;9018:1;9011:15;9049:4;9046:1;9039:15;8928:136;-1:-1:-1;9080:9:1;;8870:225::o;9100:258::-;9172:1;9182:113;9196:6;9193:1;9190:13;9182:113;;;9272:11;;;9266:18;9253:11;;;9246:39;9218:2;9211:10;9182:113;;;9313:6;9310:1;9307:13;9304:48;;;-1:-1:-1;;9348:1:1;9330:16;;9323:27;9100:258::o;9363:380::-;9442:1;9438:12;;;;9485;;;9506:61;;9560:4;9552:6;9548:17;9538:27;;9506:61;9613:2;9605:6;9602:14;9582:18;9579:38;9576:161;;;9659:10;9654:3;9650:20;9647:1;9640:31;9694:4;9691:1;9684:15;9722:4;9719:1;9712:15;9576:161;;9363:380;;;:::o;9748:127::-;9809:10;9804:3;9800:20;9797:1;9790:31;9840:4;9837:1;9830:15;9864:4;9861:1;9854:15;9880:131;-1:-1:-1;;;;;;9954:32:1;;9944:43;;9934:71;;10001:1;9998;9991:12

Swarm Source

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