ETH Price: $3,360.13 (-0.66%)
Gas: 11 Gwei

Token

Nintecca Chronicles (TECCA)
 

Overview

Max Total Supply

1,788 TECCA

Holders

714

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
miaflusa.eth
Balance
2 TECCA
0xfd9a6cd1670fe8eb4012d8abb9cdf25741a6ff04
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:
NinteccaChronicles

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

// Developed by Team Nintecca

// ERC721A Contracts v4.2.3
// 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();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @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 {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) _revert(BalanceQueryForZeroAddress.selector);
        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.selector);

        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 Returns whether the ownership slot at `index` is initialized.
     * An uninitialized slot does not necessarily mean that the slot has no owner.
     */
    function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) {
        return _packedOwnerships[index] != 0;
    }

    /**
     * @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 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If the data at the starting slot does not exist, start the scan.
            if (packed == 0) {
                if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
                // 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, `tokenId` will not underflow.
                //
                // We can directly compare the packed value.
                // If the address is zero, packed will be zero.
                for (;;) {
                    unchecked {
                        packed = _packedOwnerships[--tokenId];
                    }
                    if (packed == 0) continue;
                    if (packed & _BITMASK_BURNED == 0) return packed;
                    // Otherwise, the token is burned, and we must revert.
                    // This handles the case of batch burned tokens, where only the burned bit
                    // of the starting slot is set, and remaining slots are left uninitialized.
                    _revert(OwnerQueryForNonexistentToken.selector);
                }
            }
            // Otherwise, the data exists and we can skip the scan.
            // This is possible because we have already achieved the target condition.
            // This saves 2143 gas on transfers of initialized tokens.
            // If the token is not burned, return `packed`. Otherwise, revert.
            if (packed & _BITMASK_BURNED == 0) return packed;
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

    /**
     * @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. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
        from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));

        if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);

        (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.selector);

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

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
            // 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.
                from, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

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

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

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

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

        _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:
            // - `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)
            );

            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            uint256 end = startTokenId + quantity;
            uint256 tokenId = startTokenId;

            do {
                assembly {
                    // 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`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } while (++tokenId != end);

            _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.selector);
        if (quantity == 0) _revert(MintZeroQuantity.selector);
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector);

        _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.selector);
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) _revert(bytes4(0));
            }
        }
    }

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

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

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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

        if (approvalCheck && _msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                _revert(ApprovalCallerNotOwnerNorApproved.selector);
            }

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

    // =============================================================
    //                        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.selector);
        }

        _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.selector);
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

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

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

    /**
     * @dev For more efficient reverts.
     */
    function _revert(bytes4 errorSelector) internal pure {
        assembly {
            mstore(0x00, errorSelector)
            revert(0x00, 0x04)
        }
    }
}

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

// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) external view returns (address receiver, uint256 royaltyAmount);
}

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// OpenZeppelin Contracts (last updated v4.9.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

// File: contracts/OperatorFilterer.sol

pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}

// File: contracts/NinteccaChronicles.sol

pragma solidity >=0.7.0 <0.9.0;

// Contract Constructor Variables

contract NinteccaChronicles is ERC721A, Ownable, ERC2981, ReentrancyGuard, OperatorFilterer {

    uint256 public cost = 0.001 ether;
    uint256 public maxSupply = 1788;
    uint256 public MaxMintPerTransaction = 10;
    uint256 public FreeGivingAmount = 788;
    uint256 public MaxPerWallet = 100;
    uint256 public FreeAmount = 0;

    string public baseURI;
    string public baseExtension = ".json";

    bool public mintIsActive = false;
    bool public operatorFilteringEnabled = true;

    address private constant _artist = 0x6c89867531E3C06316970A2FC87fF0122D517D93;
    string public constant _initBaseURI = "ipfs://bafybeifxguc6rujtn2jpj4bk4ptxxikq7da2mlrquvcgxigpzb46apdld4/";
  
    // Constructor Variables

    constructor() ERC721A ("Nintecca Chronicles", "TECCA") {
        setBaseURI(_initBaseURI);
        setDefaultRoyalty(_artist, 500);
        _registerForOperatorFiltering();
    }

    // Mint functions

    function mint(uint numberOfTokens) public payable {

        uint256 supply = totalSupply();

            // Mint functions requirements

            require(supply < maxSupply, "Currently sold out");
            require(mintIsActive, "Sale must be active to mint tokens");
            require(supply + numberOfTokens <= maxSupply, "Purchase would exceed max tokens");

        uint256 totalNumberMinted = _numberMinted(msg.sender);

            require(numberOfTokens <= MaxMintPerTransaction, "Purchase would exceed max per transaction");
            require(totalNumberMinted + numberOfTokens <= MaxPerWallet, "Purchase would exceed max per wallet");

            if (supply >= FreeGivingAmount) {
            // Changing mint cost for all tokens when supply exceeds FreeGivingAmount
            require(msg.value == numberOfTokens * cost, "Didn't send enough ETH");

                } else {

            // Changing mint cost for tokens excluding the free mints
            require(msg.value == (numberOfTokens - FreeAmount) * cost, "Didn't send enough ETH");
            }

        _mint(msg.sender, numberOfTokens);
    }

    // Set metadata link for tokenid

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721AMetadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        _toString(tokenId),
                        ".json"
                    )
                )
                : "";
    }

    // System Contract Functions

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

    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    // Operations Override functions

    function setApprovalForAll(
        address operator,
        bool approved
    ) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(
        address operator,
        uint256 tokenId
    ) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function supportsInterface(
        bytes4 interfaceId
            ) public view virtual override (ERC721A, ERC2981) returns (bool) {
        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId);
    }

    // Safe Transfer From functions 

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    // Operator Filter Registry    

    function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }

    // Owner functions

    function reserve(uint256 numberForMint) public onlyOwner {
        uint256 supply = totalSupply();
        require(supply < maxSupply, "Currently sold out");
        require(supply + numberForMint <= maxSupply, "Mint would exceed max tokens");
        _safeMint(msg.sender, numberForMint);
    }

    function airdrop(address airAddress, uint256 numberForMint) public onlyOwner {
        uint256 supply = totalSupply();
        require(supply < maxSupply, "Currently sold out");
        require(supply + numberForMint <= maxSupply, "Airdrop would exceed max tokens");
        _safeMint(airAddress, numberForMint);
    }

    function setMaxMintPerTransaction(uint256 _MaxMintlimit) public onlyOwner {
        require(MaxMintPerTransaction != _MaxMintlimit, "New MaxMintlimit is the same as the existing one");
        MaxMintPerTransaction = _MaxMintlimit;
    }

    function setMaxPerWallet(uint256 _MaxPerWalletlimit) public onlyOwner {
        require(MaxPerWallet != _MaxPerWalletlimit, "New MaxPerWalletlimit is the same as the existing one");
        MaxPerWallet = _MaxPerWalletlimit;
    }

    function setMintFee(uint256 _mintFee) public onlyOwner {
        require(_mintFee > 0, "The cost of minting a token should be greater than 0");
        cost = _mintFee;
    }

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

    function setMintIsActive(bool newState) public onlyOwner {
        mintIsActive = newState;
    }

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

    function setFreeAmount(uint256 newAmountFree) public onlyOwner {
        FreeAmount = newAmountFree;
    }

    function setFreeGivingAmount(uint256 newFreeGivingAmount) public onlyOwner {
        FreeGivingAmount = newFreeGivingAmount;
    }

    function setDefaultRoyalty(address receiver, uint96 feeNumerator) public onlyOwner {
        _setDefaultRoyalty(receiver, feeNumerator);
    }

    function deleteDefaultRoyalty() public onlyOwner {
        _deleteDefaultRoyalty();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"FreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreeGivingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxMintPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_initBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"airAddress","type":"address"},{"internalType":"uint256","name":"numberForMint","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"numberForMint","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmountFree","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreeGivingAmount","type":"uint256"}],"name":"setFreeGivingAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MaxMintlimit","type":"uint256"}],"name":"setMaxMintPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MaxPerWalletlimit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintFee","type":"uint256"}],"name":"setMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setMintIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

