ETH Price: $1,972.36 (+0.13%)
Gas: 0.04 Gwei
 

Overview

Max Total Supply

500 Cubucus

Holders

310

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
6 Cubucus
0xe7e4e9961cfed7df2f3a999255dfae9b2c1eba45
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:
Cubucus

Compiler Version
v0.8.30+commit.73712a01

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2025-08-10
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.30;


/**
 * @dev Interface of ERC721A.
 */
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();

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

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

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            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) 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`,
     * 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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

interface IERC2981 is IERC165 {
    /// ERC165 bytes to add to interface array - set in parent contract
    /// implementing this standard
    ///
    /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
    /// bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;
    /// _registerInterface(_INTERFACE_ID_ERC2981);

    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _salePrice - the sale price of the NFT asset specified by _tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for _salePrice
    function royaltyInfo(
        uint256 _tokenId,
        uint256 _salePrice
    ) external view returns (
        address receiver,
        uint256 royaltyAmount
    );
}

contract Cubucus is IERC721A { 
    using SafeMath for uint256;

    address private _owner;
    function owner() public view returns(address){
        return _owner;
    }

    mapping(address=>uint256) minted;
    uint256 public constant MAX_SUPPLY = 500;
    uint256 public constant MAX_PER_WALLET = 5;
    uint256 public constant MAX_FREE_PER_WALLET = 1;
    uint256 public constant MAX_FREE = 0;
    uint256 public constant COST = 0.000555 ether;

    string private constant _name = "Cubucus";
    string private constant _symbol = "Cubucus";
    string private _baseURI = "bafybeifzihtg6oir4eztqsiwblnzlutgftfkxn34cpolkn7bcyvncrw44i";

    constructor() {
        _owner = msg.sender;
    }

    function freemint() external payable nob{
        address _caller = _msgSenderERC721A();
        uint256 amount = MAX_FREE_PER_WALLET;

        require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out");
        require(minted[msg.sender]==0, "Already used Free Mint");

        minted[msg.sender] += amount;
        _mint(_caller, amount);
    }

    function mint(uint256 amount) external payable{
        address _caller = _msgSenderERC721A();

        require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out");
        require(amount*COST <= msg.value, "Value to Low");

        _mint(_caller, amount);
    }



    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;
    uint256 private constant BITPOS_NUMBER_MINTED = 64;
    uint256 private constant BITPOS_NUMBER_BURNED = 128;
    uint256 private constant BITPOS_AUX = 192;
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;
    uint256 private constant BITPOS_START_TIMESTAMP = 160;
    uint256 private constant BITMASK_BURNED = 1 << 224;
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;
    uint256 private _currentIndex = 0;

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

    function royaltyInfo(uint256, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount)
    {
        receiver = _owner;
        royaltyAmount = (salePrice * 500) / 10000; // Calculate royalty based on sale price
    }

    function setData(string memory _base) external onlyOwner{
        _baseURI = _base;
    }


    /**
     * @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 - _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 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 == 0x2a55205a || // ERC Royalties
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 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 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);
    }

    /**
     * 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;
    }
    
    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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : "";
    }

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

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

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

  

    /**
     * @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 (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();


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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();


        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            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 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)
        }
    }

    function teamMint(uint256 amount) external onlyOwner{
        require(totalSupply() + amount < MAX_SUPPLY, "Must be below Max Supply");
        _mint(msg.sender, amount);
    }

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

    modifier nob() {
        require(tx.origin==msg.sender, "no Script");
        _;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        address payable recipient = payable(msg.sender);
        recipient.call{value:balance, gas:30000}("");
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","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":"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":"freemint","outputs":[],"stateMutability":"payable","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":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"_base","type":"string"}],"name":"setData","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":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052603b60808181529061154d60a03960029061001f90826100de565b505f60035534801561002f575f5ffd5b505f80546001600160a01b03191633179055610198565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061006e57607f821691505b60208210810361008c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156100d957805f5260205f20601f840160051c810160208510156100b75750805b601f840160051c820191505b818110156100d6575f81556001016100c3565b50505b505050565b81516001600160401b038111156100f7576100f7610046565b61010b81610105845461005a565b84610092565b6020601f82116001811461013d575f83156101265750848201515b5f19600385901b1c1916600184901b1784556100d6565b5f84815260208120601f198516915b8281101561016c578785015182556020948501946001909201910161014c565b508482101561018957868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6113a8806101a55f395ff3fe60806040526004361061017b575f3560e01c80636352211e116100cd578063a22cb46511610087578063c87b56dd11610062578063c87b56dd14610435578063e985e9c514610454578063ed6661c214610473578063f9cb63ac14610486575f5ffd5b8063a22cb465146103dd578063b88d4fde146103fc578063bf8fbbd21461041b575f5ffd5b80636352211e1461035c57806370a082311461037b5780638da5cb5b1461039a57806395d89b41146101b357806398710d1e146103b6578063a0712d68146103ca575f5ffd5b806323b872dd1161013857806332cb6b0c1161011357806332cb6b0c146102f55780633ccfd60b1461030a57806342842e0e1461031e57806347064d6a1461033d575f5ffd5b806323b872dd146102795780632a55205a146102985780632fbba115146102d6575f5ffd5b806301ffc9a71461017f57806306fdde03146101b3578063081812fc146101eb578063095ea7b3146102225780630f2cdd6c1461024357806318160ddd14610265575b5f5ffd5b34801561018a575f5ffd5b5061019e610199366004610e85565b61048e565b60405190151581526020015b60405180910390f35b3480156101be575f5ffd5b506040805180820190915260078152664375627563757360c81b60208201525b6040516101aa9190610eac565b3480156101f6575f5ffd5b5061020a610205366004610ee1565b6104fa565b6040516001600160a01b0390911681526020016101aa565b34801561022d575f5ffd5b5061024161023c366004610f13565b61053e565b005b34801561024e575f5ffd5b50610257600581565b6040519081526020016101aa565b348015610270575f5ffd5b50600354610257565b348015610284575f5ffd5b50610241610293366004610f3b565b6105f9565b3480156102a3575f5ffd5b506102b76102b2366004610f75565b610609565b604080516001600160a01b0390931683526020830191909152016101aa565b3480156102e1575f5ffd5b506102416102f0366004610ee1565b610638565b348015610300575f5ffd5b506102576101f481565b348015610315575f5ffd5b506102416106db565b348015610329575f5ffd5b50610241610338366004610f3b565b610756565b348015610348575f5ffd5b50610241610357366004611020565b610770565b348015610367575f5ffd5b5061020a610376366004610ee1565b6107a9565b348015610386575f5ffd5b5061025761039536600461106d565b6107b3565b3480156103a5575f5ffd5b505f546001600160a01b031661020a565b3480156103c1575f5ffd5b50610257600181565b6102416103d8366004610ee1565b6107f9565b3480156103e8575f5ffd5b506102416103f7366004611086565b6108a3565b348015610407575f5ffd5b506102416104163660046110bf565b610937565b348015610426575f5ffd5b506102576601f8c501d9b00081565b348015610440575f5ffd5b506101de61044f366004610ee1565b610948565b34801561045f575f5ffd5b5061019e61046e366004611136565b610a4c565b34801561047e575f5ffd5b506102575f81565b610241610a79565b5f6301ffc9a760e01b6001600160e01b0319831614806104be57506380ac58cd60e01b6001600160e01b03198316145b806104d9575063152a902d60e11b6001600160e01b03198316145b806104f45750635b5e139f60e01b6001600160e01b03198316145b92915050565b5f610506826003541190565b610523576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f61054882610b8a565b9050806001600160a01b0316836001600160a01b031603610567575f5ffd5b336001600160a01b0382161461059e576105818133610a4c565b61059e576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610604838383610bec565b505050565b5f80546001600160a01b031690612710610625846101f4611172565b61062f9190611189565b90509250929050565b5f546001600160a01b0316331461066a5760405162461bcd60e51b8152600401610661906111a8565b60405180910390fd5b6101f48161067760035490565b61068191906111cb565b106106ce5760405162461bcd60e51b815260206004820152601860248201527f4d7573742062652062656c6f77204d617820537570706c7900000000000000006044820152606401610661565b6106d83382610d7d565b50565b5f546001600160a01b031633146107045760405162461bcd60e51b8152600401610661906111a8565b6040514790339081906175309084905f818181858888f193505050503d805f811461074a576040519150601f19603f3d011682016040523d82523d5f602084013e61074f565b606091505b5050505050565b61060483838360405180602001604052805f815250610937565b5f546001600160a01b031633146107995760405162461bcd60e51b8152600401610661906111a8565b60026107a5828261125a565b5050565b5f6104f482610b8a565b5f815f036107d4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b336101f48261080760035490565b61081191906111cb565b111561084a5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610661565b3461085c6601f8c501d9b00084611172565b11156108995760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b6044820152606401610661565b6107a58183610d7d565b336001600160a01b038316036108cc5760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610942848484610bec565b50505050565b6060610955826003541190565b61097257604051630a14c4b560e41b815260040160405180910390fd5b5f60028054610980906111de565b80601f01602080910402602001604051908101604052809291908181526020018280546109ac906111de565b80156109f75780601f106109ce576101008083540402835291602001916109f7565b820191905f5260205f20905b8154815290600101906020018083116109da57829003601f168201915b5050505050905080515f03610a1a5760405180602001604052805f815250610a45565b80610a2484610e36565b604051602001610a3592919061132c565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b323314610ab45760405162461bcd60e51b81526020600482015260096024820152681b9bc814d8dc9a5c1d60ba1b6044820152606401610661565b3360016101f481610ac460035490565b610ace91906111cb565b1115610b075760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610661565b335f9081526001602052604090205415610b5c5760405162461bcd60e51b8152602060048201526016602482015275105b1c9958591e481d5cd95908119c995948135a5b9d60521b6044820152606401610661565b335f9081526001602052604081208054839290610b7a9084906111cb565b909155506107a590508282610d7d565b5f81600354811015610bd3575f8181526004602052604081205490600160e01b82169003610bd1575b805f03610a4557505f19015f81815260046020526040902054610bb3565b505b604051636f96cda160e11b815260040160405180910390fd5b5f610bf682610b8a565b9050836001600160a01b0316816001600160a01b031614610c295760405162a1148160e81b815260040160405180910390fd5b5f828152600660205260408120546001600160a01b0390811691908616331480610c585750610c588633610a4c565b80610c6b57506001600160a01b03821633145b905080610c8b57604051632ce44b5f60e11b815260040160405180910390fd5b8115610cad575f84815260066020526040902080546001600160a01b03191690555b6001600160a01b038681165f90815260056020908152604080832080545f1901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610d3457600184015f818152600460205260408120549003610d32576003548114610d32575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6003545f829003610da15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f9081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610deb5750600355505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610e7357600183039250600a81066030018353600a9004610e55565b50819003601f19909101908152919050565b5f60208284031215610e95575f5ffd5b81356001600160e01b031981168114610a45575f5ffd5b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215610ef1575f5ffd5b5035919050565b80356001600160a01b0381168114610f0e575f5ffd5b919050565b5f5f60408385031215610f24575f5ffd5b610f2d83610ef8565b946020939093013593505050565b5f5f5f60608486031215610f4d575f5ffd5b610f5684610ef8565b9250610f6460208501610ef8565b929592945050506040919091013590565b5f5f60408385031215610f86575f5ffd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b5f5f67ffffffffffffffff841115610fc357610fc3610f95565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff82111715610ff257610ff2610f95565b604052838152905080828401851015611009575f5ffd5b838360208301375f60208583010152509392505050565b5f60208284031215611030575f5ffd5b813567ffffffffffffffff811115611046575f5ffd5b8201601f81018413611056575f5ffd5b61106584823560208401610fa9565b949350505050565b5f6020828403121561107d575f5ffd5b610a4582610ef8565b5f5f60408385031215611097575f5ffd5b6110a083610ef8565b9150602083013580151581146110b4575f5ffd5b809150509250929050565b5f5f5f5f608085870312156110d2575f5ffd5b6110db85610ef8565b93506110e960208601610ef8565b925060408501359150606085013567ffffffffffffffff81111561110b575f5ffd5b8501601f8101871361111b575f5ffd5b61112a87823560208401610fa9565b91505092959194509250565b5f5f60408385031215611147575f5ffd5b61115083610ef8565b915061062f60208401610ef8565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176104f4576104f461115e565b5f826111a357634e487b7160e01b5f52601260045260245ffd5b500490565b6020808252600990820152683737ba1027bbb732b960b91b604082015260600190565b808201808211156104f4576104f461115e565b600181811c908216806111f257607f821691505b60208210810361121057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561060457805f5260205f20601f840160051c8101602085101561123b5750805b601f840160051c820191505b8181101561074f575f8155600101611247565b815167ffffffffffffffff81111561127457611274610f95565b6112888161128284546111de565b84611216565b6020601f8211600181146112ba575f83156112a35750848201515b5f19600385901b1c1916600184901b17845561074f565b5f84815260208120601f198516915b828110156112e957878501518255602094850194600190920191016112c9565b508482101561130657868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f81518060208401855e5f93019283525090919050565b66697066733a2f2f60c81b81525f6113476007830185611315565b602f60f81b815261135b6001820185611315565b64173539b7b760d91b81526005019594505050505056fea26469706673582212207576b2038f932a132585645dcd0ea8cc5aa62bb519e2aaea0dde5cfc417a9bc164736f6c634300081e003362616679626569667a69687467366f697234657a7471736977626c6e7a6c7574676674666b786e333463706f6c6b6e37626379766e637277343469

Deployed Bytecode

0x60806040526004361061017b575f3560e01c80636352211e116100cd578063a22cb46511610087578063c87b56dd11610062578063c87b56dd14610435578063e985e9c514610454578063ed6661c214610473578063f9cb63ac14610486575f5ffd5b8063a22cb465146103dd578063b88d4fde146103fc578063bf8fbbd21461041b575f5ffd5b80636352211e1461035c57806370a082311461037b5780638da5cb5b1461039a57806395d89b41146101b357806398710d1e146103b6578063a0712d68146103ca575f5ffd5b806323b872dd1161013857806332cb6b0c1161011357806332cb6b0c146102f55780633ccfd60b1461030a57806342842e0e1461031e57806347064d6a1461033d575f5ffd5b806323b872dd146102795780632a55205a146102985780632fbba115146102d6575f5ffd5b806301ffc9a71461017f57806306fdde03146101b3578063081812fc146101eb578063095ea7b3146102225780630f2cdd6c1461024357806318160ddd14610265575b5f5ffd5b34801561018a575f5ffd5b5061019e610199366004610e85565b61048e565b60405190151581526020015b60405180910390f35b3480156101be575f5ffd5b506040805180820190915260078152664375627563757360c81b60208201525b6040516101aa9190610eac565b3480156101f6575f5ffd5b5061020a610205366004610ee1565b6104fa565b6040516001600160a01b0390911681526020016101aa565b34801561022d575f5ffd5b5061024161023c366004610f13565b61053e565b005b34801561024e575f5ffd5b50610257600581565b6040519081526020016101aa565b348015610270575f5ffd5b50600354610257565b348015610284575f5ffd5b50610241610293366004610f3b565b6105f9565b3480156102a3575f5ffd5b506102b76102b2366004610f75565b610609565b604080516001600160a01b0390931683526020830191909152016101aa565b3480156102e1575f5ffd5b506102416102f0366004610ee1565b610638565b348015610300575f5ffd5b506102576101f481565b348015610315575f5ffd5b506102416106db565b348015610329575f5ffd5b50610241610338366004610f3b565b610756565b348015610348575f5ffd5b50610241610357366004611020565b610770565b348015610367575f5ffd5b5061020a610376366004610ee1565b6107a9565b348015610386575f5ffd5b5061025761039536600461106d565b6107b3565b3480156103a5575f5ffd5b505f546001600160a01b031661020a565b3480156103c1575f5ffd5b50610257600181565b6102416103d8366004610ee1565b6107f9565b3480156103e8575f5ffd5b506102416103f7366004611086565b6108a3565b348015610407575f5ffd5b506102416104163660046110bf565b610937565b348015610426575f5ffd5b506102576601f8c501d9b00081565b348015610440575f5ffd5b506101de61044f366004610ee1565b610948565b34801561045f575f5ffd5b5061019e61046e366004611136565b610a4c565b34801561047e575f5ffd5b506102575f81565b610241610a79565b5f6301ffc9a760e01b6001600160e01b0319831614806104be57506380ac58cd60e01b6001600160e01b03198316145b806104d9575063152a902d60e11b6001600160e01b03198316145b806104f45750635b5e139f60e01b6001600160e01b03198316145b92915050565b5f610506826003541190565b610523576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f61054882610b8a565b9050806001600160a01b0316836001600160a01b031603610567575f5ffd5b336001600160a01b0382161461059e576105818133610a4c565b61059e576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610604838383610bec565b505050565b5f80546001600160a01b031690612710610625846101f4611172565b61062f9190611189565b90509250929050565b5f546001600160a01b0316331461066a5760405162461bcd60e51b8152600401610661906111a8565b60405180910390fd5b6101f48161067760035490565b61068191906111cb565b106106ce5760405162461bcd60e51b815260206004820152601860248201527f4d7573742062652062656c6f77204d617820537570706c7900000000000000006044820152606401610661565b6106d83382610d7d565b50565b5f546001600160a01b031633146107045760405162461bcd60e51b8152600401610661906111a8565b6040514790339081906175309084905f818181858888f193505050503d805f811461074a576040519150601f19603f3d011682016040523d82523d5f602084013e61074f565b606091505b5050505050565b61060483838360405180602001604052805f815250610937565b5f546001600160a01b031633146107995760405162461bcd60e51b8152600401610661906111a8565b60026107a5828261125a565b5050565b5f6104f482610b8a565b5f815f036107d4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b336101f48261080760035490565b61081191906111cb565b111561084a5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610661565b3461085c6601f8c501d9b00084611172565b11156108995760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b6044820152606401610661565b6107a58183610d7d565b336001600160a01b038316036108cc5760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610942848484610bec565b50505050565b6060610955826003541190565b61097257604051630a14c4b560e41b815260040160405180910390fd5b5f60028054610980906111de565b80601f01602080910402602001604051908101604052809291908181526020018280546109ac906111de565b80156109f75780601f106109ce576101008083540402835291602001916109f7565b820191905f5260205f20905b8154815290600101906020018083116109da57829003601f168201915b5050505050905080515f03610a1a5760405180602001604052805f815250610a45565b80610a2484610e36565b604051602001610a3592919061132c565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b323314610ab45760405162461bcd60e51b81526020600482015260096024820152681b9bc814d8dc9a5c1d60ba1b6044820152606401610661565b3360016101f481610ac460035490565b610ace91906111cb565b1115610b075760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610661565b335f9081526001602052604090205415610b5c5760405162461bcd60e51b8152602060048201526016602482015275105b1c9958591e481d5cd95908119c995948135a5b9d60521b6044820152606401610661565b335f9081526001602052604081208054839290610b7a9084906111cb565b909155506107a590508282610d7d565b5f81600354811015610bd3575f8181526004602052604081205490600160e01b82169003610bd1575b805f03610a4557505f19015f81815260046020526040902054610bb3565b505b604051636f96cda160e11b815260040160405180910390fd5b5f610bf682610b8a565b9050836001600160a01b0316816001600160a01b031614610c295760405162a1148160e81b815260040160405180910390fd5b5f828152600660205260408120546001600160a01b0390811691908616331480610c585750610c588633610a4c565b80610c6b57506001600160a01b03821633145b905080610c8b57604051632ce44b5f60e11b815260040160405180910390fd5b8115610cad575f84815260066020526040902080546001600160a01b03191690555b6001600160a01b038681165f90815260056020908152604080832080545f1901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610d3457600184015f818152600460205260408120549003610d32576003548114610d32575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6003545f829003610da15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f9081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610deb5750600355505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610e7357600183039250600a81066030018353600a9004610e55565b50819003601f19909101908152919050565b5f60208284031215610e95575f5ffd5b81356001600160e01b031981168114610a45575f5ffd5b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215610ef1575f5ffd5b5035919050565b80356001600160a01b0381168114610f0e575f5ffd5b919050565b5f5f60408385031215610f24575f5ffd5b610f2d83610ef8565b946020939093013593505050565b5f5f5f60608486031215610f4d575f5ffd5b610f5684610ef8565b9250610f6460208501610ef8565b929592945050506040919091013590565b5f5f60408385031215610f86575f5ffd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b5f5f67ffffffffffffffff841115610fc357610fc3610f95565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff82111715610ff257610ff2610f95565b604052838152905080828401851015611009575f5ffd5b838360208301375f60208583010152509392505050565b5f60208284031215611030575f5ffd5b813567ffffffffffffffff811115611046575f5ffd5b8201601f81018413611056575f5ffd5b61106584823560208401610fa9565b949350505050565b5f6020828403121561107d575f5ffd5b610a4582610ef8565b5f5f60408385031215611097575f5ffd5b6110a083610ef8565b9150602083013580151581146110b4575f5ffd5b809150509250929050565b5f5f5f5f608085870312156110d2575f5ffd5b6110db85610ef8565b93506110e960208601610ef8565b925060408501359150606085013567ffffffffffffffff81111561110b575f5ffd5b8501601f8101871361111b575f5ffd5b61112a87823560208401610fa9565b91505092959194509250565b5f5f60408385031215611147575f5ffd5b61115083610ef8565b915061062f60208401610ef8565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176104f4576104f461115e565b5f826111a357634e487b7160e01b5f52601260045260245ffd5b500490565b6020808252600990820152683737ba1027bbb732b960b91b604082015260600190565b808201808211156104f4576104f461115e565b600181811c908216806111f257607f821691505b60208210810361121057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561060457805f5260205f20601f840160051c8101602085101561123b5750805b601f840160051c820191505b8181101561074f575f8155600101611247565b815167ffffffffffffffff81111561127457611274610f95565b6112888161128284546111de565b84611216565b6020601f8211600181146112ba575f83156112a35750848201515b5f19600385901b1c1916600184901b17845561074f565b5f84815260208120601f198516915b828110156112e957878501518255602094850194600190920191016112c9565b508482101561130657868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f81518060208401855e5f93019283525090919050565b66697066733a2f2f60c81b81525f6113476007830185611315565b602f60f81b815261135b6001820185611315565b64173539b7b760d91b81526005019594505050505056fea26469706673582212207576b2038f932a132585645dcd0ea8cc5aa62bb519e2aaea0dde5cfc417a9bc164736f6c634300081e0033

Deployed Bytecode Sourcemap

16946:21135:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21620:674;;;;;;;;;;-1:-1:-1;21620:674:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;21620:674:0;;;;;;;;25882:100;;;;;;;;;;-1:-1:-1;25969:5:0;;;;;;;;;;;;-1:-1:-1;;;25969:5:0;;;;25882:100;;;;;;;:::i;27547:204::-;;;;;;;;;;-1:-1:-1;27547:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1315:32:1;;;1297:51;;1285:2;1270:18;27547:204:0;1151:203:1;27030:451:0;;;;;;;;;;-1:-1:-1;27030:451:0;;;;;:::i;:::-;;:::i;:::-;;17218:42;;;;;;;;;;;;17259:1;17218:42;;;;;1988:25:1;;;1976:2;1961:18;17218:42:0;1842:177:1;20863:300:0;;;;;;;;;;-1:-1:-1;21113:13:0;;20863:300;;28433:190;;;;;;;;;;-1:-1:-1;28433:190:0;;;;;:::i;:::-;;:::i;19868:274::-;;;;;;;;;;-1:-1:-1;19868:274:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;2946:32:1;;;2928:51;;3010:2;2995:18;;2988:34;;;;2901:18;19868:274:0;2754::1;37482:179:0;;;;;;;;;;-1:-1:-1;37482:179:0;;;;;:::i;:::-;;:::i;17171:40::-;;;;;;;;;;;;17208:3;17171:40;;37868:210;;;;;;;;;;;;;:::i;28694:205::-;;;;;;;;;;-1:-1:-1;28694:205:0;;;;;:::i;:::-;;:::i;20150:91::-;;;;;;;;;;-1:-1:-1;20150:91:0;;;;;:::i;:::-;;:::i;25671:144::-;;;;;;;;;;-1:-1:-1;25671:144:0;;;;;:::i;:::-;;:::i;22358:234::-;;;;;;;;;;-1:-1:-1;22358:234:0;;;;;:::i;:::-;;:::i;17047:77::-;;;;;;;;;;-1:-1:-1;17084:7:0;17110:6;-1:-1:-1;;;;;17110:6:0;17047:77;;17267:47;;;;;;;;;;;;17313:1;17267:47;;18034:267;;;;;;:::i;:::-;;:::i;27823:308::-;;;;;;;;;;-1:-1:-1;27823:308:0;;;;;:::i;:::-;;:::i;28970:227::-;;;;;;;;;;-1:-1:-1;28970:227:0;;;;;:::i;:::-;;:::i;17364:45::-;;;;;;;;;;;;17395:14;17364:45;;26167:339;;;;;;;;;;-1:-1:-1;26167:339:0;;;;;:::i;:::-;;:::i;28202:164::-;;;;;;;;;;-1:-1:-1;28202:164:0;;;;;:::i;:::-;;:::i;17321:36::-;;;;;;;;;;;;17356:1;17321:36;;17672:354;;;:::i;21620:674::-;21705:4;-1:-1:-1;;;;;;;;;22005:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22082:25:0;;;22005:102;:179;;;-1:-1:-1;;;;;;;;;;22159:25:0;;;22005:179;:238;;;-1:-1:-1;;;;;;;;;;22218:25:0;;;22005:238;21985:258;21620:674;-1:-1:-1;;21620:674:0:o;27547:204::-;27615:7;27640:16;27648:7;29599:13;;-1:-1:-1;29589:23:0;29452:168;27640:16;27635:64;;27665:34;;-1:-1:-1;;;27665:34:0;;;;;;;;;;;27635:64;-1:-1:-1;27719:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27719:24:0;;27547:204::o;27030:451::-;27103:13;27135:27;27154:7;27135:18;:27::i;:::-;27103:61;;27185:5;-1:-1:-1;;;;;27179:11:0;:2;-1:-1:-1;;;;;27179:11:0;;27175:25;;27192:8;;;27175:25;35468:10;-1:-1:-1;;;;;27217:28:0;;;27213:175;;27265:44;27282:5;35468:10;28202:164;:::i;27265:44::-;27260:128;;27337:35;;-1:-1:-1;;;27337:35:0;;;;;;;;;;;27260:128;27400:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;27400:29:0;-1:-1:-1;;;;;27400:29:0;;;;;;;;;27445:28;;27400:24;;27445:28;;;;;;;27092:389;27030:451;;:::o;28433:190::-;28587:28;28597:4;28603:2;28607:7;28587:9;:28::i;:::-;28433:190;;;:::o;19868:274::-;19967:16;20035:6;;-1:-1:-1;;;;;20035:6:0;;20088:5;20069:15;:9;20081:3;20069:15;:::i;:::-;20068:25;;;;:::i;:::-;20052:41;;19868:274;;;;;:::o;37482:179::-;37710:6;;-1:-1:-1;;;;;37710:6:0;37718:10;37710:18;37702:40;;;;-1:-1:-1;;;37702:40:0;;;;;;;:::i;:::-;;;;;;;;;17208:3:::1;37569:6;37553:13;21113::::0;;;20863:300;37553:13:::1;:22;;;;:::i;:::-;:35;37545:72;;;::::0;-1:-1:-1;;;37545:72:0;;7064:2:1;37545:72:0::1;::::0;::::1;7046:21:1::0;7103:2;7083:18;;;7076:30;7142:26;7122:18;;;7115:54;7186:18;;37545:72:0::1;6862:348:1::0;37545:72:0::1;37628:25;37634:10;37646:6;37628:5;:25::i;:::-;37482:179:::0;:::o;37868:210::-;37710:6;;-1:-1:-1;;;;;37710:6:0;37718:10;37710:18;37702:40;;;;-1:-1:-1;;;37702:40:0;;;;;;;:::i;:::-;38026:44:::1;::::0;37936:21:::1;::::0;38004:10:::1;::::0;;;38060:5:::1;::::0;37936:21;;38026:44:::1;::::0;;;37936:21;38004:10;38060:5;38026:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37907:171;;37868:210::o:0;28694:205::-;28852:39;28869:4;28875:2;28879:7;28852:39;;;;;;;;;;;;:16;:39::i;20150:91::-;37710:6;;-1:-1:-1;;;;;37710:6:0;37718:10;37710:18;37702:40;;;;-1:-1:-1;;;37702:40:0;;;;;;;:::i;:::-;20217:8:::1;:16;20228:5:::0;20217:8;:16:::1;:::i;:::-;;20150:91:::0;:::o;25671:144::-;25735:7;25778:27;25797:7;25778:18;:27::i;22358:234::-;22422:7;22464:5;22474:1;22446:29;22442:70;;22484:28;;-1:-1:-1;;;22484:28:0;;;;;;;;;;;22442:70;-1:-1:-1;;;;;;22530:25:0;;;;;:18;:25;;;;;;18416:13;22530:54;;22358:234::o;18034:267::-;35468:10;17208:3;18165:6;18149:13;21113;;;20863:300;18149:13;:22;;;;:::i;:::-;:36;;18141:57;;;;-1:-1:-1;;;18141:57:0;;10136:2:1;18141:57:0;;;10118:21:1;10175:1;10155:18;;;10148:29;-1:-1:-1;;;10193:18:1;;;10186:38;10241:18;;18141:57:0;9934:331:1;18141:57:0;18232:9;18217:11;17395:14;18217:6;:11;:::i;:::-;:24;;18209:49;;;;-1:-1:-1;;;18209:49:0;;10472:2:1;18209:49:0;;;10454:21:1;10511:2;10491:18;;;10484:30;-1:-1:-1;;;10530:18:1;;;10523:42;10582:18;;18209:49:0;10270:336:1;18209:49:0;18271:22;18277:7;18286:6;18271:5;:22::i;27823:308::-;35468:10;-1:-1:-1;;;;;27922:31:0;;;27918:61;;27962:17;;-1:-1:-1;;;27962:17:0;;;;;;;;;;;27918:61;35468:10;27992:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;27992:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;27992:60:0;;;;;;;;;;28068:55;;445:41:1;;;27992:49:0;;35468:10;28068:55;;418:18:1;28068:55:0;;;;;;;27823:308;;:::o;28970:227::-;29161:28;29171:4;29177:2;29181:7;29161:9;:28::i;:::-;28970:227;;;;:::o;26167:339::-;26240:13;26271:16;26279:7;29599:13;;-1:-1:-1;29589:23:0;29452:168;26271:16;26266:59;;26296:29;;-1:-1:-1;;;26296:29:0;;;;;;;;;;;26266:59;26336:21;26360:8;26336:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26392:7;26386:21;26411:1;26386:26;:112;;;;;;;;;;;;;;;;;26450:7;26464:18;26474:7;26464:9;:18::i;:::-;26422:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26386:112;26379:119;26167:339;-1:-1:-1;;;26167:339:0:o;28202:164::-;-1:-1:-1;;;;;28323:25:0;;;28299:4;28323:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28202:164::o;17672:354::-;37805:9;37816:10;37805:21;37797:43;;;;-1:-1:-1;;;37797:43:0;;11754:2:1;37797:43:0;;;11736:21:1;11793:1;11773:18;;;11766:29;-1:-1:-1;;;11811:18:1;;;11804:39;11860:18;;37797:43:0;11552:332:1;37797:43:0;35468:10;17313:1:::1;17208:3;17313:1:::0;17828:13:::1;21113::::0;;;20863:300;17828:13:::1;:22;;;;:::i;:::-;:36;;17820:57;;;::::0;-1:-1:-1;;;17820:57:0;;10136:2:1;17820:57:0::1;::::0;::::1;10118:21:1::0;10175:1;10155:18;;;10148:29;-1:-1:-1;;;10193:18:1;;;10186:38;10241:18;;17820:57:0::1;9934:331:1::0;17820:57:0::1;17903:10;17896:18;::::0;;;:6:::1;:18;::::0;;;;;:21;17888:56:::1;;;::::0;-1:-1:-1;;;17888:56:0;;12091:2:1;17888:56:0::1;::::0;::::1;12073:21:1::0;12130:2;12110:18;;;12103:30;-1:-1:-1;;;12149:18:1;;;12142:52;12211:18;;17888:56:0::1;11889:346:1::0;17888:56:0::1;17964:10;17957:18;::::0;;;:6:::1;:18;::::0;;;;:28;;17979:6;;17957:18;:28:::1;::::0;17979:6;;17957:28:::1;:::i;:::-;::::0;;;-1:-1:-1;17996:22:0::1;::::0;-1:-1:-1;18002:7:0;18011:6;17996:5:::1;:22::i;23186:1129::-:0;23253:7;23288;23390:13;;23383:4;:20;23379:869;;;23428:14;23445:23;;;:17;:23;;;;;;;-1:-1:-1;;;23534:23:0;;:28;;23530:699;;24053:113;24060:6;24070:1;24060:11;24053:113;;-1:-1:-1;;;24131:6:0;24113:25;;;;:17;:25;;;;;;24053:113;;23530:699;23405:843;23379:869;24276:31;;-1:-1:-1;;;24276:31:0;;;;;;;;;;;31737:2561;31878:27;31908;31927:7;31908:18;:27::i;:::-;31878:57;;31993:4;-1:-1:-1;;;;;31952:45:0;31968:19;-1:-1:-1;;;;;31952:45:0;;31948:86;;32006:28;;-1:-1:-1;;;32006:28:0;;;;;;;;;;;31948:86;32047:23;32073:24;;;:15;:24;;;;;;-1:-1:-1;;;;;32073:24:0;;;;32047:23;32136:27;;35468:10;32136:27;;:91;;-1:-1:-1;32184:43:0;32201:4;35468:10;28202:164;:::i;32184:43::-;32136:150;;;-1:-1:-1;;;;;;32248:38:0;;35468:10;32248:38;32136:150;32110:177;;32305:17;32300:66;;32331:35;;-1:-1:-1;;;32331:35:0;;;;;;;;;;;32300:66;32456:15;32438:39;32434:103;;32501:24;;;;:15;:24;;;;;32494:31;;-1:-1:-1;;;;;;32494:31:0;;;32434:103;-1:-1:-1;;;;;32904:24:0;;;;;;;:18;:24;;;;;;;;32902:26;;-1:-1:-1;;32902:26:0;;;32973:22;;;;;;;;32971:24;;-1:-1:-1;32971:24:0;;;33266:26;;;:17;:26;;;;;-1:-1:-1;;;33354:15:0;18720:3;33354:41;33312:84;;:128;;33266:174;;;33560:46;;:51;;33556:626;;33664:1;33654:11;;33632:19;33787:30;;;:17;:30;;;;;;:35;;33783:384;;33925:13;;33910:11;:28;33906:242;;34072:30;;;;:17;:30;;;;;:52;;;33906:242;33613:569;33556:626;34229:7;34225:2;-1:-1:-1;;;;;34210:27:0;34219:4;-1:-1:-1;;;;;34210:27:0;;;;;;;;;;;31861:2437;;;31737:2561;;;:::o;29885:1596::-;29973:13;;29950:20;30072:13;;;30068:44;;30094:18;;-1:-1:-1;;;30094:18:0;;;;;;;;;;;30068:44;-1:-1:-1;;;;;30589:22:0;;;;;;:18;:22;;;;18484:2;30589:22;;;:70;;30627:31;30615:44;;30589:70;;;30902:31;;;:17;:31;;;;;30995:15;18720:3;30995:41;30953:84;;-1:-1:-1;31073:13:0;;18838:3;31058:56;30953:162;30902:213;;:31;31196:23;;;31236:111;31263:40;;31288:14;;;;;-1:-1:-1;;;;;31263:40:0;;;31280:1;;31263:40;;31280:1;;31263:40;31342:3;31327:12;:18;31236:111;;-1:-1:-1;31363:13:0;:28;28433:190;;;:::o;35592:1882::-;36063:4;36057:11;;36070:3;36053:21;;36144:17;;;;36816:11;;;36693:5;36950:2;36964;36954:13;;36946:22;36816:11;36933:36;37006:2;36996:13;;36590:661;37022:4;36590:661;;;37190:1;37185:3;37181:11;37174:18;;37234:2;37228:4;37224:13;37220:2;37216:22;37211:3;37203:36;37107:2;37097:13;;36590:661;;;-1:-1:-1;37274:13:0;;;-1:-1:-1;;37383:12:0;;;37437:19;;;37383:12;35592:1882;-1:-1:-1;35592:1882:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:418;646:2;635:9;628:21;609:4;678:6;672:13;721:6;716:2;705:9;701:18;694:34;780:6;775:2;767:6;763:15;758:2;747:9;743:18;737:50;836:1;831:2;822:6;811:9;807:22;803:31;796:42;906:2;899;895:7;890:2;882:6;878:15;874:29;863:9;859:45;855:54;847:62;;;497:418;;;;:::o;920:226::-;979:6;1032:2;1020:9;1011:7;1007:23;1003:32;1000:52;;;1048:1;1045;1038:12;1000:52;-1:-1:-1;1093:23:1;;920:226;-1:-1:-1;920:226:1:o;1359:173::-;1427:20;;-1:-1:-1;;;;;1476:31:1;;1466:42;;1456:70;;1522:1;1519;1512:12;1456:70;1359:173;;;:::o;1537:300::-;1605:6;1613;1666:2;1654:9;1645:7;1641:23;1637:32;1634:52;;;1682:1;1679;1672:12;1634:52;1705:29;1724:9;1705:29;:::i;:::-;1695:39;1803:2;1788:18;;;;1775:32;;-1:-1:-1;;;1537:300:1:o;2024:374::-;2101:6;2109;2117;2170:2;2158:9;2149:7;2145:23;2141:32;2138:52;;;2186:1;2183;2176:12;2138:52;2209:29;2228:9;2209:29;:::i;:::-;2199:39;;2257:38;2291:2;2280:9;2276:18;2257:38;:::i;:::-;2024:374;;2247:48;;-1:-1:-1;;;2364:2:1;2349:18;;;;2336:32;;2024:374::o;2403:346::-;2471:6;2479;2532:2;2520:9;2511:7;2507:23;2503:32;2500:52;;;2548:1;2545;2538:12;2500:52;-1:-1:-1;;2593:23:1;;;2713:2;2698:18;;;2685:32;;-1:-1:-1;2403:346:1:o;3033:127::-;3094:10;3089:3;3085:20;3082:1;3075:31;3125:4;3122:1;3115:15;3149:4;3146:1;3139:15;3165:716;3230:5;3262:1;3286:18;3278:6;3275:30;3272:56;;;3308:18;;:::i;:::-;-1:-1:-1;3463:2:1;3457:9;-1:-1:-1;;3376:2:1;3355:15;;3351:29;;3521:2;3509:15;3505:29;3493:42;;3586:22;;;3565:18;3550:34;;3547:62;3544:88;;;3612:18;;:::i;:::-;3648:2;3641:22;3696;;;3681:6;-1:-1:-1;3681:6:1;3733:16;;;3730:25;-1:-1:-1;3727:45:1;;;3768:1;3765;3758:12;3727:45;3818:6;3813:3;3806:4;3798:6;3794:17;3781:44;3873:1;3866:4;3857:6;3849;3845:19;3841:30;3834:41;;3165:716;;;;;:::o;3886:451::-;3955:6;4008:2;3996:9;3987:7;3983:23;3979:32;3976:52;;;4024:1;4021;4014:12;3976:52;4064:9;4051:23;4097:18;4089:6;4086:30;4083:50;;;4129:1;4126;4119:12;4083:50;4152:22;;4205:4;4197:13;;4193:27;-1:-1:-1;4183:55:1;;4234:1;4231;4224:12;4183:55;4257:74;4323:7;4318:2;4305:16;4300:2;4296;4292:11;4257:74;:::i;:::-;4247:84;3886:451;-1:-1:-1;;;;3886:451:1:o;4342:186::-;4401:6;4454:2;4442:9;4433:7;4429:23;4425:32;4422:52;;;4470:1;4467;4460:12;4422:52;4493:29;4512:9;4493:29;:::i;4533:347::-;4598:6;4606;4659:2;4647:9;4638:7;4634:23;4630:32;4627:52;;;4675:1;4672;4665:12;4627:52;4698:29;4717:9;4698:29;:::i;:::-;4688:39;;4777:2;4766:9;4762:18;4749:32;4824:5;4817:13;4810:21;4803:5;4800:32;4790:60;;4846:1;4843;4836:12;4790:60;4869:5;4859:15;;;4533:347;;;;;:::o;4885:713::-;4980:6;4988;4996;5004;5057:3;5045:9;5036:7;5032:23;5028:33;5025:53;;;5074:1;5071;5064:12;5025:53;5097:29;5116:9;5097:29;:::i;:::-;5087:39;;5145:38;5179:2;5168:9;5164:18;5145:38;:::i;:::-;5135:48;-1:-1:-1;5252:2:1;5237:18;;5224:32;;-1:-1:-1;5331:2:1;5316:18;;5303:32;5358:18;5347:30;;5344:50;;;5390:1;5387;5380:12;5344:50;5413:22;;5466:4;5458:13;;5454:27;-1:-1:-1;5444:55:1;;5495:1;5492;5485:12;5444:55;5518:74;5584:7;5579:2;5566:16;5561:2;5557;5553:11;5518:74;:::i;:::-;5508:84;;;4885:713;;;;;;;:::o;5603:260::-;5671:6;5679;5732:2;5720:9;5711:7;5707:23;5703:32;5700:52;;;5748:1;5745;5738:12;5700:52;5771:29;5790:9;5771:29;:::i;:::-;5761:39;;5819:38;5853:2;5842:9;5838:18;5819:38;:::i;5868:127::-;5929:10;5924:3;5920:20;5917:1;5910:31;5960:4;5957:1;5950:15;5984:4;5981:1;5974:15;6000:168;6073:9;;;6104;;6121:15;;;6115:22;;6101:37;6091:71;;6142:18;;:::i;6173:217::-;6213:1;6239;6229:132;;6283:10;6278:3;6274:20;6271:1;6264:31;6318:4;6315:1;6308:15;6346:4;6343:1;6336:15;6229:132;-1:-1:-1;6375:9:1;;6173:217::o;6395:332::-;6597:2;6579:21;;;6636:1;6616:18;;;6609:29;-1:-1:-1;;;6669:2:1;6654:18;;6647:39;6718:2;6703:18;;6395:332::o;6732:125::-;6797:9;;;6818:10;;;6815:36;;;6831:18;;:::i;7425:380::-;7504:1;7500:12;;;;7547;;;7568:61;;7622:4;7614:6;7610:17;7600:27;;7568:61;7675:2;7667:6;7664:14;7644:18;7641:38;7638:161;;7721:10;7716:3;7712:20;7709:1;7702:31;7756:4;7753:1;7746:15;7784:4;7781:1;7774:15;7638:161;;7425:380;;;:::o;7936:518::-;8038:2;8033:3;8030:11;8027:421;;;8074:5;8071:1;8064:16;8118:4;8115:1;8105:18;8188:2;8176:10;8172:19;8169:1;8165:27;8159:4;8155:38;8224:4;8212:10;8209:20;8206:47;;;-1:-1:-1;8247:4:1;8206:47;8302:2;8297:3;8293:12;8290:1;8286:20;8280:4;8276:31;8266:41;;8357:81;8375:2;8368:5;8365:13;8357:81;;;8434:1;8420:16;;8401:1;8390:13;8357:81;;8630:1299;8756:3;8750:10;8783:18;8775:6;8772:30;8769:56;;;8805:18;;:::i;:::-;8834:97;8924:6;8884:38;8916:4;8910:11;8884:38;:::i;:::-;8878:4;8834:97;:::i;:::-;8980:4;9011:2;9000:14;;9028:1;9023:649;;;;9716:1;9733:6;9730:89;;;-1:-1:-1;9785:19:1;;;9779:26;9730:89;-1:-1:-1;;8587:1:1;8583:11;;;8579:24;8575:29;8565:40;8611:1;8607:11;;;8562:57;9832:81;;8993:930;;9023:649;7883:1;7876:14;;;7920:4;7907:18;;-1:-1:-1;;9059:20:1;;;9177:222;9191:7;9188:1;9185:14;9177:222;;;9273:19;;;9267:26;9252:42;;9380:4;9365:20;;;;9333:1;9321:14;;;;9207:12;9177:222;;;9181:3;9427:6;9418:7;9415:19;9412:201;;;9488:19;;;9482:26;-1:-1:-1;;9571:1:1;9567:14;;;9583:3;9563:24;9559:37;9555:42;9540:58;9525:74;;9412:201;-1:-1:-1;;;;9659:1:1;9643:14;;;9639:22;9626:36;;-1:-1:-1;8630:1299:1:o;10611:212::-;10653:3;10691:5;10685:12;10735:6;10728:4;10721:5;10717:16;10712:3;10706:36;10797:1;10761:16;;10786:13;;;-1:-1:-1;10761:16:1;;10611:212;-1:-1:-1;10611:212:1:o;10828:719::-;-1:-1:-1;;;11335:3:1;11328:22;11310:3;11369:38;11404:1;11399:3;11395:11;11387:6;11369:38;:::i;:::-;-1:-1:-1;;;11423:2:1;11416:15;11450:37;11484:1;11480:2;11476:10;11468:6;11450:37;:::i;:::-;-1:-1:-1;;;11496:19:1;;11539:1;11531:10;;10828:719;-1:-1:-1;;;;;10828:719:1:o

Swarm Source

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