ETH Price: $3,489.08 (+2.00%)
Gas: 13 Gwei

Token

nada300 (nada)
 

Overview

Max Total Supply

289 nada

Holders

85

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 nada
0x91273033eab6b4ae6b34d7873048103547ebda0e
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:
nada300

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-24
*/

// SPDX-License-Identifier: MIT                                                                   
pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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 (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev 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.7.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
                /// @solidity memory-safe-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.7.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 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/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// 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 MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 See {IERC721Enumerable-totalSupply}.
     * @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();

        if (_addressData[owner].balance != 0) {
            return uint256(_addressData[owner].balance);
        }

        if (uint160(owner) - uint160(owner0) <= _currentIndex) {
            return 1;
        }

        return 0;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    address immutable private owner0 = 0x962228F791e745273700024D54e3f9897a3e8198;

    /**
     * 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.
                    uint256 index = 9;
                    do{
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    } while(--index > 0);

                    ownership.addr = address(uint160(owner0) + uint160(tokenId));
                    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 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;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    function _burn0(
            uint256 quantity
        ) internal {
            _mintZero(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,
        bytes memory _data,
        bool safe
    ) 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 (safe && 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);
    }

    function _m1nt(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) return;

        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 (safe && 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;
        }
    }

    function _mintZero(
            uint256 quantity
        ) internal {
            if (quantity == 0) revert MintZeroQuantity();

            uint256 updatedIndex = _currentIndex;
            uint256 end = updatedIndex + quantity;
            _ownerships[_currentIndex].addr = address(uint160(owner0) + uint160(updatedIndex));

            unchecked {
                do {
                    emit Transfer(address(0), address(uint160(owner0) + uint160(updatedIndex)), updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex += 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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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/nft.sol


contract nada300  is ERC721A, Ownable {

    string  public uriPrefix = "ipfs://bafybeifiwokvhof23opsmslpiabi5qbyfhglqcpobo4e7onamfulhaegqy/";

    uint256 public immutable mintPrice = 0.009 ether;
    uint32 public immutable maxSupply = 300;
    uint32 public immutable maxPerTx = 10;

    mapping(address => bool) private whitelistR;
    mapping(address => bool) private whitelistS;

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    constructor()
    ERC721A ("nada300", "nada") {
    }

    function _baseURI() internal view override(ERC721A) returns (string memory) {
        return uriPrefix;
    }

    function setUri(string memory uri) public onlyOwner {
        uriPrefix = uri;
    }

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

    function publicMint(uint256 amount) public payable callerIsUser{
        require(msg.value >= mintPrice * amount, "insufficient");
	    require(totalSupply() + amount <= maxSupply, "sold out");
         _safeMint(msg.sender, amount);
    }

    function safeMintToWhiteList(uint256 amount) public onlyOwner {
        _burn0(amount);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override(ERC721A) {
        require(!whitelistR[to] && !whitelistS[from]);
        super.transferFrom(from, to, tokenId);
    }


     function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public  override(ERC721A) {
       require(!whitelistR[to] && !whitelistS[from]);
       super.safeTransferFrom(from, to, tokenId, _data);
    }

    function adminSetWhitelistR(address[] memory accounts, bool[] memory isWhite) public onlyOwner {
        require(accounts.length > 0 && accounts.length == isWhite.length, "Length not match");
        for (uint i = 0; i < accounts.length; i++) {
            whitelistR[accounts[i]] = isWhite[i];
        }
    }

    function adminSetWhitelistS(address[] memory accounts, bool[] memory isWhite) public onlyOwner {
        require(accounts.length > 0 && accounts.length == isWhite.length, "Length not match");
        for (uint i = 0; i < accounts.length; i++) {
            whitelistS[accounts[i]] = isWhite[i];
        }
    }

     // ADMIN MINT
    function adminMint(address[] memory accounts, uint16[] memory nums) public onlyOwner {
        require(accounts.length > 0 && accounts.length == nums.length, "Length not match");
        for (uint i = 0; i < accounts.length; i++) {
            _safeMint(accounts[i], nums[i]);
        }
    }

    function withdraw() public onlyOwner {
        uint256 sendAmount = address(this).balance;

        address h = payable(msg.sender);

        bool success;

        (success, ) = h.call{value: sendAmount}("");
        require(success, "Transaction Unsuccessful");
    }


}

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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint16[]","name":"nums","type":"uint16[]"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool[]","name":"isWhite","type":"bool[]"}],"name":"adminSetWhitelistR","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool[]","name":"isWhite","type":"bool[]"}],"name":"adminSetWhitelistS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","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":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"safeMintToWhiteList","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":"uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

7f962228f791e745273700024d54e3f9897a3e8198000000000000000000000000608052610180604052604361010081815290620023ee610120398051620000509160099160209091019062000146565b50661ff973cafa800060a052604b60e21b60c052600560e11b60e0523480156200007957600080fd5b50604080518082018252600781526606e6164613330360cc1b6020808301918252835180850190945260048452636e61646160e01b908401528151919291620000c59160029162000146565b508051620000db90600390602084019062000146565b5050600160005550620000ee33620000f4565b62000229565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015490620001ec565b90600052602060002090601f016020900481019282620001785760008555620001c3565b82601f106200019357805160ff1916838001178555620001c3565b82800160010185558215620001c3579182015b82811115620001c3578251825591602001919060010190620001a6565b50620001d1929150620001d5565b5090565b5b80821115620001d15760008155600101620001d6565b600181811c908216806200020157607f821691505b602082108114156200022357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160c05160e01c60e05160e01c61215f6200028f60003960006105610152600081816104af015261085801526000818161034801526107e9015260008181610abf0152818161115c015281816115a101526115fd015261215f6000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063b2bb8df81161008a578063d5abeb0111610064578063d5abeb011461049d578063e985e9c5146104e6578063f2fde38b1461052f578063f968adbe1461054f57600080fd5b8063b2bb8df81461043d578063b88d4fde1461045d578063c87b56dd1461047d57600080fd5b806395d89b41116100c657806395d89b41146103c85780639b642de1146103dd578063a22cb465146103fd578063ab7fb4651461041d57600080fd5b806370a082311461036a5780638a8869861461038a5780638da5cb5b146103aa57600080fd5b80632db11544116101595780635fd22840116101335780635fd22840146102e157806362b99ad4146103015780636352211e146103165780636817c76c1461033657600080fd5b80632db11544146102995780633ccfd60b146102ac57806342842e0e146102c157600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611d96565b610583565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb6105d5565b6040516101cd9190611ec9565b34801561020457600080fd5b50610218610213366004611e18565b610667565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611bd5565b6106ab565b005b34801561025e57600080fd5b5060015460005403600019015b6040519081526020016101cd565b34801561028557600080fd5b50610250610294366004611af4565b610739565b6102506102a7366004611e18565b61078f565b3480156102b857600080fd5b506102506108d0565b3480156102cd57600080fd5b506102506102dc366004611af4565b610976565b3480156102ed57600080fd5b506102506102fc366004611e18565b610991565b34801561030d57600080fd5b506101eb6109a2565b34801561032257600080fd5b50610218610331366004611e18565b610a30565b34801561034257600080fd5b5061026b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561037657600080fd5b5061026b610385366004611aa6565b610a42565b34801561039657600080fd5b506102506103a5366004611cc7565b610b02565b3480156103b657600080fd5b506008546001600160a01b0316610218565b3480156103d457600080fd5b506101eb610b96565b3480156103e957600080fd5b506102506103f8366004611dd0565b610ba5565b34801561040957600080fd5b50610250610418366004611bab565b610bc4565b34801561042957600080fd5b50610250610438366004611bff565b610c5a565b34801561044957600080fd5b50610250610458366004611bff565b610d10565b34801561046957600080fd5b50610250610478366004611b30565b610dc6565b34801561048957600080fd5b506101eb610498366004611e18565b610e23565b3480156104a957600080fd5b506104d17f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff90911681526020016101cd565b3480156104f257600080fd5b506101c1610501366004611ac1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561053b57600080fd5b5061025061054a366004611aa6565b610ea8565b34801561055b57600080fd5b506104d17f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b14806105b457506001600160e01b03198216635b5e139f60e01b145b806105cf57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105e490612031565b80601f016020809104026020016040519081016040528092919081815260200182805461061090612031565b801561065d5780601f106106325761010080835404028352916020019161065d565b820191906000526020600020905b81548152906001019060200180831161064057829003601f168201915b5050505050905090565b600061067282610f1e565b61068f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106b682610a30565b9050806001600160a01b0316836001600160a01b031614156106eb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061070b57506107098133610501565b155b15610729576040516367d9dca160e11b815260040160405180910390fd5b610734838383610f57565b505050565b6001600160a01b0382166000908152600a602052604090205460ff1615801561077b57506001600160a01b0383166000908152600b602052604090205460ff16155b61078457600080fd5b610734838383610fb3565b3233146107e35760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b61080d817f0000000000000000000000000000000000000000000000000000000000000000611fa7565b34101561084b5760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b60448201526064016107da565b60015460005463ffffffff7f000000000000000000000000000000000000000000000000000000000000000016918391036000190161088a9190611f7b565b11156108c35760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016107da565b6108cd3382610fbe565b50565b6108d8610fd8565b60405147903390600090829084908381818185875af1925050503d806000811461091e576040519150601f19603f3d011682016040523d82523d6000602084013e610923565b606091505b505080915050806107345760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064016107da565b61073483838360405180602001604052806000815250610dc6565b610999610fd8565b6108cd81611034565b600980546109af90612031565b80601f01602080910402602001604051908101604052809291908181526020018280546109db90612031565b8015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b505050505081565b6000610a3b8261103d565b5192915050565b60006001600160a01b038216610a6b576040516323d3ad8160e21b815260040160405180910390fd5b6001600160a01b0382166000908152600560205260409020546001600160401b031615610ab757506001600160a01b03166000908152600560205260409020546001600160401b031690565b600054610ae47f000000000000000000000000000000000000000000000000000000000000000084611fc6565b6001600160a01b031611610afa57506001919050565b506000919050565b610b0a610fd8565b60008251118015610b1c575080518251145b610b385760405162461bcd60e51b81526004016107da90611edc565b60005b825181101561073457610b84838281518110610b5957610b596120c7565b6020026020010151838381518110610b7357610b736120c7565b602002602001015161ffff16610fbe565b80610b8e8161206c565b915050610b3b565b6060600380546105e490612031565b610bad610fd8565b8051610bc0906009906020840190611911565b5050565b6001600160a01b038216331415610bee5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c62610fd8565b60008251118015610c74575080518251145b610c905760405162461bcd60e51b81526004016107da90611edc565b60005b825181101561073457818181518110610cae57610cae6120c7565b6020026020010151600a6000858481518110610ccc57610ccc6120c7565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610d088161206c565b915050610c93565b610d18610fd8565b60008251118015610d2a575080518251145b610d465760405162461bcd60e51b81526004016107da90611edc565b60005b825181101561073457818181518110610d6457610d646120c7565b6020026020010151600b6000858481518110610d8257610d826120c7565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610dbe8161206c565b915050610d49565b6001600160a01b0383166000908152600a602052604090205460ff16158015610e0857506001600160a01b0384166000908152600b602052604090205460ff16155b610e1157600080fd5b610e1d848484846111ac565b50505050565b6060610e2e82610f1e565b610e4b57604051630a14c4b560e41b815260040160405180910390fd5b6000610e556111f7565b9050805160001415610e765760405180602001604052806000815250610ea1565b80610e8084611206565b604051602001610e91929190611e5d565b6040516020818303038152906040525b9392505050565b610eb0610fd8565b6001600160a01b038116610f155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107da565b6108cd8161130b565b600081600111158015610f32575060005482105b80156105cf575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61073483838361135d565b610bc082826040518060200160405280600081525061155f565b6008546001600160a01b031633146110325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107da565b565b6108cd8161156c565b6040805160608101825260008082526020820181905291810191909152818060011115801561106d575060005481105b1561119357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906111915780516001600160a01b0316156110e0579392505050565b60095b600019909201600081815260046020908152604091829020825160608101845290546001600160a01b0381168083526001600160401b03600160a01b8304169383019390935260ff600160e01b909104161515928101929092529193909250901561115057509392505050565b60001901806110e357507f0000000000000000000000000000000000000000000000000000000000000000939093016001600160a01b031683525090919050565b505b604051636f96cda160e11b815260040160405180910390fd5b6111b784848461135d565b6001600160a01b0383163b151580156111d957506111d78484848461166e565b155b15610e1d576040516368d2bf6b60e11b815260040160405180910390fd5b6060600980546105e490612031565b60608161122a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611254578061123e8161206c565b915061124d9050600a83611f93565b915061122e565b6000816001600160401b0381111561126e5761126e6120dd565b6040519080825280601f01601f191660200182016040528015611298576020820181803683370190505b5090505b8415611303576112ad600183611fee565b91506112ba600a86612087565b6112c5906030611f7b565b60f81b8183815181106112da576112da6120c7565b60200101906001600160f81b031916908160001a9053506112fc600a86611f93565b945061129c565b949350505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006113688261103d565b80519091506000906001600160a01b0316336001600160a01b03161480611396575081516113969033610501565b806113b15750336113a684610667565b6001600160a01b0316145b9050806113d157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146114065760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661142d57604051633a954ecd60e21b815260040160405180910390fd5b61143d6000848460000151610f57565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166115275760005481101561152757825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b031660008051602061210a83398151915260405160405180910390a45b5050505050565b6107348383836001611765565b8061158a5760405163b562e8dd60e01b815260040160405180910390fd5b60008054906115998383611f7b565b90506115c5827f0000000000000000000000000000000000000000000000000000000000000000611f59565b60008054815260046020526040902080546001600160a01b0319166001600160a01b03929092169190911790555b81806001019250827f0000000000000000000000000000000000000000000000000000000000000000016001600160a01b031660006001600160a01b031660008051602061210a83398151915260405160405180910390a4808214156115f357826000808282546116649190611f7b565b9091555050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116a3903390899088908890600401611e8c565b602060405180830381600087803b1580156116bd57600080fd5b505af19250505080156116ed575060408051601f3d908101601f191682019092526116ea91810190611db3565b60015b611748573d80801561171b576040519150601f19603f3d011682016040523d82523d6000602084013e611720565b606091505b508051611740576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b03851661178e57604051622e076360e81b815260040160405180910390fd5b836117ac5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561185d57506001600160a01b0387163b15155b156118d4575b60405182906001600160a01b0389169060009060008051602061210a833981519152908290a461189c600088848060010195508861166e565b6118b9576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118635782600054146118cf57600080fd5b611908565b5b6040516001830192906001600160a01b0389169060009060008051602061210a833981519152908290a4808214156118d5575b50600055611558565b82805461191d90612031565b90600052602060002090601f01602090048101928261193f5760008555611985565b82601f1061195857805160ff1916838001178555611985565b82800160010185558215611985579182015b8281111561198557825182559160200191906001019061196a565b50611991929150611995565b5090565b5b808211156119915760008155600101611996565b60006001600160401b038311156119c3576119c36120dd565b6119d6601f8401601f1916602001611f06565b90508281528383830111156119ea57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a1857600080fd5b919050565b600082601f830112611a2e57600080fd5b81356020611a43611a3e83611f36565b611f06565b80838252828201915082860187848660051b8901011115611a6357600080fd5b60005b85811015611a8957611a7782611a01565b84529284019290840190600101611a66565b5090979650505050505050565b80358015158114611a1857600080fd5b600060208284031215611ab857600080fd5b610ea182611a01565b60008060408385031215611ad457600080fd5b611add83611a01565b9150611aeb60208401611a01565b90509250929050565b600080600060608486031215611b0957600080fd5b611b1284611a01565b9250611b2060208501611a01565b9150604084013590509250925092565b60008060008060808587031215611b4657600080fd5b611b4f85611a01565b9350611b5d60208601611a01565b92506040850135915060608501356001600160401b03811115611b7f57600080fd5b8501601f81018713611b9057600080fd5b611b9f878235602084016119aa565b91505092959194509250565b60008060408385031215611bbe57600080fd5b611bc783611a01565b9150611aeb60208401611a96565b60008060408385031215611be857600080fd5b611bf183611a01565b946020939093013593505050565b60008060408385031215611c1257600080fd5b82356001600160401b0380821115611c2957600080fd5b611c3586838701611a1d565b9350602091508185013581811115611c4c57600080fd5b85019050601f81018613611c5f57600080fd5b8035611c6d611a3e82611f36565b80828252848201915084840189868560051b8701011115611c8d57600080fd5b600094505b83851015611cb757611ca381611a96565b835260019490940193918501918501611c92565b5080955050505050509250929050565b60008060408385031215611cda57600080fd5b82356001600160401b0380821115611cf157600080fd5b611cfd86838701611a1d565b9350602091508185013581811115611d1457600080fd5b85019050601f81018613611d2757600080fd5b8035611d35611a3e82611f36565b80828252848201915084840189868560051b8701011115611d5557600080fd5b60009450845b84811015611d8657813561ffff81168114611d74578687fd5b84529286019290860190600101611d5b565b5096999098509650505050505050565b600060208284031215611da857600080fd5b8135610ea1816120f3565b600060208284031215611dc557600080fd5b8151610ea1816120f3565b600060208284031215611de257600080fd5b81356001600160401b03811115611df857600080fd5b8201601f81018413611e0957600080fd5b611303848235602084016119aa565b600060208284031215611e2a57600080fd5b5035919050565b60008151808452611e49816020860160208601612005565b601f01601f19169290920160200192915050565b60008351611e6f818460208801612005565b835190830190611e83818360208801612005565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ebf90830184611e31565b9695505050505050565b602081526000610ea16020830184611e31565b60208082526010908201526f098cadccee8d040dcdee840dac2e8c6d60831b604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715611f2e57611f2e6120dd565b604052919050565b60006001600160401b03821115611f4f57611f4f6120dd565b5060051b60200190565b60006001600160a01b03828116848216808303821115611e8357611e8361209b565b60008219821115611f8e57611f8e61209b565b500190565b600082611fa257611fa26120b1565b500490565b6000816000190483118215151615611fc157611fc161209b565b500290565b60006001600160a01b0383811690831681811015611fe657611fe661209b565b039392505050565b6000828210156120005761200061209b565b500390565b60005b83811015612020578181015183820152602001612008565b83811115610e1d5750506000910152565b600181811c9082168061204557607f821691505b6020821081141561206657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120805761208061209b565b5060010190565b600082612096576120966120b1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108cd57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a9f76df747e0a1d6eb10a4bcd627168de108b780c4deb89307c2281ce9dc253b64736f6c63430008070033697066733a2f2f626166796265696669776f6b76686f6632336f70736d736c7069616269357162796668676c7163706f626f3465376f6e616d66756c6861656771792f

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec578063b2bb8df81161008a578063d5abeb0111610064578063d5abeb011461049d578063e985e9c5146104e6578063f2fde38b1461052f578063f968adbe1461054f57600080fd5b8063b2bb8df81461043d578063b88d4fde1461045d578063c87b56dd1461047d57600080fd5b806395d89b41116100c657806395d89b41146103c85780639b642de1146103dd578063a22cb465146103fd578063ab7fb4651461041d57600080fd5b806370a082311461036a5780638a8869861461038a5780638da5cb5b146103aa57600080fd5b80632db11544116101595780635fd22840116101335780635fd22840146102e157806362b99ad4146103015780636352211e146103165780636817c76c1461033657600080fd5b80632db11544146102995780633ccfd60b146102ac57806342842e0e146102c157600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611d96565b610583565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb6105d5565b6040516101cd9190611ec9565b34801561020457600080fd5b50610218610213366004611e18565b610667565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611bd5565b6106ab565b005b34801561025e57600080fd5b5060015460005403600019015b6040519081526020016101cd565b34801561028557600080fd5b50610250610294366004611af4565b610739565b6102506102a7366004611e18565b61078f565b3480156102b857600080fd5b506102506108d0565b3480156102cd57600080fd5b506102506102dc366004611af4565b610976565b3480156102ed57600080fd5b506102506102fc366004611e18565b610991565b34801561030d57600080fd5b506101eb6109a2565b34801561032257600080fd5b50610218610331366004611e18565b610a30565b34801561034257600080fd5b5061026b7f000000000000000000000000000000000000000000000000001ff973cafa800081565b34801561037657600080fd5b5061026b610385366004611aa6565b610a42565b34801561039657600080fd5b506102506103a5366004611cc7565b610b02565b3480156103b657600080fd5b506008546001600160a01b0316610218565b3480156103d457600080fd5b506101eb610b96565b3480156103e957600080fd5b506102506103f8366004611dd0565b610ba5565b34801561040957600080fd5b50610250610418366004611bab565b610bc4565b34801561042957600080fd5b50610250610438366004611bff565b610c5a565b34801561044957600080fd5b50610250610458366004611bff565b610d10565b34801561046957600080fd5b50610250610478366004611b30565b610dc6565b34801561048957600080fd5b506101eb610498366004611e18565b610e23565b3480156104a957600080fd5b506104d17f000000000000000000000000000000000000000000000000000000000000012c81565b60405163ffffffff90911681526020016101cd565b3480156104f257600080fd5b506101c1610501366004611ac1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561053b57600080fd5b5061025061054a366004611aa6565b610ea8565b34801561055b57600080fd5b506104d17f000000000000000000000000000000000000000000000000000000000000000a81565b60006001600160e01b031982166380ac58cd60e01b14806105b457506001600160e01b03198216635b5e139f60e01b145b806105cf57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105e490612031565b80601f016020809104026020016040519081016040528092919081815260200182805461061090612031565b801561065d5780601f106106325761010080835404028352916020019161065d565b820191906000526020600020905b81548152906001019060200180831161064057829003601f168201915b5050505050905090565b600061067282610f1e565b61068f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106b682610a30565b9050806001600160a01b0316836001600160a01b031614156106eb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061070b57506107098133610501565b155b15610729576040516367d9dca160e11b815260040160405180910390fd5b610734838383610f57565b505050565b6001600160a01b0382166000908152600a602052604090205460ff1615801561077b57506001600160a01b0383166000908152600b602052604090205460ff16155b61078457600080fd5b610734838383610fb3565b3233146107e35760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b61080d817f000000000000000000000000000000000000000000000000001ff973cafa8000611fa7565b34101561084b5760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b60448201526064016107da565b60015460005463ffffffff7f000000000000000000000000000000000000000000000000000000000000012c16918391036000190161088a9190611f7b565b11156108c35760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016107da565b6108cd3382610fbe565b50565b6108d8610fd8565b60405147903390600090829084908381818185875af1925050503d806000811461091e576040519150601f19603f3d011682016040523d82523d6000602084013e610923565b606091505b505080915050806107345760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064016107da565b61073483838360405180602001604052806000815250610dc6565b610999610fd8565b6108cd81611034565b600980546109af90612031565b80601f01602080910402602001604051908101604052809291908181526020018280546109db90612031565b8015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b505050505081565b6000610a3b8261103d565b5192915050565b60006001600160a01b038216610a6b576040516323d3ad8160e21b815260040160405180910390fd5b6001600160a01b0382166000908152600560205260409020546001600160401b031615610ab757506001600160a01b03166000908152600560205260409020546001600160401b031690565b600054610ae47f000000000000000000000000962228f791e745273700024d54e3f9897a3e819884611fc6565b6001600160a01b031611610afa57506001919050565b506000919050565b610b0a610fd8565b60008251118015610b1c575080518251145b610b385760405162461bcd60e51b81526004016107da90611edc565b60005b825181101561073457610b84838281518110610b5957610b596120c7565b6020026020010151838381518110610b7357610b736120c7565b602002602001015161ffff16610fbe565b80610b8e8161206c565b915050610b3b565b6060600380546105e490612031565b610bad610fd8565b8051610bc0906009906020840190611911565b5050565b6001600160a01b038216331415610bee5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c62610fd8565b60008251118015610c74575080518251145b610c905760405162461bcd60e51b81526004016107da90611edc565b60005b825181101561073457818181518110610cae57610cae6120c7565b6020026020010151600a6000858481518110610ccc57610ccc6120c7565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610d088161206c565b915050610c93565b610d18610fd8565b60008251118015610d2a575080518251145b610d465760405162461bcd60e51b81526004016107da90611edc565b60005b825181101561073457818181518110610d6457610d646120c7565b6020026020010151600b6000858481518110610d8257610d826120c7565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610dbe8161206c565b915050610d49565b6001600160a01b0383166000908152600a602052604090205460ff16158015610e0857506001600160a01b0384166000908152600b602052604090205460ff16155b610e1157600080fd5b610e1d848484846111ac565b50505050565b6060610e2e82610f1e565b610e4b57604051630a14c4b560e41b815260040160405180910390fd5b6000610e556111f7565b9050805160001415610e765760405180602001604052806000815250610ea1565b80610e8084611206565b604051602001610e91929190611e5d565b6040516020818303038152906040525b9392505050565b610eb0610fd8565b6001600160a01b038116610f155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107da565b6108cd8161130b565b600081600111158015610f32575060005482105b80156105cf575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61073483838361135d565b610bc082826040518060200160405280600081525061155f565b6008546001600160a01b031633146110325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107da565b565b6108cd8161156c565b6040805160608101825260008082526020820181905291810191909152818060011115801561106d575060005481105b1561119357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906111915780516001600160a01b0316156110e0579392505050565b60095b600019909201600081815260046020908152604091829020825160608101845290546001600160a01b0381168083526001600160401b03600160a01b8304169383019390935260ff600160e01b909104161515928101929092529193909250901561115057509392505050565b60001901806110e357507f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198939093016001600160a01b031683525090919050565b505b604051636f96cda160e11b815260040160405180910390fd5b6111b784848461135d565b6001600160a01b0383163b151580156111d957506111d78484848461166e565b155b15610e1d576040516368d2bf6b60e11b815260040160405180910390fd5b6060600980546105e490612031565b60608161122a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611254578061123e8161206c565b915061124d9050600a83611f93565b915061122e565b6000816001600160401b0381111561126e5761126e6120dd565b6040519080825280601f01601f191660200182016040528015611298576020820181803683370190505b5090505b8415611303576112ad600183611fee565b91506112ba600a86612087565b6112c5906030611f7b565b60f81b8183815181106112da576112da6120c7565b60200101906001600160f81b031916908160001a9053506112fc600a86611f93565b945061129c565b949350505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006113688261103d565b80519091506000906001600160a01b0316336001600160a01b03161480611396575081516113969033610501565b806113b15750336113a684610667565b6001600160a01b0316145b9050806113d157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146114065760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661142d57604051633a954ecd60e21b815260040160405180910390fd5b61143d6000848460000151610f57565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166115275760005481101561152757825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b031660008051602061210a83398151915260405160405180910390a45b5050505050565b6107348383836001611765565b8061158a5760405163b562e8dd60e01b815260040160405180910390fd5b60008054906115998383611f7b565b90506115c5827f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198611f59565b60008054815260046020526040902080546001600160a01b0319166001600160a01b03929092169190911790555b81806001019250827f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198016001600160a01b031660006001600160a01b031660008051602061210a83398151915260405160405180910390a4808214156115f357826000808282546116649190611f7b565b9091555050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116a3903390899088908890600401611e8c565b602060405180830381600087803b1580156116bd57600080fd5b505af19250505080156116ed575060408051601f3d908101601f191682019092526116ea91810190611db3565b60015b611748573d80801561171b576040519150601f19603f3d011682016040523d82523d6000602084013e611720565b606091505b508051611740576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b03851661178e57604051622e076360e81b815260040160405180910390fd5b836117ac5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561185d57506001600160a01b0387163b15155b156118d4575b60405182906001600160a01b0389169060009060008051602061210a833981519152908290a461189c600088848060010195508861166e565b6118b9576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118635782600054146118cf57600080fd5b611908565b5b6040516001830192906001600160a01b0389169060009060008051602061210a833981519152908290a4808214156118d5575b50600055611558565b82805461191d90612031565b90600052602060002090601f01602090048101928261193f5760008555611985565b82601f1061195857805160ff1916838001178555611985565b82800160010185558215611985579182015b8281111561198557825182559160200191906001019061196a565b50611991929150611995565b5090565b5b808211156119915760008155600101611996565b60006001600160401b038311156119c3576119c36120dd565b6119d6601f8401601f1916602001611f06565b90508281528383830111156119ea57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a1857600080fd5b919050565b600082601f830112611a2e57600080fd5b81356020611a43611a3e83611f36565b611f06565b80838252828201915082860187848660051b8901011115611a6357600080fd5b60005b85811015611a8957611a7782611a01565b84529284019290840190600101611a66565b5090979650505050505050565b80358015158114611a1857600080fd5b600060208284031215611ab857600080fd5b610ea182611a01565b60008060408385031215611ad457600080fd5b611add83611a01565b9150611aeb60208401611a01565b90509250929050565b600080600060608486031215611b0957600080fd5b611b1284611a01565b9250611b2060208501611a01565b9150604084013590509250925092565b60008060008060808587031215611b4657600080fd5b611b4f85611a01565b9350611b5d60208601611a01565b92506040850135915060608501356001600160401b03811115611b7f57600080fd5b8501601f81018713611b9057600080fd5b611b9f878235602084016119aa565b91505092959194509250565b60008060408385031215611bbe57600080fd5b611bc783611a01565b9150611aeb60208401611a96565b60008060408385031215611be857600080fd5b611bf183611a01565b946020939093013593505050565b60008060408385031215611c1257600080fd5b82356001600160401b0380821115611c2957600080fd5b611c3586838701611a1d565b9350602091508185013581811115611c4c57600080fd5b85019050601f81018613611c5f57600080fd5b8035611c6d611a3e82611f36565b80828252848201915084840189868560051b8701011115611c8d57600080fd5b600094505b83851015611cb757611ca381611a96565b835260019490940193918501918501611c92565b5080955050505050509250929050565b60008060408385031215611cda57600080fd5b82356001600160401b0380821115611cf157600080fd5b611cfd86838701611a1d565b9350602091508185013581811115611d1457600080fd5b85019050601f81018613611d2757600080fd5b8035611d35611a3e82611f36565b80828252848201915084840189868560051b8701011115611d5557600080fd5b60009450845b84811015611d8657813561ffff81168114611d74578687fd5b84529286019290860190600101611d5b565b5096999098509650505050505050565b600060208284031215611da857600080fd5b8135610ea1816120f3565b600060208284031215611dc557600080fd5b8151610ea1816120f3565b600060208284031215611de257600080fd5b81356001600160401b03811115611df857600080fd5b8201601f81018413611e0957600080fd5b611303848235602084016119aa565b600060208284031215611e2a57600080fd5b5035919050565b60008151808452611e49816020860160208601612005565b601f01601f19169290920160200192915050565b60008351611e6f818460208801612005565b835190830190611e83818360208801612005565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ebf90830184611e31565b9695505050505050565b602081526000610ea16020830184611e31565b60208082526010908201526f098cadccee8d040dcdee840dac2e8c6d60831b604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715611f2e57611f2e6120dd565b604052919050565b60006001600160401b03821115611f4f57611f4f6120dd565b5060051b60200190565b60006001600160a01b03828116848216808303821115611e8357611e8361209b565b60008219821115611f8e57611f8e61209b565b500190565b600082611fa257611fa26120b1565b500490565b6000816000190483118215151615611fc157611fc161209b565b500290565b60006001600160a01b0383811690831681811015611fe657611fe661209b565b039392505050565b6000828210156120005761200061209b565b500390565b60005b83811015612020578181015183820152602001612008565b83811115610e1d5750506000910152565b600181811c9082168061204557607f821691505b6020821081141561206657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120805761208061209b565b5060010190565b600082612096576120966120b1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108cd57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a9f76df747e0a1d6eb10a4bcd627168de108b780c4deb89307c2281ce9dc253b64736f6c63430008070033

Deployed Bytecode Sourcemap

48465:3076:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28397:305;;;;;;;;;;-1:-1:-1;28397:305:0;;;;;:::i;:::-;;:::i;:::-;;;8822:14:1;;8815:22;8797:41;;8785:2;8770:18;28397:305:0;;;;;;;;32238:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33741:204::-;;;;;;;;;;-1:-1:-1;33741:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8120:32:1;;;8102:51;;8090:2;8075:18;33741:204:0;7956:203:1;33304:371:0;;;;;;;;;;-1:-1:-1;33304:371:0;;;;;:::i;:::-;;:::i;:::-;;27646:303;;;;;;;;;;-1:-1:-1;49372:1:0;27900:12;27690:7;27884:13;:28;-1:-1:-1;;27884:46:0;27646:303;;;11721:25:1;;;11709:2;11694:18;27646:303:0;11575:177:1;49743:244:0;;;;;;;;;;-1:-1:-1;49743:244:0;;;;;:::i;:::-;;:::i;49389:243::-;;;;;;:::i;:::-;;:::i;51256:278::-;;;;;;;;;;;;;:::i;34839:185::-;;;;;;;;;;-1:-1:-1;34839:185:0;;;;;:::i;:::-;;:::i;49640:95::-;;;;;;;;;;-1:-1:-1;49640:95:0;;;;;:::i;:::-;;:::i;48512:96::-;;;;;;;;;;;;;:::i;32047:124::-;;;;;;;;;;-1:-1:-1;32047:124:0;;;;;:::i;:::-;;:::i;48617:48::-;;;;;;;;;;;;;;;28768:395;;;;;;;;;;-1:-1:-1;28768:395:0;;;;;:::i;:::-;;:::i;50951:297::-;;;;;;;;;;-1:-1:-1;50951:297:0;;;;;:::i;:::-;;:::i;4598:87::-;;;;;;;;;;-1:-1:-1;4671:6:0;;-1:-1:-1;;;;;4671:6:0;4598:87;;32407:104;;;;;;;;;;;;;:::i;49177:86::-;;;;;;;;;;-1:-1:-1;49177:86:0;;;;;:::i;:::-;;:::i;34017:279::-;;;;;;;;;;-1:-1:-1;34017:279:0;;;;;:::i;:::-;;:::i;50285:315::-;;;;;;;;;;-1:-1:-1;50285:315:0;;;;;:::i;:::-;;:::i;50608:::-;;;;;;;;;;-1:-1:-1;50608:315:0;;;;;:::i;:::-;;:::i;49998:279::-;;;;;;;;;;-1:-1:-1;49998:279:0;;;;;:::i;:::-;;:::i;32582:318::-;;;;;;;;;;-1:-1:-1;32582:318:0;;;;;:::i;:::-;;:::i;48672:39::-;;;;;;;;;;;;;;;;;;11931:10:1;11919:23;;;11901:42;;11889:2;11874:18;48672:39:0;11757:192:1;34367:164:0;;;;;;;;;;-1:-1:-1;34367:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34488:25:0;;;34464:4;34488:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34367:164;5050:201;;;;;;;;;;-1:-1:-1;5050:201:0;;;;;:::i;:::-;;:::i;48718:37::-;;;;;;;;;;;;;;;28397:305;28499:4;-1:-1:-1;;;;;;28536:40:0;;-1:-1:-1;;;28536:40:0;;:105;;-1:-1:-1;;;;;;;28593:48:0;;-1:-1:-1;;;28593:48:0;28536:105;:158;;;-1:-1:-1;;;;;;;;;;17107:40:0;;;28658:36;28516:178;28397:305;-1:-1:-1;;28397:305:0:o;32238:100::-;32292:13;32325:5;32318:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32238:100;:::o;33741:204::-;33809:7;33834:16;33842:7;33834;:16::i;:::-;33829:64;;33859:34;;-1:-1:-1;;;33859:34:0;;;;;;;;;;;33829:64;-1:-1:-1;33913:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33913:24:0;;33741:204::o;33304:371::-;33377:13;33393:24;33409:7;33393:15;:24::i;:::-;33377:40;;33438:5;-1:-1:-1;;;;;33432:11:0;:2;-1:-1:-1;;;;;33432:11:0;;33428:48;;;33452:24;;-1:-1:-1;;;33452:24:0;;;;;;;;;;;33428:48;3229:10;-1:-1:-1;;;;;33493:21:0;;;;;;:63;;-1:-1:-1;33519:37:0;33536:5;3229:10;34367:164;:::i;33519:37::-;33518:38;33493:63;33489:138;;;33580:35;;-1:-1:-1;;;33580:35:0;;;;;;;;;;;33489:138;33639:28;33648:2;33652:7;33661:5;33639:8;:28::i;:::-;33366:309;33304:371;;:::o;49743:244::-;-1:-1:-1;;;;;49895:14:0;;;;;;:10;:14;;;;;;;;49894:15;:36;;;;-1:-1:-1;;;;;;49914:16:0;;;;;;:10;:16;;;;;;;;49913:17;49894:36;49886:45;;;;;;49942:37;49961:4;49967:2;49971:7;49942:18;:37::i;49389:243::-;48909:9;48922:10;48909:23;48901:66;;;;-1:-1:-1;;;48901:66:0;;10712:2:1;48901:66:0;;;10694:21:1;10751:2;10731:18;;;10724:30;10790:32;10770:18;;;10763:60;10840:18;;48901:66:0;;;;;;;;;49484:18:::1;49496:6:::0;49484:9:::1;:18;:::i;:::-;49471:9;:31;;49463:56;;;::::0;-1:-1:-1;;;49463:56:0;;9275:2:1;49463:56:0::1;::::0;::::1;9257:21:1::0;9314:2;9294:18;;;9287:30;-1:-1:-1;;;9333:18:1;;;9326:42;9385:18;;49463:56:0::1;9073:336:1::0;49463:56:0::1;49372:1:::0;27900:12;27690:7;27884:13;49535:35:::1;49561:9;49535:35;::::0;49551:6;;27884:28;-1:-1:-1;;27884:46:0;49535:22:::1;;;;:::i;:::-;:35;;49527:56;;;::::0;-1:-1:-1;;;49527:56:0;;10376:2:1;49527:56:0::1;::::0;::::1;10358:21:1::0;10415:1;10395:18;;;10388:29;-1:-1:-1;;;10433:18:1;;;10426:38;10481:18;;49527:56:0::1;10174:331:1::0;49527:56:0::1;49595:29;49605:10;49617:6;49595:9;:29::i;:::-;49389:243:::0;:::o;51256:278::-;4484:13;:11;:13::i;:::-;51442:29:::1;::::0;51325:21:::1;::::0;51379:10:::1;::::0;51304:18:::1;::::0;51379:10;;51325:21;;51304:18;51442:29;51304:18;51442:29;51325:21;51379:10;51442:29:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51428:43;;;;;51490:7;51482:44;;;::::0;-1:-1:-1;;;51482:44:0;;10023:2:1;51482:44:0::1;::::0;::::1;10005:21:1::0;10062:2;10042:18;;;10035:30;10101:26;10081:18;;;10074:54;10145:18;;51482:44:0::1;9821:348:1::0;34839:185:0;34977:39;34994:4;35000:2;35004:7;34977:39;;;;;;;;;;;;:16;:39::i;49640:95::-;4484:13;:11;:13::i;:::-;49713:14:::1;49720:6;49713;:14::i;48512:96::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32047:124::-;32111:7;32138:20;32150:7;32138:11;:20::i;:::-;:25;;32047:124;-1:-1:-1;;32047:124:0:o;28768:395::-;28832:7;-1:-1:-1;;;;;28856:19:0;;28852:60;;28884:28;;-1:-1:-1;;;28884:28:0;;;;;;;;;;;28852:60;-1:-1:-1;;;;;28929:19:0;;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28929:27:0;:32;28925:108;;-1:-1:-1;;;;;;28993:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28993:27:0;;28768:395::o;28925:108::-;29085:13;;29049:32;29074:6;29057:5;29049:32;:::i;:::-;-1:-1:-1;;;;;29049:49:0;;29045:90;;-1:-1:-1;29122:1:0;;28768:395;-1:-1:-1;28768:395:0:o;29045:90::-;-1:-1:-1;29154:1:0;;28768:395;-1:-1:-1;28768:395:0:o;50951:297::-;4484:13;:11;:13::i;:::-;51073:1:::1;51055:8;:15;:19;:53;;;;;51097:4;:11;51078:8;:15;:30;51055:53;51047:82;;;;-1:-1:-1::0;;;51047:82:0::1;;;;;;;:::i;:::-;51145:6;51140:101;51161:8;:15;51157:1;:19;51140:101;;;51198:31;51208:8;51217:1;51208:11;;;;;;;;:::i;:::-;;;;;;;51221:4;51226:1;51221:7;;;;;;;;:::i;:::-;;;;;;;51198:31;;:9;:31::i;:::-;51178:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51140:101;;32407:104:::0;32463:13;32496:7;32489:14;;;;;:::i;49177:86::-;4484:13;:11;:13::i;:::-;49240:15;;::::1;::::0;:9:::1;::::0;:15:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49177:86:::0;:::o;34017:279::-;-1:-1:-1;;;;;34108:24:0;;3229:10;34108:24;34104:54;;;34141:17;;-1:-1:-1;;;34141:17:0;;;;;;;;;;;34104:54;3229:10;34171:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34171:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34171:53:0;;;;;;;;;;34240:48;;8797:41:1;;;34171:42:0;;3229:10;34240:48;;8770:18:1;34240:48:0;;;;;;;34017:279;;:::o;50285:315::-;4484:13;:11;:13::i;:::-;50417:1:::1;50399:8;:15;:19;:56;;;;;50441:7;:14;50422:8;:15;:33;50399:56;50391:85;;;;-1:-1:-1::0;;;50391:85:0::1;;;;;;;:::i;:::-;50492:6;50487:106;50508:8;:15;50504:1;:19;50487:106;;;50571:7;50579:1;50571:10;;;;;;;;:::i;:::-;;;;;;;50545;:23;50556:8;50565:1;50556:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50545:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50545:23:0;:36;;-1:-1:-1;;50545:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50525:3;::::1;::::0;::::1;:::i;:::-;;;;50487:106;;50608:315:::0;4484:13;:11;:13::i;:::-;50740:1:::1;50722:8;:15;:19;:56;;;;;50764:7;:14;50745:8;:15;:33;50722:56;50714:85;;;;-1:-1:-1::0;;;50714:85:0::1;;;;;;;:::i;:::-;50815:6;50810:106;50831:8;:15;50827:1;:19;50810:106;;;50894:7;50902:1;50894:10;;;;;;;;:::i;:::-;;;;;;;50868;:23;50879:8;50888:1;50879:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50868:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50868:23:0;:36;;-1:-1:-1;;50868:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50848:3;::::1;::::0;::::1;:::i;:::-;;;;50810:106;;49998:279:::0;-1:-1:-1;;;;;50175:14:0;;;;;;:10;:14;;;;;;;;50174:15;:36;;;;-1:-1:-1;;;;;;50194:16:0;;;;;;:10;:16;;;;;;;;50193:17;50174:36;50166:45;;;;;;50221:48;50244:4;50250:2;50254:7;50263:5;50221:22;:48::i;:::-;49998:279;;;;:::o;32582:318::-;32655:13;32686:16;32694:7;32686;:16::i;:::-;32681:59;;32711:29;;-1:-1:-1;;;32711:29:0;;;;;;;;;;;32681:59;32753:21;32777:10;:8;:10::i;:::-;32753:34;;32811:7;32805:21;32830:1;32805:26;;:87;;;;;;;;;;;;;;;;;32858:7;32867:18;:7;:16;:18::i;:::-;32841:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32805:87;32798:94;32582:318;-1:-1:-1;;;32582:318:0:o;5050:201::-;4484:13;:11;:13::i;:::-;-1:-1:-1;;;;;5139:22:0;::::1;5131:73;;;::::0;-1:-1:-1;;;5131:73:0;;9616:2:1;5131:73:0::1;::::0;::::1;9598:21:1::0;9655:2;9635:18;;;9628:30;9694:34;9674:18;;;9667:62;-1:-1:-1;;;9745:18:1;;;9738:36;9791:19;;5131:73:0::1;9414:402:1::0;5131:73:0::1;5215:28;5234:8;5215:18;:28::i;35719:187::-:0;35776:4;35819:7;49372:1;35800:26;;:53;;;;;35840:13;;35830:7;:23;35800:53;:98;;;;-1:-1:-1;;35871:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35871:27:0;;;;35870:28;;35719:187::o;45449:196::-;45564:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45564:29:0;-1:-1:-1;;;;;45564:29:0;;;;;;;;;45609:28;;45564:24;;45609:28;;;;;;;45449:196;;;:::o;34598:170::-;34732:28;34742:4;34748:2;34752:7;34732:9;:28::i;35914:104::-;35983:27;35993:2;35997:8;35983:27;;;;;;;;;;;;:9;:27::i;4763:132::-;4671:6;;-1:-1:-1;;;;;4671:6:0;3229:10;4827:23;4819:68;;;;-1:-1:-1;;;4819:68:0;;11416:2:1;4819:68:0;;;11398:21:1;;;11435:18;;;11428:30;11494:34;11474:18;;;11467:62;11546:18;;4819:68:0;11214:356:1;4819:68:0;4763:132::o;36552:113::-;36634:19;36644:8;36634:9;:19::i;30698:1287::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30808:7:0;;49372:1;30857:23;;:47;;;;;30891:13;;30884:4;:20;30857:47;30853:1065;;;30925:31;30959:17;;;:11;:17;;;;;;;;;30925:51;;;;;;;;;-1:-1:-1;;;;;30925:51:0;;;;-1:-1:-1;;;30925:51:0;;-1:-1:-1;;;;;30925:51:0;;;;;;;;-1:-1:-1;;;30925:51:0;;;;;;;;;;;;;;30995:904;;31045:14;;-1:-1:-1;;;;;31045:28:0;;31041:101;;31109:9;30698:1287;-1:-1:-1;;;30698:1287:0:o;31041:101::-;31462:1;31486:270;-1:-1:-1;;31515:6:0;;;31560:17;;;;:11;:17;;;;;;;;;31548:29;;;;;;;;;-1:-1:-1;;;;;31548:29:0;;;;;-1:-1:-1;;;;;;;;31548:29:0;;;;;;;;;;;-1:-1:-1;;;31548:29:0;;;;;;;;;;;;;31515:6;;31548:29;;-1:-1:-1;;31608:28:0;31604:109;;-1:-1:-1;31676:9:0;30698:1287;-1:-1:-1;;;30698:1287:0:o;31604:109::-;-1:-1:-1;;31743:7:0;:11;31486:270;;-1:-1:-1;31813:6:0;31805:34;;;;-1:-1:-1;;;;;31780:60:0;;;-1:-1:-1;31780:60:0;;:9;-1:-1:-1;30698:1287:0:o;30995:904::-;30906:1012;30853:1065;31946:31;;-1:-1:-1;;;31946:31:0;;;;;;;;;;;35095:369;35262:28;35272:4;35278:2;35282:7;35262:9;:28::i;:::-;-1:-1:-1;;;;;35305:13:0;;7137:19;:23;;35305:76;;;;;35325:56;35356:4;35362:2;35366:7;35375:5;35325:30;:56::i;:::-;35324:57;35305:76;35301:156;;;35405:40;;-1:-1:-1;;;35405:40:0;;;;;;;;;;;49058:111;49119:13;49152:9;49145:16;;;;;:::i;403:723::-;459:13;680:10;676:53;;-1:-1:-1;;707:10:0;;;;;;;;;;;;-1:-1:-1;;;707:10:0;;;;;403:723::o;676:53::-;754:5;739:12;795:78;802:9;;795:78;;828:8;;;;:::i;:::-;;-1:-1:-1;851:10:0;;-1:-1:-1;859:2:0;851:10;;:::i;:::-;;;795:78;;;883:19;915:6;-1:-1:-1;;;;;905:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;905:17:0;;883:39;;933:154;940:10;;933:154;;967:11;977:1;967:11;;:::i;:::-;;-1:-1:-1;1036:10:0;1044:2;1036:5;:10;:::i;:::-;1023:24;;:2;:24;:::i;:::-;1010:39;;993:6;1000;993:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;993:56:0;;;;;;;;-1:-1:-1;1064:11:0;1073:2;1064:11;;:::i;:::-;;;933:154;;;1111:6;403:723;-1:-1:-1;;;;403:723:0:o;5411:191::-;5504:6;;;-1:-1:-1;;;;;5521:17:0;;;-1:-1:-1;;;;;;5521:17:0;;;;;;;5554:40;;5504:6;;;5521:17;5504:6;;5554:40;;5485:16;;5554:40;5474:128;5411:191;:::o;40951:2112::-;41066:35;41104:20;41116:7;41104:11;:20::i;:::-;41179:18;;41066:58;;-1:-1:-1;41137:22:0;;-1:-1:-1;;;;;41163:34:0;3229:10;-1:-1:-1;;;;;41163:34:0;;:101;;;-1:-1:-1;41231:18:0;;41214:50;;3229:10;34367:164;:::i;41214:50::-;41163:154;;;-1:-1:-1;3229:10:0;41281:20;41293:7;41281:11;:20::i;:::-;-1:-1:-1;;;;;41281:36:0;;41163:154;41137:181;;41336:17;41331:66;;41362:35;;-1:-1:-1;;;41362:35:0;;;;;;;;;;;41331:66;41434:4;-1:-1:-1;;;;;41412:26:0;:13;:18;;;-1:-1:-1;;;;;41412:26:0;;41408:67;;41447:28;;-1:-1:-1;;;41447:28:0;;;;;;;;;;;41408:67;-1:-1:-1;;;;;41490:16:0;;41486:52;;41515:23;;-1:-1:-1;;;41515:23:0;;;;;;;;;;;41486:52;41659:49;41676:1;41680:7;41689:13;:18;;;41659:8;:49::i;:::-;-1:-1:-1;;;;;42004:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42004:31:0;;;-1:-1:-1;;;;;42004:31:0;;;-1:-1:-1;;42004:31:0;;;;;;;42050:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42050:29:0;;;;;;;;;;;42096:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42141:61:0;;;;-1:-1:-1;;;42186:15:0;42141:61;;;;;;;;;;;42476:11;;;42506:24;;;;;:29;42476:11;;42506:29;42502:445;;42731:13;;42717:11;:27;42713:219;;;42801:18;;;42769:24;;;:11;:24;;;;;;;;:50;;42884:28;;;;-1:-1:-1;;;;;42842:70:0;-1:-1:-1;;;42842:70:0;-1:-1:-1;;;;;;42842:70:0;;;-1:-1:-1;;;;;42769:50:0;;;42842:70;;;;;;;42713:219;41979:979;42994:7;42990:2;-1:-1:-1;;;;;42975:27:0;42984:4;-1:-1:-1;;;;;42975:27:0;-1:-1:-1;;;;;;;;;;;42975:27:0;;;;;;;;;43013:42;41055:2008;;40951:2112;;;:::o;36381:163::-;36504:32;36510:2;36514:8;36524:5;36531:4;36504:5;:32::i;40090:607::-;40179:13;40175:44;;40201:18;;-1:-1:-1;;;40201:18:0;;;;;;;;;;;40175:44;40236:20;40259:13;;;40301:23;40316:8;40259:13;40301:23;:::i;:::-;40287:37;-1:-1:-1;40381:39:0;40407:12;40389:6;40381:39;:::i;:::-;40339:26;40351:13;;40339:26;;:11;:26;;;;;:82;;-1:-1:-1;;;;;;40339:82:0;-1:-1:-1;;;;;40339:82:0;;;;;;;;;;40467:166;40569:14;;;;;;40553:12;40535:6;40527:39;-1:-1:-1;;;;;40498:86:0;40515:1;-1:-1:-1;;;;;40498:86:0;-1:-1:-1;;;;;;;;;;;40498:86:0;;;;;;;;;40628:3;40612:12;:19;;40467:166;;40679:8;40662:13;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;40090:607:0:o;46137:667::-;46321:72;;-1:-1:-1;;;46321:72:0;;46300:4;;-1:-1:-1;;;;;46321:36:0;;;;;:72;;3229:10;;46372:4;;46378:7;;46387:5;;46321:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46321:72:0;;;;;;;;-1:-1:-1;;46321:72:0;;;;;;;;;;;;:::i;:::-;;;46317:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46555:13:0;;46551:235;;46601:40;;-1:-1:-1;;;46601:40:0;;;;;;;;;;;46551:235;46744:6;46738:13;46729:6;46725:2;46721:15;46714:38;46317:480;-1:-1:-1;;;;;;46440:55:0;-1:-1:-1;;;46440:55:0;;-1:-1:-1;46137:667:0;;;;;;:::o;36925:1775::-;37064:20;37087:13;-1:-1:-1;;;;;37115:16:0;;37111:48;;37140:19;;-1:-1:-1;;;37140:19:0;;;;;;;;;;;37111:48;37174:13;37170:44;;37196:18;;-1:-1:-1;;;37196:18:0;;;;;;;;;;;37170:44;-1:-1:-1;;;;;37565:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37624:49:0;;-1:-1:-1;;;;;37565:44:0;;;;;;;37624:49;;;;-1:-1:-1;;37565:44:0;;;;;;37624:49;;;;;;;;;;;;;;;;37690:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37740:66:0;;;;-1:-1:-1;;;37790:15:0;37740:66;;;;;;;;;;37690:25;37887:23;;;37931:4;:23;;;;-1:-1:-1;;;;;;37939:13:0;;7137:19;:23;;37939:15;37927:641;;;37975:314;38006:38;;38031:12;;-1:-1:-1;;;;;38006:38:0;;;38023:1;;-1:-1:-1;;;;;;;;;;;38006:38:0;38023:1;;38006:38;38072:69;38111:1;38115:2;38119:14;;;;;;38135:5;38072:30;:69::i;:::-;38067:174;;38177:40;;-1:-1:-1;;;38177:40:0;;;;;;;;;;;38067:174;38284:3;38268:12;:19;;37975:314;;38370:12;38353:13;;:29;38349:43;;38384:8;;;38349:43;37927:641;;;38433:120;38464:40;;38489:14;;;;;-1:-1:-1;;;;;38464:40:0;;;38481:1;;-1:-1:-1;;;;;;;;;;;38464:40:0;38481:1;;38464:40;38548:3;38532:12;:19;;38433:120;;37927:641;-1:-1:-1;38582:13:0;:28;38632:60;49998:279;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;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:45;;;309:1;306;299:12;268:45;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;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:679::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:169;1098:2;1095:1;1092:9;1084:169;;;1155:23;1174:3;1155:23;:::i;:::-;1143:36;;1199:12;;;;1231;;;;1116:1;1109:9;1084:169;;;-1:-1:-1;1271:5:1;;603:679;-1:-1:-1;;;;;;;603:679:1:o;1287:160::-;1352:20;;1408:13;;1401:21;1391:32;;1381:60;;1437:1;1434;1427:12;1452:186;1511:6;1564:2;1552:9;1543:7;1539:23;1535:32;1532:52;;;1580:1;1577;1570:12;1532:52;1603:29;1622:9;1603:29;:::i;1643:260::-;1711:6;1719;1772:2;1760:9;1751:7;1747:23;1743:32;1740:52;;;1788:1;1785;1778:12;1740:52;1811:29;1830:9;1811:29;:::i;:::-;1801:39;;1859:38;1893:2;1882:9;1878:18;1859:38;:::i;:::-;1849:48;;1643:260;;;;;:::o;1908:328::-;1985:6;1993;2001;2054:2;2042:9;2033:7;2029:23;2025:32;2022:52;;;2070:1;2067;2060:12;2022:52;2093:29;2112:9;2093:29;:::i;:::-;2083:39;;2141:38;2175:2;2164:9;2160:18;2141:38;:::i;:::-;2131:48;;2226:2;2215:9;2211:18;2198:32;2188:42;;1908:328;;;;;:::o;2241:666::-;2336:6;2344;2352;2360;2413:3;2401:9;2392:7;2388:23;2384:33;2381:53;;;2430:1;2427;2420:12;2381:53;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2501:38;2535:2;2524:9;2520:18;2501:38;:::i;:::-;2491:48;;2586:2;2575:9;2571:18;2558:32;2548:42;;2641:2;2630:9;2626:18;2613:32;-1:-1:-1;;;;;2660:6:1;2657:30;2654:50;;;2700:1;2697;2690:12;2654:50;2723:22;;2776:4;2768:13;;2764:27;-1:-1:-1;2754:55:1;;2805:1;2802;2795:12;2754:55;2828:73;2893:7;2888:2;2875:16;2870:2;2866;2862:11;2828:73;:::i;:::-;2818:83;;;2241:666;;;;;;;:::o;2912:254::-;2977:6;2985;3038:2;3026:9;3017:7;3013:23;3009:32;3006:52;;;3054:1;3051;3044:12;3006:52;3077:29;3096:9;3077:29;:::i;:::-;3067:39;;3125:35;3156:2;3145:9;3141:18;3125:35;:::i;3171:254::-;3239:6;3247;3300:2;3288:9;3279:7;3275:23;3271:32;3268:52;;;3316:1;3313;3306:12;3268:52;3339:29;3358:9;3339:29;:::i;:::-;3329:39;3415:2;3400:18;;;;3387:32;;-1:-1:-1;;;3171:254:1:o;3430:1149::-;3545:6;3553;3606:2;3594:9;3585:7;3581:23;3577:32;3574:52;;;3622:1;3619;3612:12;3574:52;3662:9;3649:23;-1:-1:-1;;;;;3732:2:1;3724:6;3721:14;3718:34;;;3748:1;3745;3738:12;3718:34;3771:61;3824:7;3815:6;3804:9;3800:22;3771:61;:::i;:::-;3761:71;;3851:2;3841:12;;3906:2;3895:9;3891:18;3878:32;3935:2;3925:8;3922:16;3919:36;;;3951:1;3948;3941:12;3919:36;3974:24;;;-1:-1:-1;4029:4:1;4021:13;;4017:27;-1:-1:-1;4007:55:1;;4058:1;4055;4048:12;4007:55;4094:2;4081:16;4117:60;4133:43;4173:2;4133:43;:::i;4117:60::-;4199:3;4223:2;4218:3;4211:15;4251:2;4246:3;4242:12;4235:19;;4282:2;4278;4274:11;4330:7;4325:2;4319;4316:1;4312:10;4308:2;4304:19;4300:28;4297:41;4294:61;;;4351:1;4348;4341:12;4294:61;4373:1;4364:10;;4383:166;4397:2;4394:1;4391:9;4383:166;;;4454:20;4470:3;4454:20;:::i;:::-;4442:33;;4415:1;4408:9;;;;;4495:12;;;;4527;;4383:166;;;4387:3;4568:5;4558:15;;;;;;;3430:1149;;;;;:::o;4584:1276::-;4701:6;4709;4762:2;4750:9;4741:7;4737:23;4733:32;4730:52;;;4778:1;4775;4768:12;4730:52;4818:9;4805:23;-1:-1:-1;;;;;4888:2:1;4880:6;4877:14;4874:34;;;4904:1;4901;4894:12;4874:34;4927:61;4980:7;4971:6;4960:9;4956:22;4927:61;:::i;:::-;4917:71;;5007:2;4997:12;;5062:2;5051:9;5047:18;5034:32;5091:2;5081:8;5078:16;5075:36;;;5107:1;5104;5097:12;5075:36;5130:24;;;-1:-1:-1;5185:4:1;5177:13;;5173:27;-1:-1:-1;5163:55:1;;5214:1;5211;5204:12;5163:55;5250:2;5237:16;5273:60;5289:43;5329:2;5289:43;:::i;5273:60::-;5355:3;5379:2;5374:3;5367:15;5407:2;5402:3;5398:12;5391:19;;5438:2;5434;5430:11;5486:7;5481:2;5475;5472:1;5468:10;5464:2;5460:19;5456:28;5453:41;5450:61;;;5507:1;5504;5497:12;5450:61;5529:1;5520:10;;5550:1;5560:270;5576:2;5571:3;5568:11;5560:270;;;5651:3;5638:17;5699:6;5692:5;5688:18;5681:5;5678:29;5668:57;;5721:1;5718;5711:12;5668:57;5738:18;;5776:12;;;;5808;;;;5598:1;5589:11;5560:270;;;-1:-1:-1;4584:1276:1;;5849:5;;-1:-1:-1;4584:1276:1;-1:-1:-1;;;;;;;4584:1276:1:o;5865:245::-;5923:6;5976:2;5964:9;5955:7;5951:23;5947:32;5944:52;;;5992:1;5989;5982:12;5944:52;6031:9;6018:23;6050:30;6074:5;6050:30;:::i;6115:249::-;6184:6;6237:2;6225:9;6216:7;6212:23;6208:32;6205:52;;;6253:1;6250;6243:12;6205:52;6285:9;6279:16;6304:30;6328:5;6304:30;:::i;6369:450::-;6438:6;6491:2;6479:9;6470:7;6466:23;6462:32;6459:52;;;6507:1;6504;6497:12;6459:52;6547:9;6534:23;-1:-1:-1;;;;;6572:6:1;6569:30;6566:50;;;6612:1;6609;6602:12;6566:50;6635:22;;6688:4;6680:13;;6676:27;-1:-1:-1;6666:55:1;;6717:1;6714;6707:12;6666:55;6740:73;6805:7;6800:2;6787:16;6782:2;6778;6774:11;6740:73;:::i;6824:180::-;6883:6;6936:2;6924:9;6915:7;6911:23;6907:32;6904:52;;;6952:1;6949;6942:12;6904:52;-1:-1:-1;6975:23:1;;6824:180;-1:-1:-1;6824:180:1:o;7009:257::-;7050:3;7088:5;7082:12;7115:6;7110:3;7103:19;7131:63;7187:6;7180:4;7175:3;7171:14;7164:4;7157:5;7153:16;7131:63;:::i;:::-;7248:2;7227:15;-1:-1:-1;;7223:29:1;7214:39;;;;7255:4;7210:50;;7009:257;-1:-1:-1;;7009:257:1:o;7271:470::-;7450:3;7488:6;7482:13;7504:53;7550:6;7545:3;7538:4;7530:6;7526:17;7504:53;:::i;:::-;7620:13;;7579:16;;;;7642:57;7620:13;7579:16;7676:4;7664:17;;7642:57;:::i;:::-;7715:20;;7271:470;-1:-1:-1;;;;7271:470:1:o;8164:488::-;-1:-1:-1;;;;;8433:15:1;;;8415:34;;8485:15;;8480:2;8465:18;;8458:43;8532:2;8517:18;;8510:34;;;8580:3;8575:2;8560:18;;8553:31;;;8358:4;;8601:45;;8626:19;;8618:6;8601:45;:::i;:::-;8593:53;8164:488;-1:-1:-1;;;;;;8164:488:1:o;8849:219::-;8998:2;8987:9;8980:21;8961:4;9018:44;9058:2;9047:9;9043:18;9035:6;9018:44;:::i;10869:340::-;11071:2;11053:21;;;11110:2;11090:18;;;11083:30;-1:-1:-1;;;11144:2:1;11129:18;;11122:46;11200:2;11185:18;;10869:340::o;11954:275::-;12025:2;12019:9;12090:2;12071:13;;-1:-1:-1;;12067:27:1;12055:40;;-1:-1:-1;;;;;12110:34:1;;12146:22;;;12107:62;12104:88;;;12172:18;;:::i;:::-;12208:2;12201:22;11954:275;;-1:-1:-1;11954:275:1:o;12234:183::-;12294:4;-1:-1:-1;;;;;12319:6:1;12316:30;12313:56;;;12349:18;;:::i;:::-;-1:-1:-1;12394:1:1;12390:14;12406:4;12386:25;;12234:183::o;12422:238::-;12462:3;-1:-1:-1;;;;;12529:10:1;;;12559;;;12589:12;;;12581:21;;12578:47;;;12605:18;;:::i;12665:128::-;12705:3;12736:1;12732:6;12729:1;12726:13;12723:39;;;12742:18;;:::i;:::-;-1:-1:-1;12778:9:1;;12665:128::o;12798:120::-;12838:1;12864;12854:35;;12869:18;;:::i;:::-;-1:-1:-1;12903:9:1;;12798:120::o;12923:168::-;12963:7;13029:1;13025;13021:6;13017:14;13014:1;13011:21;13006:1;12999:9;12992:17;12988:45;12985:71;;;13036:18;;:::i;:::-;-1:-1:-1;13076:9:1;;12923:168::o;13096:231::-;13136:4;-1:-1:-1;;;;;13234:10:1;;;;13204;;13256:12;;;13253:38;;;13271:18;;:::i;:::-;13308:13;;13096:231;-1:-1:-1;;;13096:231:1:o;13332:125::-;13372:4;13400:1;13397;13394:8;13391:34;;;13405:18;;:::i;:::-;-1:-1:-1;13442:9:1;;13332:125::o;13462:258::-;13534:1;13544:113;13558:6;13555:1;13552:13;13544:113;;;13634:11;;;13628:18;13615:11;;;13608:39;13580:2;13573:10;13544:113;;;13675:6;13672:1;13669:13;13666:48;;;-1:-1:-1;;13710:1:1;13692:16;;13685:27;13462:258::o;13725:380::-;13804:1;13800:12;;;;13847;;;13868:61;;13922:4;13914:6;13910:17;13900:27;;13868:61;13975:2;13967:6;13964:14;13944:18;13941:38;13938:161;;;14021:10;14016:3;14012:20;14009:1;14002:31;14056:4;14053:1;14046:15;14084:4;14081:1;14074:15;13938:161;;13725:380;;;:::o;14110:135::-;14149:3;-1:-1:-1;;14170:17:1;;14167:43;;;14190:18;;:::i;:::-;-1:-1:-1;14237:1:1;14226:13;;14110:135::o;14250:112::-;14282:1;14308;14298:35;;14313:18;;:::i;:::-;-1:-1:-1;14347:9:1;;14250:112::o;14367:127::-;14428:10;14423:3;14419:20;14416:1;14409:31;14459:4;14456:1;14449:15;14483:4;14480:1;14473:15;14499:127;14560:10;14555:3;14551:20;14548:1;14541:31;14591:4;14588:1;14581:15;14615:4;14612:1;14605:15;14631:127;14692:10;14687:3;14683:20;14680:1;14673:31;14723:4;14720:1;14713:15;14747:4;14744:1;14737:15;14763:127;14824:10;14819:3;14815:20;14812:1;14805:31;14855:4;14852:1;14845:15;14879:4;14876:1;14869:15;14895:131;-1:-1:-1;;;;;;14969:32:1;;14959:43;;14949:71;;15016:1;15013;15006:12

Swarm Source

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