66038d7ea4c68000600c556106fc600d55600a600e55610314600f556064601055600060115560c06040526005608090815264173539b7b760d91b60a0526013906200004c908262000476565b506014805461ffff19166101001790553480156200006957600080fd5b506040518060400160405280601381526020017f4e696e7465636361204368726f6e69636c65730000000000000000000000000081525060405180604001604052806005815260200164544543434160d81b8152508160029081620000cf919062000476565b506003620000de828262000476565b5050600160005550620000f1336200014f565b6001600b819055506200011d6040518060800160405280604381526020016200279160439139620001a1565b6200013f736c89867531e3c06316970a2fc87ff0122d517d936101f4620001bd565b62000149620001d3565b62000542565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001ab620001f6565b6012620001b9828262000476565b5050565b620001c7620001f6565b620001b9828262000256565b620001f4733cc6cdda760b79bafa08df41ecfa224f810dceb6600162000357565b565b6008546001600160a01b03163314620001f45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6127106001600160601b0382161115620002c65760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016200024d565b6001600160a01b0382166200031e5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016200024d565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b6001600160a01b0390911690637d3e3dbe81620003875782620003805750634420e48662000387565b5063a0af29035b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620003c7578060005160e01c03620003c757600080fd5b5060006024525050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003fc57607f821691505b6020821081036200041d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200047157600081815260208120601f850160051c810160208610156200044c5750805b601f850160051c820191505b818110156200046d5782815560010162000458565b5050505b505050565b81516001600160401b03811115620004925762000492620003d1565b620004aa81620004a38454620003e7565b8462000423565b602080601f831160018114620004e25760008415620004c95750858301515b600019600386901b1c1916600185901b1785556200046d565b600085815260208120601f198616915b828110156200051357888601518255948401946001909101908401620004f2565b5085821015620005325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61223f80620005526000396000f3fe6080604052600436106102675760003560e01c80638ba4cc3c11610144578063c6682862116100b6578063dd2687661161007a578063dd268766146106c0578063e268e4d3146106d6578063e985e9c5146106f6578063eddd0d9c14610716578063f2fde38b14610736578063fb796e6c1461075657600080fd5b8063c668286214610635578063c87b56dd1461064a578063d19653fb1461066a578063d5abeb011461068a578063dc33e681146106a057600080fd5b8063a0712d6811610108578063a0712d68146105a4578063a22cb465146105b7578063aa1b103f146105d7578063b7c0b8e8146105ec578063b7f9590f1461060c578063b88d4fde1461062257600080fd5b80638ba4cc3c1461051b5780638bec1c6d1461053b5780638da5cb5b1461055157806392910eec1461056f57806395d89b411461058f57600080fd5b80632cb4788d116101dd57806355f804b3116101a157806355f804b3146104715780636352211e146104915780636c0360eb146104b157806370a08231146104c6578063715018a6146104e6578063819b25ba146104fb57600080fd5b80632cb4788d146103ef5780632e6cebe51461040f5780633ccfd60b1461042f57806342842e0e14610444578063471a42941461045757600080fd5b8063095ea7b31161022f578063095ea7b31461034157806313faede61461035457806318160ddd1461036a5780631de18b361461038857806323b872dd1461039d5780632a55205a146103b057600080fd5b806301ffc9a71461026c57806304634d8d146102a1578063056886b0146102c357806306fdde03146102e7578063081812fc14610309575b600080fd5b34801561027857600080fd5b5061028c610287366004611bbe565b610775565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004611bf2565b610795565b005b3480156102cf57600080fd5b506102d9600f5481565b604051908152602001610298565b3480156102f357600080fd5b506102fc6107ab565b6040516102989190611c85565b34801561031557600080fd5b50610329610324366004611c98565b61083d565b6040516001600160a01b039091168152602001610298565b6102c161034f366004611cb1565b610878565b34801561036057600080fd5b506102d9600c5481565b34801561037657600080fd5b506102d9600154600054036000190190565b34801561039457600080fd5b506102fc6108a1565b6102c16103ab366004611cdb565b6108bd565b3480156103bc57600080fd5b506103d06103cb366004611d17565b6108f8565b604080516001600160a01b039093168352602083019190915201610298565b3480156103fb57600080fd5b506102c161040a366004611c98565b6109a4565b34801561041b57600080fd5b506102c161042a366004611c98565b6109b1565b34801561043b57600080fd5b506102c1610a2d565b6102c1610452366004611cdb565b610a64565b34801561046357600080fd5b5060145461028c9060ff1681565b34801561047d57600080fd5b506102c161048c366004611dc5565b610a99565b34801561049d57600080fd5b506103296104ac366004611c98565b610aad565b3480156104bd57600080fd5b506102fc610ab8565b3480156104d257600080fd5b506102d96104e1366004611e0e565b610b46565b3480156104f257600080fd5b506102c1610b8c565b34801561050757600080fd5b506102c1610516366004611c98565b610ba0565b34801561052757600080fd5b506102c1610536366004611cb1565b610c43565b34801561054757600080fd5b506102d960105481565b34801561055d57600080fd5b506008546001600160a01b0316610329565b34801561057b57600080fd5b506102c161058a366004611c98565b610ce6565b34801561059b57600080fd5b506102fc610cf3565b6102c16105b2366004611c98565b610d02565b3480156105c357600080fd5b506102c16105d2366004611e39565b610fa7565b3480156105e357600080fd5b506102c1610fcb565b3480156105f857600080fd5b506102c1610607366004611e6c565b610fdd565b34801561061857600080fd5b506102d9600e5481565b6102c1610630366004611e87565b610fff565b34801561064157600080fd5b506102fc61103c565b34801561065657600080fd5b506102fc610665366004611c98565b611049565b34801561067657600080fd5b506102c1610685366004611e6c565b611115565b34801561069657600080fd5b506102d9600d5481565b3480156106ac57600080fd5b506102d96106bb366004611e0e565b611130565b3480156106cc57600080fd5b506102d960115481565b3480156106e257600080fd5b506102c16106f1366004611c98565b61115b565b34801561070257600080fd5b5061028c610711366004611f03565b6111d7565b34801561072257600080fd5b506102c1610731366004611c98565b611205565b34801561074257600080fd5b506102c1610751366004611e0e565b61127f565b34801561076257600080fd5b5060145461028c90610100900460ff1681565b6000610780826112f8565b8061078f575061078f82611346565b92915050565b61079d61137b565b6107a782826113d5565b5050565b6060600280546107ba90611f2d565b80601f01602080910402602001604051908101604052809291908181526020018280546107e690611f2d565b80156108335780601f1061080857610100808354040283529160200191610833565b820191906000526020600020905b81548152906001019060200180831161081657829003601f168201915b5050505050905090565b6000610848826114d2565b61085c5761085c6333d1c03960e21b611520565b506000908152600660205260409020546001600160a01b031690565b81601454610100900460ff1615610892576108928161152a565b61089c838361156e565b505050565b6040518060800160405280604381526020016121c76043913981565b826001600160a01b03811633146108e757601454610100900460ff16156108e7576108e73361152a565b6108f284848461157a565b50505050565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161096d5750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061098c906001600160601b031687611f7d565b6109969190611f94565b915196919550909350505050565b6109ac61137b565b600f55565b6109b961137b565b80600e5403610a285760405162461bcd60e51b815260206004820152603060248201527f4e6577204d61784d696e746c696d6974206973207468652073616d652061732060448201526f746865206578697374696e67206f6e6560801b60648201526084015b60405180910390fd5b600e55565b610a3561137b565b6040514790339082156108fc029083906000818181858888f193505050501580156107a7573d6000803e3d6000fd5b826001600160a01b0381163314610a8e57601454610100900460ff1615610a8e57610a8e3361152a565b6108f28484846116df565b610aa161137b565b60126107a78282612004565b600061078f826116fa565b60128054610ac590611f2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610af190611f2d565b8015610b3e5780601f10610b1357610100808354040283529160200191610b3e565b820191906000526020600020905b815481529060010190602001808311610b2157829003601f168201915b505050505081565b60006001600160a01b038216610b6657610b666323d3ad8160e21b611520565b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b9461137b565b610b9e600061179b565b565b610ba861137b565b6000610bbb600154600054036000190190565b9050600d548110610bde5760405162461bcd60e51b8152600401610a1f906120c4565b600d54610beb83836120f0565b1115610c395760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420776f756c6420657863656564206d617820746f6b656e73000000006044820152606401610a1f565b6107a733836117ed565b610c4b61137b565b6000610c5e600154600054036000190190565b9050600d548110610c815760405162461bcd60e51b8152600401610a1f906120c4565b600d54610c8e83836120f0565b1115610cdc5760405162461bcd60e51b815260206004820152601f60248201527f41697264726f7020776f756c6420657863656564206d617820746f6b656e73006044820152606401610a1f565b61089c83836117ed565b610cee61137b565b601155565b6060600380546107ba90611f2d565b6000610d15600154600054036000190190565b9050600d548110610d385760405162461bcd60e51b8152600401610a1f906120c4565b60145460ff16610d955760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420746f6b656044820152616e7360f01b6064820152608401610a1f565b600d54610da283836120f0565b1115610df05760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610a1f565b336000908152600560205260408082205467ffffffffffffffff911c169050600e54831115610e735760405162461bcd60e51b815260206004820152602960248201527f507572636861736520776f756c6420657863656564206d61782070657220747260448201526830b739b0b1ba34b7b760b91b6064820152608401610a1f565b601054610e8084836120f0565b1115610eda5760405162461bcd60e51b8152602060048201526024808201527f507572636861736520776f756c6420657863656564206d6178207065722077616044820152631b1b195d60e21b6064820152608401610a1f565b600f548210610f3c57600c54610ef09084611f7d565b3414610f375760405162461bcd60e51b8152602060048201526016602482015275088d2c8dc4ee840e6cadcc840cadcdeeaced0408aa8960531b6044820152606401610a1f565b610f9d565b600c54601154610f4c9085612103565b610f569190611f7d565b3414610f9d5760405162461bcd60e51b8152602060048201526016602482015275088d2c8dc4ee840e6cadcc840cadcdeeaced0408aa8960531b6044820152606401610a1f565b61089c3384611807565b81601454610100900460ff1615610fc157610fc18161152a565b61089c83836118c6565b610fd361137b565b610b9e6000600955565b610fe561137b565b601480549115156101000261ff0019909216919091179055565b836001600160a01b038116331461102957601454610100900460ff1615611029576110293361152a565b61103585858585611932565b5050505050565b60138054610ac590611f2d565b6060611054826114d2565b6110b95760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610a1f565b60006110c361196d565b905060008151116110e3576040518060200160405280600081525061110e565b806110ed8461197c565b6040516020016110fe929190612116565b6040516020818303038152906040525b9392505050565b61111d61137b565b6014805460ff1916911515919091179055565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c1661078f565b61116361137b565b80601054036111d25760405162461bcd60e51b815260206004820152603560248201527f4e6577204d617850657257616c6c65746c696d6974206973207468652073616d6044820152746520617320746865206578697374696e67206f6e6560581b6064820152608401610a1f565b601055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61120d61137b565b6000811161127a5760405162461bcd60e51b815260206004820152603460248201527f54686520636f7374206f66206d696e74696e67206120746f6b656e2073686f7560448201527306c642062652067726561746572207468616e20360641b6064820152608401610a1f565b600c55565b61128761137b565b6001600160a01b0381166112ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1f565b6112f58161179b565b50565b60006301ffc9a760e01b6001600160e01b03198316148061132957506380ac58cd60e01b6001600160e01b03198316145b8061078f5750506001600160e01b031916635b5e139f60e01b1490565b60006001600160e01b0319821663152a902d60e11b148061078f57506301ffc9a760e01b6001600160e01b031983161461078f565b6008546001600160a01b03163314610b9e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a1f565b6127106001600160601b03821611156114435760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610a1f565b6001600160a01b0382166114995760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a1f565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b60008160011161151b5760005482101561151b5760005b50600082815260046020526040812054908190036115115761150a83612155565b92506114e9565b600160e01b161590505b919050565b8060005260046000fd5b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611566573d6000803e3d6000fd5b6000603a5250565b6107a7828260016119c0565b6000611585826116fa565b6001600160a01b0394851694909150811684146115ab576115ab62a1148160e81b611520565b60008281526006602052604090208054338082146001600160a01b038816909114176115ef576115db86336111d7565b6115ef576115ef632ce44b5f60e11b611520565b80156115fa57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361168c5760018401600081815260046020526040812054900361168a57600054811461168a5760008181526004602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4806000036116d6576116d6633a954ecd60e21b611520565b50505050505050565b61089c83838360405180602001604052806000815250610fff565b60008160011161178b57506000818152600460205260408120549081900361177857600054821061173557611735636f96cda160e11b611520565b5b5060001901600081815260046020526040902054801561173657600160e01b811660000361176357919050565b611773636f96cda160e11b611520565b611736565b600160e01b811660000361178b57919050565b61151b636f96cda160e11b611520565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107a7828260405180602001604052806000815250611a63565b60008054908290036118235761182363b562e8dd60e01b611520565b60008181526004602090815260408083206001600160a01b0387164260a01b6001881460e11b1781179091558084526005909252822080546801000000000000000186020190559081900361188157611881622e076360e81b611520565b818301825b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4818160010191508103611886575060005550505050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61193d8484846108bd565b6001600160a01b0383163b156108f25761195984848484611ac5565b6108f2576108f26368d2bf6b60e11b611520565b6060601280546107ba90611f2d565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806119965750819003601f19909101908152919050565b60006119cb83610aad565b90508180156119e35750336001600160a01b03821614155b15611a06576119f281336111d7565b611a0657611a066367d9dca160e11b611520565b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b611a6d8383611807565b6001600160a01b0383163b1561089c576000548281035b611a976000868380600101945086611ac5565b611aab57611aab6368d2bf6b60e11b611520565b818110611a84578160005414611035576110356000611520565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611afa90339089908890889060040161216c565b6020604051808303816000875af1925050508015611b35575060408051601f3d908101601f19168201909252611b32918101906121a9565b60015b611b8a573d808015611b63576040519150601f19603f3d011682016040523d82523d6000602084013e611b68565b606091505b508051600003611b8257611b826368d2bf6b60e11b611520565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6001600160e01b0319811681146112f557600080fd5b600060208284031215611bd057600080fd5b813561110e81611ba8565b80356001600160a01b038116811461151b57600080fd5b60008060408385031215611c0557600080fd5b611c0e83611bdb565b915060208301356001600160601b0381168114611c2a57600080fd5b809150509250929050565b60005b83811015611c50578181015183820152602001611c38565b50506000910152565b60008151808452611c71816020860160208601611c35565b601f01601f19169290920160200192915050565b60208152600061110e6020830184611c59565b600060208284031215611caa57600080fd5b5035919050565b60008060408385031215611cc457600080fd5b611ccd83611bdb565b946020939093013593505050565b600080600060608486031215611cf057600080fd5b611cf984611bdb565b9250611d0760208501611bdb565b9150604084013590509250925092565b60008060408385031215611d2a57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d6a57611d6a611d39565b604051601f8501601f19908116603f01168101908282118183101715611d9257611d92611d39565b81604052809350858152868686011115611dab57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611dd757600080fd5b813567ffffffffffffffff811115611dee57600080fd5b8201601f81018413611dff57600080fd5b611ba084823560208401611d4f565b600060208284031215611e2057600080fd5b61110e82611bdb565b8035801515811461151b57600080fd5b60008060408385031215611e4c57600080fd5b611e5583611bdb565b9150611e6360208401611e29565b90509250929050565b600060208284031215611e7e57600080fd5b61110e82611e29565b60008060008060808587031215611e9d57600080fd5b611ea685611bdb565b9350611eb460208601611bdb565b925060408501359150606085013567ffffffffffffffff811115611ed757600080fd5b8501601f81018713611ee857600080fd5b611ef787823560208401611d4f565b91505092959194509250565b60008060408385031215611f1657600080fd5b611f1f83611bdb565b9150611e6360208401611bdb565b600181811c90821680611f4157607f821691505b602082108103611f6157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761078f5761078f611f67565b600082611fb157634e487b7160e01b600052601260045260246000fd5b500490565b601f82111561089c57600081815260208120601f850160051c81016020861015611fdd5750805b601f850160051c820191505b81811015611ffc57828155600101611fe9565b505050505050565b815167ffffffffffffffff81111561201e5761201e611d39565b6120328161202c8454611f2d565b84611fb6565b602080601f831160018114612067576000841561204f5750858301515b600019600386901b1c1916600185901b178555611ffc565b600085815260208120601f198616915b8281101561209657888601518255948401946001909101908401612077565b50858210156120b45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526012908201527110dd5c9c995b9d1b1e481cdbdb19081bdd5d60721b604082015260600190565b8082018082111561078f5761078f611f67565b8181038181111561078f5761078f611f67565b60008351612128818460208801611c35565b83519083019061213c818360208801611c35565b64173539b7b760d91b9101908152600501949350505050565b60008161216457612164611f67565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061219f90830184611c59565b9695505050505050565b6000602082840312156121bb57600080fd5b815161110e81611ba856fe697066733a2f2f6261667962656966786775633672756a746e326a706a34626b3470747878696b71376461326d6c727175766367786967707a6234366170646c64342fa264697066735822122008cffe92ed0d1a09c46d133cd480bc1797ae8cec80dd98ac3facbd5a9c35780e64736f6c63430008120033697066733a2f2f6261667962656966786775633672756a746e326a706a34626b3470747878696b71376461326d6c727175766367786967707a6234366170646c64342f

