ETH Price: $3,387.46 (-1.58%)
Gas: 2 Gwei

Token

Space Invaders Game NFT (SpaceInvadersGame)
 

Overview

Max Total Supply

1,200 SpaceInvadersGame

Holders

958

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SpaceInvadersGame
0xc0b248fb0b763cb823da5e9eb84f77067b425b3a
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:
SpaceInvadersGameNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-26
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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`.
     *
     * 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 calldata data
    ) external;

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary 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 {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex != end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

    /**
     * @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 {}
}
// File: contracts/ERC721AQueryable.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;


error InvalidQueryRange();

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _currentIndex) {
            return ownership;
        }
        ownership = _ownerships[tokenId];
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _currentIndex;
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, _currentIndex)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}
// File: contracts/SpaceInvadersGameNFT.sol



pragma solidity ^0.8.4;




contract SpaceInvadersGameNFT is ERC721A, Ownable {

    string public baseURI = "https://gateway.pinata.cloud/ipfs/QmTucT1BnJxsWTEMfuiQCgtQuyaDncA9m2Tmck5d2tji33/";
    string public constant baseExtension = ".json";
    uint256 public constant MAX_FREE = 1;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant MAX_SUPPLY = 1200;
    uint256 public price = 0.005 ether;

    bool public paused = true;

    struct airDrop {
        address _address;
        uint8 _number;
    }

    constructor() ERC721A("Space Invaders Game NFT", "SpaceInvadersGame") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX >= _amount , "Excess max per paid tx");
        require(_amount * price == msg.value, "Invalid funds provided");

        _safeMint(_caller, _amount);
    }

    function freeMint() external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + 1, "Exceeds max supply");
        require(tx.origin == _caller, "No contracts");
        require(MAX_FREE >= uint256(_getAux(_caller)) + 1, "Excess max per free wallet");

        _setAux(_caller, 1);
        _safeMint(_caller, 1);
    }

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

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function teamMint(uint256 _number) external onlyOwner {
        _safeMint(_msgSender(), _number);
    }

    function giveAirDrop(airDrop[] memory airDropList) external onlyOwner {
        for (uint256 i; i < airDropList.length; i++) {
            _safeMint(airDropList[i]._address, airDropList[i]._number);
        }
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":"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":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","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":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint8","name":"_number","type":"uint8"}],"internalType":"struct SpaceInvadersGameNFT.airDrop[]","name":"airDropList","type":"tuple[]"}],"name":"giveAirDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":"_number","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040526051608081815290620022a560a03980516200002a9160099160209091019062000140565b506611c37937e08000600a55600b805460ff191660011790553480156200005057600080fd5b50604080518082018252601781527f537061636520496e7661646572732047616d65204e46540000000000000000006020808301918252835180850190945260118452705370616365496e76616465727347616d6560781b908401528151919291620000bf9160029162000140565b508051620000d590600390602084019062000140565b5050600160005550620000e833620000ee565b62000223565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014e90620001e6565b90600052602060002090601f016020900481019282620001725760008555620001bd565b82601f106200018d57805160ff1916838001178555620001bd565b82800160010185558215620001bd579182015b82811115620001bd578251825591602001919060010190620001a0565b50620001cb929150620001cf565b5090565b5b80821115620001cb5760008155600101620001d0565b600181811c90821680620001fb57607f821691505b602082108114156200021d57634e487b7160e01b600052602260045260246000fd5b50919050565b61207280620002336000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd1461054f578063e985e9c51461056f578063ed6661c2146105b8578063f2fde38b146105cd578063f43a22dc146105ed57600080fd5b8063a0712d68146104cb578063a22cb465146104de578063b88d4fde146104fe578063c66828621461051e57600080fd5b80638da5cb5b116100dc5780638da5cb5b1461046257806391b7f5ed1461048057806395d89b41146104a0578063a035b1fe146104b557600080fd5b80636352211e146103f85780636c0360eb1461041857806370a082311461042d578063715018a61461044d57600080fd5b806323b872dd1161018557806342842e0e1161015457806342842e0e1461039657806355f804b3146103b65780635b70ea9f146103d65780635c975abb146103de57600080fd5b806323b872dd1461032b5780632fbba1151461034b57806332cb6b0c1461036b5780633ccfd60b1461038157600080fd5b8063095ea7b3116101c1578063095ea7b3146102a457806318160ddd146102c45780631e7269c5146102eb57806322256ae11461030b57600080fd5b806301ffc9a7146101f357806302329a291461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611c8c565b610602565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611c72565b610654565b005b34801561025657600080fd5b5061025f61069a565b60405161021f9190611e4c565b34801561027857600080fd5b5061028c610287366004611d09565b61072c565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611b6b565b610770565b3480156102d057600080fd5b5060015460005403600019015b60405190815260200161021f565b3480156102f757600080fd5b506102dd610306366004611a3c565b6107fe565b34801561031757600080fd5b50610248610326366004611b94565b61082c565b34801561033757600080fd5b50610248610346366004611a8f565b6108db565b34801561035757600080fd5b50610248610366366004611d09565b6108e6565b34801561037757600080fd5b506102dd6104b081565b34801561038d57600080fd5b5061024861091d565b3480156103a257600080fd5b506102486103b1366004611a8f565b6109d2565b3480156103c257600080fd5b506102486103d1366004611cc4565b6109ed565b610248610a2a565b3480156103ea57600080fd5b50600b546102139060ff1681565b34801561040457600080fd5b5061028c610413366004611d09565b610bc5565b34801561042457600080fd5b5061025f610bd7565b34801561043957600080fd5b506102dd610448366004611a3c565b610c65565b34801561045957600080fd5b50610248610cb3565b34801561046e57600080fd5b506008546001600160a01b031661028c565b34801561048c57600080fd5b5061024861049b366004611d09565b610ce9565b3480156104ac57600080fd5b5061025f610d18565b3480156104c157600080fd5b506102dd600a5481565b6102486104d9366004611d09565b610d27565b3480156104ea57600080fd5b506102486104f9366004611b42565b610ef0565b34801561050a57600080fd5b50610248610519366004611aca565b610f86565b34801561052a57600080fd5b5061025f60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561055b57600080fd5b5061025f61056a366004611d09565b610fd7565b34801561057b57600080fd5b5061021361058a366004611a5d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105c457600080fd5b506102dd600181565b3480156105d957600080fd5b506102486105e8366004611a3c565b6110a1565b3480156105f957600080fd5b506102dd600a81565b60006001600160e01b031982166380ac58cd60e01b148061063357506001600160e01b03198216635b5e139f60e01b145b8061064e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106875760405162461bcd60e51b815260040161067e90611e5f565b60405180910390fd5b600b805460ff1916911515919091179055565b6060600280546106a990611f7a565b80601f01602080910402602001604051908101604052809291908181526020018280546106d590611f7a565b80156107225780601f106106f757610100808354040283529160200191610722565b820191906000526020600020905b81548152906001019060200180831161070557829003601f168201915b5050505050905090565b600061073782611139565b610754576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061077b82610bc5565b9050806001600160a01b0316836001600160a01b031614156107b05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107d057506107ce813361058a565b155b156107ee576040516367d9dca160e11b815260040160405180910390fd5b6107f9838383611172565b505050565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b031661064e565b6008546001600160a01b031633146108565760405162461bcd60e51b815260040161067e90611e5f565b60005b81518110156108d7576108c582828151811061088557634e487b7160e01b600052603260045260246000fd5b6020026020010151600001518383815181106108b157634e487b7160e01b600052603260045260246000fd5b60200260200101516020015160ff166111ce565b806108cf81611fb5565b915050610859565b5050565b6107f98383836111e8565b6008546001600160a01b031633146109105760405162461bcd60e51b815260040161067e90611e5f565b61091a33826111ce565b50565b6008546001600160a01b031633146109475760405162461bcd60e51b815260040161067e90611e5f565b6040514790600090339083908381818185875af1925050503d806000811461098b576040519150601f19603f3d011682016040523d82523d6000602084013e610990565b606091505b50509050806108d75760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b604482015260640161067e565b6107f983838360405180602001604052806000815250610f86565b6008546001600160a01b03163314610a175760405162461bcd60e51b815260040161067e90611e5f565b80516108d7906009906020840190611920565b600b54339060ff1615610a685760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b604482015260640161067e565b6001546000540360001901610a7e906001611eec565b6104b01015610ac45760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b604482015260640161067e565b326001600160a01b03821614610b0b5760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b604482015260640161067e565b6001600160a01b038116600090815260056020526040902054610b3f90600160c01b90046001600160401b03166001611eec565b60011015610b8f5760405162461bcd60e51b815260206004820152601a60248201527f457863657373206d61782070657220667265652077616c6c6574000000000000604482015260640161067e565b6001600160a01b038116600090815260056020526040902080546001600160c01b0316600160c01b17905561091a8160016111ce565b6000610bd0826113d5565b5192915050565b60098054610be490611f7a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1090611f7a565b8015610c5d5780601f10610c3257610100808354040283529160200191610c5d565b820191906000526020600020905b815481529060010190602001808311610c4057829003601f168201915b505050505081565b60006001600160a01b038216610c8e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610cdd5760405162461bcd60e51b815260040161067e90611e5f565b610ce760006114fc565b565b6008546001600160a01b03163314610d135760405162461bcd60e51b815260040161067e90611e5f565b600a55565b6060600380546106a990611f7a565b600b54339060ff1615610d655760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b604482015260640161067e565b6001546000548391900360001901610d7d9190611eec565b6104b01015610dc35760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b604482015260640161067e565b60008211610e005760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b604482015260640161067e565b326001600160a01b03821614610e475760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b604482015260640161067e565b81600a1015610e915760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b604482015260640161067e565b34600a5483610ea09190611f18565b14610ee65760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b604482015260640161067e565b6108d781836111ce565b6001600160a01b038216331415610f1a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f918484846111e8565b6001600160a01b0383163b15158015610fb35750610fb18484848461154e565b155b15610fd1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fe282611139565b6110265760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161067e565b60006009805461103590611f7a565b905011611051576040518060200160405280600081525061064e565b600961105c83611646565b60405180604001604052806005815260200164173539b7b760d91b81525060405160200161108c93929190611d69565b60405160208183030381529060405292915050565b6008546001600160a01b031633146110cb5760405162461bcd60e51b815260040161067e90611e5f565b6001600160a01b0381166111305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067e565b61091a816114fc565b60008160011115801561114d575060005482105b801561064e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108d782826040518060200160405280600081525061175f565b60006111f3826113d5565b9050836001600160a01b031681600001516001600160a01b03161461122a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112485750611248853361058a565b806112635750336112588461072c565b6001600160a01b0316145b90508061128357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166112aa57604051633a954ecd60e21b815260040160405180910390fd5b6112b660008487611172565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661138a57600054821461138a57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611405575060005481105b156114e357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114e15780516001600160a01b031615611478579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156114dc579392505050565b611478565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611583903390899088908890600401611e19565b602060405180830381600087803b15801561159d57600080fd5b505af19250505080156115cd575060408051601f3d908101601f191682019092526115ca91810190611ca8565b60015b611628573d8080156115fb576040519150601f19603f3d011682016040523d82523d6000602084013e611600565b606091505b508051611620576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161166a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611694578061167e81611fb5565b915061168d9050600a83611f04565b915061166e565b6000816001600160401b038111156116bc57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116e6576020820181803683370190505b5090505b841561163e576116fb600183611f37565b9150611708600a86611fd0565b611713906030611eec565b60f81b81838151811061173657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611758600a86611f04565b94506116ea565b6000546001600160a01b03841661178857604051622e076360e81b815260040160405180910390fd5b826117a65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156118ca575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611892600087848060010195508761154e565b6118af576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118475782600054146118c557600080fd5b611910565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156118cb575b506000908155610fd19085838684565b82805461192c90611f7a565b90600052602060002090601f01602090048101928261194e5760008555611994565b82601f1061196757805160ff1916838001178555611994565b82800160010185558215611994579182015b82811115611994578251825591602001919060010190611979565b506119a09291506119a4565b5090565b5b808211156119a057600081556001016119a5565b60006001600160401b038311156119d2576119d2612010565b6119e5601f8401601f1916602001611ebc565b90508281528383830111156119f957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a2757600080fd5b919050565b80358015158114611a2757600080fd5b600060208284031215611a4d578081fd5b611a5682611a10565b9392505050565b60008060408385031215611a6f578081fd5b611a7883611a10565b9150611a8660208401611a10565b90509250929050565b600080600060608486031215611aa3578081fd5b611aac84611a10565b9250611aba60208501611a10565b9150604084013590509250925092565b60008060008060808587031215611adf578081fd5b611ae885611a10565b9350611af660208601611a10565b92506040850135915060608501356001600160401b03811115611b17578182fd5b8501601f81018713611b27578182fd5b611b36878235602084016119b9565b91505092959194509250565b60008060408385031215611b54578182fd5b611b5d83611a10565b9150611a8660208401611a2c565b60008060408385031215611b7d578182fd5b611b8683611a10565b946020939093013593505050565b60006020808385031215611ba6578182fd5b82356001600160401b0380821115611bbc578384fd5b818501915085601f830112611bcf578384fd5b813581811115611be157611be1612010565b611bef848260051b01611ebc565b8181528481019250838501600683901b85018601891015611c0e578687fd5b8694505b82851015611c6657604080828b031215611c2a578788fd5b611c32611e94565b611c3b83611a10565b81528783013560ff81168114611c4f57898afd5b818901528552600195909501949386019301611c12565b50979650505050505050565b600060208284031215611c83578081fd5b611a5682611a2c565b600060208284031215611c9d578081fd5b8135611a5681612026565b600060208284031215611cb9578081fd5b8151611a5681612026565b600060208284031215611cd5578081fd5b81356001600160401b03811115611cea578182fd5b8201601f81018413611cfa578182fd5b61163e848235602084016119b9565b600060208284031215611d1a578081fd5b5035919050565b60008151808452611d39816020860160208601611f4e565b601f01601f19169290920160200192915050565b60008151611d5f818560208601611f4e565b9290920192915050565b600080855482600182811c915080831680611d8557607f831692505b6020808410821415611da557634e487b7160e01b87526022600452602487fd5b818015611db95760018114611dca57611df6565b60ff19861689528489019650611df6565b60008c815260209020885b86811015611dee5781548b820152908501908301611dd5565b505084890196505b505050505050611e0f611e098287611d4d565b85611d4d565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e0f90830184611d21565b602081526000611a566020830184611d21565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604080519081016001600160401b0381118282101715611eb657611eb6612010565b60405290565b604051601f8201601f191681016001600160401b0381118282101715611ee457611ee4612010565b604052919050565b60008219821115611eff57611eff611fe4565b500190565b600082611f1357611f13611ffa565b500490565b6000816000190483118215151615611f3257611f32611fe4565b500290565b600082821015611f4957611f49611fe4565b500390565b60005b83811015611f69578181015183820152602001611f51565b83811115610fd15750506000910152565b600181811c90821680611f8e57607f821691505b60208210811415611faf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fc957611fc9611fe4565b5060010190565b600082611fdf57611fdf611ffa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461091a57600080fdfea2646970667358221220fda084b232825f33bd5fe9070ecffaecc138dee0c931cd2203c7fcfa85b07e2e64736f6c6343000804003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5475635431426e4a78735754454d6675695143677451757961446e6341396d32546d636b356432746a6933332f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd1461054f578063e985e9c51461056f578063ed6661c2146105b8578063f2fde38b146105cd578063f43a22dc146105ed57600080fd5b8063a0712d68146104cb578063a22cb465146104de578063b88d4fde146104fe578063c66828621461051e57600080fd5b80638da5cb5b116100dc5780638da5cb5b1461046257806391b7f5ed1461048057806395d89b41146104a0578063a035b1fe146104b557600080fd5b80636352211e146103f85780636c0360eb1461041857806370a082311461042d578063715018a61461044d57600080fd5b806323b872dd1161018557806342842e0e1161015457806342842e0e1461039657806355f804b3146103b65780635b70ea9f146103d65780635c975abb146103de57600080fd5b806323b872dd1461032b5780632fbba1151461034b57806332cb6b0c1461036b5780633ccfd60b1461038157600080fd5b8063095ea7b3116101c1578063095ea7b3146102a457806318160ddd146102c45780631e7269c5146102eb57806322256ae11461030b57600080fd5b806301ffc9a7146101f357806302329a291461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611c8c565b610602565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611c72565b610654565b005b34801561025657600080fd5b5061025f61069a565b60405161021f9190611e4c565b34801561027857600080fd5b5061028c610287366004611d09565b61072c565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611b6b565b610770565b3480156102d057600080fd5b5060015460005403600019015b60405190815260200161021f565b3480156102f757600080fd5b506102dd610306366004611a3c565b6107fe565b34801561031757600080fd5b50610248610326366004611b94565b61082c565b34801561033757600080fd5b50610248610346366004611a8f565b6108db565b34801561035757600080fd5b50610248610366366004611d09565b6108e6565b34801561037757600080fd5b506102dd6104b081565b34801561038d57600080fd5b5061024861091d565b3480156103a257600080fd5b506102486103b1366004611a8f565b6109d2565b3480156103c257600080fd5b506102486103d1366004611cc4565b6109ed565b610248610a2a565b3480156103ea57600080fd5b50600b546102139060ff1681565b34801561040457600080fd5b5061028c610413366004611d09565b610bc5565b34801561042457600080fd5b5061025f610bd7565b34801561043957600080fd5b506102dd610448366004611a3c565b610c65565b34801561045957600080fd5b50610248610cb3565b34801561046e57600080fd5b506008546001600160a01b031661028c565b34801561048c57600080fd5b5061024861049b366004611d09565b610ce9565b3480156104ac57600080fd5b5061025f610d18565b3480156104c157600080fd5b506102dd600a5481565b6102486104d9366004611d09565b610d27565b3480156104ea57600080fd5b506102486104f9366004611b42565b610ef0565b34801561050a57600080fd5b50610248610519366004611aca565b610f86565b34801561052a57600080fd5b5061025f60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561055b57600080fd5b5061025f61056a366004611d09565b610fd7565b34801561057b57600080fd5b5061021361058a366004611a5d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105c457600080fd5b506102dd600181565b3480156105d957600080fd5b506102486105e8366004611a3c565b6110a1565b3480156105f957600080fd5b506102dd600a81565b60006001600160e01b031982166380ac58cd60e01b148061063357506001600160e01b03198216635b5e139f60e01b145b8061064e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106875760405162461bcd60e51b815260040161067e90611e5f565b60405180910390fd5b600b805460ff1916911515919091179055565b6060600280546106a990611f7a565b80601f01602080910402602001604051908101604052809291908181526020018280546106d590611f7a565b80156107225780601f106106f757610100808354040283529160200191610722565b820191906000526020600020905b81548152906001019060200180831161070557829003601f168201915b5050505050905090565b600061073782611139565b610754576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061077b82610bc5565b9050806001600160a01b0316836001600160a01b031614156107b05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107d057506107ce813361058a565b155b156107ee576040516367d9dca160e11b815260040160405180910390fd5b6107f9838383611172565b505050565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b031661064e565b6008546001600160a01b031633146108565760405162461bcd60e51b815260040161067e90611e5f565b60005b81518110156108d7576108c582828151811061088557634e487b7160e01b600052603260045260246000fd5b6020026020010151600001518383815181106108b157634e487b7160e01b600052603260045260246000fd5b60200260200101516020015160ff166111ce565b806108cf81611fb5565b915050610859565b5050565b6107f98383836111e8565b6008546001600160a01b031633146109105760405162461bcd60e51b815260040161067e90611e5f565b61091a33826111ce565b50565b6008546001600160a01b031633146109475760405162461bcd60e51b815260040161067e90611e5f565b6040514790600090339083908381818185875af1925050503d806000811461098b576040519150601f19603f3d011682016040523d82523d6000602084013e610990565b606091505b50509050806108d75760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b604482015260640161067e565b6107f983838360405180602001604052806000815250610f86565b6008546001600160a01b03163314610a175760405162461bcd60e51b815260040161067e90611e5f565b80516108d7906009906020840190611920565b600b54339060ff1615610a685760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b604482015260640161067e565b6001546000540360001901610a7e906001611eec565b6104b01015610ac45760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b604482015260640161067e565b326001600160a01b03821614610b0b5760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b604482015260640161067e565b6001600160a01b038116600090815260056020526040902054610b3f90600160c01b90046001600160401b03166001611eec565b60011015610b8f5760405162461bcd60e51b815260206004820152601a60248201527f457863657373206d61782070657220667265652077616c6c6574000000000000604482015260640161067e565b6001600160a01b038116600090815260056020526040902080546001600160c01b0316600160c01b17905561091a8160016111ce565b6000610bd0826113d5565b5192915050565b60098054610be490611f7a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1090611f7a565b8015610c5d5780601f10610c3257610100808354040283529160200191610c5d565b820191906000526020600020905b815481529060010190602001808311610c4057829003601f168201915b505050505081565b60006001600160a01b038216610c8e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610cdd5760405162461bcd60e51b815260040161067e90611e5f565b610ce760006114fc565b565b6008546001600160a01b03163314610d135760405162461bcd60e51b815260040161067e90611e5f565b600a55565b6060600380546106a990611f7a565b600b54339060ff1615610d655760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b604482015260640161067e565b6001546000548391900360001901610d7d9190611eec565b6104b01015610dc35760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b604482015260640161067e565b60008211610e005760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b604482015260640161067e565b326001600160a01b03821614610e475760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b604482015260640161067e565b81600a1015610e915760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b604482015260640161067e565b34600a5483610ea09190611f18565b14610ee65760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b604482015260640161067e565b6108d781836111ce565b6001600160a01b038216331415610f1a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f918484846111e8565b6001600160a01b0383163b15158015610fb35750610fb18484848461154e565b155b15610fd1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fe282611139565b6110265760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161067e565b60006009805461103590611f7a565b905011611051576040518060200160405280600081525061064e565b600961105c83611646565b60405180604001604052806005815260200164173539b7b760d91b81525060405160200161108c93929190611d69565b60405160208183030381529060405292915050565b6008546001600160a01b031633146110cb5760405162461bcd60e51b815260040161067e90611e5f565b6001600160a01b0381166111305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067e565b61091a816114fc565b60008160011115801561114d575060005482105b801561064e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108d782826040518060200160405280600081525061175f565b60006111f3826113d5565b9050836001600160a01b031681600001516001600160a01b03161461122a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112485750611248853361058a565b806112635750336112588461072c565b6001600160a01b0316145b90508061128357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166112aa57604051633a954ecd60e21b815260040160405180910390fd5b6112b660008487611172565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661138a57600054821461138a57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611405575060005481105b156114e357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114e15780516001600160a01b031615611478579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156114dc579392505050565b611478565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611583903390899088908890600401611e19565b602060405180830381600087803b15801561159d57600080fd5b505af19250505080156115cd575060408051601f3d908101601f191682019092526115ca91810190611ca8565b60015b611628573d8080156115fb576040519150601f19603f3d011682016040523d82523d6000602084013e611600565b606091505b508051611620576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161166a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611694578061167e81611fb5565b915061168d9050600a83611f04565b915061166e565b6000816001600160401b038111156116bc57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116e6576020820181803683370190505b5090505b841561163e576116fb600183611f37565b9150611708600a86611fd0565b611713906030611eec565b60f81b81838151811061173657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611758600a86611f04565b94506116ea565b6000546001600160a01b03841661178857604051622e076360e81b815260040160405180910390fd5b826117a65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156118ca575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611892600087848060010195508761154e565b6118af576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118475782600054146118c557600080fd5b611910565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156118cb575b506000908155610fd19085838684565b82805461192c90611f7a565b90600052602060002090601f01602090048101928261194e5760008555611994565b82601f1061196757805160ff1916838001178555611994565b82800160010185558215611994579182015b82811115611994578251825591602001919060010190611979565b506119a09291506119a4565b5090565b5b808211156119a057600081556001016119a5565b60006001600160401b038311156119d2576119d2612010565b6119e5601f8401601f1916602001611ebc565b90508281528383830111156119f957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a2757600080fd5b919050565b80358015158114611a2757600080fd5b600060208284031215611a4d578081fd5b611a5682611a10565b9392505050565b60008060408385031215611a6f578081fd5b611a7883611a10565b9150611a8660208401611a10565b90509250929050565b600080600060608486031215611aa3578081fd5b611aac84611a10565b9250611aba60208501611a10565b9150604084013590509250925092565b60008060008060808587031215611adf578081fd5b611ae885611a10565b9350611af660208601611a10565b92506040850135915060608501356001600160401b03811115611b17578182fd5b8501601f81018713611b27578182fd5b611b36878235602084016119b9565b91505092959194509250565b60008060408385031215611b54578182fd5b611b5d83611a10565b9150611a8660208401611a2c565b60008060408385031215611b7d578182fd5b611b8683611a10565b946020939093013593505050565b60006020808385031215611ba6578182fd5b82356001600160401b0380821115611bbc578384fd5b818501915085601f830112611bcf578384fd5b813581811115611be157611be1612010565b611bef848260051b01611ebc565b8181528481019250838501600683901b85018601891015611c0e578687fd5b8694505b82851015611c6657604080828b031215611c2a578788fd5b611c32611e94565b611c3b83611a10565b81528783013560ff81168114611c4f57898afd5b818901528552600195909501949386019301611c12565b50979650505050505050565b600060208284031215611c83578081fd5b611a5682611a2c565b600060208284031215611c9d578081fd5b8135611a5681612026565b600060208284031215611cb9578081fd5b8151611a5681612026565b600060208284031215611cd5578081fd5b81356001600160401b03811115611cea578182fd5b8201601f81018413611cfa578182fd5b61163e848235602084016119b9565b600060208284031215611d1a578081fd5b5035919050565b60008151808452611d39816020860160208601611f4e565b601f01601f19169290920160200192915050565b60008151611d5f818560208601611f4e565b9290920192915050565b600080855482600182811c915080831680611d8557607f831692505b6020808410821415611da557634e487b7160e01b87526022600452602487fd5b818015611db95760018114611dca57611df6565b60ff19861689528489019650611df6565b60008c815260209020885b86811015611dee5781548b820152908501908301611dd5565b505084890196505b505050505050611e0f611e098287611d4d565b85611d4d565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e0f90830184611d21565b602081526000611a566020830184611d21565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604080519081016001600160401b0381118282101715611eb657611eb6612010565b60405290565b604051601f8201601f191681016001600160401b0381118282101715611ee457611ee4612010565b604052919050565b60008219821115611eff57611eff611fe4565b500190565b600082611f1357611f13611ffa565b500490565b6000816000190483118215151615611f3257611f32611fe4565b500290565b600082821015611f4957611f49611fe4565b500390565b60005b83811015611f69578181015183820152602001611f51565b83811115610fd15750506000910152565b600181811c90821680611f8e57607f821691505b60208210811415611faf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fc957611fc9611fe4565b5060010190565b600082611fdf57611fdf611ffa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461091a57600080fdfea2646970667358221220fda084b232825f33bd5fe9070ecffaecc138dee0c931cd2203c7fcfa85b07e2e64736f6c63430008040033

Deployed Bytecode Sourcemap

52086:2959:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27035:305;;;;;;;;;;-1:-1:-1;27035:305:0;;;;;:::i;:::-;;:::i;:::-;;;8393:14:1;;8386:22;8368:41;;8356:2;8341:18;27035:305:0;;;;;;;;54483:81;;;;;;;;;;-1:-1:-1;54483:81:0;;;;;:::i;:::-;;:::i;:::-;;30148:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31651:204::-;;;;;;;;;;-1:-1:-1;31651:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7691:32:1;;;7673:51;;7661:2;7646:18;31651:204:0;7628:102:1;31214:371:0;;;;;;;;;;-1:-1:-1;31214:371:0;;;;;:::i;:::-;;:::i;26284:303::-;;;;;;;;;;-1:-1:-1;53699:1:0;26538:12;26328:7;26522:13;:28;-1:-1:-1;;26522:46:0;26284:303;;;12669:25:1;;;12657:2;12642:18;26284:303:0;12624:76:1;53716:109:0;;;;;;;;;;-1:-1:-1;53716:109:0;;;;;:::i;:::-;;:::i;54163:218::-;;;;;;;;;;-1:-1:-1;54163:218:0;;;;;:::i;:::-;;:::i;32516:170::-;;;;;;;;;;-1:-1:-1;32516:170:0;;;;;:::i;:::-;;:::i;54050:105::-;;;;;;;;;;-1:-1:-1;54050:105:0;;;;;:::i;:::-;;:::i;52401:41::-;;;;;;;;;;;;52438:4;52401:41;;53833:209;;;;;;;;;;;;;:::i;32757:185::-;;;;;;;;;;-1:-1:-1;32757:185:0;;;;;:::i;:::-;;:::i;54572:100::-;;;;;;;;;;-1:-1:-1;54572:100:0;;;;;:::i;:::-;;:::i;53192:407::-;;;:::i;52492:25::-;;;;;;;;;;-1:-1:-1;52492:25:0;;;;;;;;29956:125;;;;;;;;;;-1:-1:-1;29956:125:0;;;;;:::i;:::-;;:::i;52145:107::-;;;;;;;;;;;;;:::i;27404:206::-;;;;;;;;;;-1:-1:-1;27404:206:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;4112:87::-;;;;;;;;;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;4112:87;;54389:86;;;;;;;;;;-1:-1:-1;54389:86:0;;;;;:::i;:::-;;:::i;30317:104::-;;;;;;;;;;;;;:::i;52449:34::-;;;;;;;;;;;;;;;;52688:496;;;;;;:::i;:::-;;:::i;31927:287::-;;;;;;;;;;-1:-1:-1;31927:287:0;;;;;:::i;:::-;;:::i;33013:369::-;;;;;;;;;;-1:-1:-1;33013:369:0;;;;;:::i;:::-;;:::i;52259:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52259:46:0;;;;;54680:362;;;;;;;;;;-1:-1:-1;54680:362:0;;;;;:::i;:::-;;:::i;32285:164::-;;;;;;;;;;-1:-1:-1;32285:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32406:25:0;;;32382:4;32406:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32285:164;52312:36;;;;;;;;;;;;52347:1;52312:36;;5021:201;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;52355:39::-;;;;;;;;;;;;52392:2;52355:39;;27035:305;27137:4;-1:-1:-1;;;;;;27174:40:0;;-1:-1:-1;;;27174:40:0;;:105;;-1:-1:-1;;;;;;;27231:48:0;;-1:-1:-1;;;27231:48:0;27174:105;:158;;;-1:-1:-1;;;;;;;;;;17028:40:0;;;27296:36;27154:178;27035:305;-1:-1:-1;;27035:305:0:o;54483:81::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;;;;;;;;;54541:6:::1;:15:::0;;-1:-1:-1;;54541:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54483:81::o;30148:100::-;30202:13;30235:5;30228:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30148:100;:::o;31651:204::-;31719:7;31744:16;31752:7;31744;:16::i;:::-;31739:64;;31769:34;;-1:-1:-1;;;31769:34:0;;;;;;;;;;;31739:64;-1:-1:-1;31823:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31823:24:0;;31651:204::o;31214:371::-;31287:13;31303:24;31319:7;31303:15;:24::i;:::-;31287:40;;31348:5;-1:-1:-1;;;;;31342:11:0;:2;-1:-1:-1;;;;;31342:11:0;;31338:48;;;31362:24;;-1:-1:-1;;;31362:24:0;;;;;;;;;;;31338:48;2916:10;-1:-1:-1;;;;;31403:21:0;;;;;;:63;;-1:-1:-1;31429:37:0;31446:5;2916:10;32285:164;:::i;31429:37::-;31428:38;31403:63;31399:138;;;31490:35;;-1:-1:-1;;;31490:35:0;;;;;;;;;;;31399:138;31549:28;31558:2;31562:7;31571:5;31549:8;:28::i;:::-;31214:371;;;:::o;53716:109::-;-1:-1:-1;;;;;27788:19:0;;53769:7;27788:19;;;:12;:19;;;;;:32;-1:-1:-1;;;27788:32:0;;-1:-1:-1;;;;;27788:32:0;53796:21;27692:137;54163:218;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;54249:9:::1;54244:130;54264:11;:18;54260:1;:22;54244:130;;;54304:58;54314:11;54326:1;54314:14;;;;;;-1:-1:-1::0;;;54314:14:0::1;;;;;;;;;;;;;;;:23;;;54339:11;54351:1;54339:14;;;;;;-1:-1:-1::0;;;54339:14:0::1;;;;;;;;;;;;;;;:22;;;54304:58;;:9;:58::i;:::-;54284:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54244:130;;;;54163:218:::0;:::o;32516:170::-;32650:28;32660:4;32666:2;32670:7;32650:9;:28::i;54050:105::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;54115:32:::1;2916:10:::0;54139:7:::1;54115:9;:32::i;:::-;54050:105:::0;:::o;53833:209::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;53952:37:::1;::::0;53901:21:::1;::::0;53883:15:::1;::::0;2916:10;;53901:21;;53883:15;53952:37;53883:15;53952:37;53901:21;2916:10;53952:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53933:56;;;54008:7;54000:34;;;::::0;-1:-1:-1;;;54000:34:0;;12041:2:1;54000:34:0::1;::::0;::::1;12023:21:1::0;12080:2;12060:18;;;12053:30;-1:-1:-1;;;12099:18:1;;;12092:44;12153:18;;54000:34:0::1;12013:164:1::0;32757:185:0;32895:39;32912:4;32918:2;32922:7;32895:39;;;;;;;;;;;;:16;:39::i;54572:100::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;54646:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;53192:407::-:0;53290:6;;2916:10;;53290:6;;53289:7;53281:26;;;;-1:-1:-1;;;53281:26:0;;8846:2:1;53281:26:0;;;8828:21:1;8885:1;8865:18;;;8858:29;-1:-1:-1;;;8903:18:1;;;8896:36;8949:18;;53281:26:0;8818:155:1;53281:26:0;53699:1;26538:12;26328:7;26522:13;:28;-1:-1:-1;;26522:46:0;53340:17;;53356:1;53340:17;:::i;:::-;52438:4;53326:31;;53318:62;;;;-1:-1:-1;;;53318:62:0;;10632:2:1;53318:62:0;;;10614:21:1;10671:2;10651:18;;;10644:30;-1:-1:-1;;;10690:18:1;;;10683:48;10748:18;;53318:62:0;10604:168:1;53318:62:0;53399:9;-1:-1:-1;;;;;53399:20:0;;;53391:45;;;;-1:-1:-1;;;53391:45:0;;12384:2:1;53391:45:0;;;12366:21:1;12423:2;12403:18;;;12396:30;-1:-1:-1;;;12442:18:1;;;12435:42;12494:18;;53391:45:0;12356:162:1;53391:45:0;-1:-1:-1;;;;;28263:19:0;;28237:6;28263:19;;;:12;:19;;;;;:23;53467:29;;-1:-1:-1;;;28263:23:0;;-1:-1:-1;;;;;28263:23:0;53495:1;53467:29;:::i;:::-;52347:1;53455:41;;53447:80;;;;-1:-1:-1;;;53447:80:0;;10277:2:1;53447:80:0;;;10259:21:1;10316:2;10296:18;;;10289:30;10355:28;10335:18;;;10328:56;10401:18;;53447:80:0;10249:176:1;53447:80:0;-1:-1:-1;;;;;28546:19:0;;;;;;:12;:19;;;;;:29;;-1:-1:-1;;;;;28546:29:0;-1:-1:-1;;;28546:29:0;;;53570:21;53580:7;53589:1;53570:9;:21::i;29956:125::-;30020:7;30047:21;30060:7;30047:12;:21::i;:::-;:26;;29956:125;-1:-1:-1;;29956:125:0:o;52145:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27404:206::-;27468:7;-1:-1:-1;;;;;27492:19:0;;27488:60;;27520:28;;-1:-1:-1;;;27520:28:0;;;;;;;;;;;27488:60;-1:-1:-1;;;;;;27574:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27574:27:0;;27404:206::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;54389:86::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;54453:5:::1;:14:::0;54389:86::o;30317:104::-;30373:13;30406:7;30399:14;;;;;:::i;52688:496::-;52797:6;;2916:10;;52797:6;;52796:7;52788:26;;;;-1:-1:-1;;;52788:26:0;;8846:2:1;52788:26:0;;;8828:21:1;8885:1;8865:18;;;8858:29;-1:-1:-1;;;8903:18:1;;;8896:36;8949:18;;52788:26:0;8818:155:1;52788:26:0;53699:1;26538:12;26328:7;26522:13;52863:7;;26522:28;;-1:-1:-1;;26522:46:0;52847:23;;;;:::i;:::-;52438:4;52833:37;;52825:68;;;;-1:-1:-1;;;52825:68:0;;10632:2:1;52825:68:0;;;10614:21:1;10671:2;10651:18;;;10644:30;-1:-1:-1;;;10690:18:1;;;10683:48;10748:18;;52825:68:0;10604:168:1;52825:68:0;52922:1;52912:7;:11;52904:34;;;;-1:-1:-1;;;52904:34:0;;9587:2:1;52904:34:0;;;9569:21:1;9626:2;9606:18;;;9599:30;-1:-1:-1;;;9645:18:1;;;9638:40;9695:18;;52904:34:0;9559:160:1;52904:34:0;52957:9;-1:-1:-1;;;;;52957:20:0;;;52949:45;;;;-1:-1:-1;;;52949:45:0;;12384:2:1;52949:45:0;;;12366:21:1;12423:2;12403:18;;;12396:30;-1:-1:-1;;;12442:18:1;;;12435:42;12494:18;;52949:45:0;12356:162:1;52949:45:0;53027:7;52392:2;53013:21;;53005:57;;;;-1:-1:-1;;;53005:57:0;;9926:2:1;53005:57:0;;;9908:21:1;9965:2;9945:18;;;9938:30;-1:-1:-1;;;9984:18:1;;;9977:52;10046:18;;53005:57:0;9898:172:1;53005:57:0;53100:9;53091:5;;53081:7;:15;;;;:::i;:::-;:28;53073:63;;;;-1:-1:-1;;;53073:63:0;;11690:2:1;53073:63:0;;;11672:21:1;11729:2;11709:18;;;11702:30;-1:-1:-1;;;11748:18:1;;;11741:52;11810:18;;53073:63:0;11662:172:1;53073:63:0;53149:27;53159:7;53168;53149:9;:27::i;31927:287::-;-1:-1:-1;;;;;32026:24:0;;2916:10;32026:24;32022:54;;;32059:17;;-1:-1:-1;;;32059:17:0;;;;;;;;;;;32022:54;2916:10;32089:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32089:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32089:53:0;;;;;;;;;;32158:48;;8368:41:1;;;32089:42:0;;2916:10;32158:48;;8341:18:1;32158:48:0;;;;;;;31927:287;;:::o;33013:369::-;33180:28;33190:4;33196:2;33200:7;33180:9;:28::i;:::-;-1:-1:-1;;;;;33223:13:0;;7108:19;:23;;33223:76;;;;;33243:56;33274:4;33280:2;33284:7;33293:5;33243:30;:56::i;:::-;33242:57;33223:76;33219:156;;;33323:40;;-1:-1:-1;;;33323:40:0;;;;;;;;;;;33219:156;33013:369;;;;:::o;54680:362::-;54746:13;54780:17;54788:8;54780:7;:17::i;:::-;54772:51;;;;-1:-1:-1;;;54772:51:0;;10979:2:1;54772:51:0;;;10961:21:1;11018:2;10998:18;;;10991:30;-1:-1:-1;;;11037:18:1;;;11030:51;11098:18;;54772:51:0;10951:171:1;54772:51:0;54865:1;54847:7;54841:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;54923:7;54947:26;54964:8;54947:16;:26::i;:::-;54990:13;;;;;;;;;;;;;-1:-1:-1;;;54990:13:0;;;54890:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54834:200;54680:362;-1:-1:-1;;54680:362:0:o;5021:201::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;9180:2:1;5102:73:0::1;::::0;::::1;9162:21:1::0;9219:2;9199:18;;;9192:30;9258:34;9238:18;;;9231:62;-1:-1:-1;;;9309:18:1;;;9302:36;9355:19;;5102:73:0::1;9152:228:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;33637:174::-:0;33694:4;33737:7;53699:1;33718:26;;:53;;;;;33758:13;;33748:7;:23;33718:53;:85;;;;-1:-1:-1;;33776:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33776:27:0;;;;33775:28;;33637:174::o;42863:196::-;42978:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42978:29:0;-1:-1:-1;;;;;42978:29:0;;;;;;;;;43023:28;;42978:24;;43023:28;;;;;;;42863:196;;;:::o;33895:104::-;33964:27;33974:2;33978:8;33964:27;;;;;;;;;;;;:9;:27::i;37811:2130::-;37926:35;37964:21;37977:7;37964:12;:21::i;:::-;37926:59;;38024:4;-1:-1:-1;;;;;38002:26:0;:13;:18;;;-1:-1:-1;;;;;38002:26:0;;37998:67;;38037:28;;-1:-1:-1;;;38037:28:0;;;;;;;;;;;37998:67;38078:22;2916:10;-1:-1:-1;;;;;38104:20:0;;;;:73;;-1:-1:-1;38141:36:0;38158:4;2916:10;32285:164;:::i;38141:36::-;38104:126;;;-1:-1:-1;2916:10:0;38194:20;38206:7;38194:11;:20::i;:::-;-1:-1:-1;;;;;38194:36:0;;38104:126;38078:153;;38249:17;38244:66;;38275:35;;-1:-1:-1;;;38275:35:0;;;;;;;;;;;38244:66;-1:-1:-1;;;;;38325:16:0;;38321:52;;38350:23;;-1:-1:-1;;;38350:23:0;;;;;;;;;;;38321:52;38494:35;38511:1;38515:7;38524:4;38494:8;:35::i;:::-;-1:-1:-1;;;;;38825:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38825:31:0;;;-1:-1:-1;;;;;38825:31:0;;;-1:-1:-1;;38825:31:0;;;;;;;38871:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38871:29:0;;;;;;;;;;;38951:20;;;:11;:20;;;;;;38986:18;;-1:-1:-1;;;;;;39019:49:0;;;;-1:-1:-1;;;39052:15:0;39019:49;;;;;;;;;;39342:11;;39402:24;;;;;39445:13;;38951:20;;39402:24;;39445:13;39441:384;;39655:13;;39640:11;:28;39636:174;;39693:20;;39762:28;;;;-1:-1:-1;;;;;39736:54:0;-1:-1:-1;;;39736:54:0;-1:-1:-1;;;;;;39736:54:0;;;-1:-1:-1;;;;;39693:20:0;;39736:54;;;;39636:174;37811:2130;;;39872:7;39868:2;-1:-1:-1;;;;;39853:27:0;39862:4;-1:-1:-1;;;;;39853:27:0;;;;;;;;;;;37811:2130;;;;;:::o;28785:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28896:7:0;;53699:1;28945:23;;:47;;;;;28979:13;;28972:4;:20;28945:47;28941:886;;;29013:31;29047:17;;;:11;:17;;;;;;;;;29013:51;;;;;;;;;-1:-1:-1;;;;;29013:51:0;;;;-1:-1:-1;;;29013:51:0;;-1:-1:-1;;;;;29013:51:0;;;;;;;;-1:-1:-1;;;29013:51:0;;;;;;;;;;;;;;29083:729;;29133:14;;-1:-1:-1;;;;;29133:28:0;;29129:101;;29197:9;28785:1109;-1:-1:-1;;;28785:1109:0:o;29129:101::-;-1:-1:-1;;;29572:6:0;29617:17;;;;:11;:17;;;;;;;;;29605:29;;;;;;;;;-1:-1:-1;;;;;29605:29:0;;;;;-1:-1:-1;;;29605:29:0;;-1:-1:-1;;;;;29605:29:0;;;;;;;;-1:-1:-1;;;29605:29:0;;;;;;;;;;;;;29665:28;29661:109;;29733:9;28785:1109;-1:-1:-1;;;28785:1109:0:o;29661:109::-;29532:261;;;28941:886;;29855:31;;-1:-1:-1;;;29855:31:0;;;;;;;;;;;5382:191;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5382:191;;:::o;43551:667::-;43735:72;;-1:-1:-1;;;43735:72:0;;43714:4;;-1:-1:-1;;;;;43735:36:0;;;;;:72;;2916:10;;43786:4;;43792:7;;43801:5;;43735:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43735:72:0;;;;;;;;-1:-1:-1;;43735:72:0;;;;;;;;;;;;:::i;:::-;;;43731:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43969:13:0;;43965:235;;44015:40;;-1:-1:-1;;;44015:40:0;;;;;;;;;;;43965:235;44158:6;44152:13;44143:6;44139:2;44135:15;44128:38;43731:480;-1:-1:-1;;;;;;43854:55:0;-1:-1:-1;;;43854:55:0;;-1:-1:-1;43731:480:0;43551:667;;;;;;:::o;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;-1:-1:-1;;;;;900:17:0;;;;;-1:-1:-1;;;900:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;-1:-1:-1;;;988:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;34373:1751;34496:20;34519:13;-1:-1:-1;;;;;34547:16:0;;34543:48;;34572:19;;-1:-1:-1;;;34572:19:0;;;;;;;;;;;34543:48;34606:13;34602:44;;34628:18;;-1:-1:-1;;;34628:18:0;;;;;;;;;;;34602:44;-1:-1:-1;;;;;34997:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35056:49:0;;-1:-1:-1;;;;;34997:44:0;;;;;;;35056:49;;;-1:-1:-1;;;;;34997:44:0;;;;;;35056:49;;;;;;;;;;;;;;;;35122:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35172:66:0;;;-1:-1:-1;;;35222:15:0;35172:66;;;;;;;;;;;;;35122:25;;35319:23;;;;7108:19;:23;35359:633;;35399:314;35430:38;;35455:12;;-1:-1:-1;;;;;35430:38:0;;;35447:1;;35430:38;;35447:1;;35430:38;35496:69;35535:1;35539:2;35543:14;;;;;;35559:5;35496:30;:69::i;:::-;35491:174;;35601:40;;-1:-1:-1;;;35601:40:0;;;;;;;;;;;35491:174;35708:3;35692:12;:19;;35399:314;;35794:12;35777:13;;:29;35773:43;;35808:8;;;35773:43;35359:633;;;35857:120;35888:40;;35913:14;;;;;-1:-1:-1;;;;;35888:40:0;;;35905:1;;35888:40;;35905:1;;35888:40;35972:3;35956:12;:19;;35857:120;;35359:633;-1:-1:-1;36006:13:0;:28;;;36056:60;;36089:2;36093:12;36107:8;36056:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:2;;753:1;750;743:12;768:196;827:6;880:2;868:9;859:7;855:23;851:32;848:2;;;901:6;893;886:22;848:2;929:29;948:9;929:29;:::i;:::-;919:39;838:126;-1:-1:-1;;;838:126:1:o;969:270::-;1037:6;1045;1098:2;1086:9;1077:7;1073:23;1069:32;1066:2;;;1119:6;1111;1104:22;1066:2;1147:29;1166:9;1147:29;:::i;:::-;1137:39;;1195:38;1229:2;1218:9;1214:18;1195:38;:::i;:::-;1185:48;;1056:183;;;;;:::o;1244:338::-;1321:6;1329;1337;1390:2;1378:9;1369:7;1365:23;1361:32;1358:2;;;1411:6;1403;1396:22;1358:2;1439:29;1458:9;1439:29;:::i;:::-;1429:39;;1487:38;1521:2;1510:9;1506:18;1487:38;:::i;:::-;1477:48;;1572:2;1561:9;1557:18;1544:32;1534:42;;1348:234;;;;;:::o;1587:696::-;1682:6;1690;1698;1706;1759:3;1747:9;1738:7;1734:23;1730:33;1727:2;;;1781:6;1773;1766:22;1727:2;1809:29;1828:9;1809:29;:::i;:::-;1799:39;;1857:38;1891:2;1880:9;1876:18;1857:38;:::i;:::-;1847:48;;1942:2;1931:9;1927:18;1914:32;1904:42;;1997:2;1986:9;1982:18;1969:32;-1:-1:-1;;;;;2016:6:1;2013:30;2010:2;;;2061:6;2053;2046:22;2010:2;2089:22;;2142:4;2134:13;;2130:27;-1:-1:-1;2120:2:1;;2176:6;2168;2161:22;2120:2;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1717:566;;;;;;;:::o;2288:264::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:2;;;2435:6;2427;2420:22;2382:2;2463:29;2482:9;2463:29;:::i;:::-;2453:39;;2511:35;2542:2;2531:9;2527:18;2511:35;:::i;2557:264::-;2625:6;2633;2686:2;2674:9;2665:7;2661:23;2657:32;2654:2;;;2707:6;2699;2692:22;2654:2;2735:29;2754:9;2735:29;:::i;:::-;2725:39;2811:2;2796:18;;;;2783:32;;-1:-1:-1;;;2644:177:1:o;2826:1377::-;2935:6;2966:2;3009;2997:9;2988:7;2984:23;2980:32;2977:2;;;3030:6;3022;3015:22;2977:2;3075:9;3062:23;-1:-1:-1;;;;;3145:2:1;3137:6;3134:14;3131:2;;;3166:6;3158;3151:22;3131:2;3209:6;3198:9;3194:22;3184:32;;3254:7;3247:4;3243:2;3239:13;3235:27;3225:2;;3281:6;3273;3266:22;3225:2;3322;3309:16;3344:2;3340;3337:10;3334:2;;;3350:18;;:::i;:::-;3390:36;3422:2;3417;3414:1;3410:10;3406:19;3390:36;:::i;:::-;3460:15;;;3491:12;;;;-1:-1:-1;3523:11:1;;;3565:1;3561:10;;;3553:19;;3549:28;;3546:41;-1:-1:-1;3543:2:1;;;3605:6;3597;3590:22;3543:2;3632:6;3623:15;;3647:526;3661:2;3658:1;3655:9;3647:526;;;3716:4;3759:2;3753:3;3744:7;3740:17;3736:26;3733:2;;;3780:6;3772;3765:22;3733:2;3815:22;;:::i;:::-;3864:23;3883:3;3864:23;:::i;:::-;3857:5;3850:38;3938:2;3933:3;3929:12;3916:26;3990:4;3981:7;3977:18;3968:7;3965:31;3955:2;;4015:6;4007;4000:22;3955:2;4044:14;;;4037:31;4081:18;;3679:1;3672:9;;;;;4119:12;;;;4151;3647:526;;;-1:-1:-1;4192:5:1;2946:1257;-1:-1:-1;;;;;;;2946:1257:1:o;4208:190::-;4264:6;4317:2;4305:9;4296:7;4292:23;4288:32;4285:2;;;4338:6;4330;4323:22;4285:2;4366:26;4382:9;4366:26;:::i;4403:255::-;4461:6;4514:2;4502:9;4493:7;4489:23;4485:32;4482:2;;;4535:6;4527;4520:22;4482:2;4579:9;4566:23;4598:30;4622:5;4598:30;:::i;4663:259::-;4732:6;4785:2;4773:9;4764:7;4760:23;4756:32;4753:2;;;4806:6;4798;4791:22;4753:2;4843:9;4837:16;4862:30;4886:5;4862:30;:::i;4927:480::-;4996:6;5049:2;5037:9;5028:7;5024:23;5020:32;5017:2;;;5070:6;5062;5055:22;5017:2;5115:9;5102:23;-1:-1:-1;;;;;5140:6:1;5137:30;5134:2;;;5185:6;5177;5170:22;5134:2;5213:22;;5266:4;5258:13;;5254:27;-1:-1:-1;5244:2:1;;5300:6;5292;5285:22;5244:2;5328:73;5393:7;5388:2;5375:16;5370:2;5366;5362:11;5328:73;:::i;5412:190::-;5471:6;5524:2;5512:9;5503:7;5499:23;5495:32;5492:2;;;5545:6;5537;5530:22;5492:2;-1:-1:-1;5573:23:1;;5482:120;-1:-1:-1;5482:120:1:o;5607:257::-;5648:3;5686:5;5680:12;5713:6;5708:3;5701:19;5729:63;5785:6;5778:4;5773:3;5769:14;5762:4;5755:5;5751:16;5729:63;:::i;:::-;5846:2;5825:15;-1:-1:-1;;5821:29:1;5812:39;;;;5853:4;5808:50;;5656:208;-1:-1:-1;;5656:208:1:o;5869:185::-;5911:3;5949:5;5943:12;5964:52;6009:6;6004:3;5997:4;5990:5;5986:16;5964:52;:::i;:::-;6032:16;;;;;5919:135;-1:-1:-1;;5919:135:1:o;6059:1253::-;6283:3;6312;6347:6;6341:13;6377:3;6399:1;6427:9;6423:2;6419:18;6409:28;;6487:2;6476:9;6472:18;6509;6499:2;;6553:4;6545:6;6541:17;6531:27;;6499:2;6579;6627;6619:6;6616:14;6596:18;6593:38;6590:2;;;-1:-1:-1;;;6654:33:1;;6710:4;6707:1;6700:15;6740:4;6661:3;6728:17;6590:2;6771:18;6798:104;;;;6916:1;6911:322;;;;6764:469;;6798:104;-1:-1:-1;;6831:24:1;;6819:37;;6876:16;;;;-1:-1:-1;6798:104:1;;6911:322;13294:4;13313:17;;;13363:4;13347:21;;7006:3;7022:165;7036:6;7033:1;7030:13;7022:165;;;7114:14;;7101:11;;;7094:35;7157:16;;;;7051:10;;7022:165;;;7026:3;;7216:6;7211:3;7207:16;7200:23;;6764:469;;;;;;;7249:57;7275:30;7301:3;7293:6;7275:30;:::i;:::-;7267:6;7249:57;:::i;:::-;7242:64;6291:1021;-1:-1:-1;;;;;;6291:1021:1:o;7735:488::-;-1:-1:-1;;;;;8004:15:1;;;7986:34;;8056:15;;8051:2;8036:18;;8029:43;8103:2;8088:18;;8081:34;;;8151:3;8146:2;8131:18;;8124:31;;;7929:4;;8172:45;;8197:19;;8189:6;8172:45;:::i;8420:219::-;8569:2;8558:9;8551:21;8532:4;8589:44;8629:2;8618:9;8614:18;8606:6;8589:44;:::i;11127:356::-;11329:2;11311:21;;;11348:18;;;11341:30;11407:34;11402:2;11387:18;;11380:62;11474:2;11459:18;;11301:182::o;12705:257::-;12777:4;12771:11;;;12809:17;;-1:-1:-1;;;;;12841:34:1;;12877:22;;;12838:62;12835:2;;;12903:18;;:::i;:::-;12939:4;12932:24;12751:211;:::o;12967:275::-;13038:2;13032:9;13103:2;13084:13;;-1:-1:-1;;13080:27:1;13068:40;;-1:-1:-1;;;;;13123:34:1;;13159:22;;;13120:62;13117:2;;;13185:18;;:::i;:::-;13221:2;13214:22;13012:230;;-1:-1:-1;13012:230:1:o;13379:128::-;13419:3;13450:1;13446:6;13443:1;13440:13;13437:2;;;13456:18;;:::i;:::-;-1:-1:-1;13492:9:1;;13427:80::o;13512:120::-;13552:1;13578;13568:2;;13583:18;;:::i;:::-;-1:-1:-1;13617:9:1;;13558:74::o;13637:168::-;13677:7;13743:1;13739;13735:6;13731:14;13728:1;13725:21;13720:1;13713:9;13706:17;13702:45;13699:2;;;13750:18;;:::i;:::-;-1:-1:-1;13790:9:1;;13689:116::o;13810:125::-;13850:4;13878:1;13875;13872:8;13869:2;;;13883:18;;:::i;:::-;-1:-1:-1;13920:9:1;;13859:76::o;13940:258::-;14012:1;14022:113;14036:6;14033:1;14030:13;14022:113;;;14112:11;;;14106:18;14093:11;;;14086:39;14058:2;14051:10;14022:113;;;14153:6;14150:1;14147:13;14144:2;;;-1:-1:-1;;14188:1:1;14170:16;;14163:27;13993:205::o;14203:380::-;14282:1;14278:12;;;;14325;;;14346:2;;14400:4;14392:6;14388:17;14378:27;;14346:2;14453;14445:6;14442:14;14422:18;14419:38;14416:2;;;14499:10;14494:3;14490:20;14487:1;14480:31;14534:4;14531:1;14524:15;14562:4;14559:1;14552:15;14416:2;;14258:325;;;:::o;14588:135::-;14627:3;-1:-1:-1;;14648:17:1;;14645:2;;;14668:18;;:::i;:::-;-1:-1:-1;14715:1:1;14704:13;;14635:88::o;14728:112::-;14760:1;14786;14776:2;;14791:18;;:::i;:::-;-1:-1:-1;14825:9:1;;14766:74::o;14845:127::-;14906:10;14901:3;14897:20;14894:1;14887:31;14937:4;14934:1;14927:15;14961:4;14958:1;14951:15;14977:127;15038:10;15033:3;15029:20;15026:1;15019:31;15069:4;15066:1;15059:15;15093:4;15090:1;15083:15;15109:127;15170:10;15165:3;15161:20;15158:1;15151:31;15201:4;15198:1;15191:15;15225:4;15222:1;15215:15;15241:131;-1:-1:-1;;;;;;15315:32:1;;15305:43;;15295:2;;15362:1;15359;15352:12

Swarm Source

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