ETH Price: $3,086.98 (+0.82%)
Gas: 5 Gwei

Token

Batch Burn (BaBu)
 

Overview

Max Total Supply

2,500 BaBu

Holders

2,435

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 BaBu
0x0a7b5f3d02d1a9ce10c1ea1195ec31435e9eb056
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:
BatchBurn

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-21
*/

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

pragma solidity ^0.8.17;

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

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

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

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

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

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

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

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

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

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

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

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

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

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

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

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    constructor(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 payable 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 {
        _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].value`.
        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 payable 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 payable 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 payable 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.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert 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 str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

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

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

contract BatchBurn is ERC721A{
    
    address private immutable _owner;
    modifier onlyOwner() { 
        require(_owner==msg.sender);
        _; 
    }

    uint256 public constant MAX_SUPPLY = 2500;
    uint256 public constant MAX_FREE_PER_WALLET = 1;
    uint256 public COST = 0.001 ether;

    string private useContractURI = "QmPUxEAwjogmPNkCZSHoH9H4TpEmk8KgnuYghHoD36C321";
    string private useBaseURI = "QmfM7tBMJdnF5WBFA8BrteEkNvcCMNaA9DLV7pChcj8R6x";

    constructor() ERC721A("Batch Burn", "BaBu") {
        _owner = msg.sender;
    }

    function batchBurn(uint256[] calldata ids) external onlyOwner{
        for(uint256 i=0; i < ids.length; i++){
            _burn(ids[i]);
        }
    }

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

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

        _mint(_caller, amount);
    }

    function freeMint() external{
        address _caller = _msgSenderERC721A();
        uint256 amount = MAX_FREE_PER_WALLET;

        require(totalSupply() + amount <= MAX_SUPPLY, "Freemint Sold Out");
        require(amount + _numberMinted(_caller) <= MAX_FREE_PER_WALLET, "AccLimit");

        _mint(_caller, amount);
    }


    function setData(string memory _contract, string memory _base) external onlyOwner{
        useContractURI = _contract;
        useBaseURI = _base;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        string memory baseURI = useBaseURI;
        return bytes(baseURI).length != 0 ? string(abi.encodePacked("ipfs://", baseURI)) : "";
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"batchBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contract","type":"string"},{"internalType":"string","name":"_base","type":"string"}],"name":"setData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

66038d7ea4c68000600855610100604052602e60a0818152906200198060c0396009906200002e90826200017d565b506040518060600160405280602e815260200162001952602e9139600a906200005890826200017d565b503480156200006657600080fd5b506040518060400160405280600a8152602001692130ba31b410213ab93760b11b815250604051806040016040528060048152602001634261427560e01b8152508160029081620000b891906200017d565b506003620000c782826200017d565b506000805550503360805262000249565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010357607f821691505b6020821081036200012457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200017857600081815260208120601f850160051c81016020861015620001535750805b601f850160051c820191505b8181101562000174578281556001016200015f565b5050505b505050565b81516001600160401b03811115620001995762000199620000d8565b620001b181620001aa8454620000ee565b846200012a565b602080601f831160018114620001e95760008415620001d05750858301515b600019600386901b1c1916600185901b17855562000174565b600085815260208120601f198616915b828110156200021a57888601518255948401946001909101908401620001f9565b5085821015620002395787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6080516116df6200027360003960008181610728015281816108eb0152610ba601526116df6000f3fe6080604052600436106101405760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461032f578063bf8fbbd214610342578063c87b56dd14610358578063dc8e92ea14610378578063e8a3d48514610398578063e985e9c5146103ad57600080fd5b806370a08231146102925780638ca3c553146102b257806395d89b41146102d257806398710d1e146102e7578063a0712d68146102fc578063a22cb4651461030f57600080fd5b806323b872dd1161010857806323b872dd1461020c57806332cb6b0c1461021f5780633ccfd60b1461023557806342842e0e1461024a5780635b70ea9f1461025d5780636352211e1461027257600080fd5b806301ffc9a71461014557806306fdde031461017a578063081812fc1461019c578063095ea7b3146101d457806318160ddd146101e9575b600080fd5b34801561015157600080fd5b5061016561016036600461101c565b6103cd565b60405190151581526020015b60405180910390f35b34801561018657600080fd5b5061018f61041f565b6040516101719190611089565b3480156101a857600080fd5b506101bc6101b736600461109c565b6104b1565b6040516001600160a01b039091168152602001610171565b6101e76101e23660046110d1565b6104f5565b005b3480156101f557600080fd5b50600154600054035b604051908152602001610171565b6101e761021a3660046110fb565b610595565b34801561022b57600080fd5b506101fe6109c481565b34801561024157600080fd5b506101e7610726565b6101e76102583660046110fb565b61078e565b34801561026957600080fd5b506101e76107ae565b34801561027e57600080fd5b506101bc61028d36600461109c565b61088f565b34801561029e57600080fd5b506101fe6102ad366004611137565b61089a565b3480156102be57600080fd5b506101e76102cd3660046111fe565b6108e9565b3480156102de57600080fd5b5061018f610937565b3480156102f357600080fd5b506101fe600181565b6101e761030a36600461109c565b610946565b34801561031b57600080fd5b506101e761032a366004611262565b6109f1565b6101e761033d36600461129e565b610a5d565b34801561034e57600080fd5b506101fe60085481565b34801561036457600080fd5b5061018f61037336600461109c565b610aa7565b34801561038457600080fd5b506101e761039336600461131a565b610ba4565b3480156103a457600080fd5b5061018f610c17565b3480156103b957600080fd5b506101656103c836600461138f565b610c3f565b60006301ffc9a760e01b6001600160e01b0319831614806103fe57506380ac58cd60e01b6001600160e01b03198316145b806104195750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461042e906113c2565b80601f016020809104026020016040519081016040528092919081815260200182805461045a906113c2565b80156104a75780601f1061047c576101008083540402835291602001916104a7565b820191906000526020600020905b81548152906001019060200180831161048a57829003601f168201915b5050505050905090565b60006104bc82610c6d565b6104d9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105008261088f565b9050336001600160a01b038216146105395761051c8133610c3f565b610539576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006105a082610c94565b9050836001600160a01b0316816001600160a01b0316146105d35760405162a1148160e81b815260040160405180910390fd5b600082815260066020526040902080546105ff8187335b6001600160a01b039081169116811491141790565b61062a5761060d8633610c3f565b61062a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661065157604051633a954ecd60e21b815260040160405180910390fd5b801561065c57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036106ee576001840160008181526004602052604081205490036106ec5760005481146106ec5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061168a83398151915260405160405180910390a45b505050505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316331461075b57600080fd5b6040514790339082156108fc029083906000818181858888f1935050505015801561078a573d6000803e3d6000fd5b5050565b6107a983838360405180602001604052806000815250610a5d565b505050565b3360016109c4816107c26001546000540390565b6107cc9190611412565b11156108135760405162461bcd60e51b8152602060048201526011602482015270119c99595b5a5b9d0814dbdb190813dd5d607a1b60448201526064015b60405180910390fd5b6001610842836001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b61084c9083611412565b11156108855760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b604482015260640161080a565b61078a8282610cfb565b600061041982610c94565b60006001600160a01b0382166108c3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316331461091e57600080fd5b600961092a838261146b565b50600a6107a9828261146b565b60606003805461042e906113c2565b336109c4826109586001546000540390565b6109629190611412565b111561099b5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b604482015260640161080a565b34600854836109aa919061152b565b11156109e75760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b604482015260640161080a565b61078a8183610cfb565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a68848484610595565b6001600160a01b0383163b15610aa157610a8484848484610dd5565b610aa1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ab282610c6d565b610acf57604051630a14c4b560e41b815260040160405180910390fd5b6000600a8054610ade906113c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0a906113c2565b8015610b575780601f10610b2c57610100808354040283529160200191610b57565b820191906000526020600020905b815481529060010190602001808311610b3a57829003601f168201915b505050505090508051600003610b7c5760405180602001604052806000815250610b9d565b80604051602001610b8d9190611542565b6040516020818303038152906040525b9392505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610bd957600080fd5b60005b818110156107a957610c05838383818110610bf957610bf9611571565b90506020020135610ec0565b80610c0f81611587565b915050610bdc565b60606009604051602001610c2b91906115a0565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000805482108015610419575050600090815260046020526040902054600160e01b161590565b600081600054811015610ce25760008181526004602052604081205490600160e01b82169003610ce0575b80600003610b9d575060001901600081815260046020526040902054610cbf565b505b604051636f96cda160e11b815260040160405180910390fd5b6000805490829003610d205760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b1783179055828401908390839060008051602061168a8339815191528180a4600183015b818114610dab578083600060008051602061168a833981519152600080a4600101610d85565b5081600003610dcc57604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610e0a90339089908890889060040161162f565b6020604051808303816000875af1925050508015610e45575060408051601f3d908101601f19168201909252610e429181019061166c565b60015b610ea3573d808015610e73576040519150601f19603f3d011682016040523d82523d6000602084013e610e78565b606091505b508051600003610e9b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b610ecb816000610ece565b50565b6000610ed983610c94565b905080600080610ef786600090815260066020526040902080549091565b915091508415610f3757610f0c8184336105ea565b610f3757610f1a8333610c3f565b610f3757604051632ce44b5f60e11b815260040160405180910390fd5b8015610f4257600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003610fd057600186016000818152600460205260408120549003610fce576000548114610fce5760008181526004602052604090208590555b505b60405186906000906001600160a01b0386169060008051602061168a833981519152908390a45050600180548101905550505050565b6001600160e01b031981168114610ecb57600080fd5b60006020828403121561102e57600080fd5b8135610b9d81611006565b60005b8381101561105457818101518382015260200161103c565b50506000910152565b60008151808452611075816020860160208601611039565b601f01601f19169290920160200192915050565b602081526000610b9d602083018461105d565b6000602082840312156110ae57600080fd5b5035919050565b80356001600160a01b03811681146110cc57600080fd5b919050565b600080604083850312156110e457600080fd5b6110ed836110b5565b946020939093013593505050565b60008060006060848603121561111057600080fd5b611119846110b5565b9250611127602085016110b5565b9150604084013590509250925092565b60006020828403121561114957600080fd5b610b9d826110b5565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561118357611183611152565b604051601f8501601f19908116603f011681019082821181831017156111ab576111ab611152565b816040528093508581528686860111156111c457600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126111ef57600080fd5b610b9d83833560208501611168565b6000806040838503121561121157600080fd5b823567ffffffffffffffff8082111561122957600080fd5b611235868387016111de565b9350602085013591508082111561124b57600080fd5b50611258858286016111de565b9150509250929050565b6000806040838503121561127557600080fd5b61127e836110b5565b91506020830135801515811461129357600080fd5b809150509250929050565b600080600080608085870312156112b457600080fd5b6112bd856110b5565b93506112cb602086016110b5565b925060408501359150606085013567ffffffffffffffff8111156112ee57600080fd5b8501601f810187136112ff57600080fd5b61130e87823560208401611168565b91505092959194509250565b6000806020838503121561132d57600080fd5b823567ffffffffffffffff8082111561134557600080fd5b818501915085601f83011261135957600080fd5b81358181111561136857600080fd5b8660208260051b850101111561137d57600080fd5b60209290920196919550909350505050565b600080604083850312156113a257600080fd5b6113ab836110b5565b91506113b9602084016110b5565b90509250929050565b600181811c908216806113d657607f821691505b6020821081036113f657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610419576104196113fc565b601f8211156107a957600081815260208120601f850160051c8101602086101561144c5750805b601f850160051c820191505b8181101561071e57828155600101611458565b815167ffffffffffffffff81111561148557611485611152565b6114998161149384546113c2565b84611425565b602080601f8311600181146114ce57600084156114b65750858301515b600019600386901b1c1916600185901b17855561071e565b600085815260208120601f198616915b828110156114fd578886015182559484019460019091019084016114de565b508582101561151b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082028115828204841417610419576104196113fc565b66697066733a2f2f60c81b815260008251611564816007850160208701611039565b9190910160070192915050565b634e487b7160e01b600052603260045260246000fd5b600060018201611599576115996113fc565b5060010190565b66697066733a2f2f60c81b815260006007600084546115be816113c2565b600182811680156115d657600181146115ef57611622565b60ff198416888701528215158302880186019450611622565b8860005260208060002060005b858110156116175781548b82018a01529084019082016115fc565b505050858389010194505b5092979650505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116629083018461105d565b9695505050505050565b60006020828403121561167e57600080fd5b8151610b9d8161100656feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212204e7221ec185cfc739125a94478687434d2802d60c4aab7de72994e6f6c8e4baa64736f6c63430008110033516d664d3774424d4a646e4635574246413842727465456b4e7663434d4e614139444c5637704368636a38523678516d5055784541776a6f676d504e6b435a53486f483948345470456d6b384b676e75596768486f44333643333231

Deployed Bytecode

0x6080604052600436106101405760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461032f578063bf8fbbd214610342578063c87b56dd14610358578063dc8e92ea14610378578063e8a3d48514610398578063e985e9c5146103ad57600080fd5b806370a08231146102925780638ca3c553146102b257806395d89b41146102d257806398710d1e146102e7578063a0712d68146102fc578063a22cb4651461030f57600080fd5b806323b872dd1161010857806323b872dd1461020c57806332cb6b0c1461021f5780633ccfd60b1461023557806342842e0e1461024a5780635b70ea9f1461025d5780636352211e1461027257600080fd5b806301ffc9a71461014557806306fdde031461017a578063081812fc1461019c578063095ea7b3146101d457806318160ddd146101e9575b600080fd5b34801561015157600080fd5b5061016561016036600461101c565b6103cd565b60405190151581526020015b60405180910390f35b34801561018657600080fd5b5061018f61041f565b6040516101719190611089565b3480156101a857600080fd5b506101bc6101b736600461109c565b6104b1565b6040516001600160a01b039091168152602001610171565b6101e76101e23660046110d1565b6104f5565b005b3480156101f557600080fd5b50600154600054035b604051908152602001610171565b6101e761021a3660046110fb565b610595565b34801561022b57600080fd5b506101fe6109c481565b34801561024157600080fd5b506101e7610726565b6101e76102583660046110fb565b61078e565b34801561026957600080fd5b506101e76107ae565b34801561027e57600080fd5b506101bc61028d36600461109c565b61088f565b34801561029e57600080fd5b506101fe6102ad366004611137565b61089a565b3480156102be57600080fd5b506101e76102cd3660046111fe565b6108e9565b3480156102de57600080fd5b5061018f610937565b3480156102f357600080fd5b506101fe600181565b6101e761030a36600461109c565b610946565b34801561031b57600080fd5b506101e761032a366004611262565b6109f1565b6101e761033d36600461129e565b610a5d565b34801561034e57600080fd5b506101fe60085481565b34801561036457600080fd5b5061018f61037336600461109c565b610aa7565b34801561038457600080fd5b506101e761039336600461131a565b610ba4565b3480156103a457600080fd5b5061018f610c17565b3480156103b957600080fd5b506101656103c836600461138f565b610c3f565b60006301ffc9a760e01b6001600160e01b0319831614806103fe57506380ac58cd60e01b6001600160e01b03198316145b806104195750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461042e906113c2565b80601f016020809104026020016040519081016040528092919081815260200182805461045a906113c2565b80156104a75780601f1061047c576101008083540402835291602001916104a7565b820191906000526020600020905b81548152906001019060200180831161048a57829003601f168201915b5050505050905090565b60006104bc82610c6d565b6104d9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105008261088f565b9050336001600160a01b038216146105395761051c8133610c3f565b610539576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006105a082610c94565b9050836001600160a01b0316816001600160a01b0316146105d35760405162a1148160e81b815260040160405180910390fd5b600082815260066020526040902080546105ff8187335b6001600160a01b039081169116811491141790565b61062a5761060d8633610c3f565b61062a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661065157604051633a954ecd60e21b815260040160405180910390fd5b801561065c57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036106ee576001840160008181526004602052604081205490036106ec5760005481146106ec5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061168a83398151915260405160405180910390a45b505050505050565b7f00000000000000000000000034c5db52de778846a24aa3907df8b744528ed1226001600160a01b0316331461075b57600080fd5b6040514790339082156108fc029083906000818181858888f1935050505015801561078a573d6000803e3d6000fd5b5050565b6107a983838360405180602001604052806000815250610a5d565b505050565b3360016109c4816107c26001546000540390565b6107cc9190611412565b11156108135760405162461bcd60e51b8152602060048201526011602482015270119c99595b5a5b9d0814dbdb190813dd5d607a1b60448201526064015b60405180910390fd5b6001610842836001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b61084c9083611412565b11156108855760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b604482015260640161080a565b61078a8282610cfb565b600061041982610c94565b60006001600160a01b0382166108c3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b7f00000000000000000000000034c5db52de778846a24aa3907df8b744528ed1226001600160a01b0316331461091e57600080fd5b600961092a838261146b565b50600a6107a9828261146b565b60606003805461042e906113c2565b336109c4826109586001546000540390565b6109629190611412565b111561099b5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b604482015260640161080a565b34600854836109aa919061152b565b11156109e75760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b604482015260640161080a565b61078a8183610cfb565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a68848484610595565b6001600160a01b0383163b15610aa157610a8484848484610dd5565b610aa1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ab282610c6d565b610acf57604051630a14c4b560e41b815260040160405180910390fd5b6000600a8054610ade906113c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0a906113c2565b8015610b575780601f10610b2c57610100808354040283529160200191610b57565b820191906000526020600020905b815481529060010190602001808311610b3a57829003601f168201915b505050505090508051600003610b7c5760405180602001604052806000815250610b9d565b80604051602001610b8d9190611542565b6040516020818303038152906040525b9392505050565b7f00000000000000000000000034c5db52de778846a24aa3907df8b744528ed1226001600160a01b03163314610bd957600080fd5b60005b818110156107a957610c05838383818110610bf957610bf9611571565b90506020020135610ec0565b80610c0f81611587565b915050610bdc565b60606009604051602001610c2b91906115a0565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000805482108015610419575050600090815260046020526040902054600160e01b161590565b600081600054811015610ce25760008181526004602052604081205490600160e01b82169003610ce0575b80600003610b9d575060001901600081815260046020526040902054610cbf565b505b604051636f96cda160e11b815260040160405180910390fd5b6000805490829003610d205760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b1783179055828401908390839060008051602061168a8339815191528180a4600183015b818114610dab578083600060008051602061168a833981519152600080a4600101610d85565b5081600003610dcc57604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610e0a90339089908890889060040161162f565b6020604051808303816000875af1925050508015610e45575060408051601f3d908101601f19168201909252610e429181019061166c565b60015b610ea3573d808015610e73576040519150601f19603f3d011682016040523d82523d6000602084013e610e78565b606091505b508051600003610e9b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b610ecb816000610ece565b50565b6000610ed983610c94565b905080600080610ef786600090815260066020526040902080549091565b915091508415610f3757610f0c8184336105ea565b610f3757610f1a8333610c3f565b610f3757604051632ce44b5f60e11b815260040160405180910390fd5b8015610f4257600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003610fd057600186016000818152600460205260408120549003610fce576000548114610fce5760008181526004602052604090208590555b505b60405186906000906001600160a01b0386169060008051602061168a833981519152908390a45050600180548101905550505050565b6001600160e01b031981168114610ecb57600080fd5b60006020828403121561102e57600080fd5b8135610b9d81611006565b60005b8381101561105457818101518382015260200161103c565b50506000910152565b60008151808452611075816020860160208601611039565b601f01601f19169290920160200192915050565b602081526000610b9d602083018461105d565b6000602082840312156110ae57600080fd5b5035919050565b80356001600160a01b03811681146110cc57600080fd5b919050565b600080604083850312156110e457600080fd5b6110ed836110b5565b946020939093013593505050565b60008060006060848603121561111057600080fd5b611119846110b5565b9250611127602085016110b5565b9150604084013590509250925092565b60006020828403121561114957600080fd5b610b9d826110b5565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561118357611183611152565b604051601f8501601f19908116603f011681019082821181831017156111ab576111ab611152565b816040528093508581528686860111156111c457600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126111ef57600080fd5b610b9d83833560208501611168565b6000806040838503121561121157600080fd5b823567ffffffffffffffff8082111561122957600080fd5b611235868387016111de565b9350602085013591508082111561124b57600080fd5b50611258858286016111de565b9150509250929050565b6000806040838503121561127557600080fd5b61127e836110b5565b91506020830135801515811461129357600080fd5b809150509250929050565b600080600080608085870312156112b457600080fd5b6112bd856110b5565b93506112cb602086016110b5565b925060408501359150606085013567ffffffffffffffff8111156112ee57600080fd5b8501601f810187136112ff57600080fd5b61130e87823560208401611168565b91505092959194509250565b6000806020838503121561132d57600080fd5b823567ffffffffffffffff8082111561134557600080fd5b818501915085601f83011261135957600080fd5b81358181111561136857600080fd5b8660208260051b850101111561137d57600080fd5b60209290920196919550909350505050565b600080604083850312156113a257600080fd5b6113ab836110b5565b91506113b9602084016110b5565b90509250929050565b600181811c908216806113d657607f821691505b6020821081036113f657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610419576104196113fc565b601f8211156107a957600081815260208120601f850160051c8101602086101561144c5750805b601f850160051c820191505b8181101561071e57828155600101611458565b815167ffffffffffffffff81111561148557611485611152565b6114998161149384546113c2565b84611425565b602080601f8311600181146114ce57600084156114b65750858301515b600019600386901b1c1916600185901b17855561071e565b600085815260208120601f198616915b828110156114fd578886015182559484019460019091019084016114de565b508582101561151b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082028115828204841417610419576104196113fc565b66697066733a2f2f60c81b815260008251611564816007850160208701611039565b9190910160070192915050565b634e487b7160e01b600052603260045260246000fd5b600060018201611599576115996113fc565b5060010190565b66697066733a2f2f60c81b815260006007600084546115be816113c2565b600182811680156115d657600181146115ef57611622565b60ff198416888701528215158302880186019450611622565b8860005260208060002060005b858110156116175781548b82018a01529084019082016115fc565b505050858389010194505b5092979650505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116629083018461105d565b9695505050505050565b60006020828403121561167e57600080fd5b8151610b9d8161100656feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212204e7221ec185cfc739125a94478687434d2802d60c4aab7de72994e6f6c8e4baa64736f6c63430008110033

Deployed Bytecode Sourcemap

50778:2126:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17747:639;;;;;;;;;;-1:-1:-1;17747:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;17747:639:0;;;;;;;;18649:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25140:218::-;;;;;;;;;;-1:-1:-1;25140:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;25140:218:0;1533:203:1;24573:408:0;;;;;;:::i;:::-;;:::i;:::-;;14400:323;;;;;;;;;;-1:-1:-1;14674:12:0;;14461:7;14658:13;:28;14400:323;;;2324:25:1;;;2312:2;2297:18;14400:323:0;2178:177:1;28779:2825:0;;;;;;:::i;:::-;;:::i;50948:41::-;;;;;;;;;;;;50985:4;50948:41;;52756:145;;;;;;;;;;;;;:::i;31700:193::-;;;;;;:::i;:::-;;:::i;51793:331::-;;;;;;;;;;;;;:::i;20042:152::-;;;;;;;;;;-1:-1:-1;20042:152:0;;;;;:::i;:::-;;:::i;15584:233::-;;;;;;;;;;-1:-1:-1;15584:233:0;;;;;:::i;:::-;;:::i;52134:155::-;;;;;;;;;;-1:-1:-1;52134:155:0;;;;;:::i;:::-;;:::i;18825:104::-;;;;;;;;;;;;;:::i;50996:47::-;;;;;;;;;;;;51042:1;50996:47;;51518:267;;;;;;:::i;:::-;;:::i;25698:234::-;;;;;;;;;;-1:-1:-1;25698:234:0;;;;;:::i;:::-;;:::i;32491:407::-;;;;;;:::i;:::-;;:::i;51050:33::-;;;;;;;;;;;;;;;;52297:307;;;;;;;;;;-1:-1:-1;52297:307:0;;;;;:::i;:::-;;:::i;51354:156::-;;;;;;;;;;-1:-1:-1;51354:156:0;;;;;:::i;:::-;;:::i;52612:136::-;;;;;;;;;;;;;:::i;26089:164::-;;;;;;;;;;-1:-1:-1;26089:164:0;;;;;:::i;:::-;;:::i;17747:639::-;17832:4;-1:-1:-1;;;;;;;;;18156:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18233:25:0;;;18156:102;:179;;;-1:-1:-1;;;;;;;;;;18310:25:0;;;18156:179;18136:199;17747:639;-1:-1:-1;;17747:639:0:o;18649:100::-;18703:13;18736:5;18729:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18649:100;:::o;25140:218::-;25216:7;25241:16;25249:7;25241;:16::i;:::-;25236:64;;25266:34;;-1:-1:-1;;;25266:34:0;;;;;;;;;;;25236:64;-1:-1:-1;25320:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;25320:30:0;;25140:218::o;24573:408::-;24662:13;24678:16;24686:7;24678;:16::i;:::-;24662:32;-1:-1:-1;48906:10:0;-1:-1:-1;;;;;24711:28:0;;;24707:175;;24759:44;24776:5;48906:10;26089:164;:::i;24759:44::-;24754:128;;24831:35;;-1:-1:-1;;;24831:35:0;;;;;;;;;;;24754:128;24894:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;24894:35:0;-1:-1:-1;;;;;24894:35:0;;;;;;;;;24945:28;;24894:24;;24945:28;;;;;;;24651:330;24573:408;;:::o;28779:2825::-;28921:27;28951;28970:7;28951:18;:27::i;:::-;28921:57;;29036:4;-1:-1:-1;;;;;28995:45:0;29011:19;-1:-1:-1;;;;;28995:45:0;;28991:86;;29049:28;;-1:-1:-1;;;29049:28:0;;;;;;;;;;;28991:86;29091:27;27887:24;;;:15;:24;;;;;28115:26;;29282:68;28115:26;29324:4;48906:10;29330:19;-1:-1:-1;;;;;27361:32:0;;;27205:28;;27490:20;;27512:30;;27487:56;;26902:659;29282:68;29277:180;;29370:43;29387:4;48906:10;26089:164;:::i;29370:43::-;29365:92;;29422:35;;-1:-1:-1;;;29422:35:0;;;;;;;;;;;29365:92;-1:-1:-1;;;;;29474:16:0;;29470:52;;29499:23;;-1:-1:-1;;;29499:23:0;;;;;;;;;;;29470:52;29671:15;29668:160;;;29811:1;29790:19;29783:30;29668:160;-1:-1:-1;;;;;30208:24:0;;;;;;;:18;:24;;;;;;30206:26;;-1:-1:-1;;30206:26:0;;;30277:22;;;;;;;;;30275:24;;-1:-1:-1;30275:24:0;;;23431:11;23406:23;23402:41;23389:63;-1:-1:-1;;;23389:63:0;30570:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;30865:47:0;;:52;;30861:627;;30970:1;30960:11;;30938:19;31093:30;;;:17;:30;;;;;;:35;;31089:384;;31231:13;;31216:11;:28;31212:242;;31378:30;;;;:17;:30;;;;;:52;;;31212:242;30919:569;30861:627;31535:7;31531:2;-1:-1:-1;;;;;31516:27:0;31525:4;-1:-1:-1;;;;;31516:27:0;-1:-1:-1;;;;;;;;;;;31516:27:0;;;;;;;;;31554:42;28910:2694;;;28779:2825;;;:::o;52756:145::-;50900:6;-1:-1:-1;;;;;50900:18:0;50908:10;50900:18;50892:27;;;;;;52856:37:::1;::::0;52824:21:::1;::::0;52864:10:::1;::::0;52856:37;::::1;;;::::0;52824:21;;52806:15:::1;52856:37:::0;52806:15;52856:37;52824:21;52864:10;52856:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;52795:106;52756:145::o:0;31700:193::-;31846:39;31863:4;31869:2;31873:7;31846:39;;;;;;;;;;;;:16;:39::i;:::-;31700:193;;;:::o;51793:331::-;48906:10;51042:1;50985:4;51042:1;51937:13;14674:12;;14461:7;14658:13;:28;;14400:323;51937:13;:22;;;;:::i;:::-;:36;;51929:66;;;;-1:-1:-1;;;51929:66:0;;7186:2:1;51929:66:0;;;7168:21:1;7225:2;7205:18;;;7198:30;-1:-1:-1;;;7244:18:1;;;7237:47;7301:18;;51929:66:0;;;;;;;;;51042:1;52023:22;52037:7;-1:-1:-1;;;;;15988:25:0;15960:7;15988:25;;;:18;:25;;9881:2;15988:25;;;;;:50;;9743:13;15987:82;;15899:178;52023:22;52014:31;;:6;:31;:::i;:::-;:54;;52006:75;;;;-1:-1:-1;;;52006:75:0;;7532:2:1;52006:75:0;;;7514:21:1;7571:1;7551:18;;;7544:29;-1:-1:-1;;;7589:18:1;;;7582:38;7637:18;;52006:75:0;7330:331:1;52006:75:0;52094:22;52100:7;52109:6;52094:5;:22::i;20042:152::-;20114:7;20157:27;20176:7;20157:18;:27::i;15584:233::-;15656:7;-1:-1:-1;;;;;15680:19:0;;15676:60;;15708:28;;-1:-1:-1;;;15708:28:0;;;;;;;;;;;15676:60;-1:-1:-1;;;;;;15754:25:0;;;;;:18;:25;;;;;;9743:13;15754:55;;15584:233::o;52134:155::-;50900:6;-1:-1:-1;;;;;50900:18:0;50908:10;50900:18;50892:27;;;;;;52226:14:::1;:26;52243:9:::0;52226:14;:26:::1;:::i;:::-;-1:-1:-1::0;52263:10:0::1;:18;52276:5:::0;52263:10;:18:::1;:::i;18825:104::-:0;18881:13;18914:7;18907:14;;;;;:::i;51518:267::-;48906:10;50985:4;51649:6;51633:13;14674:12;;14461:7;14658:13;:28;;14400:323;51633:13;:22;;;;:::i;:::-;:36;;51625:57;;;;-1:-1:-1;;;51625:57:0;;10072:2:1;51625:57:0;;;10054:21:1;10111:1;10091:18;;;10084:29;-1:-1:-1;;;10129:18:1;;;10122:38;10177:18;;51625:57:0;9870:331:1;51625:57:0;51716:9;51708:4;;51701:6;:11;;;;:::i;:::-;:24;;51693:49;;;;-1:-1:-1;;;51693:49:0;;10581:2:1;51693:49:0;;;10563:21:1;10620:2;10600:18;;;10593:30;-1:-1:-1;;;10639:18:1;;;10632:42;10691:18;;51693:49:0;10379:336:1;51693:49:0;51755:22;51761:7;51770:6;51755:5;:22::i;25698:234::-;48906:10;25793:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;25793:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;25793:60:0;;;;;;;;;;25869:55;;540:41:1;;;25793:49:0;;48906:10;25869:55;;513:18:1;25869:55:0;;;;;;;25698:234;;:::o;32491:407::-;32666:31;32679:4;32685:2;32689:7;32666:12;:31::i;:::-;-1:-1:-1;;;;;32712:14:0;;;:19;32708:183;;32751:56;32782:4;32788:2;32792:7;32801:5;32751:30;:56::i;:::-;32746:145;;32835:40;;-1:-1:-1;;;32835:40:0;;;;;;;;;;;32746:145;32491:407;;;;:::o;52297:307::-;52370:13;52401:16;52409:7;52401;:16::i;:::-;52396:59;;52426:29;;-1:-1:-1;;;52426:29:0;;;;;;;;;;;52396:59;52466:21;52490:10;52466:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52524:7;52518:21;52543:1;52518:26;:78;;;;;;;;;;;;;;;;;52582:7;52554:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;52518:78;52511:85;52297:307;-1:-1:-1;;;52297:307:0:o;51354:156::-;50900:6;-1:-1:-1;;;;;50900:18:0;50908:10;50900:18;50892:27;;;;;;51430:9:::1;51426:77;51443:14:::0;;::::1;51426:77;;;51478:13;51484:3;;51488:1;51484:6;;;;;;;:::i;:::-;;;;;;;51478:5;:13::i;:::-;51459:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51426:77;;52612:136:::0;52656:13;52724:14;52696:43;;;;;;;;:::i;:::-;;;;;;;;;;;;;52682:58;;52612:136;:::o;26089:164::-;-1:-1:-1;;;;;26210:25:0;;;26186:4;26210:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26089:164::o;26511:282::-;26576:4;26666:13;;26656:7;:23;26613:153;;;;-1:-1:-1;;26717:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;26717:44:0;:49;;26511:282::o;21197:1275::-;21264:7;21299;21401:13;;21394:4;:20;21390:1015;;;21439:14;21456:23;;;:17;:23;;;;;;;-1:-1:-1;;;21545:24:0;;:29;;21541:845;;22210:113;22217:6;22227:1;22217:11;22210:113;;-1:-1:-1;;;22288:6:0;22270:25;;;;:17;:25;;;;;;22210:113;;21541:845;21416:989;21390:1015;22433:31;;-1:-1:-1;;;22433:31:0;;;;;;;;;;;36160:2966;36233:20;36256:13;;;36284;;;36280:44;;36306:18;;-1:-1:-1;;;36306:18:0;;;;;;;;;;;36280:44;-1:-1:-1;;;;;36812:22:0;;;;;;:18;:22;;;;9881:2;36812:22;;;:71;;36850:32;36838:45;;36812:71;;;37126:31;;;:17;:31;;;;;-1:-1:-1;23862:15:0;;23836:24;23832:46;23431:11;23406:23;23402:41;23399:52;23389:63;;37126:173;;37361:23;;;;37126:31;;36812:22;;-1:-1:-1;;;;;;;;;;;36812:22:0;;37979:335;38640:1;38626:12;38622:20;38580:346;38681:3;38672:7;38669:16;38580:346;;38899:7;38889:8;38886:1;-1:-1:-1;;;;;;;;;;;38856:1:0;38853;38848:59;38734:1;38721:15;38580:346;;;38584:77;38959:8;38971:1;38959:13;38955:45;;38981:19;;-1:-1:-1;;;38981:19:0;;;;;;;;;;;38955:45;39017:13;:19;-1:-1:-1;31700:193:0;;;:::o;34982:716::-;35166:88;;-1:-1:-1;;;35166:88:0;;35145:4;;-1:-1:-1;;;;;35166:45:0;;;;;:88;;48906:10;;35233:4;;35239:7;;35248:5;;35166:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35166:88:0;;;;;;;;-1:-1:-1;;35166:88:0;;;;;;;;;;;;:::i;:::-;;;35162:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35449:6;:13;35466:1;35449:18;35445:235;;35495:40;;-1:-1:-1;;;35495:40:0;;;;;;;;;;;35445:235;35638:6;35632:13;35623:6;35619:2;35615:15;35608:38;35162:529;-1:-1:-1;;;;;;35325:64:0;-1:-1:-1;;;35325:64:0;;-1:-1:-1;34982:716:0;;;;;;:::o;43030:89::-;43090:21;43096:7;43105:5;43090;:21::i;:::-;43030:89;:::o;43348:3081::-;43428:27;43458;43477:7;43458:18;:27::i;:::-;43428:57;-1:-1:-1;43428:57:0;43498:12;;43620:35;43647:7;27776:27;27887:24;;;:15;:24;;;;;28115:26;;27887:24;;27674:485;43620:35;43563:92;;;;43672:13;43668:316;;;43793:68;43818:15;43835:4;48906:10;43841:19;48819:105;43793:68;43788:184;;43885:43;43902:4;48906:10;26089:164;:::i;43885:43::-;43880:92;;43937:35;;-1:-1:-1;;;43937:35:0;;;;;;;;;;;43880:92;44140:15;44137:160;;;44280:1;44259:19;44252:30;44137:160;-1:-1:-1;;;;;44899:24:0;;;;;;:18;:24;;;;;:60;;44927:32;44899:60;;;23431:11;23406:23;23402:41;23389:63;-1:-1:-1;;;23389:63:0;45197:26;;;;:17;:26;;;;;:205;;;;-1:-1:-1;;;45522:47:0;;:52;;45518:627;;45627:1;45617:11;;45595:19;45750:30;;;:17;:30;;;;;;:35;;45746:384;;45888:13;;45873:11;:28;45869:242;;46035:30;;;;:17;:30;;;;;:52;;;45869:242;45576:569;45518:627;46173:35;;46200:7;;46196:1;;-1:-1:-1;;;;;46173:35:0;;;-1:-1:-1;;;;;;;;;;;46173:35:0;46196:1;;46173:35;-1:-1:-1;;46396:12:0;:14;;;;;;-1:-1:-1;;;;43348:3081: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;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919: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:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;2884:127::-;2945:10;2940:3;2936:20;2933:1;2926:31;2976:4;2973:1;2966:15;3000:4;2997:1;2990:15;3016:632;3081:5;3111:18;3152:2;3144:6;3141:14;3138:40;;;3158:18;;:::i;:::-;3233:2;3227:9;3201:2;3287:15;;-1:-1:-1;;3283:24:1;;;3309:2;3279:33;3275:42;3263:55;;;3333:18;;;3353:22;;;3330:46;3327:72;;;3379:18;;:::i;:::-;3419:10;3415:2;3408:22;3448:6;3439:15;;3478:6;3470;3463:22;3518:3;3509:6;3504:3;3500:16;3497:25;3494:45;;;3535:1;3532;3525:12;3494:45;3585:6;3580:3;3573:4;3565:6;3561:17;3548:44;3640:1;3633:4;3624:6;3616;3612:19;3608:30;3601:41;;;;3016:632;;;;;:::o;3653:222::-;3696:5;3749:3;3742:4;3734:6;3730:17;3726:27;3716:55;;3767:1;3764;3757:12;3716:55;3789:80;3865:3;3856:6;3843:20;3836:4;3828:6;3824:17;3789:80;:::i;3880:543::-;3968:6;3976;4029:2;4017:9;4008:7;4004:23;4000:32;3997:52;;;4045:1;4042;4035:12;3997:52;4085:9;4072:23;4114:18;4155:2;4147:6;4144:14;4141:34;;;4171:1;4168;4161:12;4141:34;4194:50;4236:7;4227:6;4216:9;4212:22;4194:50;:::i;:::-;4184:60;;4297:2;4286:9;4282:18;4269:32;4253:48;;4326:2;4316:8;4313:16;4310:36;;;4342:1;4339;4332:12;4310:36;;4365:52;4409:7;4398:8;4387:9;4383:24;4365:52;:::i;:::-;4355:62;;;3880:543;;;;;:::o;4428:347::-;4493:6;4501;4554:2;4542:9;4533:7;4529:23;4525:32;4522:52;;;4570:1;4567;4560:12;4522:52;4593:29;4612:9;4593:29;:::i;:::-;4583:39;;4672:2;4661:9;4657:18;4644:32;4719:5;4712:13;4705:21;4698:5;4695:32;4685:60;;4741:1;4738;4731:12;4685:60;4764:5;4754:15;;;4428:347;;;;;:::o;4780:667::-;4875:6;4883;4891;4899;4952:3;4940:9;4931:7;4927:23;4923:33;4920:53;;;4969:1;4966;4959:12;4920:53;4992:29;5011:9;4992:29;:::i;:::-;4982:39;;5040:38;5074:2;5063:9;5059:18;5040:38;:::i;:::-;5030:48;;5125:2;5114:9;5110:18;5097:32;5087:42;;5180:2;5169:9;5165:18;5152:32;5207:18;5199:6;5196:30;5193:50;;;5239:1;5236;5229:12;5193:50;5262:22;;5315:4;5307:13;;5303:27;-1:-1:-1;5293:55:1;;5344:1;5341;5334:12;5293:55;5367:74;5433:7;5428:2;5415:16;5410:2;5406;5402:11;5367:74;:::i;:::-;5357:84;;;4780:667;;;;;;;:::o;5452:615::-;5538:6;5546;5599:2;5587:9;5578:7;5574:23;5570:32;5567:52;;;5615:1;5612;5605:12;5567:52;5655:9;5642:23;5684:18;5725:2;5717:6;5714:14;5711:34;;;5741:1;5738;5731:12;5711:34;5779:6;5768:9;5764:22;5754:32;;5824:7;5817:4;5813:2;5809:13;5805:27;5795:55;;5846:1;5843;5836:12;5795:55;5886:2;5873:16;5912:2;5904:6;5901:14;5898:34;;;5928:1;5925;5918:12;5898:34;5981:7;5976:2;5966:6;5963:1;5959:14;5955:2;5951:23;5947:32;5944:45;5941:65;;;6002:1;5999;5992:12;5941:65;6033:2;6025:11;;;;;6055:6;;-1:-1:-1;5452:615:1;;-1:-1:-1;;;;5452:615:1:o;6072:260::-;6140:6;6148;6201:2;6189:9;6180:7;6176:23;6172:32;6169:52;;;6217:1;6214;6207:12;6169:52;6240:29;6259:9;6240:29;:::i;:::-;6230:39;;6288:38;6322:2;6311:9;6307:18;6288:38;:::i;:::-;6278:48;;6072:260;;;;;:::o;6337:380::-;6416:1;6412:12;;;;6459;;;6480:61;;6534:4;6526:6;6522:17;6512:27;;6480:61;6587:2;6579:6;6576:14;6556:18;6553:38;6550:161;;6633:10;6628:3;6624:20;6621:1;6614:31;6668:4;6665:1;6658:15;6696:4;6693:1;6686:15;6550:161;;6337:380;;;:::o;6722:127::-;6783:10;6778:3;6774:20;6771:1;6764:31;6814:4;6811:1;6804:15;6838:4;6835:1;6828:15;6854:125;6919:9;;;6940:10;;;6937:36;;;6953:18;;:::i;7792:545::-;7894:2;7889:3;7886:11;7883:448;;;7930:1;7955:5;7951:2;7944:17;8000:4;7996:2;7986:19;8070:2;8058:10;8054:19;8051:1;8047:27;8041:4;8037:38;8106:4;8094:10;8091:20;8088:47;;;-1:-1:-1;8129:4:1;8088:47;8184:2;8179:3;8175:12;8172:1;8168:20;8162:4;8158:31;8148:41;;8239:82;8257:2;8250:5;8247:13;8239:82;;;8302:17;;;8283:1;8272:13;8239:82;;8513:1352;8639:3;8633:10;8666:18;8658:6;8655:30;8652:56;;;8688:18;;:::i;:::-;8717:97;8807:6;8767:38;8799:4;8793:11;8767:38;:::i;:::-;8761:4;8717:97;:::i;:::-;8869:4;;8933:2;8922:14;;8950:1;8945:663;;;;9652:1;9669:6;9666:89;;;-1:-1:-1;9721:19:1;;;9715:26;9666:89;-1:-1:-1;;8470:1:1;8466:11;;;8462:24;8458:29;8448:40;8494:1;8490:11;;;8445:57;9768:81;;8915:944;;8945:663;7739:1;7732:14;;;7776:4;7763:18;;-1:-1:-1;;8981:20:1;;;9099:236;9113:7;9110:1;9107:14;9099:236;;;9202:19;;;9196:26;9181:42;;9294:27;;;;9262:1;9250:14;;;;9129:19;;9099:236;;;9103:3;9363:6;9354:7;9351:19;9348:201;;;9424:19;;;9418:26;-1:-1:-1;;9507:1:1;9503:14;;;9519:3;9499:24;9495:37;9491:42;9476:58;9461:74;;9348:201;-1:-1:-1;;;;;9595:1:1;9579:14;;;9575:22;9562:36;;-1:-1:-1;8513:1352:1:o;10206:168::-;10279:9;;;10310;;10327:15;;;10321:22;;10307:37;10297:71;;10348:18;;:::i;10720:437::-;-1:-1:-1;;;10977:3:1;10970:22;10952:3;11021:6;11015:13;11037:74;11104:6;11100:1;11095:3;11091:11;11084:4;11076:6;11072:17;11037:74;:::i;:::-;11131:16;;;;11149:1;11127:24;;10720:437;-1:-1:-1;;10720:437:1:o;11162:127::-;11223:10;11218:3;11214:20;11211:1;11204:31;11254:4;11251:1;11244:15;11278:4;11275:1;11268:15;11294:135;11333:3;11354:17;;;11351:43;;11374:18;;:::i;:::-;-1:-1:-1;11421:1:1;11410:13;;11294:135::o;11434:1030::-;-1:-1:-1;;;11688:3:1;11681:22;11663:3;11722:1;11743;11776:6;11770:13;11806:36;11832:9;11806:36;:::i;:::-;11861:1;11878:18;;;11905:151;;;;12070:1;12065:374;;;;11871:568;;11905:151;-1:-1:-1;;11947:24:1;;11933:12;;;11926:46;12024:14;;12017:22;12005:35;;11996:45;;11992:54;;;-1:-1:-1;11905:151:1;;12065:374;12096:6;12093:1;12086:17;12126:4;12171:2;12168:1;12158:16;12196:1;12210:174;12224:6;12221:1;12218:13;12210:174;;;12311:14;;12293:11;;;12289:20;;12282:44;12354:16;;;;12239:10;;12210:174;;;12214:3;;;12426:2;12417:6;12412:3;12408:16;12404:25;12397:32;;11871:568;-1:-1:-1;12455:3:1;;11434:1030;-1:-1:-1;;;;;;;11434:1030:1:o;12469:489::-;-1:-1:-1;;;;;12738:15:1;;;12720:34;;12790:15;;12785:2;12770:18;;12763:43;12837:2;12822:18;;12815:34;;;12885:3;12880:2;12865:18;;12858:31;;;12663:4;;12906:46;;12932:19;;12924:6;12906:46;:::i;:::-;12898:54;12469:489;-1:-1:-1;;;;;;12469:489:1:o;12963:249::-;13032:6;13085:2;13073:9;13064:7;13060:23;13056:32;13053:52;;;13101:1;13098;13091:12;13053:52;13133:9;13127:16;13152:30;13176:5;13152:30;:::i

Swarm Source

ipfs://4e7221ec185cfc739125a94478687434d2802d60c4aab7de72994e6f6c8e4baa
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.