Deployed Bytecode

0x6080604052600436106102675760003560e01c80638ba4cc3c11610144578063c6682862116100b6578063dd2687661161007a578063dd268766146106c0578063e268e4d3146106d6578063e985e9c5146106f6578063eddd0d9c14610716578063f2fde38b14610736578063fb796e6c1461075657600080fd5b8063c668286214610635578063c87b56dd1461064a578063d19653fb1461066a578063d5abeb011461068a578063dc33e681146106a057600080fd5b8063a0712d6811610108578063a0712d68146105a4578063a22cb465146105b7578063aa1b103f146105d7578063b7c0b8e8146105ec578063b7f9590f1461060c578063b88d4fde1461062257600080fd5b80638ba4cc3c1461051b5780638bec1c6d1461053b5780638da5cb5b1461055157806392910eec1461056f57806395d89b411461058f57600080fd5b80632cb4788d116101dd57806355f804b3116101a157806355f804b3146104715780636352211e146104915780636c0360eb146104b157806370a08231146104c6578063715018a6146104e6578063819b25ba146104fb57600080fd5b80632cb4788d146103ef5780632e6cebe51461040f5780633ccfd60b1461042f57806342842e0e14610444578063471a42941461045757600080fd5b8063095ea7b31161022f578063095ea7b31461034157806313faede61461035457806318160ddd1461036a5780631de18b361461038857806323b872dd1461039d5780632a55205a146103b057600080fd5b806301ffc9a71461026c57806304634d8d146102a1578063056886b0146102c357806306fdde03146102e7578063081812fc14610309575b600080fd5b34801561027857600080fd5b5061028c610287366004611bbe565b610775565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004611bf2565b610795565b005b3480156102cf57600080fd5b506102d9600f5481565b604051908152602001610298565b3480156102f357600080fd5b506102fc6107ab565b6040516102989190611c85565b34801561031557600080fd5b50610329610324366004611c98565b61083d565b6040516001600160a01b039091168152602001610298565b6102c161034f366004611cb1565b610878565b34801561036057600080fd5b506102d9600c5481565b34801561037657600080fd5b506102d9600154600054036000190190565b34801561039457600080fd5b506102fc6108a1565b6102c16103ab366004611cdb565b6108bd565b3480156103bc57600080fd5b506103d06103cb366004611d17565b6108f8565b604080516001600160a01b039093168352602083019190915201610298565b3480156103fb57600080fd5b506102c161040a366004611c98565b6109a4565b34801561041b57600080fd5b506102c161042a366004611c98565b6109b1565b34801561043b57600080fd5b506102c1610a2d565b6102c1610452366004611cdb565b610a64565b34801561046357600080fd5b5060145461028c9060ff1681565b34801561047d57600080fd5b506102c161048c366004611dc5565b610a99565b34801561049d57600080fd5b506103296104ac366004611c98565b610aad565b3480156104bd57600080fd5b506102fc610ab8565b3480156104d257600080fd5b506102d96104e1366004611e0e565b610b46565b3480156104f257600080fd5b506102c1610b8c565b34801561050757600080fd5b506102c1610516366004611c98565b610ba0565b34801561052757600080fd5b506102c1610536366004611cb1565b610c43565b34801561054757600080fd5b506102d960105481565b34801561055d57600080fd5b506008546001600160a01b0316610329565b34801561057b57600080fd5b506102c161058a366004611c98565b610ce6565b34801561059b57600080fd5b506102fc610cf3565b6102c16105b2366004611c98565b610d02565b3480156105c357600080fd5b506102c16105d2366004611e39565b610fa7565b3480156105e357600080fd5b506102c1610fcb565b3480156105f857600080fd5b506102c1610607366004611e6c565b610fdd565b34801561061857600080fd5b506102d9600e5481565b6102c1610630366004611e87565b610fff565b34801561064157600080fd5b506102fc61103c565b34801561065657600080fd5b506102fc610665366004611c98565b611049565b34801561067657600080fd5b506102c1610685366004611e6c565b611115565b34801561069657600080fd5b506102d9600d5481565b3480156106ac57600080fd5b506102d96106bb366004611e0e565b611130565b3480156106cc57600080fd5b506102d960115481565b3480156106e257600080fd5b506102c16106f1366004611c98565b61115b565b34801561070257600080fd5b5061028c610711366004611f03565b6111d7565b34801561072257600080fd5b506102c1610731366004611c98565b611205565b34801561074257600080fd5b506102c1610751366004611e0e565b61127f565b34801561076257600080fd5b5060145461028c90610100900460ff1681565b6000610780826112f8565b8061078f575061078f82611346565b92915050565b61079d61137b565b6107a782826113d5565b5050565b6060600280546107ba90611f2d565b80601f01602080910402602001604051908101604052809291908181526020018280546107e690611f2d565b80156108335780601f1061080857610100808354040283529160200191610833565b820191906000526020600020905b81548152906001019060200180831161081657829003601f168201915b5050505050905090565b6000610848826114d2565b61085c5761085c6333d1c03960e21b611520565b506000908152600660205260409020546001600160a01b031690565b81601454610100900460ff1615610892576108928161152a565b61089c838361156e565b505050565b6040518060800160405280604381526020016121c76043913981565b826001600160a01b03811633146108e757601454610100900460ff16156108e7576108e73361152a565b6108f284848461157a565b50505050565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161096d5750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061098c906001600160601b031687611f7d565b6109969190611f94565b915196919550909350505050565b6109ac61137b565b600f55565b6109b961137b565b80600e5403610a285760405162461bcd60e51b815260206004820152603060248201527f4e6577204d61784d696e746c696d6974206973207468652073616d652061732060448201526f746865206578697374696e67206f6e6560801b60648201526084015b60405180910390fd5b600e55565b610a3561137b565b6040514790339082156108fc029083906000818181858888f193505050501580156107a7573d6000803e3d6000fd5b826001600160a01b0381163314610a8e57601454610100900460ff1615610a8e57610a8e3361152a565b6108f28484846116df565b610aa161137b565b60126107a78282612004565b600061078f826116fa565b60128054610ac590611f2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610af190611f2d565b8015610b3e5780601f10610b1357610100808354040283529160200191610b3e565b820191906000526020600020905b815481529060010190602001808311610b2157829003601f168201915b505050505081565b60006001600160a01b038216610b6657610b666323d3ad8160e21b611520565b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b9461137b565b610b9e600061179b565b565b610ba861137b565b6000610bbb600154600054036000190190565b9050600d548110610bde5760405162461bcd60e51b8152600401610a1f906120c4565b600d54610beb83836120f0565b1115610c395760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420776f756c6420657863656564206d617820746f6b656e73000000006044820152606401610a1f565b6107a733836117ed565b610c4b61137b565b6000610c5e600154600054036000190190565b9050600d548110610c815760405162461bcd60e51b8152600401610a1f906120c4565b600d54610c8e83836120f0565b1115610cdc5760405162461bcd60e51b815260206004820152601f60248201527f41697264726f7020776f756c6420657863656564206d617820746f6b656e73006044820152606401610a1f565b61089c83836117ed565b610cee61137b565b601155565b6060600380546107ba90611f2d565b6000610d15600154600054036000190190565b9050600d548110610d385760405162461bcd60e51b8152600401610a1f906120c4565b60145460ff16610d955760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420746f6b656044820152616e7360f01b6064820152608401610a1f565b600d54610da283836120f0565b1115610df05760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610a1f565b336000908152600560205260408082205467ffffffffffffffff911c169050600e54831115610e735760405162461bcd60e51b815260206004820152602960248201527f507572636861736520776f756c6420657863656564206d61782070657220747260448201526830b739b0b1ba34b7b760b91b6064820152608401610a1f565b601054610e8084836120f0565b1115610eda5760405162461bcd60e51b8152602060048201526024808201527f507572636861736520776f756c6420657863656564206d6178207065722077616044820152631b1b195d60e21b6064820152608401610a1f565b600f548210610f3c57600c54610ef09084611f7d565b3414610f375760405162461bcd60e51b8152602060048201526016602482015275088d2c8dc4ee840e6cadcc840cadcdeeaced0408aa8960531b6044820152606401610a1f565b610f9d565b600c54601154610f4c9085612103565b610f569190611f7d565b3414610f9d5760405162461bcd60e51b8152602060048201526016602482015275088d2c8dc4ee840e6cadcc840cadcdeeaced0408aa8960531b6044820152606401610a1f565b61089c3384611807565b81601454610100900460ff1615610fc157610fc18161152a565b61089c83836118c6565b610fd361137b565b610b9e6000600955565b610fe561137b565b601480549115156101000261ff0019909216919091179055565b836001600160a01b038116331461102957601454610100900460ff1615611029576110293361152a565b61103585858585611932565b5050505050565b60138054610ac590611f2d565b6060611054826114d2565b6110b95760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610a1f565b60006110c361196d565b905060008151116110e3576040518060200160405280600081525061110e565b806110ed8461197c565b6040516020016110fe929190612116565b6040516020818303038152906040525b9392505050565b61111d61137b565b6014805460ff1916911515919091179055565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c1661078f565b61116361137b565b80601054036111d25760405162461bcd60e51b815260206004820152603560248201527f4e6577204d617850657257616c6c65746c696d6974206973207468652073616d6044820152746520617320746865206578697374696e67206f6e6560581b6064820152608401610a1f565b601055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61120d61137b565b6000811161127a5760405162461bcd60e51b815260206004820152603460248201527f54686520636f7374206f66206d696e74696e67206120746f6b656e2073686f7560448201527306c642062652067726561746572207468616e20360641b6064820152608401610a1f565b600c55565b61128761137b565b6001600160a01b0381166112ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1f565b6112f58161179b565b50565b60006301ffc9a760e01b6001600160e01b03198316148061132957506380ac58cd60e01b6001600160e01b03198316145b8061078f5750506001600160e01b031916635b5e139f60e01b1490565b60006001600160e01b0319821663152a902d60e11b148061078f57506301ffc9a760e01b6001600160e01b031983161461078f565b6008546001600160a01b03163314610b9e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a1f565b6127106001600160601b03821611156114435760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610a1f565b6001600160a01b0382166114995760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a1f565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b60008160011161151b5760005482101561151b5760005b50600082815260046020526040812054908190036115115761150a83612155565b92506114e9565b600160e01b161590505b919050565b8060005260046000fd5b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611566573d6000803e3d6000fd5b6000603a5250565b6107a7828260016119c0565b6000611585826116fa565b6001600160a01b0394851694909150811684146115ab576115ab62a1148160e81b611520565b60008281526006602052604090208054338082146001600160a01b038816909114176115ef576115db86336111d7565b6115ef576115ef632ce44b5f60e11b611520565b80156115fa57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361168c5760018401600081815260046020526040812054900361168a57600054811461168a5760008181526004602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4806000036116d6576116d6633a954ecd60e21b611520565b50505050505050565b61089c83838360405180602001604052806000815250610fff565b60008160011161178b57506000818152600460205260408120549081900361177857600054821061173557611735636f96cda160e11b611520565b5b5060001901600081815260046020526040902054801561173657600160e01b811660000361176357919050565b611773636f96cda160e11b611520565b611736565b600160e01b811660000361178b57919050565b61151b636f96cda160e11b611520565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107a7828260405180602001604052806000815250611a63565b60008054908290036118235761182363b562e8dd60e01b611520565b60008181526004602090815260408083206001600160a01b0387164260a01b6001881460e11b1781179091558084526005909252822080546801000000000000000186020190559081900361188157611881622e076360e81b611520565b818301825b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4818160010191508103611886575060005550505050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61193d8484846108bd565b6001600160a01b0383163b156108f25761195984848484611ac5565b6108f2576108f26368d2bf6b60e11b611520565b6060601280546107ba90611f2d565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806119965750819003601f19909101908152919050565b60006119cb83610aad565b90508180156119e35750336001600160a01b03821614155b15611a06576119f281336111d7565b611a0657611a066367d9dca160e11b611520565b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b611a6d8383611807565b6001600160a01b0383163b1561089c576000548281035b611a976000868380600101945086611ac5565b611aab57611aab6368d2bf6b60e11b611520565b818110611a84578160005414611035576110356000611520565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611afa90339089908890889060040161216c565b6020604051808303816000875af1925050508015611b35575060408051601f3d908101601f19168201909252611b32918101906121a9565b60015b611b8a573d808015611b63576040519150601f19603f3d011682016040523d82523d6000602084013e611b68565b606091505b508051600003611b8257611b826368d2bf6b60e11b611520565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6001600160e01b0319811681146112f557600080fd5b600060208284031215611bd057600080fd5b813561110e81611ba8565b80356001600160a01b038116811461151b57600080fd5b60008060408385031215611c0557600080fd5b611c0e83611bdb565b915060208301356001600160601b0381168114611c2a57600080fd5b809150509250929050565b60005b83811015611c50578181015183820152602001611c38565b50506000910152565b60008151808452611c71816020860160208601611c35565b601f01601f19169290920160200192915050565b60208152600061110e6020830184611c59565b600060208284031215611caa57600080fd5b5035919050565b60008060408385031215611cc457600080fd5b611ccd83611bdb565b946020939093013593505050565b600080600060608486031215611cf057600080fd5b611cf984611bdb565b9250611d0760208501611bdb565b9150604084013590509250925092565b60008060408385031215611d2a57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d6a57611d6a611d39565b604051601f8501601f19908116603f01168101908282118183101715611d9257611d92611d39565b81604052809350858152868686011115611dab57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611dd757600080fd5b813567ffffffffffffffff811115611dee57600080fd5b8201601f81018413611dff57600080fd5b611ba084823560208401611d4f565b600060208284031215611e2057600080fd5b61110e82611bdb565b8035801515811461151b57600080fd5b60008060408385031215611e4c57600080fd5b611e5583611bdb565b9150611e6360208401611e29565b90509250929050565b600060208284031215611e7e57600080fd5b61110e82611e29565b60008060008060808587031215611e9d57600080fd5b611ea685611bdb565b9350611eb460208601611bdb565b925060408501359150606085013567ffffffffffffffff811115611ed757600080fd5b8501601f81018713611ee857600080fd5b611ef787823560208401611d4f565b91505092959194509250565b60008060408385031215611f1657600080fd5b611f1f83611bdb565b9150611e6360208401611bdb565b600181811c90821680611f4157607f821691505b602082108103611f6157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761078f5761078f611f67565b600082611fb157634e487b7160e01b600052601260045260246000fd5b500490565b601f82111561089c57600081815260208120601f850160051c81016020861015611fdd5750805b601f850160051c820191505b81811015611ffc57828155600101611fe9565b505050505050565b815167ffffffffffffffff81111561201e5761201e611d39565b6120328161202c8454611f2d565b84611fb6565b602080601f831160018114612067576000841561204f5750858301515b600019600386901b1c1916600185901b178555611ffc565b600085815260208120601f198616915b8281101561209657888601518255948401946001909101908401612077565b50858210156120b45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526012908201527110dd5c9c995b9d1b1e481cdbdb19081bdd5d60721b604082015260600190565b8082018082111561078f5761078f611f67565b8181038181111561078f5761078f611f67565b60008351612128818460208801611c35565b83519083019061213c818360208801611c35565b64173539b7b760d91b9101908152600501949350505050565b60008161216457612164611f67565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061219f90830184611c59565b9695505050505050565b6000602082840312156121bb57600080fd5b815161110e81611ba856fe697066733a2f2f6261667962656966786775633672756a746e326a706a34626b3470747878696b71376461326d6c727175766367786967707a6234366170646c64342fa264697066735822122008cffe92ed0d1a09c46d133cd480bc1797ae8cec80dd98ac3facbd5a9c35780e64736f6c63430008120033

