ETH Price: $2,642.48 (+1.43%)

Token

GARYS (GARYS)
 

Overview

Max Total Supply

403 GARYS

Holders

245

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GARYS
0x9d3a7fd618e9939a5b6466130bb946af2cea20b8
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:
GARYS

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-10-22
*/

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

pragma solidity ^0.8.4;

//import './IERC721A.sol';

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract GARYS {

    address public owner;
    modifier onlyOwner{
        require(msg.sender==owner, "not Owner");
        _;
    }

    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }


    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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`
    // - [232..255] `extraData`
    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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor() {
        _currentIndex = _startTokenId();
        owner = msg.sender;
    }
    
    function mint(uint256 amount) external payable{
        uint256 COST = 0.001 ether;

        require(totalSupply()+amount<555, "Sold Out");
        if(amount>1 || (totalSupply()>510))
        {
            require(amount*COST<=msg.value, "Need more Cash");
        }
        _mint(msg.sender, amount);
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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


    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual returns (uint256) {
        return 1;
    }


    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual returns (string memory) {
        return "GARYS";
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual returns (string memory) {
        return "GARYS";
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
        if (!_exists(tokenId)) revert();

        string memory baseURI = "ipfs://QmVYLeENs6NjWnJYWyuqV4Cw36x1tYh7LDGiENBYYCHJz5/";
        return string(abi.encodePacked(baseURI, _toString(tokenId), '.json'));
    }

        function contractURI() public view returns (string memory) {
        return string(abi.encodePacked("ipfs://QmYVfTh2DwuJdwVupyfrr6eNhDskymteeUgH1WKW5A1yjT"));
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert();
    }

    /**
     * @dev 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;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual {
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual returns (address) {
        if (!_exists(tokenId)) revert();
        return address(0);
    }

    /**
     * @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) public virtual {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }


    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        //(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
        // The nested ifs save around 20+ gas over a compound boolean condition.
        //if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            
        if (!isApprovedForAll(from, _msgSenderERC721A())) revert();

        if (to == address(0)) revert();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        // 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] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // 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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual {
        transferFrom(from, to, tokenId);
    }

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



    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
//            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert();

            _currentIndex = end;
        }
        //_afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);
    }

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

  


    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}


    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b506000600155600080546001600160a01b03191633179055610c72806100376000396000f3fe6080604052600436106101095760003560e01c806370a0823111610095578063a22cb46511610064578063a22cb46514610294578063b88d4fde146102b4578063c87b56dd146102c7578063e8a3d485146102e7578063e985e9c5146102fc57600080fd5b806370a08231146102405780638da5cb5b1461026157806395d89b4114610143578063a0712d681461028157600080fd5b806318160ddd116100dc57806318160ddd146101c657806323b872dd146101e55780633ccfd60b146101f857806342842e0e1461020d5780636352211e1461022057600080fd5b806301ffc9a71461010e57806306fdde0314610143578063081812fc1461017a578063095ea7b3146101b2575b600080fd5b34801561011a57600080fd5b5061012e610129366004610ac2565b610345565b60405190151581526020015b60405180910390f35b34801561014f57600080fd5b50604080518082019091526005815264474152595360d81b60208201525b60405161013a9190610b44565b34801561018657600080fd5b5061019a610195366004610aec565b610397565b6040516001600160a01b03909116815260200161013a565b6101c46101c0366004610a98565b5050565b005b3480156101d257600080fd5b506001545b60405190815260200161013a565b6101c46101f3366004610944565b6103b3565b34801561020457600080fd5b506101c46104af565b6101c461021b366004610944565b610529565b34801561022c57600080fd5b5061019a61023b366004610aec565b610549565b34801561024c57600080fd5b506101d761025b3660046108f6565b50600190565b34801561026d57600080fd5b5060005461019a906001600160a01b031681565b6101c461028f366004610aec565b610554565b3480156102a057600080fd5b506101c46102af366004610a5c565b61061c565b6101c46102c2366004610980565b610688565b3480156102d357600080fd5b5061016d6102e2366004610aec565b610693565b3480156102f357600080fd5b5061016d6106f6565b34801561030857600080fd5b5061012e610317366004610911565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b60006301ffc9a760e01b6001600160e01b03198316148061037657506380ac58cd60e01b6001600160e01b03198316145b806103915750635b5e139f60e01b6001600160e01b03198316145b92915050565b60006103a28261075d565b6103ab57600080fd5b506000919050565b60006103be82610785565b9050836001600160a01b0316816001600160a01b0316146103de57600080fd5b6103e88433610317565b6103f157600080fd5b6001600160a01b03831661040457600080fd5b6001600160a01b0383164260a01b17600160e11b17600083815260026020526040902055600160e11b811661046757600182016000818152600260205260409020546104655760015481146104655760008181526002602052604090208290555b505b81836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b50505050565b6000546001600160a01b031633146104fa5760405162461bcd60e51b81526020600482015260096024820152683737ba1027bbb732b960b91b60448201526064015b60405180910390fd5b6040514790339082156108fc029083906000818181858888f193505050501580156101c0573d6000803e3d6000fd5b61054483838360405180602001604052806000815250610688565b505050565b600061039182610785565b66038d7ea4c6800061022b8261056960015490565b6105739190610b77565b106105ab5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016104f1565b60018211806105c357506101fe6105c160015490565b115b1561061257346105d38284610b8f565b11156106125760405162461bcd60e51b815260206004820152600e60248201526d09ccacac840dadee4ca4086c2e6d60931b60448201526064016104f1565b6101c033836107d8565b3360008181526003602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6104a98484846103b3565b606061069e8261075d565b6106a757600080fd5b6000604051806060016040528060368152602001610c07603691399050806106ce8461088c565b6040516020016106df929190610b05565b604051602081830303815290604052915050919050565b6060604051602001610749907f697066733a2f2f516d5956665468324477754a64775675707966727236654e68815274111cdade5b5d19595559d20c55d2d5cd504c5e5a95605a1b602082015260350190565b604051602081830303815290604052905090565b600060015482108015610391575050600090815260026020526040902054600160e01b161590565b60008160015481101561010957600081815260026020526040902054600160e01b81166107d2575b806107cb5750600019016000818152600260205260409020546107ad565b9392505050565b50600080fd5b600154816107e557600080fd5b60008181526002602052604081206001600160a01b0385164260a01b6001861460e11b1781179091559083830190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461087857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610840565b508161088357600080fd5b60015550505050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806108c3576108c8565b6108a6565b50819003601f19909101908152919050565b80356001600160a01b03811681146108f157600080fd5b919050565b60006020828403121561090857600080fd5b6107cb826108da565b6000806040838503121561092457600080fd5b61092d836108da565b915061093b602084016108da565b90509250929050565b60008060006060848603121561095957600080fd5b610962846108da565b9250610970602085016108da565b9150604084013590509250925092565b6000806000806080858703121561099657600080fd5b61099f856108da565b93506109ad602086016108da565b925060408501359150606085013567ffffffffffffffff808211156109d157600080fd5b818701915087601f8301126109e557600080fd5b8135818111156109f7576109f7610bf0565b604051601f8201601f19908116603f01168101908382118183101715610a1f57610a1f610bf0565b816040528281528a6020848701011115610a3857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215610a6f57600080fd5b610a78836108da565b915060208301358015158114610a8d57600080fd5b809150509250929050565b60008060408385031215610aab57600080fd5b610ab4836108da565b946020939093013593505050565b600060208284031215610ad457600080fd5b81356001600160e01b0319811681146107cb57600080fd5b600060208284031215610afe57600080fd5b5035919050565b60008351610b17818460208801610bae565b835190830190610b2b818360208801610bae565b64173539b7b760d91b9101908152600501949350505050565b6020815260008251806020840152610b63816040850160208701610bae565b601f01601f19169190910160400192915050565b60008219821115610b8a57610b8a610bda565b500190565b6000816000190483118215151615610ba957610ba9610bda565b500290565b60005b83811015610bc9578181015183820152602001610bb1565b838111156104a95750506000910152565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe697066733a2f2f516d56594c65454e73364e6a576e4a59577975715634437733367831745968374c444769454e42595943484a7a352fa26469706673582212201b4b4fb33120c1b8db724abb3e08ee8158a66ef628e70491aa9fd2019a51fb2e64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101095760003560e01c806370a0823111610095578063a22cb46511610064578063a22cb46514610294578063b88d4fde146102b4578063c87b56dd146102c7578063e8a3d485146102e7578063e985e9c5146102fc57600080fd5b806370a08231146102405780638da5cb5b1461026157806395d89b4114610143578063a0712d681461028157600080fd5b806318160ddd116100dc57806318160ddd146101c657806323b872dd146101e55780633ccfd60b146101f857806342842e0e1461020d5780636352211e1461022057600080fd5b806301ffc9a71461010e57806306fdde0314610143578063081812fc1461017a578063095ea7b3146101b2575b600080fd5b34801561011a57600080fd5b5061012e610129366004610ac2565b610345565b60405190151581526020015b60405180910390f35b34801561014f57600080fd5b50604080518082019091526005815264474152595360d81b60208201525b60405161013a9190610b44565b34801561018657600080fd5b5061019a610195366004610aec565b610397565b6040516001600160a01b03909116815260200161013a565b6101c46101c0366004610a98565b5050565b005b3480156101d257600080fd5b506001545b60405190815260200161013a565b6101c46101f3366004610944565b6103b3565b34801561020457600080fd5b506101c46104af565b6101c461021b366004610944565b610529565b34801561022c57600080fd5b5061019a61023b366004610aec565b610549565b34801561024c57600080fd5b506101d761025b3660046108f6565b50600190565b34801561026d57600080fd5b5060005461019a906001600160a01b031681565b6101c461028f366004610aec565b610554565b3480156102a057600080fd5b506101c46102af366004610a5c565b61061c565b6101c46102c2366004610980565b610688565b3480156102d357600080fd5b5061016d6102e2366004610aec565b610693565b3480156102f357600080fd5b5061016d6106f6565b34801561030857600080fd5b5061012e610317366004610911565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b60006301ffc9a760e01b6001600160e01b03198316148061037657506380ac58cd60e01b6001600160e01b03198316145b806103915750635b5e139f60e01b6001600160e01b03198316145b92915050565b60006103a28261075d565b6103ab57600080fd5b506000919050565b60006103be82610785565b9050836001600160a01b0316816001600160a01b0316146103de57600080fd5b6103e88433610317565b6103f157600080fd5b6001600160a01b03831661040457600080fd5b6001600160a01b0383164260a01b17600160e11b17600083815260026020526040902055600160e11b811661046757600182016000818152600260205260409020546104655760015481146104655760008181526002602052604090208290555b505b81836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b50505050565b6000546001600160a01b031633146104fa5760405162461bcd60e51b81526020600482015260096024820152683737ba1027bbb732b960b91b60448201526064015b60405180910390fd5b6040514790339082156108fc029083906000818181858888f193505050501580156101c0573d6000803e3d6000fd5b61054483838360405180602001604052806000815250610688565b505050565b600061039182610785565b66038d7ea4c6800061022b8261056960015490565b6105739190610b77565b106105ab5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016104f1565b60018211806105c357506101fe6105c160015490565b115b1561061257346105d38284610b8f565b11156106125760405162461bcd60e51b815260206004820152600e60248201526d09ccacac840dadee4ca4086c2e6d60931b60448201526064016104f1565b6101c033836107d8565b3360008181526003602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6104a98484846103b3565b606061069e8261075d565b6106a757600080fd5b6000604051806060016040528060368152602001610c07603691399050806106ce8461088c565b6040516020016106df929190610b05565b604051602081830303815290604052915050919050565b6060604051602001610749907f697066733a2f2f516d5956665468324477754a64775675707966727236654e68815274111cdade5b5d19595559d20c55d2d5cd504c5e5a95605a1b602082015260350190565b604051602081830303815290604052905090565b600060015482108015610391575050600090815260026020526040902054600160e01b161590565b60008160015481101561010957600081815260026020526040902054600160e01b81166107d2575b806107cb5750600019016000818152600260205260409020546107ad565b9392505050565b50600080fd5b600154816107e557600080fd5b60008181526002602052604081206001600160a01b0385164260a01b6001861460e11b1781179091559083830190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461087857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610840565b508161088357600080fd5b60015550505050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806108c3576108c8565b6108a6565b50819003601f19909101908152919050565b80356001600160a01b03811681146108f157600080fd5b919050565b60006020828403121561090857600080fd5b6107cb826108da565b6000806040838503121561092457600080fd5b61092d836108da565b915061093b602084016108da565b90509250929050565b60008060006060848603121561095957600080fd5b610962846108da565b9250610970602085016108da565b9150604084013590509250925092565b6000806000806080858703121561099657600080fd5b61099f856108da565b93506109ad602086016108da565b925060408501359150606085013567ffffffffffffffff808211156109d157600080fd5b818701915087601f8301126109e557600080fd5b8135818111156109f7576109f7610bf0565b604051601f8201601f19908116603f01168101908382118183101715610a1f57610a1f610bf0565b816040528281528a6020848701011115610a3857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215610a6f57600080fd5b610a78836108da565b915060208301358015158114610a8d57600080fd5b809150509250929050565b60008060408385031215610aab57600080fd5b610ab4836108da565b946020939093013593505050565b600060208284031215610ad457600080fd5b81356001600160e01b0319811681146107cb57600080fd5b600060208284031215610afe57600080fd5b5035919050565b60008351610b17818460208801610bae565b835190830190610b2b818360208801610bae565b64173539b7b760d91b9101908152600501949350505050565b6020815260008251806020840152610b63816040850160208701610bae565b601f01601f19169190910160400192915050565b60008219821115610b8a57610b8a610bda565b500190565b6000816000190483118215151615610ba957610ba9610bda565b500290565b60005b83811015610bc9578181015183820152602001610bb1565b838111156104a95750506000910152565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe697066733a2f2f516d56594c65454e73364e6a576e4a59577975715634437733367831745968374c444769454e42595943484a7a352fa26469706673582212201b4b4fb33120c1b8db724abb3e08ee8158a66ef628e70491aa9fd2019a51fb2e64736f6c63430008070033

Deployed Bytecode Sourcemap

932:30727:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8754:630;;;;;;;;;;-1:-1:-1;8754:630:0;;;;;:::i;:::-;;:::i;:::-;;;4568:14:1;;4561:22;4543:41;;4531:2;4516:18;8754:630:0;;;;;;;;9647:93;;;;;;;;;;-1:-1:-1;9718:14:0;;;;;;;;;;;;-1:-1:-1;;;9718:14:0;;;;9647:93;;;;;;;:::i;15568:154::-;;;;;;;;;;-1:-1:-1;15568:154:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4359:32:1;;;4341:51;;4329:2;4314:18;15568:154:0;4195:203:1;15332:77:0;;;;;;:::i;:::-;;;;;;7128:299;;;;;;;;;;-1:-1:-1;7377:13:0;;7128:299;;;6145:25:1;;;6133:2;6118:18;7128:299:0;5999:177:1;18529:2542:0;;;;;;:::i;:::-;;:::i;31511:145::-;;;;;;;;;;;;;:::i;21167:184::-;;;;;;:::i;:::-;;:::i;10840:143::-;;;;;;;;;;-1:-1:-1;10840:143:0;;;;;:::i;:::-;;:::i;8106:99::-;;;;;;;;;;-1:-1:-1;8106:99:0;;;;;:::i;:::-;-1:-1:-1;8196:1:0;;8106:99;956:20;;;;;;;;;;-1:-1:-1;956:20:0;;;;-1:-1:-1;;;;;956:20:0;;;5992:316;;;;;;:::i;:::-;;:::i;16062:225::-;;;;;;;;;;-1:-1:-1;16062:225:0;;;;;:::i;:::-;;:::i;21949:205::-;;;;;;:::i;:::-;;:::i;10017:302::-;;;;;;;;;;-1:-1:-1;10017:302:0;;;;;:::i;:::-;;:::i;10331:166::-;;;;;;;;;;;;;:::i;16444:155::-;;;;;;;;;;-1:-1:-1;16444:155:0;;;;;:::i;:::-;-1:-1:-1;;;;;16556:25:0;;;16532:4;16556:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;16444:155;8754:630;8830:4;-1:-1:-1;;;;;;;;;9154:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;9231:25:0;;;9154:102;:179;;;-1:-1:-1;;;;;;;;;;9308:25:0;;;9154:179;9134:199;8754:630;-1:-1:-1;;8754:630:0:o;15568:154::-;15635:7;15660:16;15668:7;15660;:16::i;:::-;15655:31;;15678:8;;;15655:31;-1:-1:-1;15712:1:0;;15568:154;-1:-1:-1;15568:154:0:o;18529:2542::-;18662:27;18692;18711:7;18692:18;:27::i;:::-;18662:57;;18777:4;-1:-1:-1;;;;;18736:45:0;18752:19;-1:-1:-1;;;;;18736:45:0;;18732:59;;18783:8;;;18732:59;19096:43;19113:4;29638:10;16444:155;:::i;19096:43::-;19091:58;;19141:8;;;19091:58;-1:-1:-1;;;;;19166:16:0;;19162:30;;19184:8;;;19162:30;-1:-1:-1;;;;;14016:28:0;;14190:11;14165:23;14161:41;14148:63;-1:-1:-1;;;14148:63:0;20037:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;20332:47:0;;20328:627;;20437:1;20427:11;;20405:19;20560:30;;;:17;:30;;;;;;20556:384;;20698:13;;20683:11;:28;20679:242;;20845:30;;;;:17;:30;;;;;:52;;;20679:242;20386:569;20328:627;21002:7;20998:2;-1:-1:-1;;;;;20983:27:0;20992:4;-1:-1:-1;;;;;20983:27:0;;;;;;;;;;;21021:42;18651:2420;18529:2542;;;:::o;31511:145::-;1032:5;;-1:-1:-1;;;;;1032:5:0;1020:10;:17;1012:39;;;;-1:-1:-1;;;1012:39:0;;5864:2:1;1012:39:0;;;5846:21:1;5903:1;5883:18;;;5876:29;-1:-1:-1;;;5921:18:1;;;5914:39;5970:18;;1012:39:0;;;;;;;;;31611:37:::1;::::0;31579:21:::1;::::0;31619:10:::1;::::0;31611:37;::::1;;;::::0;31579:21;;31561:15:::1;31611:37:::0;31561:15;31611:37;31579:21;31619:10;31611:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;21167:184:::0;21304:39;21321:4;21327:2;21331:7;21304:39;;;;;;;;;;;;:16;:39::i;:::-;21167:184;;;:::o;10840:143::-;10903:7;10946:27;10965:7;10946:18;:27::i;5992:316::-;6064:11;6117:3;6110:6;6096:13;7377;;;7128:299;6096:13;:20;;;;:::i;:::-;:24;6088:45;;;;-1:-1:-1;;;6088:45:0;;5185:2:1;6088:45:0;;;5167:21:1;5224:1;5204:18;;;5197:29;-1:-1:-1;;;5242:18:1;;;5235:38;5290:18;;6088:45:0;4983:331:1;6088:45:0;6154:1;6147:6;:8;:31;;;;6174:3;6160:13;7377;;;7128:299;6160:13;:17;6147:31;6144:121;;;6225:9;6212:11;6219:4;6212:6;:11;:::i;:::-;:22;;6204:49;;;;-1:-1:-1;;;6204:49:0;;5521:2:1;6204:49:0;;;5503:21:1;5560:2;5540:18;;;5533:30;-1:-1:-1;;;5579:18:1;;;5572:44;5633:18;;6204:49:0;5319:338:1;6204:49:0;6275:25;6281:10;6293:6;6275:5;:25::i;16062:225::-;29638:10;16148:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;16148:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;16148:60:0;;;;;;;;;;16224:55;;4543:41:1;;;16148:49:0;;29638:10;16224:55;;4516:18:1;16224:55:0;;;;;;;16062:225;;:::o;21949:205::-;22115:31;22128:4;22134:2;22138:7;22115:12;:31::i;10017:302::-;10081:13;10112:16;10120:7;10112;:16::i;:::-;10107:31;;10130:8;;;10107:31;10151:21;:80;;;;;;;;;;;;;;;;;;;10273:7;10282:18;10292:7;10282:9;:18::i;:::-;10256:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10242:69;;;10017:302;;;:::o;10331:166::-;10375:13;10415:73;;;;;;4067:34:1;4055:47;;-1:-1:-1;;;4127:2:1;4118:12;;4111:45;4181:2;4172:12;;3853:337;10415:73:0;;;;;;;;;;;;;10401:88;;10331:166;:::o;16857:282::-;16922:4;17012:13;;17002:7;:23;16959:153;;;;-1:-1:-1;;17063:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;17063:44:0;:49;;16857:282::o;11986:1245::-;12053:7;12088;12190:13;;12183:4;:20;12179:1015;;;12228:14;12245:23;;;:17;:23;;;;;;-1:-1:-1;;;12334:24:0;;12330:845;;12999:113;13006:11;12999:113;;-1:-1:-1;;;13077:6:0;13059:25;;;;:17;:25;;;;;;12999:113;;;13145:6;11986:1245;-1:-1:-1;;;11986:1245:0:o;12330:845::-;12205:989;13215:8;;;24264:2937;24360:13;;24388;24384:27;;24403:8;;;24384:27;25217:31;;;;:17;:31;;;;;-1:-1:-1;;;;;14016:28:0;;14190:11;14165:23;14161:41;14634:1;14621:15;;14595:24;14591:46;14158:52;14148:63;;25217:173;;;14016:28;25452:23;;;;25217:31;;14016:28;;26217:25;25217:31;;26070:335;26731:1;26717:12;26713:20;26671:346;26772:3;26763:7;26760:16;26671:346;;26990:7;26980:8;26977:1;26950:25;26947:1;26944;26939:59;26825:1;26812:15;26671:346;;;-1:-1:-1;27050:13:0;27046:27;;27065:8;;;27046:27;27090:13;:19;-1:-1:-1;;;;24264:2937:0:o;29758:1745::-;29823:17;30257:4;30250;30244:11;30240:22;30349:1;30343:4;30336:15;30424:4;30421:1;30417:12;30410:19;;;30506:1;30501:3;30494:14;30610:3;30849:5;30831:428;30897:1;30892:3;30888:11;30881:18;;31068:2;31062:4;31058:13;31054:2;31050:22;31045:3;31037:36;31162:2;31152:13;;;31219:25;;31237:5;;31219:25;30831:428;;;-1:-1:-1;31289:13:0;;;-1:-1:-1;;31404:14:0;;;31466:19;;;31404:14;29758:1745;-1:-1:-1;29758:1745:0:o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:286::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2888:23;;-1:-1:-1;;;;;;2940:32:1;;2930:43;;2920:71;;2987:1;2984;2977:12;3026:180;3085:6;3138:2;3126:9;3117:7;3113:23;3109:32;3106:52;;;3154:1;3151;3144:12;3106:52;-1:-1:-1;3177:23:1;;3026:180;-1:-1:-1;3026:180:1:o;3211:637::-;3491:3;3529:6;3523:13;3545:53;3591:6;3586:3;3579:4;3571:6;3567:17;3545:53;:::i;:::-;3661:13;;3620:16;;;;3683:57;3661:13;3620:16;3717:4;3705:17;;3683:57;:::i;:::-;-1:-1:-1;;;3762:20:1;;3791:22;;;3840:1;3829:13;;3211:637;-1:-1:-1;;;;3211:637:1:o;4595:383::-;4744:2;4733:9;4726:21;4707:4;4776:6;4770:13;4819:6;4814:2;4803:9;4799:18;4792:34;4835:66;4894:6;4889:2;4878:9;4874:18;4869:2;4861:6;4857:15;4835:66;:::i;:::-;4962:2;4941:15;-1:-1:-1;;4937:29:1;4922:45;;;;4969:2;4918:54;;4595:383;-1:-1:-1;;4595:383:1:o;6181:128::-;6221:3;6252:1;6248:6;6245:1;6242:13;6239:39;;;6258:18;;:::i;:::-;-1:-1:-1;6294:9:1;;6181:128::o;6314:168::-;6354:7;6420:1;6416;6412:6;6408:14;6405:1;6402:21;6397:1;6390:9;6383:17;6379:45;6376:71;;;6427:18;;:::i;:::-;-1:-1:-1;6467:9:1;;6314:168::o;6487:258::-;6559:1;6569:113;6583:6;6580:1;6577:13;6569:113;;;6659:11;;;6653:18;6640:11;;;6633:39;6605:2;6598:10;6569:113;;;6700:6;6697:1;6694:13;6691:48;;;-1:-1:-1;;6735:1:1;6717:16;;6710:27;6487:258::o;6750:127::-;6811:10;6806:3;6802:20;6799:1;6792:31;6842:4;6839:1;6832:15;6866:4;6863:1;6856:15;6882:127;6943:10;6938:3;6934:20;6931:1;6924:31;6974:4;6971:1;6964:15;6998:4;6995:1;6988:15

Swarm Source

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