ETH Price: $3,086.99 (-0.52%)
Gas: 2 Gwei

Token

Gooser (Gooser)
 

Overview

Max Total Supply

1,000 Gooser

Holders

430

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Gooser
0xe092Aa8C13F3b84fc0Fa6f12a48F76f00ee1622d
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:
Gooser

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-06
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Ownable is Context {
    address private _owner;

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

    constructor() {
        _transferOwnership(_msgSender());
    }

    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }


    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

/**
 * @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 ERC721A is IERC721A {
    // Reference type for token approval.
    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(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

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

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

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

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

    // =============================================================
    //                            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 override 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 override returns (string memory) {
        return _name;
    }

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override 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 OwnerQueryForNonexistentToken();
    }

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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 override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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 override 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))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      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 virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 virtual override {
        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 virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

        _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.
            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`.
                )

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        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)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _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);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), 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, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @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 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.
                // The ASCII index of the '0' character is 48.
                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)
        }
    }
}

contract Gooser is ERC721A, Ownable  {
    
    uint256 public maxSupply = 1000;

    uint256 public maxFreeSupply;

    uint256 public cost = 0.0008 ether;

    uint256 public freeAmount = 2;

    string  private uri = "";

    
    function publicMint(uint32 amount) public payable {
        require(totalSupply() + amount <= maxSupply, "sold_out");
        bool isFree = msg.value == 0;
        if (isFree) {
            require(msg.sender == tx.origin);
            require(amount <= freeAmount);
            require(totalSupply() + amount <= maxFreeSupply);
            require(msg.sender == owner() || balanceOf(msg.sender) < freeAmount);
            _safeMint(msg.sender, amount);
        } else {
            require(msg.value >= cost * amount);
            _safeMint(msg.sender, amount);
        }
    }

    constructor() ERC721A("Gooser", "Gooser") {
        maxFreeSupply = 500;
    }

    function setFree(uint256 freeamount, uint256 mf) onlyOwner public  {
        freeAmount = freeamount;
        maxFreeSupply = mf;
    }

    function setUri(string memory i) onlyOwner public  {
        uri = i;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(uri, _toString(tokenId), ".json"));
    }

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

Contract Security Audit

Contract ABI

[{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint32","name":"amount","type":"uint32"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeamount","type":"uint256"},{"internalType":"uint256","name":"mf","type":"uint256"}],"name":"setFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"i","type":"string"}],"name":"setUri","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6103e86009556602d79883d20000600b556002600c5560a060405260006080908152600d90620000309082620001a1565b503480156200003e57600080fd5b5060408051808201825260068082526523b7b7b9b2b960d11b60208084018290528451808601909552918452908301529060026200007d8382620001a1565b5060036200008c8282620001a1565b505060008055506200009e33620000aa565b6101f4600a556200026d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200012757607f821691505b6020821081036200014857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200019c57600081815260208120601f850160051c81016020861015620001775750805b601f850160051c820191505b81811015620001985782815560010162000183565b5050505b505050565b81516001600160401b03811115620001bd57620001bd620000fc565b620001d581620001ce845462000112565b846200014e565b602080601f8311600181146200020d5760008415620001f45750858301515b600019600386901b1c1916600185901b17855562000198565b600085815260208120601f198616915b828110156200023e578886015182559484019460019091019084016200021d565b50858210156200025d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611588806200027d6000396000f3fe6080604052600436106101665760003560e01c80636352211e116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610402578063e985e9c514610418578063f151d79114610438578063f2fde38b1461044b57600080fd5b8063a22cb465146103a2578063b88d4fde146103c2578063c87b56dd146103e257600080fd5b80636352211e146102fa57806370a082311461031a578063715018a61461033a5780638da5cb5b1461034f57806395d89b411461036d5780639b642de11461038257600080fd5b806318160ddd1161012357806318160ddd1461025657806323b872dd1461026f5780633ccfd60b1461028f57806342842e0e146102a457806347513334146102c457806357546fd7146102da57600080fd5b806301ffc9a71461016b5780630451a9f1146101a057806306fdde03146101c4578063081812fc146101e6578063095ea7b31461021e57806313faede614610240575b600080fd5b34801561017757600080fd5b5061018b610186366004610fa3565b61046b565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b6600c5481565b604051908152602001610197565b3480156101d057600080fd5b506101d96104bd565b6040516101979190611010565b3480156101f257600080fd5b50610206610201366004611023565b61054f565b6040516001600160a01b039091168152602001610197565b34801561022a57600080fd5b5061023e610239366004611058565b610593565b005b34801561024c57600080fd5b506101b6600b5481565b34801561026257600080fd5b50600154600054036101b6565b34801561027b57600080fd5b5061023e61028a366004611082565b610633565b34801561029b57600080fd5b5061023e6107cc565b3480156102b057600080fd5b5061023e6102bf366004611082565b610803565b3480156102d057600080fd5b506101b6600a5481565b3480156102e657600080fd5b5061023e6102f53660046110be565b610823565b34801561030657600080fd5b50610206610315366004611023565b610836565b34801561032657600080fd5b506101b66103353660046110e0565b610841565b34801561034657600080fd5b5061023e610890565b34801561035b57600080fd5b506008546001600160a01b0316610206565b34801561037957600080fd5b506101d96108a4565b34801561038e57600080fd5b5061023e61039d366004611187565b6108b3565b3480156103ae57600080fd5b5061023e6103bd3660046111d0565b6108cb565b3480156103ce57600080fd5b5061023e6103dd36600461120c565b610960565b3480156103ee57600080fd5b506101d96103fd366004611023565b6109aa565b34801561040e57600080fd5b506101b660095481565b34801561042457600080fd5b5061018b610433366004611288565b6109de565b61023e6104463660046112bb565b610a0c565b34801561045757600080fd5b5061023e6104663660046110e0565b610b1b565b60006301ffc9a760e01b6001600160e01b03198316148061049c57506380ac58cd60e01b6001600160e01b03198316145b806104b75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104cc906112e1565b80601f01602080910402602001604051908101604052809291908181526020018280546104f8906112e1565b80156105455780601f1061051a57610100808354040283529160200191610545565b820191906000526020600020905b81548152906001019060200180831161052857829003601f168201915b5050505050905090565b600061055a82610b91565b610577576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061059e82610836565b9050336001600160a01b038216146105d7576105ba81336109de565b6105d7576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061063e82610bb8565b9050836001600160a01b0316816001600160a01b0316146106715760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106be576106a186336109de565b6106be57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106e557604051633a954ecd60e21b815260040160405180910390fd5b80156106f057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610782576001840160008181526004602052604081205490036107805760005481146107805760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6107d4610c26565b60405133904780156108fc02916000818181858888f19350505050158015610800573d6000803e3d6000fd5b50565b61081e83838360405180602001604052806000815250610960565b505050565b61082b610c26565b600c91909155600a55565b60006104b782610bb8565b60006001600160a01b03821661086a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610898610c26565b6108a26000610c80565b565b6060600380546104cc906112e1565b6108bb610c26565b600d6108c78282611361565b5050565b336001600160a01b038316036108f45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61096b848484610633565b6001600160a01b0383163b156109a45761098784848484610cd2565b6109a4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600d6109b783610dbe565b6040516020016109c8929190611421565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6009548163ffffffff16610a236001546000540390565b610a2d91906114ce565b1115610a6b5760405162461bcd60e51b81526020600482015260086024820152671cdbdb1917dbdd5d60c21b60448201526064015b60405180910390fd5b34158015610afb57333214610a7f57600080fd5b600c548263ffffffff161115610a9457600080fd5b600a548263ffffffff16610aab6001546000540390565b610ab591906114ce565b1115610ac057600080fd5b6008546001600160a01b0316331480610ae25750600c54610ae033610841565b105b610aeb57600080fd5b6108c7338363ffffffff16610e0d565b8163ffffffff16600b54610b0f91906114e1565b341015610aeb57600080fd5b610b23610c26565b6001600160a01b038116610b885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a62565b61080081610c80565b60008054821080156104b7575050600090815260046020526040902054600160e01b161590565b600081600054811015610c0d5760008181526004602052604081205490600160e01b82169003610c0b575b80600003610c04575060001901600081815260046020526040902054610be3565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146108a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a62565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610d079033908990889088906004016114f8565b6020604051808303816000875af1925050508015610d42575060408051601f3d908101601f19168201909252610d3f91810190611535565b60015b610da0573d808015610d70576040519150601f19603f3d011682016040523d82523d6000602084013e610d75565b606091505b508051600003610d98576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610dfb57600183039250600a81066030018353600a9004610ddd565b50819003601f19909101908152919050565b6108c7828260405180602001604052806000815250610e2c8383610e8f565b6001600160a01b0383163b1561081e576000548281035b610e566000868380600101945086610cd2565b610e73576040516368d2bf6b60e11b815260040160405180910390fd5b818110610e43578160005414610e8857600080fd5b5050505050565b6000805490829003610eb45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610f6357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610f2b565b5081600003610f8457604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461080057600080fd5b600060208284031215610fb557600080fd5b8135610c0481610f8d565b60005b83811015610fdb578181015183820152602001610fc3565b50506000910152565b60008151808452610ffc816020860160208601610fc0565b601f01601f19169290920160200192915050565b602081526000610c046020830184610fe4565b60006020828403121561103557600080fd5b5035919050565b80356001600160a01b038116811461105357600080fd5b919050565b6000806040838503121561106b57600080fd5b6110748361103c565b946020939093013593505050565b60008060006060848603121561109757600080fd5b6110a08461103c565b92506110ae6020850161103c565b9150604084013590509250925092565b600080604083850312156110d157600080fd5b50508035926020909101359150565b6000602082840312156110f257600080fd5b610c048261103c565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561112c5761112c6110fb565b604051601f8501601f19908116603f01168101908282118183101715611154576111546110fb565b8160405280935085815286868601111561116d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561119957600080fd5b813567ffffffffffffffff8111156111b057600080fd5b8201601f810184136111c157600080fd5b610db684823560208401611111565b600080604083850312156111e357600080fd5b6111ec8361103c565b91506020830135801515811461120157600080fd5b809150509250929050565b6000806000806080858703121561122257600080fd5b61122b8561103c565b93506112396020860161103c565b925060408501359150606085013567ffffffffffffffff81111561125c57600080fd5b8501601f8101871361126d57600080fd5b61127c87823560208401611111565b91505092959194509250565b6000806040838503121561129b57600080fd5b6112a48361103c565b91506112b26020840161103c565b90509250929050565b6000602082840312156112cd57600080fd5b813563ffffffff81168114610c0457600080fd5b600181811c908216806112f557607f821691505b60208210810361131557634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561081e57600081815260208120601f850160051c810160208610156113425750805b601f850160051c820191505b818110156107c45782815560010161134e565b815167ffffffffffffffff81111561137b5761137b6110fb565b61138f8161138984546112e1565b8461131b565b602080601f8311600181146113c457600084156113ac5750858301515b600019600386901b1c1916600185901b1785556107c4565b600085815260208120601f198616915b828110156113f3578886015182559484019460019091019084016113d4565b50858210156114115787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600080845461142f816112e1565b60018281168015611447576001811461145c5761148b565b60ff198416875282151583028701945061148b565b8860005260208060002060005b858110156114825781548a820152908401908201611469565b50505082870194505b50505050835161149f818360208801610fc0565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104b7576104b76114b8565b80820281158282048414176104b7576104b76114b8565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061152b90830184610fe4565b9695505050505050565b60006020828403121561154757600080fd5b8151610c0481610f8d56fea2646970667358221220299ae3a91ff2c8bf462af82369666ffadc9e8842369a409ca6194f639b2effe864736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101665760003560e01c80636352211e116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610402578063e985e9c514610418578063f151d79114610438578063f2fde38b1461044b57600080fd5b8063a22cb465146103a2578063b88d4fde146103c2578063c87b56dd146103e257600080fd5b80636352211e146102fa57806370a082311461031a578063715018a61461033a5780638da5cb5b1461034f57806395d89b411461036d5780639b642de11461038257600080fd5b806318160ddd1161012357806318160ddd1461025657806323b872dd1461026f5780633ccfd60b1461028f57806342842e0e146102a457806347513334146102c457806357546fd7146102da57600080fd5b806301ffc9a71461016b5780630451a9f1146101a057806306fdde03146101c4578063081812fc146101e6578063095ea7b31461021e57806313faede614610240575b600080fd5b34801561017757600080fd5b5061018b610186366004610fa3565b61046b565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b6600c5481565b604051908152602001610197565b3480156101d057600080fd5b506101d96104bd565b6040516101979190611010565b3480156101f257600080fd5b50610206610201366004611023565b61054f565b6040516001600160a01b039091168152602001610197565b34801561022a57600080fd5b5061023e610239366004611058565b610593565b005b34801561024c57600080fd5b506101b6600b5481565b34801561026257600080fd5b50600154600054036101b6565b34801561027b57600080fd5b5061023e61028a366004611082565b610633565b34801561029b57600080fd5b5061023e6107cc565b3480156102b057600080fd5b5061023e6102bf366004611082565b610803565b3480156102d057600080fd5b506101b6600a5481565b3480156102e657600080fd5b5061023e6102f53660046110be565b610823565b34801561030657600080fd5b50610206610315366004611023565b610836565b34801561032657600080fd5b506101b66103353660046110e0565b610841565b34801561034657600080fd5b5061023e610890565b34801561035b57600080fd5b506008546001600160a01b0316610206565b34801561037957600080fd5b506101d96108a4565b34801561038e57600080fd5b5061023e61039d366004611187565b6108b3565b3480156103ae57600080fd5b5061023e6103bd3660046111d0565b6108cb565b3480156103ce57600080fd5b5061023e6103dd36600461120c565b610960565b3480156103ee57600080fd5b506101d96103fd366004611023565b6109aa565b34801561040e57600080fd5b506101b660095481565b34801561042457600080fd5b5061018b610433366004611288565b6109de565b61023e6104463660046112bb565b610a0c565b34801561045757600080fd5b5061023e6104663660046110e0565b610b1b565b60006301ffc9a760e01b6001600160e01b03198316148061049c57506380ac58cd60e01b6001600160e01b03198316145b806104b75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104cc906112e1565b80601f01602080910402602001604051908101604052809291908181526020018280546104f8906112e1565b80156105455780601f1061051a57610100808354040283529160200191610545565b820191906000526020600020905b81548152906001019060200180831161052857829003601f168201915b5050505050905090565b600061055a82610b91565b610577576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061059e82610836565b9050336001600160a01b038216146105d7576105ba81336109de565b6105d7576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061063e82610bb8565b9050836001600160a01b0316816001600160a01b0316146106715760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106be576106a186336109de565b6106be57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106e557604051633a954ecd60e21b815260040160405180910390fd5b80156106f057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610782576001840160008181526004602052604081205490036107805760005481146107805760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6107d4610c26565b60405133904780156108fc02916000818181858888f19350505050158015610800573d6000803e3d6000fd5b50565b61081e83838360405180602001604052806000815250610960565b505050565b61082b610c26565b600c91909155600a55565b60006104b782610bb8565b60006001600160a01b03821661086a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610898610c26565b6108a26000610c80565b565b6060600380546104cc906112e1565b6108bb610c26565b600d6108c78282611361565b5050565b336001600160a01b038316036108f45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61096b848484610633565b6001600160a01b0383163b156109a45761098784848484610cd2565b6109a4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600d6109b783610dbe565b6040516020016109c8929190611421565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6009548163ffffffff16610a236001546000540390565b610a2d91906114ce565b1115610a6b5760405162461bcd60e51b81526020600482015260086024820152671cdbdb1917dbdd5d60c21b60448201526064015b60405180910390fd5b34158015610afb57333214610a7f57600080fd5b600c548263ffffffff161115610a9457600080fd5b600a548263ffffffff16610aab6001546000540390565b610ab591906114ce565b1115610ac057600080fd5b6008546001600160a01b0316331480610ae25750600c54610ae033610841565b105b610aeb57600080fd5b6108c7338363ffffffff16610e0d565b8163ffffffff16600b54610b0f91906114e1565b341015610aeb57600080fd5b610b23610c26565b6001600160a01b038116610b885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a62565b61080081610c80565b60008054821080156104b7575050600090815260046020526040902054600160e01b161590565b600081600054811015610c0d5760008181526004602052604081205490600160e01b82169003610c0b575b80600003610c04575060001901600081815260046020526040902054610be3565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146108a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a62565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610d079033908990889088906004016114f8565b6020604051808303816000875af1925050508015610d42575060408051601f3d908101601f19168201909252610d3f91810190611535565b60015b610da0573d808015610d70576040519150601f19603f3d011682016040523d82523d6000602084013e610d75565b606091505b508051600003610d98576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610dfb57600183039250600a81066030018353600a9004610ddd565b50819003601f19909101908152919050565b6108c7828260405180602001604052806000815250610e2c8383610e8f565b6001600160a01b0383163b1561081e576000548281035b610e566000868380600101945086610cd2565b610e73576040516368d2bf6b60e11b815260040160405180910390fd5b818110610e43578160005414610e8857600080fd5b5050505050565b6000805490829003610eb45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610f6357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610f2b565b5081600003610f8457604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461080057600080fd5b600060208284031215610fb557600080fd5b8135610c0481610f8d565b60005b83811015610fdb578181015183820152602001610fc3565b50506000910152565b60008151808452610ffc816020860160208601610fc0565b601f01601f19169290920160200192915050565b602081526000610c046020830184610fe4565b60006020828403121561103557600080fd5b5035919050565b80356001600160a01b038116811461105357600080fd5b919050565b6000806040838503121561106b57600080fd5b6110748361103c565b946020939093013593505050565b60008060006060848603121561109757600080fd5b6110a08461103c565b92506110ae6020850161103c565b9150604084013590509250925092565b600080604083850312156110d157600080fd5b50508035926020909101359150565b6000602082840312156110f257600080fd5b610c048261103c565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561112c5761112c6110fb565b604051601f8501601f19908116603f01168101908282118183101715611154576111546110fb565b8160405280935085815286868601111561116d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561119957600080fd5b813567ffffffffffffffff8111156111b057600080fd5b8201601f810184136111c157600080fd5b610db684823560208401611111565b600080604083850312156111e357600080fd5b6111ec8361103c565b91506020830135801515811461120157600080fd5b809150509250929050565b6000806000806080858703121561122257600080fd5b61122b8561103c565b93506112396020860161103c565b925060408501359150606085013567ffffffffffffffff81111561125c57600080fd5b8501601f8101871361126d57600080fd5b61127c87823560208401611111565b91505092959194509250565b6000806040838503121561129b57600080fd5b6112a48361103c565b91506112b26020840161103c565b90509250929050565b6000602082840312156112cd57600080fd5b813563ffffffff81168114610c0457600080fd5b600181811c908216806112f557607f821691505b60208210810361131557634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561081e57600081815260208120601f850160051c810160208610156113425750805b601f850160051c820191505b818110156107c45782815560010161134e565b815167ffffffffffffffff81111561137b5761137b6110fb565b61138f8161138984546112e1565b8461131b565b602080601f8311600181146113c457600084156113ac5750858301515b600019600386901b1c1916600185901b1785556107c4565b600085815260208120601f198616915b828110156113f3578886015182559484019460019091019084016113d4565b50858210156114115787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600080845461142f816112e1565b60018281168015611447576001811461145c5761148b565b60ff198416875282151583028701945061148b565b8860005260208060002060005b858110156114825781548a820152908401908201611469565b50505082870194505b50505050835161149f818360208801610fc0565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104b7576104b76114b8565b80820281158282048414176104b7576104b76114b8565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061152b90830184610fe4565b9695505050505050565b60006020828403121561154757600080fd5b8151610c0481610f8d56fea2646970667358221220299ae3a91ff2c8bf462af82369666ffadc9e8842369a409ca6194f639b2effe864736f6c63430008120033

Deployed Bytecode Sourcemap

52369:1449:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19557:639;;;;;;;;;;-1:-1:-1;19557:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;19557:639:0;;;;;;;;52539:29;;;;;;;;;;;;;;;;;;;738:25:1;;;726:2;711:18;52539:29:0;592:177:1;20459:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26942:218::-;;;;;;;;;;-1:-1:-1;26942:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;26942:218:0;1715:203:1;26383:400:0;;;;;;;;;;-1:-1:-1;26383:400:0;;;;;:::i;:::-;;:::i;:::-;;52496:34;;;;;;;;;;;;;;;;16210:323;;;;;;;;;;-1:-1:-1;16484:12:0;;16271:7;16468:13;:28;16210:323;;30649:2817;;;;;;;;;;-1:-1:-1;30649:2817:0;;;;;:::i;:::-;;:::i;53706:109::-;;;;;;;;;;;;;:::i;33562:185::-;;;;;;;;;;-1:-1:-1;33562:185:0;;;;;:::i;:::-;;:::i;52459:28::-;;;;;;;;;;;;;;;;53303:138;;;;;;;;;;-1:-1:-1;53303:138:0;;;;;:::i;:::-;;:::i;21852:152::-;;;;;;;;;;-1:-1:-1;21852:152:0;;;;;:::i;:::-;;:::i;17394:233::-;;;;;;;;;;-1:-1:-1;17394:233:0;;;;;:::i;:::-;;:::i;857:103::-;;;;;;;;;;;;;:::i;622:87::-;;;;;;;;;;-1:-1:-1;695:6:0;;-1:-1:-1;;;;;695:6:0;622:87;;20635:104;;;;;;;;;;;;;:::i;53449:77::-;;;;;;;;;;-1:-1:-1;53449:77:0;;;;;:::i;:::-;;:::i;27500:308::-;;;;;;;;;;-1:-1:-1;27500:308:0;;;;;:::i;:::-;;:::i;34345:399::-;;;;;;;;;;-1:-1:-1;34345:399:0;;;;;:::i;:::-;;:::i;53534:164::-;;;;;;;;;;-1:-1:-1;53534:164:0;;;;;:::i;:::-;;:::i;52419:31::-;;;;;;;;;;;;;;;;27965:164;;;;;;;;;;-1:-1:-1;27965:164:0;;;;;:::i;:::-;;:::i;52616:591::-;;;;;;:::i;:::-;;:::i;970:201::-;;;;;;;;;;-1:-1:-1;970:201:0;;;;;:::i;:::-;;:::i;19557:639::-;19642:4;-1:-1:-1;;;;;;;;;19966:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;20043:25:0;;;19966:102;:179;;;-1:-1:-1;;;;;;;;;;20120:25:0;;;19966:179;19946:199;19557:639;-1:-1:-1;;19557:639:0:o;20459:100::-;20513:13;20546:5;20539:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20459:100;:::o;26942:218::-;27018:7;27043:16;27051:7;27043;:16::i;:::-;27038:64;;27068:34;;-1:-1:-1;;;27068:34:0;;;;;;;;;;;27038:64;-1:-1:-1;27122:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;27122:30:0;;26942:218::o;26383:400::-;26464:13;26480:16;26488:7;26480;:16::i;:::-;26464:32;-1:-1:-1;50240:10:0;-1:-1:-1;;;;;26513:28:0;;;26509:175;;26561:44;26578:5;50240:10;27965:164;:::i;26561:44::-;26556:128;;26633:35;;-1:-1:-1;;;26633:35:0;;;;;;;;;;;26556:128;26696:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;26696:35:0;-1:-1:-1;;;;;26696:35:0;;;;;;;;;26747:28;;26696:24;;26747:28;;;;;;;26453:330;26383:400;;:::o;30649:2817::-;30783:27;30813;30832:7;30813:18;:27::i;:::-;30783:57;;30898:4;-1:-1:-1;;;;;30857:45:0;30873:19;-1:-1:-1;;;;;30857:45:0;;30853:86;;30911:28;;-1:-1:-1;;;30911:28:0;;;;;;;;;;;30853:86;30953:27;29763:24;;;:15;:24;;;;;29985:26;;50240:10;29388:30;;;-1:-1:-1;;;;;29081:28:0;;29366:20;;;29363:56;31139:180;;31232:43;31249:4;50240:10;27965:164;:::i;31232:43::-;31227:92;;31284:35;;-1:-1:-1;;;31284:35:0;;;;;;;;;;;31227:92;-1:-1:-1;;;;;31336:16:0;;31332:52;;31361:23;;-1:-1:-1;;;31361:23:0;;;;;;;;;;;31332:52;31533:15;31530:160;;;31673:1;31652:19;31645:30;31530:160;-1:-1:-1;;;;;32070:24:0;;;;;;;:18;:24;;;;;;32068:26;;-1:-1:-1;;32068:26:0;;;32139:22;;;;;;;;;32137:24;;-1:-1:-1;32137:24:0;;;25241:11;25216:23;25212:41;25199:63;-1:-1:-1;;;25199:63:0;32432:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;32727:47:0;;:52;;32723:627;;32832:1;32822:11;;32800:19;32955:30;;;:17;:30;;;;;;:35;;32951:384;;33093:13;;33078:11;:28;33074:242;;33240:30;;;;:17;:30;;;;;:52;;;33074:242;32781:569;32723:627;33397:7;33393:2;-1:-1:-1;;;;;33378:27:0;33387:4;-1:-1:-1;;;;;33378:27:0;;;;;;;;;;;33416:42;30772:2694;;;30649:2817;;;:::o;53706:109::-;581:13;:11;:13::i;:::-;53756:51:::1;::::0;53764:10:::1;::::0;53785:21:::1;53756:51:::0;::::1;;;::::0;::::1;::::0;;;53785:21;53764:10;53756:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53706:109::o:0;33562:185::-;33700:39;33717:4;33723:2;33727:7;33700:39;;;;;;;;;;;;:16;:39::i;:::-;33562:185;;;:::o;53303:138::-;581:13;:11;:13::i;:::-;53381:10:::1;:23:::0;;;;53415:13:::1;:18:::0;53303:138::o;21852:152::-;21924:7;21967:27;21986:7;21967:18;:27::i;17394:233::-;17466:7;-1:-1:-1;;;;;17490:19:0;;17486:60;;17518:28;;-1:-1:-1;;;17518:28:0;;;;;;;;;;;17486:60;-1:-1:-1;;;;;;17564:25:0;;;;;:18;:25;;;;;;11553:13;17564:55;;17394:233::o;857:103::-;581:13;:11;:13::i;:::-;922:30:::1;949:1;922:18;:30::i;:::-;857:103::o:0;20635:104::-;20691:13;20724:7;20717:14;;;;;:::i;53449:77::-;581:13;:11;:13::i;:::-;53511:3:::1;:7;53517:1:::0;53511:3;:7:::1;:::i;:::-;;53449:77:::0;:::o;27500:308::-;50240:10;-1:-1:-1;;;;;27599:31:0;;;27595:61;;27639:17;;-1:-1:-1;;;27639:17:0;;;;;;;;;;;27595:61;50240:10;27669:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;27669:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;27669:60:0;;;;;;;;;;27745:55;;540:41:1;;;27669:49:0;;50240:10;27745:55;;513:18:1;27745:55:0;;;;;;;27500:308;;:::o;34345:399::-;34512:31;34525:4;34531:2;34535:7;34512:12;:31::i;:::-;-1:-1:-1;;;;;34558:14:0;;;:19;34554:183;;34597:56;34628:4;34634:2;34638:7;34647:5;34597:30;:56::i;:::-;34592:145;;34681:40;;-1:-1:-1;;;34681:40:0;;;;;;;;;;;34592:145;34345:399;;;;:::o;53534:164::-;53599:13;53656:3;53661:18;53671:7;53661:9;:18::i;:::-;53639:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53625:65;;53534:164;;;:::o;27965:::-;-1:-1:-1;;;;;28086:25:0;;;28062:4;28086:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27965:164::o;52616:591::-;52711:9;;52701:6;52685:22;;:13;16484:12;;16271:7;16468:13;:28;;16210:323;52685:13;:22;;;;:::i;:::-;:35;;52677:56;;;;-1:-1:-1;;;52677:56:0;;10177:2:1;52677:56:0;;;10159:21:1;10216:1;10196:18;;;10189:29;-1:-1:-1;;;10234:18:1;;;10227:38;10282:18;;52677:56:0;;;;;;;;;52758:9;:14;52783:417;;;;52818:10;52832:9;52818:23;52810:32;;;;;;52875:10;;52865:6;:20;;;;52857:29;;;;;;52935:13;;52925:6;52909:22;;:13;16484:12;;16271:7;16468:13;:28;;16210:323;52909:13;:22;;;;:::i;:::-;:39;;52901:48;;;;;;695:6;;-1:-1:-1;;;;;695:6:0;52972:10;:21;;:59;;;53021:10;;52997:21;53007:10;52997:9;:21::i;:::-;:34;52972:59;52964:68;;;;;;53047:29;53057:10;53069:6;53047:29;;:9;:29::i;52783:417::-;53137:6;53130:13;;:4;;:13;;;;:::i;:::-;53117:9;:26;;53109:35;;;;;970:201;581:13;:11;:13::i;:::-;-1:-1:-1;;;;;1059:22:0;::::1;1051:73;;;::::0;-1:-1:-1;;;1051:73:0;;10686:2:1;1051:73:0::1;::::0;::::1;10668:21:1::0;10725:2;10705:18;;;10698:30;10764:34;10744:18;;;10737:62;-1:-1:-1;;;10815:18:1;;;10808:36;10861:19;;1051:73:0::1;10484:402:1::0;1051:73:0::1;1135:28;1154:8;1135:18;:28::i;28387:282::-:0;28452:4;28542:13;;28532:7;:23;28489:153;;;;-1:-1:-1;;28593:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;28593:44:0;:49;;28387:282::o;23007:1275::-;23074:7;23109;23211:13;;23204:4;:20;23200:1015;;;23249:14;23266:23;;;:17;:23;;;;;;;-1:-1:-1;;;23355:24:0;;:29;;23351:845;;24020:113;24027:6;24037:1;24027:11;24020:113;;-1:-1:-1;;;24098:6:0;24080:25;;;;:17;:25;;;;;;24020:113;;;24166:6;23007:1275;-1:-1:-1;;;23007:1275:0:o;23351:845::-;23226:989;23200:1015;24243:31;;-1:-1:-1;;;24243:31:0;;;;;;;;;;;717:132;695:6;;-1:-1:-1;;;;;695:6:0;50240:10;781:23;773:68;;;;-1:-1:-1;;;773:68:0;;11093:2:1;773:68:0;;;11075:21:1;;;11112:18;;;11105:30;11171:34;11151:18;;;11144:62;11223:18;;773:68:0;10891:356:1;1179:191:0;1272:6;;;-1:-1:-1;;;;;1289:17:0;;;-1:-1:-1;;;;;;1289:17:0;;;;;;;1322:40;;1272:6;;;1289:17;1272:6;;1322:40;;1253:16;;1322:40;1242:128;1179:191;:::o;36828:716::-;37012:88;;-1:-1:-1;;;37012:88:0;;36991:4;;-1:-1:-1;;;;;37012:45:0;;;;;:88;;50240:10;;37079:4;;37085:7;;37094:5;;37012:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37012:88:0;;;;;;;;-1:-1:-1;;37012:88:0;;;;;;;;;;;;:::i;:::-;;;37008:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37295:6;:13;37312:1;37295:18;37291:235;;37341:40;;-1:-1:-1;;;37341:40:0;;;;;;;;;;;37291:235;37484:6;37478:13;37469:6;37465:2;37461:15;37454:38;37008:529;-1:-1:-1;;;;;;37171:64:0;-1:-1:-1;;;37171:64:0;;-1:-1:-1;37008:529:0;36828:716;;;;;;:::o;50360:2002::-;50837:4;50831:11;;50844:3;50827:21;;50922:17;;;;51618:11;;;51497:5;51784:2;51798;51788:13;;51780:22;51618:11;51767:36;51839:2;51829:13;;51389:731;51858:4;51389:731;;;52049:1;52044:3;52040:11;52033:18;;52100:2;52094:4;52090:13;52086:2;52082:22;52077:3;52069:36;51953:2;51943:13;;51389:731;;;-1:-1:-1;52150:13:0;;;-1:-1:-1;;52265:12:0;;;52325:19;;;52265:12;50360:2002;-1:-1:-1;50360:2002:0:o;43985:112::-;44062:27;44072:2;44076:8;44062:27;;;;;;;;;;;;43343:19;43349:2;43353:8;43343:5;:19::i;:::-;-1:-1:-1;;;;;43404:14:0;;;:19;43400:483;;43444:11;43458:13;43506:14;;;43539:233;43570:62;43609:1;43613:2;43617:7;;;;;;43626:5;43570:30;:62::i;:::-;43565:167;;43668:40;;-1:-1:-1;;;43668:40:0;;;;;;;;;;;43565:167;43767:3;43759:5;:11;43539:233;;43854:3;43837:13;;:20;43833:34;;43859:8;;;43833:34;43425:458;;43212:689;;;:::o;38006:2454::-;38079:20;38102:13;;;38130;;;38126:44;;38152:18;;-1:-1:-1;;;38152:18:0;;;;;;;;;;;38126:44;-1:-1:-1;;;;;38658:22:0;;;;;;:18;:22;;;;11691:2;38658:22;;;:71;;38696:32;38684:45;;38658:71;;;38972:31;;;:17;:31;;;;;-1:-1:-1;25672:15:0;;25646:24;25642:46;25241:11;25216:23;25212:41;25209:52;25199:63;;38972:173;;39207:23;;;;38972:31;;38658:22;;39706:25;38658:22;;39559:335;39974:1;39960:12;39956:20;39914:346;40015:3;40006:7;40003:16;39914:346;;40233:7;40223:8;40220:1;40193:25;40190:1;40187;40182:59;40068:1;40055:15;39914:346;;;39918:77;40293:8;40305:1;40293:13;40289:45;;40315:19;;-1:-1:-1;;;40315:19:0;;;;;;;;;;;40289:45;40351:13;:19;-1:-1:-1;33562:185:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:250::-;859:1;869:113;883:6;880:1;877:13;869:113;;;959:11;;;953:18;940:11;;;933:39;905:2;898:10;869:113;;;-1:-1:-1;;1016:1:1;998:16;;991:27;774:250::o;1029:271::-;1071:3;1109:5;1103:12;1136:6;1131:3;1124:19;1152:76;1221:6;1214:4;1209:3;1205:14;1198:4;1191:5;1187:16;1152:76;:::i;:::-;1282:2;1261:15;-1:-1:-1;;1257:29:1;1248:39;;;;1289:4;1244:50;;1029:271;-1:-1:-1;;1029:271:1:o;1305:220::-;1454:2;1443:9;1436:21;1417:4;1474:45;1515:2;1504:9;1500:18;1492:6;1474:45;:::i;1530:180::-;1589:6;1642:2;1630:9;1621:7;1617:23;1613:32;1610:52;;;1658:1;1655;1648:12;1610:52;-1:-1:-1;1681:23:1;;1530:180;-1:-1:-1;1530:180:1:o;1923:173::-;1991:20;;-1:-1:-1;;;;;2040:31:1;;2030:42;;2020:70;;2086:1;2083;2076:12;2020:70;1923:173;;;:::o;2101:254::-;2169:6;2177;2230:2;2218:9;2209:7;2205:23;2201:32;2198:52;;;2246:1;2243;2236:12;2198:52;2269:29;2288:9;2269:29;:::i;:::-;2259:39;2345:2;2330:18;;;;2317:32;;-1:-1:-1;;;2101:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:248::-;2761:6;2769;2822:2;2810:9;2801:7;2797:23;2793:32;2790:52;;;2838:1;2835;2828:12;2790:52;-1:-1:-1;;2861:23:1;;;2931:2;2916:18;;;2903:32;;-1:-1:-1;2693:248:1:o;2946:186::-;3005:6;3058:2;3046:9;3037:7;3033:23;3029:32;3026:52;;;3074:1;3071;3064:12;3026:52;3097:29;3116:9;3097:29;:::i;3137:127::-;3198:10;3193:3;3189:20;3186:1;3179:31;3229:4;3226:1;3219:15;3253:4;3250:1;3243:15;3269:632;3334:5;3364:18;3405:2;3397:6;3394:14;3391:40;;;3411:18;;:::i;:::-;3486:2;3480:9;3454:2;3540:15;;-1:-1:-1;;3536:24:1;;;3562:2;3532:33;3528:42;3516:55;;;3586:18;;;3606:22;;;3583:46;3580:72;;;3632:18;;:::i;:::-;3672:10;3668:2;3661:22;3701:6;3692:15;;3731:6;3723;3716:22;3771:3;3762:6;3757:3;3753:16;3750:25;3747:45;;;3788:1;3785;3778:12;3747:45;3838:6;3833:3;3826:4;3818:6;3814:17;3801:44;3893:1;3886:4;3877:6;3869;3865:19;3861:30;3854:41;;;;3269:632;;;;;:::o;3906:451::-;3975:6;4028:2;4016:9;4007:7;4003:23;3999:32;3996:52;;;4044:1;4041;4034:12;3996:52;4084:9;4071:23;4117:18;4109:6;4106:30;4103:50;;;4149:1;4146;4139:12;4103:50;4172:22;;4225:4;4217:13;;4213:27;-1:-1:-1;4203:55:1;;4254:1;4251;4244:12;4203:55;4277:74;4343:7;4338:2;4325:16;4320:2;4316;4312:11;4277:74;:::i;4362:347::-;4427:6;4435;4488:2;4476:9;4467:7;4463:23;4459:32;4456:52;;;4504:1;4501;4494:12;4456:52;4527:29;4546:9;4527:29;:::i;:::-;4517:39;;4606:2;4595:9;4591:18;4578:32;4653:5;4646:13;4639:21;4632:5;4629:32;4619:60;;4675:1;4672;4665:12;4619:60;4698:5;4688:15;;;4362:347;;;;;:::o;4714:667::-;4809:6;4817;4825;4833;4886:3;4874:9;4865:7;4861:23;4857:33;4854:53;;;4903:1;4900;4893:12;4854:53;4926:29;4945:9;4926:29;:::i;:::-;4916:39;;4974:38;5008:2;4997:9;4993:18;4974:38;:::i;:::-;4964:48;;5059:2;5048:9;5044:18;5031:32;5021:42;;5114:2;5103:9;5099:18;5086:32;5141:18;5133:6;5130:30;5127:50;;;5173:1;5170;5163:12;5127:50;5196:22;;5249:4;5241:13;;5237:27;-1:-1:-1;5227:55:1;;5278:1;5275;5268:12;5227:55;5301:74;5367:7;5362:2;5349:16;5344:2;5340;5336:11;5301:74;:::i;:::-;5291:84;;;4714:667;;;;;;;:::o;5386:260::-;5454:6;5462;5515:2;5503:9;5494:7;5490:23;5486:32;5483:52;;;5531:1;5528;5521:12;5483:52;5554:29;5573:9;5554:29;:::i;:::-;5544:39;;5602:38;5636:2;5625:9;5621:18;5602:38;:::i;:::-;5592:48;;5386:260;;;;;:::o;5651:276::-;5709:6;5762:2;5750:9;5741:7;5737:23;5733:32;5730:52;;;5778:1;5775;5768:12;5730:52;5817:9;5804:23;5867:10;5860:5;5856:22;5849:5;5846:33;5836:61;;5893:1;5890;5883:12;5932:380;6011:1;6007:12;;;;6054;;;6075:61;;6129:4;6121:6;6117:17;6107:27;;6075:61;6182:2;6174:6;6171:14;6151:18;6148:38;6145:161;;6228:10;6223:3;6219:20;6216:1;6209:31;6263:4;6260:1;6253:15;6291:4;6288:1;6281:15;6145:161;;5932:380;;;:::o;6443:545::-;6545:2;6540:3;6537:11;6534:448;;;6581:1;6606:5;6602:2;6595:17;6651:4;6647:2;6637:19;6721:2;6709:10;6705:19;6702:1;6698:27;6692:4;6688:38;6757:4;6745:10;6742:20;6739:47;;;-1:-1:-1;6780:4:1;6739:47;6835:2;6830:3;6826:12;6823:1;6819:20;6813:4;6809:31;6799:41;;6890:82;6908:2;6901:5;6898:13;6890:82;;;6953:17;;;6934:1;6923:13;6890:82;;7164:1352;7290:3;7284:10;7317:18;7309:6;7306:30;7303:56;;;7339:18;;:::i;:::-;7368:97;7458:6;7418:38;7450:4;7444:11;7418:38;:::i;:::-;7412:4;7368:97;:::i;:::-;7520:4;;7584:2;7573:14;;7601:1;7596:663;;;;8303:1;8320:6;8317:89;;;-1:-1:-1;8372:19:1;;;8366:26;8317:89;-1:-1:-1;;7121:1:1;7117:11;;;7113:24;7109:29;7099:40;7145:1;7141:11;;;7096:57;8419:81;;7566:944;;7596:663;6390:1;6383:14;;;6427:4;6414:18;;-1:-1:-1;;7632:20:1;;;7750:236;7764:7;7761:1;7758:14;7750:236;;;7853:19;;;7847:26;7832:42;;7945:27;;;;7913:1;7901:14;;;;7780:19;;7750:236;;;7754:3;8014:6;8005:7;8002:19;7999:201;;;8075:19;;;8069:26;-1:-1:-1;;8158:1:1;8154:14;;;8170:3;8150:24;8146:37;8142:42;8127:58;8112:74;;7999:201;-1:-1:-1;;;;;8246:1:1;8230:14;;;8226:22;8213:36;;-1:-1:-1;7164:1352:1:o;8521:1187::-;8798:3;8827:1;8860:6;8854:13;8890:36;8916:9;8890:36;:::i;:::-;8945:1;8962:18;;;8989:133;;;;9136:1;9131:356;;;;8955:532;;8989:133;-1:-1:-1;;9022:24:1;;9010:37;;9095:14;;9088:22;9076:35;;9067:45;;;-1:-1:-1;8989:133:1;;9131:356;9162:6;9159:1;9152:17;9192:4;9237:2;9234:1;9224:16;9262:1;9276:165;9290:6;9287:1;9284:13;9276:165;;;9368:14;;9355:11;;;9348:35;9411:16;;;;9305:10;;9276:165;;;9280:3;;;9470:6;9465:3;9461:16;9454:23;;8955:532;;;;;9518:6;9512:13;9534:68;9593:8;9588:3;9581:4;9573:6;9569:17;9534:68;:::i;:::-;-1:-1:-1;;;9624:18:1;;9651:22;;;9700:1;9689:13;;8521:1187;-1:-1:-1;;;;8521:1187:1:o;9713:127::-;9774:10;9769:3;9765:20;9762:1;9755:31;9805:4;9802:1;9795:15;9829:4;9826:1;9819:15;9845:125;9910:9;;;9931:10;;;9928:36;;;9944:18;;:::i;10311:168::-;10384:9;;;10415;;10432:15;;;10426:22;;10412:37;10402:71;;10453:18;;:::i;11252:489::-;-1:-1:-1;;;;;11521:15:1;;;11503:34;;11573:15;;11568:2;11553:18;;11546:43;11620:2;11605:18;;11598:34;;;11668:3;11663:2;11648:18;;11641:31;;;11446:4;;11689:46;;11715:19;;11707:6;11689:46;:::i;:::-;11681:54;11252:489;-1:-1:-1;;;;;;11252:489:1:o;11746:249::-;11815:6;11868:2;11856:9;11847:7;11843:23;11839:32;11836:52;;;11884:1;11881;11874:12;11836:52;11916:9;11910:16;11935:30;11959:5;11935:30;:::i

Swarm Source

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