Deployed Bytecode Sourcemap

72915:7139:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76546:266;;;;;;;;;;-1:-1:-1;76546:266:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;76546:266:0;;;;;;;;79808:144;;;;;;;;;;-1:-1:-1;79808:144:0;;;;;:::i;:::-;;:::i;:::-;;73142:37;;;;;;;;;;;;;;;;;;;1287:25:1;;;1275:2;1260:18;73142:37:0;1141:177:1;19355:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26389:227::-;;;;;;;;;;-1:-1:-1;26389:227:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2428:32:1;;;2410:51;;2398:2;2383:18;26389:227:0;2264:203:1;76348:190:0;;;;;;:::i;:::-;;:::i;73016:33::-;;;;;;;;;;;;;;;;15097:323;;;;;;;;;;;;75961:1;15371:12;15158:7;15355:13;:28;-1:-1:-1;;15355:46:0;;15097:323;73513:107;;;;;;;;;;;;;:::i;76860:205::-;;;;;;:::i;:::-;;:::i;61416:438::-;;;;;;;;;;-1:-1:-1;61416:438:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3509:32:1;;;3491:51;;3573:2;3558:18;;3551:34;;;;3464:18;61416:438:0;3317:274:1;79668:132:0;;;;;;;;;;-1:-1:-1;79668:132:0;;;;;:::i;:::-;;:::i;78511:240::-;;;;;;;;;;-1:-1:-1;78511:240:0;;;;;:::i;:::-;;:::i;79185:140::-;;;;;;;;;;;;;:::i;77073:213::-;;;;;;:::i;:::-;;:::i;73338:32::-;;;;;;;;;;-1:-1:-1;73338:32:0;;;;;;;;79440:104;;;;;;;;;;-1:-1:-1;79440:104:0;;;;;:::i;:::-;;:::i;20757:152::-;;;;;;;;;;-1:-1:-1;20757:152:0;;;;;:::i;:::-;;:::i;73264:21::-;;;;;;;;;;;;;:::i;16281:242::-;;;;;;;;;;-1:-1:-1;16281:242:0;;;;;:::i;:::-;;:::i;56373:103::-;;;;;;;;;;;;;:::i;77872:300::-;;;;;;;;;;-1:-1:-1;77872:300:0;;;;;:::i;:::-;;:::i;78180:323::-;;;;;;;;;;-1:-1:-1;78180:323:0;;;;;:::i;:::-;;:::i;73186:33::-;;;;;;;;;;;;;;;;55732:87;;;;;;;;;;-1:-1:-1;55805:6:0;;-1:-1:-1;;;;;55805:6:0;55732:87;;79552:108;;;;;;;;;;-1:-1:-1;79552:108:0;;;;;:::i;:::-;;:::i;19531:104::-;;;;;;;;;;;;;:::i;73878:1154::-;;;;;;:::i;:::-;;:::i;76139:201::-;;;;;;;;;;-1:-1:-1;76139:201:0;;;;;:::i;:::-;;:::i;79960:91::-;;;;;;;;;;;;;:::i;77588:117::-;;;;;;;;;;-1:-1:-1;77588:117:0;;;;;:::i;:::-;;:::i;73094:41::-;;;;;;;;;;;;;;;;77294:247;;;;;;:::i;:::-;;:::i;73292:37::-;;;;;;;;;;;;;:::i;75080:637::-;;;;;;;;;;-1:-1:-1;75080:637:0;;;;;:::i;:::-;;:::i;79333:99::-;;;;;;;;;;-1:-1:-1;79333:99:0;;;;;:::i;:::-;;:::i;73056:31::-;;;;;;;;;;;;;;;;75978:113;;;;;;;;;;-1:-1:-1;75978:113:0;;;;;:::i;:::-;;:::i;73226:29::-;;;;;;;;;;;;;;;;78759:233;;;;;;;;;;-1:-1:-1;78759:233:0;;;;;:::i;:::-;;:::i;27347:164::-;;;;;;;;;;-1:-1:-1;27347:164:0;;;;;:::i;:::-;;:::i;79000:177::-;;;;;;;;;;-1:-1:-1;79000:177:0;;;;;:::i;:::-;;:::i;56631:201::-;;;;;;;;;;-1:-1:-1;56631:201:0;;;;;:::i;:::-;;:::i;73377:43::-;;;;;;;;;;-1:-1:-1;73377:43:0;;;;;;;;;;;76546:266;76674:4;76711:38;76737:11;76711:25;:38::i;:::-;:93;;;;76766:38;76792:11;76766:25;:38::i;:::-;76691:113;76546:266;-1:-1:-1;;76546:266:0:o;79808:144::-;55618:13;:11;:13::i;:::-;79902:42:::1;79921:8;79931:12;79902:18;:42::i;:::-;79808:144:::0;;:::o;19355:100::-;19409:13;19442:5;19435:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19355:100;:::o;26389:227::-;26465:7;26490:16;26498:7;26490;:16::i;:::-;26485:73;;26508:50;-1:-1:-1;;;26508:7:0;:50::i;:::-;-1:-1:-1;26578:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;26578:30:0;;26389:227::o;76348:190::-;76477:8;77806:24;;;;;;;70682:59;;;70715:26;70732:8;70715:16;:26::i;:::-;76498:32:::1;76512:8;76522:7;76498:13;:32::i;:::-;76348:190:::0;;;:::o;73513:107::-;;;;;;;;;;;;;;;;;;;:::o;76860:205::-;77003:4;-1:-1:-1;;;;;70271:18:0;;70279:10;70271:18;70267:184;;77806:24;;;;;;;70363:61;;;70396:28;70413:10;70396:16;:28::i;:::-;77020:37:::1;77039:4;77045:2;77049:7;77020:18;:37::i;:::-;76860:205:::0;;;;:::o;61416:438::-;61511:7;61569:26;;;:17;:26;;;;;;;;61540:55;;;;;;;;;-1:-1:-1;;;;;61540:55:0;;;;;-1:-1:-1;;;61540:55:0;;;-1:-1:-1;;;;;61540:55:0;;;;;;;;61511:7;;61608:92;;-1:-1:-1;61659:29:0;;;;;;;;;61669:19;61659:29;-1:-1:-1;;;;;61659:29:0;;;;-1:-1:-1;;;61659:29:0;;-1:-1:-1;;;;;61659:29:0;;;;;61608:92;61749:23;;;;61712:21;;62220:5;;61737:35;;-1:-1:-1;;;;;61737:35:0;:9;:35;:::i;:::-;61736:57;;;;:::i;:::-;61814:16;;;;;-1:-1:-1;61416:438:0;;-1:-1:-1;;;;61416:438:0:o;79668:132::-;55618:13;:11;:13::i;:::-;79754:16:::1;:38:::0;79668:132::o;78511:240::-;55618:13;:11;:13::i;:::-;78629::::1;78604:21;;:38:::0;78596:99:::1;;;::::0;-1:-1:-1;;;78596:99:0;;7672:2:1;78596:99:0::1;::::0;::::1;7654:21:1::0;7711:2;7691:18;;;7684:30;7750:34;7730:18;;;7723:62;-1:-1:-1;;;7801:18:1;;;7794:46;7857:19;;78596:99:0::1;;;;;;;;;78706:21;:37:::0;78511:240::o;79185:140::-;55618:13;:11;:13::i;:::-;79280:37:::1;::::0;79248:21:::1;::::0;79288:10:::1;::::0;79280:37;::::1;;;::::0;79248:21;;79233:12:::1;79280:37:::0;79233:12;79280:37;79248:21;79288:10;79280:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;77073:213:::0;77220:4;-1:-1:-1;;;;;70271:18:0;;70279:10;70271:18;70267:184;;77806:24;;;;;;;70363:61;;;70396:28;70413:10;70396:16;:28::i;:::-;77237:41:::1;77260:4;77266:2;77270:7;77237:22;:41::i;79440:104::-:0;55618:13;:11;:13::i;:::-;79515:7:::1;:21;79525:11:::0;79515:7;:21:::1;:::i;20757:152::-:0;20829:7;20872:27;20891:7;20872:18;:27::i;73264:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16281:242::-;16353:7;-1:-1:-1;;;;;16377:19:0;;16373:69;;16398:44;-1:-1:-1;;;16398:7:0;:44::i;:::-;-1:-1:-1;;;;;;16460:25:0;;;;;:18;:25;;;;;;10440:13;16460:55;;16281:242::o;56373:103::-;55618:13;:11;:13::i;:::-;56438:30:::1;56465:1;56438:18;:30::i;:::-;56373:103::o:0;77872:300::-;55618:13;:11;:13::i;:::-;77940:14:::1;77957:13;75961:1:::0;15371:12;15158:7;15355:13;:28;-1:-1:-1;;15355:46:0;;15097:323;77957:13:::1;77940:30;;77998:9;;77989:6;:18;77981:49;;;;-1:-1:-1::0;;;77981:49:0::1;;;;;;;:::i;:::-;78075:9;::::0;78049:22:::1;78058:13:::0;78049:6;:22:::1;:::i;:::-;:35;;78041:76;;;::::0;-1:-1:-1;;;78041:76:0;;10770:2:1;78041:76:0::1;::::0;::::1;10752:21:1::0;10809:2;10789:18;;;10782:30;10848;10828:18;;;10821:58;10896:18;;78041:76:0::1;10568:352:1::0;78041:76:0::1;78128:36;78138:10;78150:13;78128:9;:36::i;78180:323::-:0;55618:13;:11;:13::i;:::-;78268:14:::1;78285:13;75961:1:::0;15371:12;15158:7;15355:13;:28;-1:-1:-1;;15355:46:0;;15097:323;78285:13:::1;78268:30;;78326:9;;78317:6;:18;78309:49;;;;-1:-1:-1::0;;;78309:49:0::1;;;;;;;:::i;:::-;78403:9;::::0;78377:22:::1;78386:13:::0;78377:6;:22:::1;:::i;:::-;:35;;78369:79;;;::::0;-1:-1:-1;;;78369:79:0;;11127:2:1;78369:79:0::1;::::0;::::1;11109:21:1::0;11166:2;11146:18;;;11139:30;11205:33;11185:18;;;11178:61;11256:18;;78369:79:0::1;10925:355:1::0;78369:79:0::1;78459:36;78469:10;78481:13;78459:9;:36::i;79552:108::-:0;55618:13;:11;:13::i;:::-;79626:10:::1;:26:::0;79552:108::o;19531:104::-;19587:13;19620:7;19613:14;;;;;:::i;73878:1154::-;73941:14;73958:13;75961:1;15371:12;15158:7;15355:13;:28;-1:-1:-1;;15355:46:0;;15097:323;73958:13;73941:30;;74051:9;;74042:6;:18;74034:49;;;;-1:-1:-1;;;74034:49:0;;;;;;;:::i;:::-;74106:12;;;;74098:59;;;;-1:-1:-1;;;74098:59:0;;11487:2:1;74098:59:0;;;11469:21:1;11526:2;11506:18;;;11499:30;11565:34;11545:18;;;11538:62;-1:-1:-1;;;11616:18:1;;;11609:32;11658:19;;74098:59:0;11285:398:1;74098:59:0;74207:9;;74180:23;74189:14;74180:6;:23;:::i;:::-;:36;;74172:81;;;;-1:-1:-1;;;74172:81:0;;11890:2:1;74172:81:0;;;11872:21:1;;;11909:18;;;11902:30;11968:34;11948:18;;;11941:62;12020:18;;74172:81:0;11688:356:1;74172:81:0;74308:10;74266:25;16694;;;:18;:25;;10578:2;16694:25;;;;10440:13;16694:50;;16693:82;74266:53;;74362:21;;74344:14;:39;;74336:93;;;;-1:-1:-1;;;74336:93:0;;12251:2:1;74336:93:0;;;12233:21:1;12290:2;12270:18;;;12263:30;12329:34;12309:18;;;12302:62;-1:-1:-1;;;12380:18:1;;;12373:39;12429:19;;74336:93:0;12049:405:1;74336:93:0;74490:12;;74452:34;74472:14;74452:17;:34;:::i;:::-;:50;;74444:99;;;;-1:-1:-1;;;74444:99:0;;12661:2:1;74444:99:0;;;12643:21:1;12700:2;12680:18;;;12673:30;12739:34;12719:18;;;12712:62;-1:-1:-1;;;12790:18:1;;;12783:34;12834:19;;74444:99:0;12459:400:1;74444:99:0;74574:16;;74564:6;:26;74560:419;;74732:4;;74715:21;;:14;:21;:::i;:::-;74702:9;:34;74694:69;;;;-1:-1:-1;;;74694:69:0;;13066:2:1;74694:69:0;;;13048:21:1;13105:2;13085:18;;;13078:30;-1:-1:-1;;;13124:18:1;;;13117:52;13186:18;;74694:69:0;12864:346:1;74694:69:0;74560:419;;;74932:4;;74918:10;;74901:27;;:14;:27;:::i;:::-;74900:36;;;;:::i;:::-;74887:9;:49;74879:84;;;;-1:-1:-1;;;74879:84:0;;13066:2:1;74879:84:0;;;13048:21:1;13105:2;13085:18;;;13078:30;-1:-1:-1;;;13124:18:1;;;13117:52;13186:18;;74879:84:0;12864:346:1;74879:84:0;74991:33;74997:10;75009:14;74991:5;:33::i;76139:201::-;76268:8;77806:24;;;;;;;70682:59;;;70715:26;70732:8;70715:16;:26::i;:::-;76289:43:::1;76313:8;76323;76289:23;:43::i;79960:91::-:0;55618:13;:11;:13::i;:::-;80020:23:::1;62980:19:::0;;62973:26;62912:95;77588:117;55618:13;:11;:13::i;:::-;77665:24:::1;:32:::0;;;::::1;;;;-1:-1:-1::0;;77665:32:0;;::::1;::::0;;;::::1;::::0;;77588:117::o;77294:247::-;77469:4;-1:-1:-1;;;;;70271:18:0;;70279:10;70271:18;70267:184;;77806:24;;;;;;;70363:61;;;70396:28;70413:10;70396:16;:28::i;:::-;77486:47:::1;77509:4;77515:2;77519:7;77528:4;77486:22;:47::i;:::-;77294:247:::0;;;;;:::o;73292:37::-;;;;;;;:::i;75080:637::-;75198:13;75251:16;75259:7;75251;:16::i;:::-;75229:114;;;;-1:-1:-1;;;75229:114:0;;13550:2:1;75229:114:0;;;13532:21:1;13589:2;13569:18;;;13562:30;13628:34;13608:18;;;13601:62;-1:-1:-1;;;13679:18:1;;;13672:46;13735:19;;75229:114:0;13348:412:1;75229:114:0;75356:28;75387:10;:8;:10::i;:::-;75356:41;;75459:1;75434:14;75428:28;:32;:281;;;;;;;;;;;;;;;;;75552:14;75593:18;75603:7;75593:9;:18::i;:::-;75509:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75428:281;75408:301;75080:637;-1:-1:-1;;;75080:637:0:o;79333:99::-;55618:13;:11;:13::i;:::-;79401:12:::1;:23:::0;;-1:-1:-1;;79401:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;79333:99::o;75978:113::-;-1:-1:-1;;;;;16694:25:0;;76036:7;16694:25;;;:18;:25;;10578:2;16694:25;;;;10440:13;16694:50;;16693:82;76063:20;16605:178;78759:233;55618:13;:11;:13::i;:::-;78864:18:::1;78848:12;;:34:::0;78840:100:::1;;;::::0;-1:-1:-1;;;78840:100:0;;14635:2:1;78840:100:0::1;::::0;::::1;14617:21:1::0;14674:2;14654:18;;;14647:30;14713:34;14693:18;;;14686:62;-1:-1:-1;;;14764:18:1;;;14757:51;14825:19;;78840:100:0::1;14433:417:1::0;78840:100:0::1;78951:12;:33:::0;78759:233::o;27347:164::-;-1:-1:-1;;;;;27468:25:0;;;27444:4;27468:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27347:164::o;79000:177::-;55618:13;:11;:13::i;:::-;79085:1:::1;79074:8;:12;79066:77;;;::::0;-1:-1:-1;;;79066:77:0;;15057:2:1;79066:77:0::1;::::0;::::1;15039:21:1::0;15096:2;15076:18;;;15069:30;15135:34;15115:18;;;15108:62;-1:-1:-1;;;15186:18:1;;;15179:50;15246:19;;79066:77:0::1;14855:416:1::0;79066:77:0::1;79154:4;:15:::0;79000:177::o;56631:201::-;55618:13;:11;:13::i;:::-;-1:-1:-1;;;;;56720:22:0;::::1;56712:73;;;::::0;-1:-1:-1;;;56712:73:0;;15478:2:1;56712:73:0::1;::::0;::::1;15460:21:1::0;15517:2;15497:18;;;15490:30;15556:34;15536:18;;;15529:62;-1:-1:-1;;;15607:18:1;;;15600:36;15653:19;;56712:73:0::1;15276:402:1::0;56712:73:0::1;56796:28;56815:8;56796:18;:28::i;:::-;56631:201:::0;:::o;18453:639::-;18538:4;-1:-1:-1;;;;;;;;;18862:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18939:25:0;;;18862:102;:179;;;-1:-1:-1;;;;;;;;19016:25:0;-1:-1:-1;;;19016:25:0;;18453:639::o;61146:215::-;61248:4;-1:-1:-1;;;;;;61272:41:0;;-1:-1:-1;;;61272:41:0;;:81;;-1:-1:-1;;;;;;;;;;59772:40:0;;;61317:36;59663:157;55897:132;55805:6;;-1:-1:-1;;;;;55805:6:0;54422:10;55961:23;55953:68;;;;-1:-1:-1;;;55953:68:0;;15885:2:1;55953:68:0;;;15867:21:1;;;15904:18;;;15897:30;15963:34;15943:18;;;15936:62;16015:18;;55953:68:0;15683:356:1;62504:332:0;62220:5;-1:-1:-1;;;;;62607:33:0;;;;62599:88;;;;-1:-1:-1;;;62599:88:0;;16246:2:1;62599:88:0;;;16228:21:1;16285:2;16265:18;;;16258:30;16324:34;16304:18;;;16297:62;-1:-1:-1;;;16375:18:1;;;16368:40;16425:19;;62599:88:0;16044:406:1;62599:88:0;-1:-1:-1;;;;;62706:22:0;;62698:60;;;;-1:-1:-1;;;62698:60:0;;16657:2:1;62698:60:0;;;16639:21:1;16696:2;16676:18;;;16669:30;16735:27;16715:18;;;16708:55;16780:18;;62698:60:0;16455:349:1;62698:60:0;62793:35;;;;;;;;;-1:-1:-1;;;;;62793:35:0;;;;;;-1:-1:-1;;;;;62793:35:0;;;;;;;;;;-1:-1:-1;;;62771:57:0;;;;:19;:57;62504:332::o;27769:368::-;27834:11;27881:7;75961:1;27862:26;27858:272;;27919:13;;27909:7;:23;27905:214;;;27953:14;27986:60;-1:-1:-1;28003:26:0;;;;:17;:26;;;;;;;27993:42;;;27986:60;;28037:9;;;:::i;:::-;;;27986:60;;;-1:-1:-1;;;28074:24:0;:29;;-1:-1:-1;27905:214:0;27769:368;;;:::o;53547:165::-;53648:13;53642:4;53635:27;53689:4;53683;53676:18;70869:1359;71262:22;71256:4;71249:36;71355:9;71349:4;71342:23;71430:8;71424:4;71417:22;71607:4;71601;71595;71589;71562:25;71555:5;71544:68;71534:274;;71728:16;71722:4;71716;71701:44;71776:16;71770:4;71763:30;71534:274;72208:1;72202:4;72195:15;70869:1359;:::o;26106:124::-;26195:27;26204:2;26208:7;26217:4;26195:8;:27::i;30123:3523::-;30265:27;30295;30314:7;30295:18;:27::i;:::-;-1:-1:-1;;;;;30450:22:0;;;;30265:57;;-1:-1:-1;30510:45:0;;;;30506:95;;30557:44;-1:-1:-1;;;30557:7:0;:44::i;:::-;30615:27;29231:24;;;:15;:24;;;;;29459:26;;54422:10;28856:30;;;-1:-1:-1;;;;;28549:28:0;;28834:20;;;28831:56;30801:189;;30894:43;30911:4;54422:10;27347:164;:::i;30894:43::-;30889:101;;30939:51;-1:-1:-1;;;30939:7:0;:51::i;:::-;31139:15;31136:160;;;31279:1;31258:19;31251:30;31136:160;-1:-1:-1;;;;;31676:24:0;;;;;;;:18;:24;;;;;;31674:26;;-1:-1:-1;;31674:26:0;;;31745:22;;;;;;;;;31743:24;;-1:-1:-1;31743:24:0;;;25208:11;25183:23;25179:41;25166:63;-1:-1:-1;;;25166:63:0;32038:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;32333:47:0;;:52;;32329:627;;32438:1;32428:11;;32406:19;32561:30;;;:17;:30;;;;;;:35;;32557:384;;32699:13;;32684:11;:28;32680:242;;32846:30;;;;:17;:30;;;;;:52;;;32680:242;32387:569;32329:627;-1:-1:-1;;;;;33088:20:0;;33468:7;33088:20;33398:4;33340:25;33069:16;;33205:299;33529:8;33541:1;33529:13;33525:58;;33544:39;-1:-1:-1;;;33544:7:0;:39::i;:::-;30254:3392;;;;30123:3523;;;:::o;33742:193::-;33888:39;33905:4;33911:2;33915:7;33888:39;;;;;;;;;;;;:16;:39::i;22237:2012::-;22304:14;22354:7;75961:1;22335:26;22331:1853;;-1:-1:-1;22387:26:0;;;;:17;:26;;;;;;;22513:11;;;22509:1292;;22560:13;;22549:7;:24;22545:77;;22575:47;-1:-1:-1;;;22575:7:0;:47::i;:::-;23179:607;-1:-1:-1;;;23275:9:0;23257:28;;;;:17;:28;;;;;;23331:25;;23179:607;23331:25;-1:-1:-1;;;23383:6:0;:24;23411:1;23383:29;23379:48;;22237:2012;;;:::o;23379:48::-;23719:47;-1:-1:-1;;;23719:7:0;:47::i;:::-;23179:607;;22509:1292;-1:-1:-1;;;24128:6:0;:24;24156:1;24128:29;24124:48;;22237:2012;;;:::o;24124:48::-;24194:47;-1:-1:-1;;;24194:7:0;:47::i;56992:191::-;57085:6;;;-1:-1:-1;;;;;57102:17:0;;;-1:-1:-1;;;;;;57102:17:0;;;;;;;57135:40;;57085:6;;;57102:17;57085:6;;57135:40;;57066:16;;57135:40;57055:128;56992:191;:::o;44062:112::-;44139:27;44149:2;44153:8;44139:27;;;;;;;;;;;;:9;:27::i;38186:2305::-;38259:20;38282:13;;;38310;;;38306:53;;38325:34;-1:-1:-1;;;38325:7:0;:34::i;:::-;38872:31;;;;:17;:31;;;;;;;;-1:-1:-1;;;;;25034:28:0;;25208:11;25183:23;25179:41;25652:1;25639:15;;25613:24;25609:46;25176:52;25166:63;;38872:173;;;39263:22;;;:18;:22;;;;;:71;;39301:32;39289:45;;39263:71;;;25034:28;39524:13;;;39520:54;;39539:35;-1:-1:-1;;;39539:7:0;:35::i;:::-;39605:23;;;:12;39690:676;40109:7;40065:8;40020:1;39954:25;39891:1;39826;39795:358;40361:3;40348:9;;;;;;:16;39690:676;;-1:-1:-1;40382:13:0;:19;-1:-1:-1;76348:190:0;;;:::o;26956:234::-;54422:10;27051:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;27051:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;27051:60:0;;;;;;;;;;27127:55;;540:41:1;;;27051:49:0;;54422:10;27127:55;;513:18:1;27127:55:0;;;;;;;26956:234;;:::o;34533:416::-;34708:31;34721:4;34727:2;34731:7;34708:12;:31::i;:::-;-1:-1:-1;;;;;34754:14:0;;;:19;34750:192;;34793:56;34824:4;34830:2;34834:7;34843:5;34793:30;:56::i;:::-;34788:154;;34870:56;-1:-1:-1;;;34870:7:0;:56::i;75761:108::-;75821:13;75854:7;75847:14;;;;;:::i;51735:1745::-;51800:17;52234:4;52227;52221:11;52217:22;52326:1;52320:4;52313:15;52401:4;52398:1;52394:12;52387:19;;;52483:1;52478:3;52471:14;52587:3;52826:5;52808:428;52874:1;52869:3;52865:11;52858:18;;53045:2;53039:4;53035:13;53031:2;53027:22;53022:3;53014:36;53139:2;53129:13;;53196:25;52808:428;53196:25;-1:-1:-1;53266:13:0;;;-1:-1:-1;;53381:14:0;;;53443:19;;;53381:14;51735:1745;-1:-1:-1;51735:1745:0:o;44980:474::-;45109:13;45125:16;45133:7;45125;:16::i;:::-;45109:32;;45158:13;:45;;;;-1:-1:-1;54422:10:0;-1:-1:-1;;;;;45175:28:0;;;;45158:45;45154:201;;;45223:44;45240:5;54422:10;27347:164;:::i;45223:44::-;45218:137;;45288:51;-1:-1:-1;;;45288:7:0;:51::i;:::-;45367:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;45367:35:0;-1:-1:-1;;;;;45367:35:0;;;;;;;;;45418:28;;45367:24;;45418:28;;;;;;;45098:356;44980:474;;;:::o;43270:708::-;43401:19;43407:2;43411:8;43401:5;:19::i;:::-;-1:-1:-1;;;;;43462:14:0;;;:19;43458:502;;43502:11;43516:13;43564:14;;;43597:242;43628:62;43667:1;43671:2;43675:7;;;;;;43684:5;43628:30;:62::i;:::-;43623:176;;43719:56;-1:-1:-1;;;43719:7:0;:56::i;:::-;43834:3;43826:5;:11;43597:242;;43921:3;43904:13;;:20;43900:44;;43926:18;43941:1;43926:7;:18::i;37033:691::-;37217:88;;-1:-1:-1;;;37217:88:0;;37196:4;;-1:-1:-1;;;;;37217:45:0;;;;;:88;;54422:10;;37284:4;;37290:7;;37299:5;;37217:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37217:88:0;;;;;;;;-1:-1:-1;;37217:88:0;;;;;;;;;;;;:::i;:::-;;;37213:504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37500:6;:13;37517:1;37500:18;37496:115;;37539:56;-1:-1:-1;;;37539:7:0;:56::i;:::-;37683:6;37677:13;37668:6;37664:2;37660:15;37653:38;37213:504;-1:-1:-1;;;;;;37376:64:0;-1:-1:-1;;;37376:64:0;;-1:-1:-1;37213:504:0;37033:691;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;770:366;837:6;845;898:2;886:9;877:7;873:23;869:32;866:52;;;914:1;911;904:12;866:52;937:29;956:9;937:29;:::i;:::-;927:39;;1016:2;1005:9;1001:18;988:32;-1:-1:-1;;;;;1053:5:1;1049:38;1042:5;1039:49;1029:77;;1102:1;1099;1092:12;1029:77;1125:5;1115:15;;;770:366;;;;;:::o;1323:250::-;1408:1;1418:113;1432:6;1429:1;1426:13;1418:113;;;1508:11;;;1502:18;1489:11;;;1482:39;1454:2;1447:10;1418:113;;;-1:-1:-1;;1565:1:1;1547:16;;1540:27;1323:250::o;1578:271::-;1620:3;1658:5;1652:12;1685:6;1680:3;1673:19;1701:76;1770:6;1763:4;1758:3;1754:14;1747:4;1740:5;1736:16;1701:76;:::i;:::-;1831:2;1810:15;-1:-1:-1;;1806:29:1;1797:39;;;;1838:4;1793:50;;1578:271;-1:-1:-1;;1578:271:1:o;1854:220::-;2003:2;1992:9;1985:21;1966:4;2023:45;2064:2;2053:9;2049:18;2041:6;2023:45;:::i;2079:180::-;2138:6;2191:2;2179:9;2170:7;2166:23;2162:32;2159:52;;;2207:1;2204;2197:12;2159:52;-1:-1:-1;2230:23:1;;2079:180;-1:-1:-1;2079:180:1:o;2472:254::-;2540:6;2548;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;2640:29;2659:9;2640:29;:::i;:::-;2630:39;2716:2;2701:18;;;;2688:32;;-1:-1:-1;;;2472:254:1:o;2731:328::-;2808:6;2816;2824;2877:2;2865:9;2856:7;2852:23;2848:32;2845:52;;;2893:1;2890;2883:12;2845:52;2916:29;2935:9;2916:29;:::i;:::-;2906:39;;2964:38;2998:2;2987:9;2983:18;2964:38;:::i;:::-;2954:48;;3049:2;3038:9;3034:18;3021:32;3011:42;;2731:328;;;;;:::o;3064:248::-;3132:6;3140;3193:2;3181:9;3172:7;3168:23;3164:32;3161:52;;;3209:1;3206;3199:12;3161:52;-1:-1:-1;;3232:23:1;;;3302:2;3287:18;;;3274:32;;-1:-1:-1;3064:248:1:o;3596:127::-;3657:10;3652:3;3648:20;3645:1;3638:31;3688:4;3685:1;3678:15;3712:4;3709:1;3702:15;3728:632;3793:5;3823:18;3864:2;3856:6;3853:14;3850:40;;;3870:18;;:::i;:::-;3945:2;3939:9;3913:2;3999:15;;-1:-1:-1;;3995:24:1;;;4021:2;3991:33;3987:42;3975:55;;;4045:18;;;4065:22;;;4042:46;4039:72;;;4091:18;;:::i;:::-;4131:10;4127:2;4120:22;4160:6;4151:15;;4190:6;4182;4175:22;4230:3;4221:6;4216:3;4212:16;4209:25;4206:45;;;4247:1;4244;4237:12;4206:45;4297:6;4292:3;4285:4;4277:6;4273:17;4260:44;4352:1;4345:4;4336:6;4328;4324:19;4320:30;4313:41;;;;3728:632;;;;;:::o;4365:451::-;4434:6;4487:2;4475:9;4466:7;4462:23;4458:32;4455:52;;;4503:1;4500;4493:12;4455:52;4543:9;4530:23;4576:18;4568:6;4565:30;4562:50;;;4608:1;4605;4598:12;4562:50;4631:22;;4684:4;4676:13;;4672:27;-1:-1:-1;4662:55:1;;4713:1;4710;4703:12;4662:55;4736:74;4802:7;4797:2;4784:16;4779:2;4775;4771:11;4736:74;:::i;4821:186::-;4880:6;4933:2;4921:9;4912:7;4908:23;4904:32;4901:52;;;4949:1;4946;4939:12;4901:52;4972:29;4991:9;4972:29;:::i;5012:160::-;5077:20;;5133:13;;5126:21;5116:32;;5106:60;;5162:1;5159;5152:12;5177:254;5242:6;5250;5303:2;5291:9;5282:7;5278:23;5274:32;5271:52;;;5319:1;5316;5309:12;5271:52;5342:29;5361:9;5342:29;:::i;:::-;5332:39;;5390:35;5421:2;5410:9;5406:18;5390:35;:::i;:::-;5380:45;;5177:254;;;;;:::o;5436:180::-;5492:6;5545:2;5533:9;5524:7;5520:23;5516:32;5513:52;;;5561:1;5558;5551:12;5513:52;5584:26;5600:9;5584:26;:::i;5621:667::-;5716:6;5724;5732;5740;5793:3;5781:9;5772:7;5768:23;5764:33;5761:53;;;5810:1;5807;5800:12;5761:53;5833:29;5852:9;5833:29;:::i;:::-;5823:39;;5881:38;5915:2;5904:9;5900:18;5881:38;:::i;:::-;5871:48;;5966:2;5955:9;5951:18;5938:32;5928:42;;6021:2;6010:9;6006:18;5993:32;6048:18;6040:6;6037:30;6034:50;;;6080:1;6077;6070:12;6034:50;6103:22;;6156:4;6148:13;;6144:27;-1:-1:-1;6134:55:1;;6185:1;6182;6175:12;6134:55;6208:74;6274:7;6269:2;6256:16;6251:2;6247;6243:11;6208:74;:::i;:::-;6198:84;;;5621:667;;;;;;;:::o;6293:260::-;6361:6;6369;6422:2;6410:9;6401:7;6397:23;6393:32;6390:52;;;6438:1;6435;6428:12;6390:52;6461:29;6480:9;6461:29;:::i;:::-;6451:39;;6509:38;6543:2;6532:9;6528:18;6509:38;:::i;6558:380::-;6637:1;6633:12;;;;6680;;;6701:61;;6755:4;6747:6;6743:17;6733:27;;6701:61;6808:2;6800:6;6797:14;6777:18;6774:38;6771:161;;6854:10;6849:3;6845:20;6842:1;6835:31;6889:4;6886:1;6879:15;6917:4;6914:1;6907:15;6771:161;;6558:380;;;:::o;6943:127::-;7004:10;6999:3;6995:20;6992:1;6985:31;7035:4;7032:1;7025:15;7059:4;7056:1;7049:15;7075:168;7148:9;;;7179;;7196:15;;;7190:22;;7176:37;7166:71;;7217:18;;:::i;7248:217::-;7288:1;7314;7304:132;;7358:10;7353:3;7349:20;7346:1;7339:31;7393:4;7390:1;7383:15;7421:4;7418:1;7411:15;7304:132;-1:-1:-1;7450:9:1;;7248:217::o;8013:545::-;8115:2;8110:3;8107:11;8104:448;;;8151:1;8176:5;8172:2;8165:17;8221:4;8217:2;8207:19;8291:2;8279:10;8275:19;8272:1;8268:27;8262:4;8258:38;8327:4;8315:10;8312:20;8309:47;;;-1:-1:-1;8350:4:1;8309:47;8405:2;8400:3;8396:12;8393:1;8389:20;8383:4;8379:31;8369:41;;8460:82;8478:2;8471:5;8468:13;8460:82;;;8523:17;;;8504:1;8493:13;8460:82;;;8464:3;;;8013:545;;;:::o;8734:1352::-;8860:3;8854:10;8887:18;8879:6;8876:30;8873:56;;;8909:18;;:::i;:::-;8938:97;9028:6;8988:38;9020:4;9014:11;8988:38;:::i;:::-;8982:4;8938:97;:::i;:::-;9090:4;;9154:2;9143:14;;9171:1;9166:663;;;;9873:1;9890:6;9887:89;;;-1:-1:-1;9942:19:1;;;9936:26;9887:89;-1:-1:-1;;8691:1:1;8687:11;;;8683:24;8679:29;8669:40;8715:1;8711:11;;;8666:57;9989:81;;9136:944;;9166:663;7960:1;7953:14;;;7997:4;7984:18;;-1:-1:-1;;9202:20:1;;;9320:236;9334:7;9331:1;9328:14;9320:236;;;9423:19;;;9417:26;9402:42;;9515:27;;;;9483:1;9471:14;;;;9350:19;;9320:236;;;9324:3;9584:6;9575:7;9572:19;9569:201;;;9645:19;;;9639:26;-1:-1:-1;;9728:1:1;9724:14;;;9740:3;9720:24;9716:37;9712:42;9697:58;9682:74;;9569:201;-1:-1:-1;;;;;9816:1:1;9800:14;;;9796:22;9783:36;;-1:-1:-1;8734:1352:1:o;10091:342::-;10293:2;10275:21;;;10332:2;10312:18;;;10305:30;-1:-1:-1;;;10366:2:1;10351:18;;10344:48;10424:2;10409:18;;10091:342::o;10438:125::-;10503:9;;;10524:10;;;10521:36;;;10537:18;;:::i;13215:128::-;13282:9;;;13303:11;;;13300:37;;;13317:18;;:::i;13765:663::-;14045:3;14083:6;14077:13;14099:66;14158:6;14153:3;14146:4;14138:6;14134:17;14099:66;:::i;:::-;14228:13;;14187:16;;;;14250:70;14228:13;14187:16;14297:4;14285:17;;14250:70;:::i;:::-;-1:-1:-1;;;14342:20:1;;14371:22;;;14420:1;14409:13;;13765:663;-1:-1:-1;;;;13765:663:1:o;16809:136::-;16848:3;16876:5;16866:39;;16885:18;;:::i;:::-;-1:-1:-1;;;16921:18:1;;16809:136::o;16950:489::-;-1:-1:-1;;;;;17219:15:1;;;17201:34;;17271:15;;17266:2;17251:18;;17244:43;17318:2;17303:18;;17296:34;;;17366:3;17361:2;17346:18;;17339:31;;;17144:4;;17387:46;;17413:19;;17405:6;17387:46;:::i;:::-;17379:54;16950:489;-1:-1:-1;;;;;;16950:489:1:o;17444:249::-;17513:6;17566:2;17554:9;17545:7;17541:23;17537:32;17534:52;;;17582:1;17579;17572:12;17534:52;17614:9;17608:16;17633:30;17657:5;17633:30;:::i

Swarm Source

ipfs://08cffe92ed0d1a09c46d133cd480bc1797ae8cec80dd98ac3facbd5a9c35780e
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.