ETH Price: $3,141.53 (-8.18%)
Gas: 7 Gwei

Token

Finiliar-egg (FEGG)
 

Overview

Max Total Supply

17,298 FEGG

Holders

2,085

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FEGG
0xafe8f98b0605a98a7a7d49779ccd58cb36ac70b8
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:
FEGG

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 3 of 5: FEGG.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.10 <0.9.0;

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


    // its free Mint  and ERC721A contract (low GAS Fee)
    // 19270 Supply and 10 NFT per wallte & per tx
    // INSTANT REVEAL

    // Follow @NFT2Pixel 


contract FEGG is ERC721A, Ownable {
    constructor() ERC721A("Finiliar-egg", "FEGG") {
        mint(10);
    }

    string _baseTokenURI;
    mapping(address => uint256) _minted;
    uint public constant N2PLab_RESERVED = 1972;
    uint public N2PLab_Minted = 0;

    function mint(uint256 quantity) public {
        require(totalSupply() + quantity <= 19270 - N2PLab_RESERVED -N2PLab_Minted, "All Finiliar-egg minted");
        require(quantity <= 10, "Cant mint more than 10 Finiliar-egg in one tx");
        require(_minted[msg.sender] < 10, "Cant mint more than 10 Finiliar-egg per wallet");
        _minted[msg.sender] += quantity;
        _mint(msg.sender, quantity);
    }

    function mintReserved(address toaddress, uint256 quantity) external onlyOwner 
    {
        require(N2PLab_Minted + quantity <= N2PLab_RESERVED, "Cant mint more than _RESERVED");
        N2PLab_Minted = N2PLab_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 4 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 5 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":"N2PLab_Minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"N2PLab_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526000600b553480156200001657600080fd5b506040518060400160405280600c81526020017f46696e696c6961722d65676700000000000000000000000000000000000000008152506040518060400160405280600481526020017f4645474700000000000000000000000000000000000000000000000000000000815250816002908162000094919062000888565b508060039081620000a6919062000888565b50620000b7620000f760201b60201c565b6000819055505050620000df620000d36200010060201b60201c565b6200010860201b60201c565b620000f1600a620001ce60201b60201c565b62000be9565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600b546107b4614b46620001e391906200099e565b620001ef91906200099e565b81620002006200038860201b60201c565b6200020c9190620009d9565b111562000250576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002479062000a97565b60405180910390fd5b600a81111562000297576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028e9062000b2f565b60405180910390fd5b600a8060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106200031b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003129062000bc7565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200036c9190620009d9565b92505081905550620003853382620003a760201b60201c565b50565b60006200039a620000f760201b60201c565b6001546000540303905090565b60008054905060008203620003e8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003fd60008483856200058e60201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200048c836200046e60008660006200059460201b60201c565b6200047f85620005c460201b60201c565b17620005d460201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200052f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050620004f2565b50600082036200056b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620005896000848385620005ff60201b60201c565b505050565b50505050565b60008060e883901c905060e8620005b38686846200060560201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200069057607f821691505b602082108103620006a657620006a562000648565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007107fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006d1565b6200071c8683620006d1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000769620007636200075d8462000734565b6200073e565b62000734565b9050919050565b6000819050919050565b620007858362000748565b6200079d620007948262000770565b848454620006de565b825550505050565b600090565b620007b4620007a5565b620007c18184846200077a565b505050565b5b81811015620007e957620007dd600082620007aa565b600181019050620007c7565b5050565b601f82111562000838576200080281620006ac565b6200080d84620006c1565b810160208510156200081d578190505b620008356200082c85620006c1565b830182620007c6565b50505b505050565b600082821c905092915050565b60006200085d600019846008026200083d565b1980831691505092915050565b60006200087883836200084a565b9150826002028217905092915050565b62000893826200060e565b67ffffffffffffffff811115620008af57620008ae62000619565b5b620008bb825462000677565b620008c8828285620007ed565b600060209050601f831160018114620009005760008415620008eb578287015190505b620008f785826200086a565b86555062000967565b601f1984166200091086620006ac565b60005b828110156200093a5784890151825560018201915060208501945060208101905062000913565b868310156200095a578489015162000956601f8916826200084a565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620009ab8262000734565b9150620009b88362000734565b925082821015620009ce57620009cd6200096f565b5b828203905092915050565b6000620009e68262000734565b9150620009f38362000734565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a2b5762000a2a6200096f565b5b828201905092915050565b600082825260208201905092915050565b7f416c6c2046696e696c6961722d656767206d696e746564000000000000000000600082015250565b600062000a7f60178362000a36565b915062000a8c8262000a47565b602082019050919050565b6000602082019050818103600083015262000ab28162000a70565b9050919050565b7f43616e74206d696e74206d6f7265207468616e2031302046696e696c6961722d60008201527f65676720696e206f6e6520747800000000000000000000000000000000000000602082015250565b600062000b17602d8362000a36565b915062000b248262000ab9565b604082019050919050565b6000602082019050818103600083015262000b4a8162000b08565b9050919050565b7f43616e74206d696e74206d6f7265207468616e2031302046696e696c6961722d60008201527f656767207065722077616c6c6574000000000000000000000000000000000000602082015250565b600062000baf602e8362000a36565b915062000bbc8262000b51565b604082019050919050565b6000602082019050818103600083015262000be28162000ba0565b9050919050565b6127dc8062000bf96000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a0712d681161007c578063a0712d6814610351578063a22cb4651461036d578063b88d4fde14610389578063c87b56dd146103a5578063e985e9c5146103d5578063f2fde38b1461040557610142565b8063715018a6146102d15780637de55fe1146102db57806388306d01146102f75780638da5cb5b1461031557806395d89b411461033357610142565b806323b872dd1161010a57806323b872dd146101ff578063302142331461021b57806342842e0e1461023957806355f804b3146102555780636352211e1461027157806370a08231146102a157610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806318160ddd146101e1575b600080fd5b610161600480360381019061015c9190611991565b610421565b60405161016e91906119d9565b60405180910390f35b61017f6104b3565b60405161018c9190611a8d565b60405180910390f35b6101af60048036038101906101aa9190611ae5565b610545565b6040516101bc9190611b53565b60405180910390f35b6101df60048036038101906101da9190611b9a565b6105c4565b005b6101e9610708565b6040516101f69190611be9565b60405180910390f35b61021960048036038101906102149190611c04565b61071f565b005b610223610a41565b6040516102309190611be9565b60405180910390f35b610253600480360381019061024e9190611c04565b610a47565b005b61026f600480360381019061026a9190611d8c565b610a67565b005b61028b60048036038101906102869190611ae5565b610a82565b6040516102989190611b53565b60405180910390f35b6102bb60048036038101906102b69190611dd5565b610a94565b6040516102c89190611be9565b60405180910390f35b6102d9610b4c565b005b6102f560048036038101906102f09190611b9a565b610b60565b005b6102ff610bdc565b60405161030c9190611be9565b60405180910390f35b61031d610be2565b60405161032a9190611b53565b60405180910390f35b61033b610c0c565b6040516103489190611a8d565b60405180910390f35b61036b60048036038101906103669190611ae5565b610c9e565b005b61038760048036038101906103829190611e2e565b610e37565b005b6103a3600480360381019061039e9190611f0f565b610fae565b005b6103bf60048036038101906103ba9190611ae5565b611021565b6040516103cc9190611a8d565b60405180910390f35b6103ef60048036038101906103ea9190611f92565b6110bf565b6040516103fc91906119d9565b60405180910390f35b61041f600480360381019061041a9190611dd5565b611153565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061047c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104ac5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546104c290612001565b80601f01602080910402602001604051908101604052809291908181526020018280546104ee90612001565b801561053b5780601f106105105761010080835404028352916020019161053b565b820191906000526020600020905b81548152906001019060200180831161051e57829003601f168201915b5050505050905090565b6000610550826111d6565b610586576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105cf82610a82565b90508073ffffffffffffffffffffffffffffffffffffffff166105f0611235565b73ffffffffffffffffffffffffffffffffffffffff16146106535761061c81610617611235565b6110bf565b610652576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061071261123d565b6001546000540303905090565b600061072a82611246565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610791576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061079d84611312565b915091506107b381876107ae611235565b611339565b6107ff576107c8866107c3611235565b6110bf565b6107fe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610865576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610872868686600161137d565b801561087d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061094b85610927888887611383565b7c0200000000000000000000000000000000000000000000000000000000176113ab565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036109d157600060018501905060006004600083815260200190815260200160002054036109cf5760005481146109ce578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610a3986868660016113d6565b505050505050565b600b5481565b610a6283838360405180602001604052806000815250610fae565b505050565b610a6f6113dc565b8060099081610a7e91906121de565b5050565b6000610a8d82611246565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610afb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b546113dc565b610b5e600061145a565b565b610b686113dc565b6107b481600b54610b7991906122df565b1115610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190612381565b60405180910390fd5b80600b54610bc891906122df565b600b81905550610bd88282611520565b5050565b6107b481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c1b90612001565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4790612001565b8015610c945780601f10610c6957610100808354040283529160200191610c94565b820191906000526020600020905b815481529060010190602001808311610c7757829003601f168201915b5050505050905090565b600b546107b4614b46610cb191906123a1565b610cbb91906123a1565b81610cc4610708565b610cce91906122df565b1115610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690612421565b60405180910390fd5b600a811115610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a906124b3565b60405180910390fd5b600a8060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90612545565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e2391906122df565b92505081905550610e343382611520565b50565b610e3f611235565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610eb0611235565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f5d611235565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fa291906119d9565b60405180910390a35050565b610fb984848461071f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461101b57610fe4848484846116db565b61101a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061102c826111d6565b611062576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061106c61182b565b9050600081510361108c57604051806020016040528060008152506110b7565b80611096846118bd565b6040516020016110a79291906125a1565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61115b6113dc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190612637565b60405180910390fd5b6111d38161145a565b50565b6000816111e161123d565b111580156111f0575060005482105b801561122e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061125561123d565b116112db576000548110156112da5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036112d8575b600081036112ce5760046000836001900393508381526020019081526020016000205490506112a4565b809250505061130d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861139a868684611904565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6113e461190d565b73ffffffffffffffffffffffffffffffffffffffff16611402610be2565b73ffffffffffffffffffffffffffffffffffffffff1614611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f906126a3565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905060008203611560576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61156d600084838561137d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506115e4836115d56000866000611383565b6115de85611915565b176113ab565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461168557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061164a565b50600082036116c0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506116d660008483856113d6565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611701611235565b8786866040518563ffffffff1660e01b81526004016117239493929190612718565b6020604051808303816000875af192505050801561175f57506040513d601f19601f8201168201806040525081019061175c9190612779565b60015b6117d8573d806000811461178f576040519150601f19603f3d011682016040523d82523d6000602084013e611794565b606091505b5060008151036117d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461183a90612001565b80601f016020809104026020016040519081016040528092919081815260200182805461186690612001565b80156118b35780601f10611888576101008083540402835291602001916118b3565b820191906000526020600020905b81548152906001019060200180831161189657829003601f168201915b5050505050905090565b606060806040510190508060405280825b6001156118f057600183039250600a81066030018353600a81049050806118ce575b508181036020830392508083525050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61196e81611939565b811461197957600080fd5b50565b60008135905061198b81611965565b92915050565b6000602082840312156119a7576119a661192f565b5b60006119b58482850161197c565b91505092915050565b60008115159050919050565b6119d3816119be565b82525050565b60006020820190506119ee60008301846119ca565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a2e578082015181840152602081019050611a13565b83811115611a3d576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a5f826119f4565b611a6981856119ff565b9350611a79818560208601611a10565b611a8281611a43565b840191505092915050565b60006020820190508181036000830152611aa78184611a54565b905092915050565b6000819050919050565b611ac281611aaf565b8114611acd57600080fd5b50565b600081359050611adf81611ab9565b92915050565b600060208284031215611afb57611afa61192f565b5b6000611b0984828501611ad0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b3d82611b12565b9050919050565b611b4d81611b32565b82525050565b6000602082019050611b686000830184611b44565b92915050565b611b7781611b32565b8114611b8257600080fd5b50565b600081359050611b9481611b6e565b92915050565b60008060408385031215611bb157611bb061192f565b5b6000611bbf85828601611b85565b9250506020611bd085828601611ad0565b9150509250929050565b611be381611aaf565b82525050565b6000602082019050611bfe6000830184611bda565b92915050565b600080600060608486031215611c1d57611c1c61192f565b5b6000611c2b86828701611b85565b9350506020611c3c86828701611b85565b9250506040611c4d86828701611ad0565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611c9982611a43565b810181811067ffffffffffffffff82111715611cb857611cb7611c61565b5b80604052505050565b6000611ccb611925565b9050611cd78282611c90565b919050565b600067ffffffffffffffff821115611cf757611cf6611c61565b5b611d0082611a43565b9050602081019050919050565b82818337600083830152505050565b6000611d2f611d2a84611cdc565b611cc1565b905082815260208101848484011115611d4b57611d4a611c5c565b5b611d56848285611d0d565b509392505050565b600082601f830112611d7357611d72611c57565b5b8135611d83848260208601611d1c565b91505092915050565b600060208284031215611da257611da161192f565b5b600082013567ffffffffffffffff811115611dc057611dbf611934565b5b611dcc84828501611d5e565b91505092915050565b600060208284031215611deb57611dea61192f565b5b6000611df984828501611b85565b91505092915050565b611e0b816119be565b8114611e1657600080fd5b50565b600081359050611e2881611e02565b92915050565b60008060408385031215611e4557611e4461192f565b5b6000611e5385828601611b85565b9250506020611e6485828601611e19565b9150509250929050565b600067ffffffffffffffff821115611e8957611e88611c61565b5b611e9282611a43565b9050602081019050919050565b6000611eb2611ead84611e6e565b611cc1565b905082815260208101848484011115611ece57611ecd611c5c565b5b611ed9848285611d0d565b509392505050565b600082601f830112611ef657611ef5611c57565b5b8135611f06848260208601611e9f565b91505092915050565b60008060008060808587031215611f2957611f2861192f565b5b6000611f3787828801611b85565b9450506020611f4887828801611b85565b9350506040611f5987828801611ad0565b925050606085013567ffffffffffffffff811115611f7a57611f79611934565b5b611f8687828801611ee1565b91505092959194509250565b60008060408385031215611fa957611fa861192f565b5b6000611fb785828601611b85565b9250506020611fc885828601611b85565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061201957607f821691505b60208210810361202c5761202b611fd2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026120947fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612057565b61209e8683612057565b95508019841693508086168417925050509392505050565b6000819050919050565b60006120db6120d66120d184611aaf565b6120b6565b611aaf565b9050919050565b6000819050919050565b6120f5836120c0565b612109612101826120e2565b848454612064565b825550505050565b600090565b61211e612111565b6121298184846120ec565b505050565b5b8181101561214d57612142600082612116565b60018101905061212f565b5050565b601f8211156121925761216381612032565b61216c84612047565b8101602085101561217b578190505b61218f61218785612047565b83018261212e565b50505b505050565b600082821c905092915050565b60006121b560001984600802612197565b1980831691505092915050565b60006121ce83836121a4565b9150826002028217905092915050565b6121e7826119f4565b67ffffffffffffffff811115612200576121ff611c61565b5b61220a8254612001565b612215828285612151565b600060209050601f8311600181146122485760008415612236578287015190505b61224085826121c2565b8655506122a8565b601f19841661225686612032565b60005b8281101561227e57848901518255600182019150602085019450602081019050612259565b8683101561229b5784890151612297601f8916826121a4565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122ea82611aaf565b91506122f583611aaf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561232a576123296122b0565b5b828201905092915050565b7f43616e74206d696e74206d6f7265207468616e205f5245534552564544000000600082015250565b600061236b601d836119ff565b915061237682612335565b602082019050919050565b6000602082019050818103600083015261239a8161235e565b9050919050565b60006123ac82611aaf565b91506123b783611aaf565b9250828210156123ca576123c96122b0565b5b828203905092915050565b7f416c6c2046696e696c6961722d656767206d696e746564000000000000000000600082015250565b600061240b6017836119ff565b9150612416826123d5565b602082019050919050565b6000602082019050818103600083015261243a816123fe565b9050919050565b7f43616e74206d696e74206d6f7265207468616e2031302046696e696c6961722d60008201527f65676720696e206f6e6520747800000000000000000000000000000000000000602082015250565b600061249d602d836119ff565b91506124a882612441565b604082019050919050565b600060208201905081810360008301526124cc81612490565b9050919050565b7f43616e74206d696e74206d6f7265207468616e2031302046696e696c6961722d60008201527f656767207065722077616c6c6574000000000000000000000000000000000000602082015250565b600061252f602e836119ff565b915061253a826124d3565b604082019050919050565b6000602082019050818103600083015261255e81612522565b9050919050565b600081905092915050565b600061257b826119f4565b6125858185612565565b9350612595818560208601611a10565b80840191505092915050565b60006125ad8285612570565b91506125b98284612570565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006126216026836119ff565b915061262c826125c5565b604082019050919050565b6000602082019050818103600083015261265081612614565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061268d6020836119ff565b915061269882612657565b602082019050919050565b600060208201905081810360008301526126bc81612680565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006126ea826126c3565b6126f481856126ce565b9350612704818560208601611a10565b61270d81611a43565b840191505092915050565b600060808201905061272d6000830187611b44565b61273a6020830186611b44565b6127476040830185611bda565b818103606083015261275981846126df565b905095945050505050565b60008151905061277381611965565b92915050565b60006020828403121561278f5761278e61192f565b5b600061279d84828501612764565b9150509291505056fea26469706673582212204dfbf82c3d7926491bbc9fbda1455c4e68e1aab81516b3fb010ca21ff2ade62664736f6c634300080f0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a0712d681161007c578063a0712d6814610351578063a22cb4651461036d578063b88d4fde14610389578063c87b56dd146103a5578063e985e9c5146103d5578063f2fde38b1461040557610142565b8063715018a6146102d15780637de55fe1146102db57806388306d01146102f75780638da5cb5b1461031557806395d89b411461033357610142565b806323b872dd1161010a57806323b872dd146101ff578063302142331461021b57806342842e0e1461023957806355f804b3146102555780636352211e1461027157806370a08231146102a157610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806318160ddd146101e1575b600080fd5b610161600480360381019061015c9190611991565b610421565b60405161016e91906119d9565b60405180910390f35b61017f6104b3565b60405161018c9190611a8d565b60405180910390f35b6101af60048036038101906101aa9190611ae5565b610545565b6040516101bc9190611b53565b60405180910390f35b6101df60048036038101906101da9190611b9a565b6105c4565b005b6101e9610708565b6040516101f69190611be9565b60405180910390f35b61021960048036038101906102149190611c04565b61071f565b005b610223610a41565b6040516102309190611be9565b60405180910390f35b610253600480360381019061024e9190611c04565b610a47565b005b61026f600480360381019061026a9190611d8c565b610a67565b005b61028b60048036038101906102869190611ae5565b610a82565b6040516102989190611b53565b60405180910390f35b6102bb60048036038101906102b69190611dd5565b610a94565b6040516102c89190611be9565b60405180910390f35b6102d9610b4c565b005b6102f560048036038101906102f09190611b9a565b610b60565b005b6102ff610bdc565b60405161030c9190611be9565b60405180910390f35b61031d610be2565b60405161032a9190611b53565b60405180910390f35b61033b610c0c565b6040516103489190611a8d565b60405180910390f35b61036b60048036038101906103669190611ae5565b610c9e565b005b61038760048036038101906103829190611e2e565b610e37565b005b6103a3600480360381019061039e9190611f0f565b610fae565b005b6103bf60048036038101906103ba9190611ae5565b611021565b6040516103cc9190611a8d565b60405180910390f35b6103ef60048036038101906103ea9190611f92565b6110bf565b6040516103fc91906119d9565b60405180910390f35b61041f600480360381019061041a9190611dd5565b611153565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061047c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104ac5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546104c290612001565b80601f01602080910402602001604051908101604052809291908181526020018280546104ee90612001565b801561053b5780601f106105105761010080835404028352916020019161053b565b820191906000526020600020905b81548152906001019060200180831161051e57829003601f168201915b5050505050905090565b6000610550826111d6565b610586576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105cf82610a82565b90508073ffffffffffffffffffffffffffffffffffffffff166105f0611235565b73ffffffffffffffffffffffffffffffffffffffff16146106535761061c81610617611235565b6110bf565b610652576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061071261123d565b6001546000540303905090565b600061072a82611246565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610791576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061079d84611312565b915091506107b381876107ae611235565b611339565b6107ff576107c8866107c3611235565b6110bf565b6107fe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610865576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610872868686600161137d565b801561087d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061094b85610927888887611383565b7c0200000000000000000000000000000000000000000000000000000000176113ab565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036109d157600060018501905060006004600083815260200190815260200160002054036109cf5760005481146109ce578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610a3986868660016113d6565b505050505050565b600b5481565b610a6283838360405180602001604052806000815250610fae565b505050565b610a6f6113dc565b8060099081610a7e91906121de565b5050565b6000610a8d82611246565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610afb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b546113dc565b610b5e600061145a565b565b610b686113dc565b6107b481600b54610b7991906122df565b1115610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190612381565b60405180910390fd5b80600b54610bc891906122df565b600b81905550610bd88282611520565b5050565b6107b481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c1b90612001565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4790612001565b8015610c945780601f10610c6957610100808354040283529160200191610c94565b820191906000526020600020905b815481529060010190602001808311610c7757829003601f168201915b5050505050905090565b600b546107b4614b46610cb191906123a1565b610cbb91906123a1565b81610cc4610708565b610cce91906122df565b1115610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690612421565b60405180910390fd5b600a811115610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a906124b3565b60405180910390fd5b600a8060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90612545565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e2391906122df565b92505081905550610e343382611520565b50565b610e3f611235565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610eb0611235565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f5d611235565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fa291906119d9565b60405180910390a35050565b610fb984848461071f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461101b57610fe4848484846116db565b61101a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061102c826111d6565b611062576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061106c61182b565b9050600081510361108c57604051806020016040528060008152506110b7565b80611096846118bd565b6040516020016110a79291906125a1565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61115b6113dc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190612637565b60405180910390fd5b6111d38161145a565b50565b6000816111e161123d565b111580156111f0575060005482105b801561122e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061125561123d565b116112db576000548110156112da5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036112d8575b600081036112ce5760046000836001900393508381526020019081526020016000205490506112a4565b809250505061130d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861139a868684611904565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6113e461190d565b73ffffffffffffffffffffffffffffffffffffffff16611402610be2565b73ffffffffffffffffffffffffffffffffffffffff1614611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f906126a3565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905060008203611560576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61156d600084838561137d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506115e4836115d56000866000611383565b6115de85611915565b176113ab565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461168557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061164a565b50600082036116c0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506116d660008483856113d6565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611701611235565b8786866040518563ffffffff1660e01b81526004016117239493929190612718565b6020604051808303816000875af192505050801561175f57506040513d601f19601f8201168201806040525081019061175c9190612779565b60015b6117d8573d806000811461178f576040519150601f19603f3d011682016040523d82523d6000602084013e611794565b606091505b5060008151036117d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461183a90612001565b80601f016020809104026020016040519081016040528092919081815260200182805461186690612001565b80156118b35780601f10611888576101008083540402835291602001916118b3565b820191906000526020600020905b81548152906001019060200180831161189657829003601f168201915b5050505050905090565b606060806040510190508060405280825b6001156118f057600183039250600a81066030018353600a81049050806118ce575b508181036020830392508083525050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61196e81611939565b811461197957600080fd5b50565b60008135905061198b81611965565b92915050565b6000602082840312156119a7576119a661192f565b5b60006119b58482850161197c565b91505092915050565b60008115159050919050565b6119d3816119be565b82525050565b60006020820190506119ee60008301846119ca565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a2e578082015181840152602081019050611a13565b83811115611a3d576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a5f826119f4565b611a6981856119ff565b9350611a79818560208601611a10565b611a8281611a43565b840191505092915050565b60006020820190508181036000830152611aa78184611a54565b905092915050565b6000819050919050565b611ac281611aaf565b8114611acd57600080fd5b50565b600081359050611adf81611ab9565b92915050565b600060208284031215611afb57611afa61192f565b5b6000611b0984828501611ad0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b3d82611b12565b9050919050565b611b4d81611b32565b82525050565b6000602082019050611b686000830184611b44565b92915050565b611b7781611b32565b8114611b8257600080fd5b50565b600081359050611b9481611b6e565b92915050565b60008060408385031215611bb157611bb061192f565b5b6000611bbf85828601611b85565b9250506020611bd085828601611ad0565b9150509250929050565b611be381611aaf565b82525050565b6000602082019050611bfe6000830184611bda565b92915050565b600080600060608486031215611c1d57611c1c61192f565b5b6000611c2b86828701611b85565b9350506020611c3c86828701611b85565b9250506040611c4d86828701611ad0565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611c9982611a43565b810181811067ffffffffffffffff82111715611cb857611cb7611c61565b5b80604052505050565b6000611ccb611925565b9050611cd78282611c90565b919050565b600067ffffffffffffffff821115611cf757611cf6611c61565b5b611d0082611a43565b9050602081019050919050565b82818337600083830152505050565b6000611d2f611d2a84611cdc565b611cc1565b905082815260208101848484011115611d4b57611d4a611c5c565b5b611d56848285611d0d565b509392505050565b600082601f830112611d7357611d72611c57565b5b8135611d83848260208601611d1c565b91505092915050565b600060208284031215611da257611da161192f565b5b600082013567ffffffffffffffff811115611dc057611dbf611934565b5b611dcc84828501611d5e565b91505092915050565b600060208284031215611deb57611dea61192f565b5b6000611df984828501611b85565b91505092915050565b611e0b816119be565b8114611e1657600080fd5b50565b600081359050611e2881611e02565b92915050565b60008060408385031215611e4557611e4461192f565b5b6000611e5385828601611b85565b9250506020611e6485828601611e19565b9150509250929050565b600067ffffffffffffffff821115611e8957611e88611c61565b5b611e9282611a43565b9050602081019050919050565b6000611eb2611ead84611e6e565b611cc1565b905082815260208101848484011115611ece57611ecd611c5c565b5b611ed9848285611d0d565b509392505050565b600082601f830112611ef657611ef5611c57565b5b8135611f06848260208601611e9f565b91505092915050565b60008060008060808587031215611f2957611f2861192f565b5b6000611f3787828801611b85565b9450506020611f4887828801611b85565b9350506040611f5987828801611ad0565b925050606085013567ffffffffffffffff811115611f7a57611f79611934565b5b611f8687828801611ee1565b91505092959194509250565b60008060408385031215611fa957611fa861192f565b5b6000611fb785828601611b85565b9250506020611fc885828601611b85565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061201957607f821691505b60208210810361202c5761202b611fd2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026120947fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612057565b61209e8683612057565b95508019841693508086168417925050509392505050565b6000819050919050565b60006120db6120d66120d184611aaf565b6120b6565b611aaf565b9050919050565b6000819050919050565b6120f5836120c0565b612109612101826120e2565b848454612064565b825550505050565b600090565b61211e612111565b6121298184846120ec565b505050565b5b8181101561214d57612142600082612116565b60018101905061212f565b5050565b601f8211156121925761216381612032565b61216c84612047565b8101602085101561217b578190505b61218f61218785612047565b83018261212e565b50505b505050565b600082821c905092915050565b60006121b560001984600802612197565b1980831691505092915050565b60006121ce83836121a4565b9150826002028217905092915050565b6121e7826119f4565b67ffffffffffffffff811115612200576121ff611c61565b5b61220a8254612001565b612215828285612151565b600060209050601f8311600181146122485760008415612236578287015190505b61224085826121c2565b8655506122a8565b601f19841661225686612032565b60005b8281101561227e57848901518255600182019150602085019450602081019050612259565b8683101561229b5784890151612297601f8916826121a4565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122ea82611aaf565b91506122f583611aaf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561232a576123296122b0565b5b828201905092915050565b7f43616e74206d696e74206d6f7265207468616e205f5245534552564544000000600082015250565b600061236b601d836119ff565b915061237682612335565b602082019050919050565b6000602082019050818103600083015261239a8161235e565b9050919050565b60006123ac82611aaf565b91506123b783611aaf565b9250828210156123ca576123c96122b0565b5b828203905092915050565b7f416c6c2046696e696c6961722d656767206d696e746564000000000000000000600082015250565b600061240b6017836119ff565b9150612416826123d5565b602082019050919050565b6000602082019050818103600083015261243a816123fe565b9050919050565b7f43616e74206d696e74206d6f7265207468616e2031302046696e696c6961722d60008201527f65676720696e206f6e6520747800000000000000000000000000000000000000602082015250565b600061249d602d836119ff565b91506124a882612441565b604082019050919050565b600060208201905081810360008301526124cc81612490565b9050919050565b7f43616e74206d696e74206d6f7265207468616e2031302046696e696c6961722d60008201527f656767207065722077616c6c6574000000000000000000000000000000000000602082015250565b600061252f602e836119ff565b915061253a826124d3565b604082019050919050565b6000602082019050818103600083015261255e81612522565b9050919050565b600081905092915050565b600061257b826119f4565b6125858185612565565b9350612595818560208601611a10565b80840191505092915050565b60006125ad8285612570565b91506125b98284612570565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006126216026836119ff565b915061262c826125c5565b604082019050919050565b6000602082019050818103600083015261265081612614565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061268d6020836119ff565b915061269882612657565b602082019050919050565b600060208201905081810360008301526126bc81612680565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006126ea826126c3565b6126f481856126ce565b9350612704818560208601611a10565b61270d81611a43565b840191505092915050565b600060808201905061272d6000830187611b44565b61273a6020830186611b44565b6127476040830185611bda565b818103606083015261275981846126df565b905095945050505050565b60008151905061277381611965565b92915050565b60006020828403121561278f5761278e61192f565b5b600061279d84828501612764565b9150509291505056fea26469706673582212204dfbf82c3d7926491bbc9fbda1455c4e68e1aab81516b3fb010ca21ff2ade62664736f6c634300080f0033

Deployed Bytecode Sourcemap

289:1222:2:-: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;:::-;;530:29:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23378:185:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1401:102:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11662:152:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7204:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1884:103:4;;;:::i;:::-;;993:278:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;480:43;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1236:87:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10445:104:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;568:417:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17310:308:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24161:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10655:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17775:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2142:201:4;;;;;;;;;;;;;:::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;530:29:2:-;;;;:::o;23378:185:1:-;23516:39;23533:4;23539:2;23543:7;23516:39;;;;;;;;;;;;:16;:39::i;:::-;23378:185;;;:::o;1401:102:2:-;1122:13:4;:11;:13::i;:::-;1488:7:2::1;1472:13;:23;;;;;;:::i;:::-;;1401: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:4:-;1122:13;:11;:13::i;:::-;1949:30:::1;1976:1;1949:18;:30::i;:::-;1884:103::o:0;993:278:2:-;1122:13:4;:11;:13::i;:::-;519:4:2::1;1112:8;1096:13;;:24;;;;:::i;:::-;:43;;1088:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;1216:8;1200:13;;:24;;;;:::i;:::-;1184:13;:40;;;;1235:26;1241:9;1252:8;1235:5;:26::i;:::-;993:278:::0;;:::o;480:43::-;519:4;480:43;:::o;1236:87:4:-;1282:7;1309:6;;;;;;;;;;;1302:13;;1236:87;:::o;10445:104:1:-;10501:13;10534:7;10527:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10445:104;:::o;568:417:2:-;679:13;;519:4;654:5;:23;;;;:::i;:::-;:38;;;;:::i;:::-;642:8;626:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:66;;618:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;751:2;739:8;:14;;731:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;844:2;822:7;:19;830:10;822:19;;;;;;;;;;;;;;;;:24;814:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;931:8;908:7;:19;916:10;908:19;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;950:27;956:10;968:8;950:5;:27::i;:::-;568:417;:::o;17310:308:1:-;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;24161:399::-;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:4:-;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;1401:132:4:-;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;27822:2454:1:-;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;26644:716::-;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;1279:114:2:-;1339:13;1372;1365:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1279: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;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;15192:324:1:-;15262:14;15495:1;15485:8;15482:15;15456:24;15452:46;15442:56;;15192:324;;;:::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:141::-;12682:4;12705:3;12697:11;;12728:3;12725:1;12718:14;12762:4;12759:1;12749:18;12741:26;;12633:141;;;:::o;12780:93::-;12817:6;12864:2;12859;12852:5;12848:14;12844:23;12834:33;;12780:93;;;:::o;12879:107::-;12923:8;12973:5;12967:4;12963:16;12942:37;;12879:107;;;;:::o;12992:393::-;13061:6;13111:1;13099:10;13095:18;13134:97;13164:66;13153:9;13134:97;:::i;:::-;13252:39;13282:8;13271:9;13252:39;:::i;:::-;13240:51;;13324:4;13320:9;13313:5;13309:21;13300:30;;13373:4;13363:8;13359:19;13352:5;13349:30;13339:40;;13068:317;;12992:393;;;;;:::o;13391:60::-;13419:3;13440:5;13433:12;;13391:60;;;:::o;13457:142::-;13507:9;13540:53;13558:34;13567:24;13585:5;13567:24;:::i;:::-;13558:34;:::i;:::-;13540:53;:::i;:::-;13527:66;;13457:142;;;:::o;13605:75::-;13648:3;13669:5;13662:12;;13605:75;;;:::o;13686:269::-;13796:39;13827:7;13796:39;:::i;:::-;13857:91;13906:41;13930:16;13906:41;:::i;:::-;13898:6;13891:4;13885:11;13857:91;:::i;:::-;13851:4;13844:105;13762:193;13686:269;;;:::o;13961:73::-;14006:3;13961:73;:::o;14040:189::-;14117:32;;:::i;:::-;14158:65;14216:6;14208;14202:4;14158:65;:::i;:::-;14093:136;14040:189;;:::o;14235:186::-;14295:120;14312:3;14305:5;14302:14;14295:120;;;14366:39;14403:1;14396:5;14366:39;:::i;:::-;14339:1;14332:5;14328:13;14319:22;;14295:120;;;14235:186;;:::o;14427:543::-;14528:2;14523:3;14520:11;14517:446;;;14562:38;14594:5;14562:38;:::i;:::-;14646:29;14664:10;14646:29;:::i;:::-;14636:8;14632:44;14829:2;14817:10;14814:18;14811:49;;;14850:8;14835:23;;14811:49;14873:80;14929:22;14947:3;14929:22;:::i;:::-;14919:8;14915:37;14902:11;14873:80;:::i;:::-;14532:431;;14517:446;14427:543;;;:::o;14976:117::-;15030:8;15080:5;15074:4;15070:16;15049:37;;14976:117;;;;:::o;15099:169::-;15143:6;15176:51;15224:1;15220:6;15212:5;15209:1;15205:13;15176:51;:::i;:::-;15172:56;15257:4;15251;15247:15;15237:25;;15150:118;15099:169;;;;:::o;15273:295::-;15349:4;15495:29;15520:3;15514:4;15495:29;:::i;:::-;15487:37;;15557:3;15554:1;15550:11;15544:4;15541:21;15533:29;;15273:295;;;;:::o;15573:1395::-;15690:37;15723:3;15690:37;:::i;:::-;15792:18;15784:6;15781:30;15778:56;;;15814:18;;:::i;:::-;15778:56;15858:38;15890:4;15884:11;15858:38;:::i;:::-;15943:67;16003:6;15995;15989:4;15943:67;:::i;:::-;16037:1;16061:4;16048:17;;16093:2;16085:6;16082:14;16110:1;16105:618;;;;16767:1;16784:6;16781:77;;;16833:9;16828:3;16824:19;16818:26;16809:35;;16781:77;16884:67;16944:6;16937:5;16884:67;:::i;:::-;16878:4;16871:81;16740:222;16075:887;;16105:618;16157:4;16153:9;16145:6;16141:22;16191:37;16223:4;16191:37;:::i;:::-;16250:1;16264:208;16278:7;16275:1;16272:14;16264:208;;;16357:9;16352:3;16348:19;16342:26;16334:6;16327:42;16408:1;16400:6;16396:14;16386:24;;16455:2;16444:9;16440:18;16427:31;;16301:4;16298:1;16294:12;16289:17;;16264:208;;;16500:6;16491:7;16488:19;16485:179;;;16558:9;16553:3;16549:19;16543:26;16601:48;16643:4;16635:6;16631:17;16620:9;16601:48;:::i;:::-;16593:6;16586:64;16508:156;16485:179;16710:1;16706;16698:6;16694:14;16690:22;16684:4;16677:36;16112:611;;;16075:887;;15665:1303;;;15573:1395;;:::o;16974:180::-;17022:77;17019:1;17012:88;17119:4;17116:1;17109:15;17143:4;17140:1;17133:15;17160:305;17200:3;17219:20;17237:1;17219:20;:::i;:::-;17214:25;;17253:20;17271:1;17253:20;:::i;:::-;17248:25;;17407:1;17339:66;17335:74;17332:1;17329:81;17326:107;;;17413:18;;:::i;:::-;17326:107;17457:1;17454;17450:9;17443:16;;17160:305;;;;:::o;17471:179::-;17611:31;17607:1;17599:6;17595:14;17588:55;17471:179;:::o;17656:366::-;17798:3;17819:67;17883:2;17878:3;17819:67;:::i;:::-;17812:74;;17895:93;17984:3;17895:93;:::i;:::-;18013:2;18008:3;18004:12;17997:19;;17656:366;;;:::o;18028:419::-;18194:4;18232:2;18221:9;18217:18;18209:26;;18281:9;18275:4;18271:20;18267:1;18256:9;18252:17;18245:47;18309:131;18435:4;18309:131;:::i;:::-;18301:139;;18028:419;;;:::o;18453:191::-;18493:4;18513:20;18531:1;18513:20;:::i;:::-;18508:25;;18547:20;18565:1;18547:20;:::i;:::-;18542:25;;18586:1;18583;18580:8;18577:34;;;18591:18;;:::i;:::-;18577:34;18636:1;18633;18629:9;18621:17;;18453:191;;;;:::o;18650:173::-;18790:25;18786:1;18778:6;18774:14;18767:49;18650:173;:::o;18829:366::-;18971:3;18992:67;19056:2;19051:3;18992:67;:::i;:::-;18985:74;;19068:93;19157:3;19068:93;:::i;:::-;19186:2;19181:3;19177:12;19170:19;;18829:366;;;:::o;19201:419::-;19367:4;19405:2;19394:9;19390:18;19382:26;;19454:9;19448:4;19444:20;19440:1;19429:9;19425:17;19418:47;19482:131;19608:4;19482:131;:::i;:::-;19474:139;;19201:419;;;:::o;19626:232::-;19766:34;19762:1;19754:6;19750:14;19743:58;19835:15;19830:2;19822:6;19818:15;19811:40;19626:232;:::o;19864:366::-;20006:3;20027:67;20091:2;20086:3;20027:67;:::i;:::-;20020:74;;20103:93;20192:3;20103:93;:::i;:::-;20221:2;20216:3;20212:12;20205:19;;19864:366;;;:::o;20236:419::-;20402:4;20440:2;20429:9;20425:18;20417:26;;20489:9;20483:4;20479:20;20475:1;20464:9;20460:17;20453:47;20517:131;20643:4;20517:131;:::i;:::-;20509:139;;20236:419;;;:::o;20661:233::-;20801:34;20797:1;20789:6;20785:14;20778:58;20870:16;20865:2;20857:6;20853:15;20846:41;20661:233;:::o;20900:366::-;21042:3;21063:67;21127:2;21122:3;21063:67;:::i;:::-;21056:74;;21139:93;21228:3;21139:93;:::i;:::-;21257:2;21252:3;21248:12;21241:19;;20900:366;;;:::o;21272:419::-;21438:4;21476:2;21465:9;21461:18;21453:26;;21525:9;21519:4;21515:20;21511:1;21500:9;21496:17;21489:47;21553:131;21679:4;21553:131;:::i;:::-;21545:139;;21272:419;;;:::o;21697:148::-;21799:11;21836:3;21821:18;;21697:148;;;;:::o;21851:377::-;21957:3;21985:39;22018:5;21985:39;:::i;:::-;22040:89;22122:6;22117:3;22040:89;:::i;:::-;22033:96;;22138:52;22183:6;22178:3;22171:4;22164:5;22160:16;22138:52;:::i;:::-;22215:6;22210:3;22206:16;22199:23;;21961:267;21851:377;;;;:::o;22234:435::-;22414:3;22436:95;22527:3;22518:6;22436:95;:::i;:::-;22429:102;;22548:95;22639:3;22630:6;22548:95;:::i;:::-;22541:102;;22660:3;22653:10;;22234:435;;;;;:::o;22675:225::-;22815:34;22811:1;22803:6;22799:14;22792:58;22884:8;22879:2;22871:6;22867:15;22860:33;22675:225;:::o;22906:366::-;23048:3;23069:67;23133:2;23128:3;23069:67;:::i;:::-;23062:74;;23145:93;23234:3;23145:93;:::i;:::-;23263:2;23258:3;23254:12;23247:19;;22906:366;;;:::o;23278:419::-;23444:4;23482:2;23471:9;23467:18;23459:26;;23531:9;23525:4;23521:20;23517:1;23506:9;23502:17;23495:47;23559:131;23685:4;23559:131;:::i;:::-;23551:139;;23278:419;;;:::o;23703:182::-;23843:34;23839:1;23831:6;23827:14;23820:58;23703:182;:::o;23891:366::-;24033:3;24054:67;24118:2;24113:3;24054:67;:::i;:::-;24047:74;;24130:93;24219:3;24130:93;:::i;:::-;24248:2;24243:3;24239:12;24232:19;;23891:366;;;:::o;24263:419::-;24429:4;24467:2;24456:9;24452:18;24444:26;;24516:9;24510:4;24506:20;24502:1;24491:9;24487:17;24480:47;24544:131;24670:4;24544:131;:::i;:::-;24536:139;;24263:419;;;:::o;24688:98::-;24739:6;24773:5;24767:12;24757:22;;24688:98;;;:::o;24792:168::-;24875:11;24909:6;24904:3;24897:19;24949:4;24944:3;24940:14;24925:29;;24792:168;;;;:::o;24966:360::-;25052:3;25080:38;25112:5;25080:38;:::i;:::-;25134:70;25197:6;25192:3;25134:70;:::i;:::-;25127:77;;25213:52;25258:6;25253:3;25246:4;25239:5;25235:16;25213:52;:::i;:::-;25290:29;25312:6;25290:29;:::i;:::-;25285:3;25281:39;25274:46;;25056:270;24966:360;;;;:::o;25332:640::-;25527:4;25565:3;25554:9;25550:19;25542:27;;25579:71;25647:1;25636:9;25632:17;25623:6;25579:71;:::i;:::-;25660:72;25728:2;25717:9;25713:18;25704:6;25660:72;:::i;:::-;25742;25810:2;25799:9;25795:18;25786:6;25742:72;:::i;:::-;25861:9;25855:4;25851:20;25846:2;25835:9;25831:18;25824:48;25889:76;25960:4;25951:6;25889:76;:::i;:::-;25881:84;;25332:640;;;;;;;:::o;25978:141::-;26034:5;26065:6;26059:13;26050:22;;26081:32;26107:5;26081:32;:::i;:::-;25978:141;;;;:::o;26125:349::-;26194:6;26243:2;26231:9;26222:7;26218:23;26214:32;26211:119;;;26249:79;;:::i;:::-;26211:119;26369:1;26394:63;26449:7;26440:6;26429:9;26425:22;26394:63;:::i;:::-;26384:73;;26340:127;26125:349;;;;:::o

Swarm Source

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