ETH Price: $2,360.11 (+0.84%)

Token

Yokai Labs v1 (YOKAI)
 

Overview

Max Total Supply

136 YOKAI

Holders

62

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 YOKAI
0x3f0751f57a79b9cd5864f1fbcc33546461c7d105
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:
YOKAI

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 5: YOKAI.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.10 <0.9.0;

import './ERC721A.sol';
import './Ownable.sol';


    // 0.033eth  and ERC721A contract (low GAS Fee)
    // 4444 Supply and 3 NFT per wallte & per tx

contract YOKAI is ERC721A, Ownable {
    constructor() ERC721A("Yokai Labs v1", "YOKAI") {
        WLmint(1);
    }

    string _baseTokenURI;
    mapping(address => uint256) _minted;
    uint public constant RESERVED = 44;
    uint public Lab_Minted = 0;

    function WLmint(uint256 quantity) public payable {
        require(totalSupply() + quantity <= 4444 - RESERVED -Lab_Minted, "All YOKAI NFT minted");
        require(quantity <= 3, "Cant mint more than 3 YOKAI NFT in one tx");
        require(_minted[msg.sender] < 3, "Cant mint more than 3 YOKAI NFT per wallet");
        _minted[msg.sender] += quantity;
        _mint(msg.sender, quantity);
    }

    function mintReserved(address toaddress, uint256 quantity) external onlyOwner 
    {
        require(Lab_Minted + quantity <= RESERVED, "Cant mint more than _RESERVED");
        Lab_Minted = Lab_Minted + quantity;
        _mint(toaddress, quantity);

    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

 
}

File 1 of 5: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 2 of 5: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

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

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].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 virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

File 3 of 5: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 5: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Lab_Minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"WLmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address","name":"toaddress","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b553480156200001657600080fd5b506040518060400160405280600d81526020017f596f6b6169204c616273207631000000000000000000000000000000000000008152506040518060400160405280600581526020017f594f4b4149000000000000000000000000000000000000000000000000000000815250816002908162000094919062000888565b508060039081620000a6919062000888565b50620000b7620000f760201b60201c565b6000819055505050620000df620000d36200010060201b60201c565b6200010860201b60201c565b620000f16001620001ce60201b60201c565b62000be9565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600b54602c61115c620001e291906200099e565b620001ee91906200099e565b81620001ff6200038860201b60201c565b6200020b9190620009d9565b11156200024f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002469062000a97565b60405180910390fd5b600381111562000296576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028d9062000b2f565b60405180910390fd5b6003600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106200031b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003129062000bc7565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200036c9190620009d9565b92505081905550620003853382620003a760201b60201c565b50565b60006200039a620000f760201b60201c565b6001546000540303905090565b60008054905060008203620003e8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003fd60008483856200058e60201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200048c836200046e60008660006200059460201b60201c565b6200047f85620005c460201b60201c565b17620005d460201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200052f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050620004f2565b50600082036200056b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620005896000848385620005ff60201b60201c565b505050565b50505050565b60008060e883901c905060e8620005b38686846200060560201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200069057607f821691505b602082108103620006a657620006a562000648565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007107fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006d1565b6200071c8683620006d1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000769620007636200075d8462000734565b6200073e565b62000734565b9050919050565b6000819050919050565b620007858362000748565b6200079d620007948262000770565b848454620006de565b825550505050565b600090565b620007b4620007a5565b620007c18184846200077a565b505050565b5b81811015620007e957620007dd600082620007aa565b600181019050620007c7565b5050565b601f82111562000838576200080281620006ac565b6200080d84620006c1565b810160208510156200081d578190505b620008356200082c85620006c1565b830182620007c6565b50505b505050565b600082821c905092915050565b60006200085d600019846008026200083d565b1980831691505092915050565b60006200087883836200084a565b9150826002028217905092915050565b62000893826200060e565b67ffffffffffffffff811115620008af57620008ae62000619565b5b620008bb825462000677565b620008c8828285620007ed565b600060209050601f831160018114620009005760008415620008eb578287015190505b620008f785826200086a565b86555062000967565b601f1984166200091086620006ac565b60005b828110156200093a5784890151825560018201915060208501945060208101905062000913565b868310156200095a578489015162000956601f8916826200084a565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620009ab8262000734565b9150620009b88362000734565b925082821015620009ce57620009cd6200096f565b5b828203905092915050565b6000620009e68262000734565b9150620009f38362000734565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a2b5762000a2a6200096f565b5b828201905092915050565b600082825260208201905092915050565b7f416c6c20594f4b4149204e4654206d696e746564000000000000000000000000600082015250565b600062000a7f60148362000a36565b915062000a8c8262000a47565b602082019050919050565b6000602082019050818103600083015262000ab28162000a70565b9050919050565b7f43616e74206d696e74206d6f7265207468616e203320594f4b4149204e46542060008201527f696e206f6e652074780000000000000000000000000000000000000000000000602082015250565b600062000b1760298362000a36565b915062000b248262000ab9565b604082019050919050565b6000602082019050818103600083015262000b4a8162000b08565b9050919050565b7f43616e74206d696e74206d6f7265207468616e203320594f4b4149204e46542060008201527f7065722077616c6c657400000000000000000000000000000000000000000000602082015250565b600062000baf602a8362000a36565b915062000bbc8262000b51565b604082019050919050565b6000602082019050818103600083015262000be28162000ba0565b9050919050565b6128de8062000bf96000396000f3fe6080604052600436106101355760003560e01c806370a08231116100ab578063a22cb4651161006f578063a22cb46514610405578063aa592f251461042e578063b88d4fde14610459578063c87b56dd14610482578063e985e9c5146104bf578063f2fde38b146104fc57610135565b806370a0823114610332578063715018a61461036f5780637de55fe1146103865780638da5cb5b146103af57806395d89b41146103da57610135565b806323b872dd116100fd57806323b872dd146102335780632fac474e1461025c5780633c773c251461028757806342842e0e146102a357806355f804b3146102cc5780636352211e146102f557610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df57806318160ddd14610208575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c9190611a93565b610525565b60405161016e9190611adb565b60405180910390f35b34801561018357600080fd5b5061018c6105b7565b6040516101999190611b8f565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190611be7565b610649565b6040516101d69190611c55565b60405180910390f35b3480156101eb57600080fd5b5061020660048036038101906102019190611c9c565b6106c8565b005b34801561021457600080fd5b5061021d61080c565b60405161022a9190611ceb565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190611d06565b610823565b005b34801561026857600080fd5b50610271610b45565b60405161027e9190611ceb565b60405180910390f35b6102a1600480360381019061029c9190611be7565b610b4b565b005b3480156102af57600080fd5b506102ca60048036038101906102c59190611d06565b610ce4565b005b3480156102d857600080fd5b506102f360048036038101906102ee9190611e8e565b610d04565b005b34801561030157600080fd5b5061031c60048036038101906103179190611be7565b610d1f565b6040516103299190611c55565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190611ed7565b610d31565b6040516103669190611ceb565b60405180910390f35b34801561037b57600080fd5b50610384610de9565b005b34801561039257600080fd5b506103ad60048036038101906103a89190611c9c565b610dfd565b005b3480156103bb57600080fd5b506103c4610e78565b6040516103d19190611c55565b60405180910390f35b3480156103e657600080fd5b506103ef610ea2565b6040516103fc9190611b8f565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190611f30565b610f34565b005b34801561043a57600080fd5b506104436110ab565b6040516104509190611ceb565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612011565b6110b0565b005b34801561048e57600080fd5b506104a960048036038101906104a49190611be7565b611123565b6040516104b69190611b8f565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190612094565b6111c1565b6040516104f39190611adb565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190611ed7565b611255565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105b05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105c690612103565b80601f01602080910402602001604051908101604052809291908181526020018280546105f290612103565b801561063f5780601f106106145761010080835404028352916020019161063f565b820191906000526020600020905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b6000610654826112d8565b61068a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d382610d1f565b90508073ffffffffffffffffffffffffffffffffffffffff166106f4611337565b73ffffffffffffffffffffffffffffffffffffffff1614610757576107208161071b611337565b6111c1565b610756576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061081661133f565b6001546000540303905090565b600061082e82611348565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610895576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108a184611414565b915091506108b781876108b2611337565b61143b565b610903576108cc866108c7611337565b6111c1565b610902576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610969576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610976868686600161147f565b801561098157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a4f85610a2b888887611485565b7c0200000000000000000000000000000000000000000000000000000000176114ad565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ad55760006001850190506000600460008381526020019081526020016000205403610ad3576000548114610ad2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b3d86868660016114d8565b505050505050565b600b5481565b600b54602c61115c610b5d9190612163565b610b679190612163565b81610b7061080c565b610b7a9190612197565b1115610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290612239565b60405180910390fd5b6003811115610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf6906122cb565b60405180910390fd5b6003600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c789061235d565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cd09190612197565b92505081905550610ce133826114de565b50565b610cff838383604051806020016040528060008152506110b0565b505050565b610d0c611699565b8060099081610d1b9190612529565b5050565b6000610d2a82611348565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d98576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610df1611699565b610dfb6000611717565b565b610e05611699565b602c81600b54610e159190612197565b1115610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90612647565b60405180910390fd5b80600b54610e649190612197565b600b81905550610e7482826114de565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610eb190612103565b80601f0160208091040260200160405190810160405280929190818152602001828054610edd90612103565b8015610f2a5780601f10610eff57610100808354040283529160200191610f2a565b820191906000526020600020905b815481529060010190602001808311610f0d57829003601f168201915b5050505050905090565b610f3c611337565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610fad611337565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661105a611337565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161109f9190611adb565b60405180910390a35050565b602c81565b6110bb848484610823565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461111d576110e6848484846117dd565b61111c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061112e826112d8565b611164576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061116e61192d565b9050600081510361118e57604051806020016040528060008152506111b9565b80611198846119bf565b6040516020016111a99291906126a3565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61125d611699565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390612739565b60405180910390fd5b6112d581611717565b50565b6000816112e361133f565b111580156112f2575060005482105b8015611330575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061135761133f565b116113dd576000548110156113dc5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036113da575b600081036113d05760046000836001900393508381526020019081526020016000205490506113a6565b809250505061140f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861149c868684611a06565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000805490506000820361151e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61152b600084838561147f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506115a2836115936000866000611485565b61159c85611a0f565b176114ad565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461164357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611608565b506000820361167e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061169460008483856114d8565b505050565b6116a1611a1f565b73ffffffffffffffffffffffffffffffffffffffff166116bf610e78565b73ffffffffffffffffffffffffffffffffffffffff1614611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c906127a5565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611803611337565b8786866040518563ffffffff1660e01b8152600401611825949392919061281a565b6020604051808303816000875af192505050801561186157506040513d601f19601f8201168201806040525081019061185e919061287b565b60015b6118da573d8060008114611891576040519150601f19603f3d011682016040523d82523d6000602084013e611896565b606091505b5060008151036118d2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461193c90612103565b80601f016020809104026020016040519081016040528092919081815260200182805461196890612103565b80156119b55780601f1061198a576101008083540402835291602001916119b5565b820191906000526020600020905b81548152906001019060200180831161199857829003601f168201915b5050505050905090565b606060806040510190508060405280825b6001156119f257600183039250600a81066030018353600a81049050806119d0575b508181036020830392508083525050919050565b60009392505050565b60006001821460e11b9050919050565b600033905090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611a7081611a3b565b8114611a7b57600080fd5b50565b600081359050611a8d81611a67565b92915050565b600060208284031215611aa957611aa8611a31565b5b6000611ab784828501611a7e565b91505092915050565b60008115159050919050565b611ad581611ac0565b82525050565b6000602082019050611af06000830184611acc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b30578082015181840152602081019050611b15565b83811115611b3f576000848401525b50505050565b6000601f19601f8301169050919050565b6000611b6182611af6565b611b6b8185611b01565b9350611b7b818560208601611b12565b611b8481611b45565b840191505092915050565b60006020820190508181036000830152611ba98184611b56565b905092915050565b6000819050919050565b611bc481611bb1565b8114611bcf57600080fd5b50565b600081359050611be181611bbb565b92915050565b600060208284031215611bfd57611bfc611a31565b5b6000611c0b84828501611bd2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c3f82611c14565b9050919050565b611c4f81611c34565b82525050565b6000602082019050611c6a6000830184611c46565b92915050565b611c7981611c34565b8114611c8457600080fd5b50565b600081359050611c9681611c70565b92915050565b60008060408385031215611cb357611cb2611a31565b5b6000611cc185828601611c87565b9250506020611cd285828601611bd2565b9150509250929050565b611ce581611bb1565b82525050565b6000602082019050611d006000830184611cdc565b92915050565b600080600060608486031215611d1f57611d1e611a31565b5b6000611d2d86828701611c87565b9350506020611d3e86828701611c87565b9250506040611d4f86828701611bd2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d9b82611b45565b810181811067ffffffffffffffff82111715611dba57611db9611d63565b5b80604052505050565b6000611dcd611a27565b9050611dd98282611d92565b919050565b600067ffffffffffffffff821115611df957611df8611d63565b5b611e0282611b45565b9050602081019050919050565b82818337600083830152505050565b6000611e31611e2c84611dde565b611dc3565b905082815260208101848484011115611e4d57611e4c611d5e565b5b611e58848285611e0f565b509392505050565b600082601f830112611e7557611e74611d59565b5b8135611e85848260208601611e1e565b91505092915050565b600060208284031215611ea457611ea3611a31565b5b600082013567ffffffffffffffff811115611ec257611ec1611a36565b5b611ece84828501611e60565b91505092915050565b600060208284031215611eed57611eec611a31565b5b6000611efb84828501611c87565b91505092915050565b611f0d81611ac0565b8114611f1857600080fd5b50565b600081359050611f2a81611f04565b92915050565b60008060408385031215611f4757611f46611a31565b5b6000611f5585828601611c87565b9250506020611f6685828601611f1b565b9150509250929050565b600067ffffffffffffffff821115611f8b57611f8a611d63565b5b611f9482611b45565b9050602081019050919050565b6000611fb4611faf84611f70565b611dc3565b905082815260208101848484011115611fd057611fcf611d5e565b5b611fdb848285611e0f565b509392505050565b600082601f830112611ff857611ff7611d59565b5b8135612008848260208601611fa1565b91505092915050565b6000806000806080858703121561202b5761202a611a31565b5b600061203987828801611c87565b945050602061204a87828801611c87565b935050604061205b87828801611bd2565b925050606085013567ffffffffffffffff81111561207c5761207b611a36565b5b61208887828801611fe3565b91505092959194509250565b600080604083850312156120ab576120aa611a31565b5b60006120b985828601611c87565b92505060206120ca85828601611c87565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061211b57607f821691505b60208210810361212e5761212d6120d4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061216e82611bb1565b915061217983611bb1565b92508282101561218c5761218b612134565b5b828203905092915050565b60006121a282611bb1565b91506121ad83611bb1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156121e2576121e1612134565b5b828201905092915050565b7f416c6c20594f4b4149204e4654206d696e746564000000000000000000000000600082015250565b6000612223601483611b01565b915061222e826121ed565b602082019050919050565b6000602082019050818103600083015261225281612216565b9050919050565b7f43616e74206d696e74206d6f7265207468616e203320594f4b4149204e46542060008201527f696e206f6e652074780000000000000000000000000000000000000000000000602082015250565b60006122b5602983611b01565b91506122c082612259565b604082019050919050565b600060208201905081810360008301526122e4816122a8565b9050919050565b7f43616e74206d696e74206d6f7265207468616e203320594f4b4149204e46542060008201527f7065722077616c6c657400000000000000000000000000000000000000000000602082015250565b6000612347602a83611b01565b9150612352826122eb565b604082019050919050565b600060208201905081810360008301526123768161233a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026123df7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826123a2565b6123e986836123a2565b95508019841693508086168417925050509392505050565b6000819050919050565b600061242661242161241c84611bb1565b612401565b611bb1565b9050919050565b6000819050919050565b6124408361240b565b61245461244c8261242d565b8484546123af565b825550505050565b600090565b61246961245c565b612474818484612437565b505050565b5b818110156124985761248d600082612461565b60018101905061247a565b5050565b601f8211156124dd576124ae8161237d565b6124b784612392565b810160208510156124c6578190505b6124da6124d285612392565b830182612479565b50505b505050565b600082821c905092915050565b6000612500600019846008026124e2565b1980831691505092915050565b600061251983836124ef565b9150826002028217905092915050565b61253282611af6565b67ffffffffffffffff81111561254b5761254a611d63565b5b6125558254612103565b61256082828561249c565b600060209050601f8311600181146125935760008415612581578287015190505b61258b858261250d565b8655506125f3565b601f1984166125a18661237d565b60005b828110156125c9578489015182556001820191506020850194506020810190506125a4565b868310156125e657848901516125e2601f8916826124ef565b8355505b6001600288020188555050505b505050505050565b7f43616e74206d696e74206d6f7265207468616e205f5245534552564544000000600082015250565b6000612631601d83611b01565b915061263c826125fb565b602082019050919050565b6000602082019050818103600083015261266081612624565b9050919050565b600081905092915050565b600061267d82611af6565b6126878185612667565b9350612697818560208601611b12565b80840191505092915050565b60006126af8285612672565b91506126bb8284612672565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612723602683611b01565b915061272e826126c7565b604082019050919050565b6000602082019050818103600083015261275281612716565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061278f602083611b01565b915061279a82612759565b602082019050919050565b600060208201905081810360008301526127be81612782565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006127ec826127c5565b6127f681856127d0565b9350612806818560208601611b12565b61280f81611b45565b840191505092915050565b600060808201905061282f6000830187611c46565b61283c6020830186611c46565b6128496040830185611cdc565b818103606083015261285b81846127e1565b905095945050505050565b60008151905061287581611a67565b92915050565b60006020828403121561289157612890611a31565b5b600061289f84828501612866565b9150509291505056fea2646970667358221220157b30b0b689375640c3771277166d8e18044dce27504e05a82532b0406ad00f64736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106101355760003560e01c806370a08231116100ab578063a22cb4651161006f578063a22cb46514610405578063aa592f251461042e578063b88d4fde14610459578063c87b56dd14610482578063e985e9c5146104bf578063f2fde38b146104fc57610135565b806370a0823114610332578063715018a61461036f5780637de55fe1146103865780638da5cb5b146103af57806395d89b41146103da57610135565b806323b872dd116100fd57806323b872dd146102335780632fac474e1461025c5780633c773c251461028757806342842e0e146102a357806355f804b3146102cc5780636352211e146102f557610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df57806318160ddd14610208575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c9190611a93565b610525565b60405161016e9190611adb565b60405180910390f35b34801561018357600080fd5b5061018c6105b7565b6040516101999190611b8f565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190611be7565b610649565b6040516101d69190611c55565b60405180910390f35b3480156101eb57600080fd5b5061020660048036038101906102019190611c9c565b6106c8565b005b34801561021457600080fd5b5061021d61080c565b60405161022a9190611ceb565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190611d06565b610823565b005b34801561026857600080fd5b50610271610b45565b60405161027e9190611ceb565b60405180910390f35b6102a1600480360381019061029c9190611be7565b610b4b565b005b3480156102af57600080fd5b506102ca60048036038101906102c59190611d06565b610ce4565b005b3480156102d857600080fd5b506102f360048036038101906102ee9190611e8e565b610d04565b005b34801561030157600080fd5b5061031c60048036038101906103179190611be7565b610d1f565b6040516103299190611c55565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190611ed7565b610d31565b6040516103669190611ceb565b60405180910390f35b34801561037b57600080fd5b50610384610de9565b005b34801561039257600080fd5b506103ad60048036038101906103a89190611c9c565b610dfd565b005b3480156103bb57600080fd5b506103c4610e78565b6040516103d19190611c55565b60405180910390f35b3480156103e657600080fd5b506103ef610ea2565b6040516103fc9190611b8f565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190611f30565b610f34565b005b34801561043a57600080fd5b506104436110ab565b6040516104509190611ceb565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612011565b6110b0565b005b34801561048e57600080fd5b506104a960048036038101906104a49190611be7565b611123565b6040516104b69190611b8f565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190612094565b6111c1565b6040516104f39190611adb565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190611ed7565b611255565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105b05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105c690612103565b80601f01602080910402602001604051908101604052809291908181526020018280546105f290612103565b801561063f5780601f106106145761010080835404028352916020019161063f565b820191906000526020600020905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b6000610654826112d8565b61068a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d382610d1f565b90508073ffffffffffffffffffffffffffffffffffffffff166106f4611337565b73ffffffffffffffffffffffffffffffffffffffff1614610757576107208161071b611337565b6111c1565b610756576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061081661133f565b6001546000540303905090565b600061082e82611348565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610895576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108a184611414565b915091506108b781876108b2611337565b61143b565b610903576108cc866108c7611337565b6111c1565b610902576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610969576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610976868686600161147f565b801561098157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a4f85610a2b888887611485565b7c0200000000000000000000000000000000000000000000000000000000176114ad565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ad55760006001850190506000600460008381526020019081526020016000205403610ad3576000548114610ad2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b3d86868660016114d8565b505050505050565b600b5481565b600b54602c61115c610b5d9190612163565b610b679190612163565b81610b7061080c565b610b7a9190612197565b1115610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290612239565b60405180910390fd5b6003811115610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf6906122cb565b60405180910390fd5b6003600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c789061235d565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cd09190612197565b92505081905550610ce133826114de565b50565b610cff838383604051806020016040528060008152506110b0565b505050565b610d0c611699565b8060099081610d1b9190612529565b5050565b6000610d2a82611348565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d98576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610df1611699565b610dfb6000611717565b565b610e05611699565b602c81600b54610e159190612197565b1115610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90612647565b60405180910390fd5b80600b54610e649190612197565b600b81905550610e7482826114de565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610eb190612103565b80601f0160208091040260200160405190810160405280929190818152602001828054610edd90612103565b8015610f2a5780601f10610eff57610100808354040283529160200191610f2a565b820191906000526020600020905b815481529060010190602001808311610f0d57829003601f168201915b5050505050905090565b610f3c611337565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610fad611337565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661105a611337565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161109f9190611adb565b60405180910390a35050565b602c81565b6110bb848484610823565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461111d576110e6848484846117dd565b61111c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061112e826112d8565b611164576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061116e61192d565b9050600081510361118e57604051806020016040528060008152506111b9565b80611198846119bf565b6040516020016111a99291906126a3565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61125d611699565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390612739565b60405180910390fd5b6112d581611717565b50565b6000816112e361133f565b111580156112f2575060005482105b8015611330575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061135761133f565b116113dd576000548110156113dc5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036113da575b600081036113d05760046000836001900393508381526020019081526020016000205490506113a6565b809250505061140f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861149c868684611a06565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000805490506000820361151e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61152b600084838561147f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506115a2836115936000866000611485565b61159c85611a0f565b176114ad565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461164357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611608565b506000820361167e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061169460008483856114d8565b505050565b6116a1611a1f565b73ffffffffffffffffffffffffffffffffffffffff166116bf610e78565b73ffffffffffffffffffffffffffffffffffffffff1614611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c906127a5565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611803611337565b8786866040518563ffffffff1660e01b8152600401611825949392919061281a565b6020604051808303816000875af192505050801561186157506040513d601f19601f8201168201806040525081019061185e919061287b565b60015b6118da573d8060008114611891576040519150601f19603f3d011682016040523d82523d6000602084013e611896565b606091505b5060008151036118d2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461193c90612103565b80601f016020809104026020016040519081016040528092919081815260200182805461196890612103565b80156119b55780601f1061198a576101008083540402835291602001916119b5565b820191906000526020600020905b81548152906001019060200180831161199857829003601f168201915b5050505050905090565b606060806040510190508060405280825b6001156119f257600183039250600a81066030018353600a81049050806119d0575b508181036020830392508083525050919050565b60009392505050565b60006001821460e11b9050919050565b600033905090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611a7081611a3b565b8114611a7b57600080fd5b50565b600081359050611a8d81611a67565b92915050565b600060208284031215611aa957611aa8611a31565b5b6000611ab784828501611a7e565b91505092915050565b60008115159050919050565b611ad581611ac0565b82525050565b6000602082019050611af06000830184611acc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b30578082015181840152602081019050611b15565b83811115611b3f576000848401525b50505050565b6000601f19601f8301169050919050565b6000611b6182611af6565b611b6b8185611b01565b9350611b7b818560208601611b12565b611b8481611b45565b840191505092915050565b60006020820190508181036000830152611ba98184611b56565b905092915050565b6000819050919050565b611bc481611bb1565b8114611bcf57600080fd5b50565b600081359050611be181611bbb565b92915050565b600060208284031215611bfd57611bfc611a31565b5b6000611c0b84828501611bd2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c3f82611c14565b9050919050565b611c4f81611c34565b82525050565b6000602082019050611c6a6000830184611c46565b92915050565b611c7981611c34565b8114611c8457600080fd5b50565b600081359050611c9681611c70565b92915050565b60008060408385031215611cb357611cb2611a31565b5b6000611cc185828601611c87565b9250506020611cd285828601611bd2565b9150509250929050565b611ce581611bb1565b82525050565b6000602082019050611d006000830184611cdc565b92915050565b600080600060608486031215611d1f57611d1e611a31565b5b6000611d2d86828701611c87565b9350506020611d3e86828701611c87565b9250506040611d4f86828701611bd2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d9b82611b45565b810181811067ffffffffffffffff82111715611dba57611db9611d63565b5b80604052505050565b6000611dcd611a27565b9050611dd98282611d92565b919050565b600067ffffffffffffffff821115611df957611df8611d63565b5b611e0282611b45565b9050602081019050919050565b82818337600083830152505050565b6000611e31611e2c84611dde565b611dc3565b905082815260208101848484011115611e4d57611e4c611d5e565b5b611e58848285611e0f565b509392505050565b600082601f830112611e7557611e74611d59565b5b8135611e85848260208601611e1e565b91505092915050565b600060208284031215611ea457611ea3611a31565b5b600082013567ffffffffffffffff811115611ec257611ec1611a36565b5b611ece84828501611e60565b91505092915050565b600060208284031215611eed57611eec611a31565b5b6000611efb84828501611c87565b91505092915050565b611f0d81611ac0565b8114611f1857600080fd5b50565b600081359050611f2a81611f04565b92915050565b60008060408385031215611f4757611f46611a31565b5b6000611f5585828601611c87565b9250506020611f6685828601611f1b565b9150509250929050565b600067ffffffffffffffff821115611f8b57611f8a611d63565b5b611f9482611b45565b9050602081019050919050565b6000611fb4611faf84611f70565b611dc3565b905082815260208101848484011115611fd057611fcf611d5e565b5b611fdb848285611e0f565b509392505050565b600082601f830112611ff857611ff7611d59565b5b8135612008848260208601611fa1565b91505092915050565b6000806000806080858703121561202b5761202a611a31565b5b600061203987828801611c87565b945050602061204a87828801611c87565b935050604061205b87828801611bd2565b925050606085013567ffffffffffffffff81111561207c5761207b611a36565b5b61208887828801611fe3565b91505092959194509250565b600080604083850312156120ab576120aa611a31565b5b60006120b985828601611c87565b92505060206120ca85828601611c87565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061211b57607f821691505b60208210810361212e5761212d6120d4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061216e82611bb1565b915061217983611bb1565b92508282101561218c5761218b612134565b5b828203905092915050565b60006121a282611bb1565b91506121ad83611bb1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156121e2576121e1612134565b5b828201905092915050565b7f416c6c20594f4b4149204e4654206d696e746564000000000000000000000000600082015250565b6000612223601483611b01565b915061222e826121ed565b602082019050919050565b6000602082019050818103600083015261225281612216565b9050919050565b7f43616e74206d696e74206d6f7265207468616e203320594f4b4149204e46542060008201527f696e206f6e652074780000000000000000000000000000000000000000000000602082015250565b60006122b5602983611b01565b91506122c082612259565b604082019050919050565b600060208201905081810360008301526122e4816122a8565b9050919050565b7f43616e74206d696e74206d6f7265207468616e203320594f4b4149204e46542060008201527f7065722077616c6c657400000000000000000000000000000000000000000000602082015250565b6000612347602a83611b01565b9150612352826122eb565b604082019050919050565b600060208201905081810360008301526123768161233a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026123df7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826123a2565b6123e986836123a2565b95508019841693508086168417925050509392505050565b6000819050919050565b600061242661242161241c84611bb1565b612401565b611bb1565b9050919050565b6000819050919050565b6124408361240b565b61245461244c8261242d565b8484546123af565b825550505050565b600090565b61246961245c565b612474818484612437565b505050565b5b818110156124985761248d600082612461565b60018101905061247a565b5050565b601f8211156124dd576124ae8161237d565b6124b784612392565b810160208510156124c6578190505b6124da6124d285612392565b830182612479565b50505b505050565b600082821c905092915050565b6000612500600019846008026124e2565b1980831691505092915050565b600061251983836124ef565b9150826002028217905092915050565b61253282611af6565b67ffffffffffffffff81111561254b5761254a611d63565b5b6125558254612103565b61256082828561249c565b600060209050601f8311600181146125935760008415612581578287015190505b61258b858261250d565b8655506125f3565b601f1984166125a18661237d565b60005b828110156125c9578489015182556001820191506020850194506020810190506125a4565b868310156125e657848901516125e2601f8916826124ef565b8355505b6001600288020188555050505b505050505050565b7f43616e74206d696e74206d6f7265207468616e205f5245534552564544000000600082015250565b6000612631601d83611b01565b915061263c826125fb565b602082019050919050565b6000602082019050818103600083015261266081612624565b9050919050565b600081905092915050565b600061267d82611af6565b6126878185612667565b9350612697818560208601611b12565b80840191505092915050565b60006126af8285612672565b91506126bb8284612672565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612723602683611b01565b915061272e826126c7565b604082019050919050565b6000602082019050818103600083015261275281612716565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061278f602083611b01565b915061279a82612759565b602082019050919050565b600060208201905081810360008301526127be81612782565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006127ec826127c5565b6127f681856127d0565b9350612806818560208601611b12565b61280f81611b45565b840191505092915050565b600060808201905061282f6000830187611c46565b61283c6020830186611c46565b6128496040830185611cdc565b818103606083015261285b81846127e1565b905095945050505050565b60008151905061287581611a67565b92915050565b60006020828403121561289157612890611a31565b5b600061289f84828501612866565b9150509291505056fea2646970667358221220157b30b0b689375640c3771277166d8e18044dce27504e05a82532b0406ad00f64736f6c634300080f0033

Deployed Bytecode Sourcemap

228:1184:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9367:639:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10269:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16752:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16193:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6020:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20465:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;464:26:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;499:403;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23378:185:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1302:102:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11662:152:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7204:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1884:103:3;;;;;;;;;;;;;:::i;:::-;;910:262:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1236:87:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10445:104:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17310:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;423:34:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24161:399:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10655:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17775:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2142:201:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9367:639:1;9452:4;9791:10;9776:25;;:11;:25;;;;:102;;;;9868:10;9853:25;;:11;:25;;;;9776:102;:179;;;;9945:10;9930:25;;:11;:25;;;;9776:179;9756:199;;9367:639;;;:::o;10269:100::-;10323:13;10356:5;10349:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10269:100;:::o;16752:218::-;16828:7;16853:16;16861:7;16853;:16::i;:::-;16848:64;;16878:34;;;;;;;;;;;;;;16848:64;16932:15;:24;16948:7;16932:24;;;;;;;;;;;:30;;;;;;;;;;;;16925:37;;16752:218;;;:::o;16193:400::-;16274:13;16290:16;16298:7;16290;:16::i;:::-;16274:32;;16346:5;16323:28;;:19;:17;:19::i;:::-;:28;;;16319:175;;16371:44;16388:5;16395:19;:17;:19::i;:::-;16371:16;:44::i;:::-;16366:128;;16443:35;;;;;;;;;;;;;;16366:128;16319:175;16539:2;16506:15;:24;16522:7;16506:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16577:7;16573:2;16557:28;;16566:5;16557:28;;;;;;;;;;;;16263:330;16193:400;;:::o;6020:323::-;6081:7;6309:15;:13;:15::i;:::-;6294:12;;6278:13;;:28;:46;6271:53;;6020:323;:::o;20465:2817::-;20599:27;20629;20648:7;20629:18;:27::i;:::-;20599:57;;20714:4;20673:45;;20689:19;20673:45;;;20669:86;;20727:28;;;;;;;;;;;;;;20669:86;20769:27;20798:23;20825:35;20852:7;20825:26;:35::i;:::-;20768:92;;;;20960:68;20985:15;21002:4;21008:19;:17;:19::i;:::-;20960:24;:68::i;:::-;20955:180;;21048:43;21065:4;21071:19;:17;:19::i;:::-;21048:16;:43::i;:::-;21043:92;;21100:35;;;;;;;;;;;;;;21043:92;20955:180;21166:1;21152:16;;:2;:16;;;21148:52;;21177:23;;;;;;;;;;;;;;21148:52;21213:43;21235:4;21241:2;21245:7;21254:1;21213:21;:43::i;:::-;21349:15;21346:160;;;21489:1;21468:19;21461:30;21346:160;21886:18;:24;21905:4;21886:24;;;;;;;;;;;;;;;;21884:26;;;;;;;;;;;;21955:18;:22;21974:2;21955:22;;;;;;;;;;;;;;;;21953:24;;;;;;;;;;;22277:146;22314:2;22363:45;22378:4;22384:2;22388:19;22363:14;:45::i;:::-;2419:8;22335:73;22277:18;:146::i;:::-;22248:17;:26;22266:7;22248:26;;;;;;;;;;;:175;;;;22594:1;2419:8;22543:19;:47;:52;22539:627;;22616:19;22648:1;22638:7;:11;22616:33;;22805:1;22771:17;:30;22789:11;22771:30;;;;;;;;;;;;:35;22767:384;;22909:13;;22894:11;:28;22890:242;;23089:19;23056:17;:30;23074:11;23056:30;;;;;;;;;;;:52;;;;22890:242;22767:384;22597:569;22539:627;23213:7;23209:2;23194:27;;23203:4;23194:27;;;;;;;;;;;;23232:42;23253:4;23259:2;23263:7;23272:1;23232:20;:42::i;:::-;20588:2694;;;20465:2817;;;:::o;464:26:4:-;;;;:::o;499:403::-;612:10;;455:2;595:4;:15;;;;:::i;:::-;:27;;;;:::i;:::-;583:8;567:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:55;;559:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;678:1;666:8;:13;;658:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;766:1;744:7;:19;752:10;744:19;;;;;;;;;;;;;;;;:23;736:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;848:8;825:7;:19;833:10;825:19;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;867:27;873:10;885:8;867:5;:27::i;:::-;499:403;:::o;23378:185:1:-;23516:39;23533:4;23539:2;23543:7;23516:39;;;;;;;;;;;;:16;:39::i;:::-;23378:185;;;:::o;1302:102:4:-;1122:13:3;:11;:13::i;:::-;1389:7:4::1;1373:13;:23;;;;;;:::i;:::-;;1302:102:::0;:::o;11662:152:1:-;11734:7;11777:27;11796:7;11777:18;:27::i;:::-;11754:52;;11662:152;;;:::o;7204:233::-;7276:7;7317:1;7300:19;;:5;:19;;;7296:60;;7328:28;;;;;;;;;;;;;;7296:60;1363:13;7374:18;:25;7393:5;7374:25;;;;;;;;;;;;;;;;:55;7367:62;;7204:233;;;:::o;1884:103:3:-;1122:13;:11;:13::i;:::-;1949:30:::1;1976:1;1949:18;:30::i;:::-;1884:103::o:0;910:262:4:-;1122:13:3;:11;:13::i;:::-;455:2:4::1;1026:8;1013:10;;:21;;;;:::i;:::-;:33;;1005:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1117:8;1104:10;;:21;;;;:::i;:::-;1091:10;:34;;;;1136:26;1142:9;1153:8;1136:5;:26::i;:::-;910:262:::0;;:::o;1236:87:3:-;1282:7;1309:6;;;;;;;;;;;1302:13;;1236:87;:::o;10445:104:1:-;10501:13;10534:7;10527:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10445:104;:::o;17310:308::-;17421:19;:17;:19::i;:::-;17409:31;;:8;:31;;;17405:61;;17449:17;;;;;;;;;;;;;;17405:61;17531:8;17479:18;:39;17498:19;:17;:19::i;:::-;17479:39;;;;;;;;;;;;;;;:49;17519:8;17479:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17591:8;17555:55;;17570:19;:17;:19::i;:::-;17555:55;;;17601:8;17555:55;;;;;;:::i;:::-;;;;;;;;17310:308;;:::o;423:34:4:-;455:2;423:34;:::o;24161:399:1:-;24328:31;24341:4;24347:2;24351:7;24328:12;:31::i;:::-;24392:1;24374:2;:14;;;:19;24370:183;;24413:56;24444:4;24450:2;24454:7;24463:5;24413:30;:56::i;:::-;24408:145;;24497:40;;;;;;;;;;;;;;24408:145;24370:183;24161:399;;;;:::o;10655:318::-;10728:13;10759:16;10767:7;10759;:16::i;:::-;10754:59;;10784:29;;;;;;;;;;;;;;10754:59;10826:21;10850:10;:8;:10::i;:::-;10826:34;;10903:1;10884:7;10878:21;:26;:87;;;;;;;;;;;;;;;;;10931:7;10940:18;10950:7;10940:9;:18::i;:::-;10914:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10878:87;10871:94;;;10655:318;;;:::o;17775:164::-;17872:4;17896:18;:25;17915:5;17896:25;;;;;;;;;;;;;;;:35;17922:8;17896:35;;;;;;;;;;;;;;;;;;;;;;;;;17889:42;;17775:164;;;;:::o;2142:201:3:-;1122:13;:11;:13::i;:::-;2251:1:::1;2231:22;;:8;:22;;::::0;2223:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2307:28;2326:8;2307:18;:28::i;:::-;2142:201:::0;:::o;18197:282:1:-;18262:4;18318:7;18299:15;:13;:15::i;:::-;:26;;:66;;;;;18352:13;;18342:7;:23;18299:66;:153;;;;;18451:1;2139:8;18403:17;:26;18421:7;18403:26;;;;;;;;;;;;:44;:49;18299:153;18279:173;;18197:282;;;:::o;39969:105::-;40029:7;40056:10;40049:17;;39969:105;:::o;5536:92::-;5592:7;5619:1;5612:8;;5536:92;:::o;12817:1275::-;12884:7;12904:12;12919:7;12904:22;;12987:4;12968:15;:13;:15::i;:::-;:23;12964:1061;;13021:13;;13014:4;:20;13010:1015;;;13059:14;13076:17;:23;13094:4;13076:23;;;;;;;;;;;;13059:40;;13193:1;2139:8;13165:6;:24;:29;13161:845;;13830:113;13847:1;13837:6;:11;13830:113;;13890:17;:25;13908:6;;;;;;;13890:25;;;;;;;;;;;;13881:34;;13830:113;;;13976:6;13969:13;;;;;;13161:845;13036:989;13010:1015;12964:1061;14053:31;;;;;;;;;;;;;;12817:1275;;;;:::o;19360:485::-;19462:27;19491:23;19532:38;19573:15;:24;19589:7;19573:24;;;;;;;;;;;19532:65;;19750:18;19727:41;;19807:19;19801:26;19782:45;;19712:126;19360:485;;;:::o;18588:659::-;18737:11;18902:16;18895:5;18891:28;18882:37;;19062:16;19051:9;19047:32;19034:45;;19212:15;19201:9;19198:30;19190:5;19179:9;19176:20;19173:56;19163:66;;18588:659;;;;;:::o;25222:159::-;;;;;:::o;39278:311::-;39413:7;39433:16;2543:3;39459:19;:41;;39433:68;;2543:3;39527:31;39538:4;39544:2;39548:9;39527:10;:31::i;:::-;39519:40;;:62;;39512:69;;;39278:311;;;;;:::o;14640:450::-;14720:14;14888:16;14881:5;14877:28;14868:37;;15065:5;15051:11;15026:23;15022:41;15019:52;15012:5;15009:63;14999:73;;14640:450;;;;:::o;26046:158::-;;;;;:::o;27822:2454::-;27895:20;27918:13;;27895:36;;27958:1;27946:8;:13;27942:44;;27968:18;;;;;;;;;;;;;;27942:44;27999:61;28029:1;28033:2;28037:12;28051:8;27999:21;:61::i;:::-;28543:1;1501:2;28513:1;:26;;28512:32;28500:8;:45;28474:18;:22;28493:2;28474:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28822:139;28859:2;28913:33;28936:1;28940:2;28944:1;28913:14;:33::i;:::-;28880:30;28901:8;28880:20;:30::i;:::-;:66;28822:18;:139::i;:::-;28788:17;:31;28806:12;28788:31;;;;;;;;;;;:173;;;;28978:16;29009:11;29038:8;29023:12;:23;29009:37;;29293:16;29289:2;29285:25;29273:37;;29665:12;29625:8;29584:1;29522:25;29463:1;29402;29375:335;29790:1;29776:12;29772:20;29730:346;29831:3;29822:7;29819:16;29730:346;;30049:7;30039:8;30036:1;30009:25;30006:1;30003;29998:59;29884:1;29875:7;29871:15;29860:26;;29730:346;;;29734:77;30121:1;30109:8;:13;30105:45;;30131:19;;;;;;;;;;;;;;30105:45;30183:3;30167:13;:19;;;;28248:1950;;30208:60;30237:1;30241:2;30245:12;30259:8;30208:20;:60::i;:::-;27884:2392;27822:2454;;:::o;1401:132:3:-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1401:132::o;2503:191::-;2577:16;2596:6;;;;;;;;;;;2577:25;;2622:8;2613:6;;:17;;;;;;;;;;;;;;;;;;2677:8;2646:40;;2667:8;2646:40;;;;;;;;;;;;2566:128;2503:191;:::o;26644:716:1:-;26807:4;26853:2;26828:45;;;26874:19;:17;:19::i;:::-;26895:4;26901:7;26910:5;26828:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26824:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27128:1;27111:6;:13;:18;27107:235;;27157:40;;;;;;;;;;;;;;27107:235;27300:6;27294:13;27285:6;27281:2;27277:15;27270:38;26824:529;26997:54;;;26987:64;;;:6;:64;;;;26980:71;;;26644:716;;;;;;:::o;1180:114:4:-;1240:13;1273;1266:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1180:114;:::o;40176:1581:1:-;40241:17;40666:4;40659;40653:11;40649:22;40642:29;;40758:3;40752:4;40745:17;40864:3;41103:5;41085:428;41111:1;41085:428;;;41151:1;41146:3;41142:11;41135:18;;41322:2;41316:4;41312:13;41308:2;41304:22;41299:3;41291:36;41416:2;41410:4;41406:13;41398:21;;41483:4;41085:428;41473:25;41085:428;41089:21;41552:3;41547;41543:13;41667:4;41662:3;41658:14;41651:21;;41732:6;41727:3;41720:19;40280:1470;;40176:1581;;;:::o;38979:147::-;39116:6;38979:147;;;;;:::o;15192:324::-;15262:14;15495:1;15485:8;15482:15;15456:24;15452:46;15442:56;;15192:324;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;7:75:5:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:180::-;12681:77;12678:1;12671:88;12778:4;12775:1;12768:15;12802:4;12799:1;12792:15;12819:191;12859:4;12879:20;12897:1;12879:20;:::i;:::-;12874:25;;12913:20;12931:1;12913:20;:::i;:::-;12908:25;;12952:1;12949;12946:8;12943:34;;;12957:18;;:::i;:::-;12943:34;13002:1;12999;12995:9;12987:17;;12819:191;;;;:::o;13016:305::-;13056:3;13075:20;13093:1;13075:20;:::i;:::-;13070:25;;13109:20;13127:1;13109:20;:::i;:::-;13104:25;;13263:1;13195:66;13191:74;13188:1;13185:81;13182:107;;;13269:18;;:::i;:::-;13182:107;13313:1;13310;13306:9;13299:16;;13016:305;;;;:::o;13327:170::-;13467:22;13463:1;13455:6;13451:14;13444:46;13327:170;:::o;13503:366::-;13645:3;13666:67;13730:2;13725:3;13666:67;:::i;:::-;13659:74;;13742:93;13831:3;13742:93;:::i;:::-;13860:2;13855:3;13851:12;13844:19;;13503:366;;;:::o;13875:419::-;14041:4;14079:2;14068:9;14064:18;14056:26;;14128:9;14122:4;14118:20;14114:1;14103:9;14099:17;14092:47;14156:131;14282:4;14156:131;:::i;:::-;14148:139;;13875:419;;;:::o;14300:228::-;14440:34;14436:1;14428:6;14424:14;14417:58;14509:11;14504:2;14496:6;14492:15;14485:36;14300:228;:::o;14534:366::-;14676:3;14697:67;14761:2;14756:3;14697:67;:::i;:::-;14690:74;;14773:93;14862:3;14773:93;:::i;:::-;14891:2;14886:3;14882:12;14875:19;;14534:366;;;:::o;14906:419::-;15072:4;15110:2;15099:9;15095:18;15087:26;;15159:9;15153:4;15149:20;15145:1;15134:9;15130:17;15123:47;15187:131;15313:4;15187:131;:::i;:::-;15179:139;;14906:419;;;:::o;15331:229::-;15471:34;15467:1;15459:6;15455:14;15448:58;15540:12;15535:2;15527:6;15523:15;15516:37;15331:229;:::o;15566:366::-;15708:3;15729:67;15793:2;15788:3;15729:67;:::i;:::-;15722:74;;15805:93;15894:3;15805:93;:::i;:::-;15923:2;15918:3;15914:12;15907:19;;15566:366;;;:::o;15938:419::-;16104:4;16142:2;16131:9;16127:18;16119:26;;16191:9;16185:4;16181:20;16177:1;16166:9;16162:17;16155:47;16219:131;16345:4;16219:131;:::i;:::-;16211:139;;15938:419;;;:::o;16363:141::-;16412:4;16435:3;16427:11;;16458:3;16455:1;16448:14;16492:4;16489:1;16479:18;16471:26;;16363:141;;;:::o;16510:93::-;16547:6;16594:2;16589;16582:5;16578:14;16574:23;16564:33;;16510:93;;;:::o;16609:107::-;16653:8;16703:5;16697:4;16693:16;16672:37;;16609:107;;;;:::o;16722:393::-;16791:6;16841:1;16829:10;16825:18;16864:97;16894:66;16883:9;16864:97;:::i;:::-;16982:39;17012:8;17001:9;16982:39;:::i;:::-;16970:51;;17054:4;17050:9;17043:5;17039:21;17030:30;;17103:4;17093:8;17089:19;17082:5;17079:30;17069:40;;16798:317;;16722:393;;;;;:::o;17121:60::-;17149:3;17170:5;17163:12;;17121:60;;;:::o;17187:142::-;17237:9;17270:53;17288:34;17297:24;17315:5;17297:24;:::i;:::-;17288:34;:::i;:::-;17270:53;:::i;:::-;17257:66;;17187:142;;;:::o;17335:75::-;17378:3;17399:5;17392:12;;17335:75;;;:::o;17416:269::-;17526:39;17557:7;17526:39;:::i;:::-;17587:91;17636:41;17660:16;17636:41;:::i;:::-;17628:6;17621:4;17615:11;17587:91;:::i;:::-;17581:4;17574:105;17492:193;17416:269;;;:::o;17691:73::-;17736:3;17691:73;:::o;17770:189::-;17847:32;;:::i;:::-;17888:65;17946:6;17938;17932:4;17888:65;:::i;:::-;17823:136;17770:189;;:::o;17965:186::-;18025:120;18042:3;18035:5;18032:14;18025:120;;;18096:39;18133:1;18126:5;18096:39;:::i;:::-;18069:1;18062:5;18058:13;18049:22;;18025:120;;;17965:186;;:::o;18157:543::-;18258:2;18253:3;18250:11;18247:446;;;18292:38;18324:5;18292:38;:::i;:::-;18376:29;18394:10;18376:29;:::i;:::-;18366:8;18362:44;18559:2;18547:10;18544:18;18541:49;;;18580:8;18565:23;;18541:49;18603:80;18659:22;18677:3;18659:22;:::i;:::-;18649:8;18645:37;18632:11;18603:80;:::i;:::-;18262:431;;18247:446;18157:543;;;:::o;18706:117::-;18760:8;18810:5;18804:4;18800:16;18779:37;;18706:117;;;;:::o;18829:169::-;18873:6;18906:51;18954:1;18950:6;18942:5;18939:1;18935:13;18906:51;:::i;:::-;18902:56;18987:4;18981;18977:15;18967:25;;18880:118;18829:169;;;;:::o;19003:295::-;19079:4;19225:29;19250:3;19244:4;19225:29;:::i;:::-;19217:37;;19287:3;19284:1;19280:11;19274:4;19271:21;19263:29;;19003:295;;;;:::o;19303:1395::-;19420:37;19453:3;19420:37;:::i;:::-;19522:18;19514:6;19511:30;19508:56;;;19544:18;;:::i;:::-;19508:56;19588:38;19620:4;19614:11;19588:38;:::i;:::-;19673:67;19733:6;19725;19719:4;19673:67;:::i;:::-;19767:1;19791:4;19778:17;;19823:2;19815:6;19812:14;19840:1;19835:618;;;;20497:1;20514:6;20511:77;;;20563:9;20558:3;20554:19;20548:26;20539:35;;20511:77;20614:67;20674:6;20667:5;20614:67;:::i;:::-;20608:4;20601:81;20470:222;19805:887;;19835:618;19887:4;19883:9;19875:6;19871:22;19921:37;19953:4;19921:37;:::i;:::-;19980:1;19994:208;20008:7;20005:1;20002:14;19994:208;;;20087:9;20082:3;20078:19;20072:26;20064:6;20057:42;20138:1;20130:6;20126:14;20116:24;;20185:2;20174:9;20170:18;20157:31;;20031:4;20028:1;20024:12;20019:17;;19994:208;;;20230:6;20221:7;20218:19;20215:179;;;20288:9;20283:3;20279:19;20273:26;20331:48;20373:4;20365:6;20361:17;20350:9;20331:48;:::i;:::-;20323:6;20316:64;20238:156;20215:179;20440:1;20436;20428:6;20424:14;20420:22;20414:4;20407:36;19842:611;;;19805:887;;19395:1303;;;19303:1395;;:::o;20704:179::-;20844:31;20840:1;20832:6;20828:14;20821:55;20704:179;:::o;20889:366::-;21031:3;21052:67;21116:2;21111:3;21052:67;:::i;:::-;21045:74;;21128:93;21217:3;21128:93;:::i;:::-;21246:2;21241:3;21237:12;21230:19;;20889:366;;;:::o;21261:419::-;21427:4;21465:2;21454:9;21450:18;21442:26;;21514:9;21508:4;21504:20;21500:1;21489:9;21485:17;21478:47;21542:131;21668:4;21542:131;:::i;:::-;21534:139;;21261:419;;;:::o;21686:148::-;21788:11;21825:3;21810:18;;21686:148;;;;:::o;21840:377::-;21946:3;21974:39;22007:5;21974:39;:::i;:::-;22029:89;22111:6;22106:3;22029:89;:::i;:::-;22022:96;;22127:52;22172:6;22167:3;22160:4;22153:5;22149:16;22127:52;:::i;:::-;22204:6;22199:3;22195:16;22188:23;;21950:267;21840:377;;;;:::o;22223:435::-;22403:3;22425:95;22516:3;22507:6;22425:95;:::i;:::-;22418:102;;22537:95;22628:3;22619:6;22537:95;:::i;:::-;22530:102;;22649:3;22642:10;;22223:435;;;;;:::o;22664:225::-;22804:34;22800:1;22792:6;22788:14;22781:58;22873:8;22868:2;22860:6;22856:15;22849:33;22664:225;:::o;22895:366::-;23037:3;23058:67;23122:2;23117:3;23058:67;:::i;:::-;23051:74;;23134:93;23223:3;23134:93;:::i;:::-;23252:2;23247:3;23243:12;23236:19;;22895:366;;;:::o;23267:419::-;23433:4;23471:2;23460:9;23456:18;23448:26;;23520:9;23514:4;23510:20;23506:1;23495:9;23491:17;23484:47;23548:131;23674:4;23548:131;:::i;:::-;23540:139;;23267:419;;;:::o;23692:182::-;23832:34;23828:1;23820:6;23816:14;23809:58;23692:182;:::o;23880:366::-;24022:3;24043:67;24107:2;24102:3;24043:67;:::i;:::-;24036:74;;24119:93;24208:3;24119:93;:::i;:::-;24237:2;24232:3;24228:12;24221:19;;23880:366;;;:::o;24252:419::-;24418:4;24456:2;24445:9;24441:18;24433:26;;24505:9;24499:4;24495:20;24491:1;24480:9;24476:17;24469:47;24533:131;24659:4;24533:131;:::i;:::-;24525:139;;24252:419;;;:::o;24677:98::-;24728:6;24762:5;24756:12;24746:22;;24677:98;;;:::o;24781:168::-;24864:11;24898:6;24893:3;24886:19;24938:4;24933:3;24929:14;24914:29;;24781:168;;;;:::o;24955:360::-;25041:3;25069:38;25101:5;25069:38;:::i;:::-;25123:70;25186:6;25181:3;25123:70;:::i;:::-;25116:77;;25202:52;25247:6;25242:3;25235:4;25228:5;25224:16;25202:52;:::i;:::-;25279:29;25301:6;25279:29;:::i;:::-;25274:3;25270:39;25263:46;;25045:270;24955:360;;;;:::o;25321:640::-;25516:4;25554:3;25543:9;25539:19;25531:27;;25568:71;25636:1;25625:9;25621:17;25612:6;25568:71;:::i;:::-;25649:72;25717:2;25706:9;25702:18;25693:6;25649:72;:::i;:::-;25731;25799:2;25788:9;25784:18;25775:6;25731:72;:::i;:::-;25850:9;25844:4;25840:20;25835:2;25824:9;25820:18;25813:48;25878:76;25949:4;25940:6;25878:76;:::i;:::-;25870:84;;25321:640;;;;;;;:::o;25967:141::-;26023:5;26054:6;26048:13;26039:22;;26070:32;26096:5;26070:32;:::i;:::-;25967:141;;;;:::o;26114:349::-;26183:6;26232:2;26220:9;26211:7;26207:23;26203:32;26200:119;;;26238:79;;:::i;:::-;26200:119;26358:1;26383:63;26438:7;26429:6;26418:9;26414:22;26383:63;:::i;:::-;26373:73;;26329:127;26114:349;;;;:::o

Swarm Source

ipfs://157b30b0b689375640c3771277166d8e18044dce27504e05a82532b0406ad00f
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.