ETH Price: $3,081.23 (-6.59%)
Gas: 4.18 Gwei
 

Overview

Max Total Supply

198 BC

Holders

69

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 BC
0x962228f791E745273700024D54e3f9897A3e8204
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:
BitcoinCats

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : BitcoinCats.sol
/**
 *Submitted for verification at Etherscan.io on 2023-11-26
*/

// 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 BitcoinCats  is ERC721A, Ownable {

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

    uint256 public immutable mintPrice = 0.008 ether;
    uint32 public immutable maxSupply = 250;
    uint32 public immutable maxPerTx = 10;

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

    constructor()
    ERC721A ("Bitcoin Cats", "BC") {
    }

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

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


}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":"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"}]

61010060405273962228f791e745273700024d54e3f9897a3e819873ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1681525060405180606001604052806036815260200162003edc6036913960099081620000769190620004bd565b50661c6bf52634000060a09081525060fa63ffffffff1660c09063ffffffff16815250600a63ffffffff1660e09063ffffffff16815250348015620000b9575f80fd5b506040518060400160405280600c81526020017f426974636f696e204361747300000000000000000000000000000000000000008152506040518060400160405280600281526020017f42430000000000000000000000000000000000000000000000000000000000008152508160029081620001379190620004bd565b508060039081620001499190620004bd565b506200015a6200018760201b60201c565b5f81905550505062000181620001756200018f60201b60201c565b6200019660201b60201c565b620005a1565b5f6001905090565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620002d557607f821691505b602082108103620002eb57620002ea62000290565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200034f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000312565b6200035b868362000312565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620003a56200039f620003998462000373565b6200037c565b62000373565b9050919050565b5f819050919050565b620003c08362000385565b620003d8620003cf82620003ac565b8484546200031e565b825550505050565b5f90565b620003ee620003e0565b620003fb818484620003b5565b505050565b5b818110156200042257620004165f82620003e4565b60018101905062000401565b5050565b601f82111562000471576200043b81620002f1565b620004468462000303565b8101602085101562000456578190505b6200046e620004658562000303565b83018262000400565b50505b505050565b5f82821c905092915050565b5f620004935f198460080262000476565b1980831691505092915050565b5f620004ad838362000482565b9150826002028217905092915050565b620004c88262000259565b67ffffffffffffffff811115620004e457620004e362000263565b5b620004f08254620002bd565b620004fd82828562000426565b5f60209050601f83116001811462000533575f84156200051e578287015190505b6200052a8582620004a0565b86555062000599565b601f1984166200054386620002f1565b5f5b828110156200056c5784890151825560018201915060208501945060208101905062000545565b868310156200058c578489015162000588601f89168262000482565b8355505b6001600288020188555050505b505050505050565b60805160a05160c05160e0516138e4620005f85f395f6112bd01525f81816109b0015261118901525f81816109430152610bca01525f8181610d1d01528181611c0c0152818161212d01526121b201526138e45ff3fe608060405260043610610165575f3560e01c80636817c76c116100d0578063a22cb46511610089578063d5abeb0111610063578063d5abeb0114610503578063e985e9c51461052d578063f2fde38b14610569578063f968adbe1461059157610165565b8063a22cb46514610477578063b88d4fde1461049f578063c87b56dd146104c757610165565b80636817c76c1461036d57806370a08231146103975780638a886986146103d35780638da5cb5b146103fb57806395d89b41146104255780639b642de11461044f57610165565b80632db11544116101225780632db11544146102855780633ccfd60b146102a157806342842e0e146102b75780635fd22840146102df57806362b99ad4146103075780636352211e1461033157610165565b806301ffc9a71461016957806306fdde03146101a5578063081812fc146101cf578063095ea7b31461020b57806318160ddd1461023357806323b872dd1461025d575b5f80fd5b348015610174575f80fd5b5061018f600480360381019061018a91906126a3565b6105bb565b60405161019c91906126e8565b60405180910390f35b3480156101b0575f80fd5b506101b961069c565b6040516101c6919061278b565b60405180910390f35b3480156101da575f80fd5b506101f560048036038101906101f091906127de565b61072c565b6040516102029190612848565b60405180910390f35b348015610216575f80fd5b50610231600480360381019061022c919061288b565b6107a4565b005b34801561023e575f80fd5b506102476108ad565b60405161025491906128d8565b60405180910390f35b348015610268575f80fd5b50610283600480360381019061027e91906128f1565b6108c2565b005b61029f600480360381019061029a91906127de565b6108d2565b005b3480156102ac575f80fd5b506102b5610a36565b005b3480156102c2575f80fd5b506102dd60048036038101906102d891906128f1565b610af5565b005b3480156102ea575f80fd5b50610305600480360381019061030091906127de565b610b14565b005b348015610312575f80fd5b5061031b610b28565b604051610328919061278b565b60405180910390f35b34801561033c575f80fd5b50610357600480360381019061035291906127de565b610bb4565b6040516103649190612848565b60405180910390f35b348015610378575f80fd5b50610381610bc8565b60405161038e91906128d8565b60405180910390f35b3480156103a2575f80fd5b506103bd60048036038101906103b89190612941565b610bec565b6040516103ca91906128d8565b60405180910390f35b3480156103de575f80fd5b506103f960048036038101906103f49190612ba3565b610d74565b005b348015610406575f80fd5b5061040f610e2b565b60405161041c9190612848565b60405180910390f35b348015610430575f80fd5b50610439610e53565b604051610446919061278b565b60405180910390f35b34801561045a575f80fd5b5061047560048036038101906104709190612cc9565b610ee3565b005b348015610482575f80fd5b5061049d60048036038101906104989190612d3a565b610efe565b005b3480156104aa575f80fd5b506104c560048036038101906104c09190612e16565b611070565b005b3480156104d2575f80fd5b506104ed60048036038101906104e891906127de565b6110ec565b6040516104fa919061278b565b60405180910390f35b34801561050e575f80fd5b50610517611187565b6040516105249190612eb4565b60405180910390f35b348015610538575f80fd5b50610553600480360381019061054e9190612ecd565b6111ab565b60405161056091906126e8565b60405180910390f35b348015610574575f80fd5b5061058f600480360381019061058a9190612941565b611239565b005b34801561059c575f80fd5b506105a56112bb565b6040516105b29190612eb4565b60405180910390f35b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106955750610694826112df565b5b9050919050565b6060600280546106ab90612f38565b80601f01602080910402602001604051908101604052809291908181526020018280546106d790612f38565b80156107225780601f106106f957610100808354040283529160200191610722565b820191905f5260205f20905b81548152906001019060200180831161070557829003601f168201915b5050505050905090565b5f61073682611348565b61076c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6107ae82610bb4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610815576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610834611391565b73ffffffffffffffffffffffffffffffffffffffff161415801561086657506108648161085f611391565b6111ab565b155b1561089d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108a8838383611398565b505050565b5f6108b6611447565b6001545f540303905090565b6108cd83838361144f565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093790612fb2565b60405180910390fd5b807f000000000000000000000000000000000000000000000000000000000000000061096c9190612ffd565b3410156109ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a590613088565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff16816109de6108ad565b6109e891906130a6565b1115610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2090613123565b60405180910390fd5b610a333382611918565b50565b610a3e611935565b5f4790505f3390505f8173ffffffffffffffffffffffffffffffffffffffff1683604051610a6b9061316e565b5f6040518083038185875af1925050503d805f8114610aa5576040519150601f19603f3d011682016040523d82523d5f602084013e610aaa565b606091505b50508091505080610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae7906131cc565b60405180910390fd5b505050565b610b0f83838360405180602001604052805f815250611070565b505050565b610b1c611935565b610b25816119b3565b50565b60098054610b3590612f38565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6190612f38565b8015610bac5780601f10610b8357610100808354040283529160200191610bac565b820191905f5260205f20905b815481529060010190602001808311610b8f57829003601f168201915b505050505081565b5f610bbe826119bf565b5f01519050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c52576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610d195760055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610d6f565b5f547f000000000000000000000000000000000000000000000000000000000000000083610d4791906131ea565b73ffffffffffffffffffffffffffffffffffffffff1611610d6b5760019050610d6f565b5f90505b919050565b610d7c611935565b5f8251118015610d8d575080518251145b610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc39061327b565b60405180910390fd5b5f5b8251811015610e2657610e19838281518110610ded57610dec613299565b5b6020026020010151838381518110610e0857610e07613299565b5b602002602001015161ffff16611918565b8080600101915050610dce565b505050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e6290612f38565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8e90612f38565b8015610ed95780601f10610eb057610100808354040283529160200191610ed9565b820191905f5260205f20905b815481529060010190602001808311610ebc57829003601f168201915b5050505050905090565b610eeb611935565b8060099081610efa9190613463565b5050565b610f06611391565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f610f76611391565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661101f611391565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161106491906126e8565b60405180910390a35050565b61107b84848461144f565b61109a8373ffffffffffffffffffffffffffffffffffffffff16611ca6565b80156110af57506110ad84848484611cc8565b155b156110e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606110f782611348565b61112d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f611136611e13565b90505f8151036111545760405180602001604052805f81525061117f565b8061115e84611ea3565b60405160200161116f92919061356c565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611241611935565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a6906135ff565b60405180910390fd5b6112b881611ffc565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f81611352611447565b1115801561136057505f5482105b801561138a575060045f8381526020019081526020015f205f01601c9054906101000a900460ff16155b9050919050565b5f33905090565b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f6001905090565b5f611459826119bf565b90505f815f015173ffffffffffffffffffffffffffffffffffffffff1661147e611391565b73ffffffffffffffffffffffffffffffffffffffff1614806114b057506114af825f01516114aa611391565b6111ab565b5b806114f557506114be611391565b73ffffffffffffffffffffffffffffffffffffffff166114dd8461072c565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061152e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16825f015173ffffffffffffffffffffffffffffffffffffffff1614611596576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115fb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61160885858560016120bf565b6116165f84845f0151611398565b600160055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508360045f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260045f8581526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f6001840190505f73ffffffffffffffffffffffffffffffffffffffff1660045f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036118a8575f548110156118a757825f015160045f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826020015160045f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461191185858560016120c5565b5050505050565b611931828260405180602001604052805f8152506120cb565b5050565b61193d611391565b73ffffffffffffffffffffffffffffffffffffffff1661195b610e2b565b73ffffffffffffffffffffffffffffffffffffffff16146119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890613667565b60405180910390fd5b565b6119bc816120dd565b50565b6119c76125fd565b5f829050806119d4611447565b111580156119e257505f5481105b15611c6f575f60045f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff16151515158152505090508060400151611c6d575f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614611aee578092505050611ca1565b5f600990505b82806001900393505060045f8481526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff16151515158152505091505f73ffffffffffffffffffffffffffffffffffffffff16825f015173ffffffffffffffffffffffffffffffffffffffff1614611bfb57819350505050611ca1565b5f816001900391508111611af457847f000000000000000000000000000000000000000000000000000000000000000001825f019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611ca1565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ced611391565b8786866040518563ffffffff1660e01b8152600401611d0f94939291906136d7565b6020604051808303815f875af1925050508015611d4a57506040513d601f19601f82011682018060405250810190611d479190613735565b60015b611dc0573d805f8114611d78576040519150601f19603f3d011682016040523d82523d5f602084013e611d7d565b606091505b505f815103611db8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611e2290612f38565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4e90612f38565b8015611e995780601f10611e7057610100808354040283529160200191611e99565b820191905f5260205f20905b815481529060010190602001808311611e7c57829003601f168201915b5050505050905090565b60605f8203611ee9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ff7565b5f8290505f5b5f8214611f18578080611f0190613760565b915050600a82611f1191906137d4565b9150611eef565b5f8167ffffffffffffffff811115611f3357611f32612970565b5b6040519080825280601f01601f191660200182016040528015611f655781602001600182028036833780820191505090505b5090505b5f8514611ff057600182611f7d9190613804565b9150600a85611f8c9190613837565b6030611f9891906130a6565b60f81b818381518110611fae57611fad613299565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a85611fe991906137d4565b9450611f69565b8093505050505b919050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b6120d8838383600161224e565b505050565b5f8103612116576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805490505f828261212891906130a6565b9050817f00000000000000000000000000000000000000000000000000000000000000006121569190613867565b60045f805481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f00000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036121a857825f8082825461224291906130a6565b92505081905550505050565b5f805490505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036122b8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f84036122f1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122fd5f8683876120bf565b8360055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508360055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508460045f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260045f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8190505f85820190508380156124b757506124b68773ffffffffffffffffffffffffffffffffffffffff16611ca6565b5b15612578575b818773ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461252a5f888480600101955088611cc8565b612560576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036124bd57825f5414612573575f80fd5b6125e2565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612579575b815f8190555050506125f65f8683876120c5565b5050505050565b60405180606001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f151581525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126828161264e565b811461268c575f80fd5b50565b5f8135905061269d81612679565b92915050565b5f602082840312156126b8576126b7612646565b5b5f6126c58482850161268f565b91505092915050565b5f8115159050919050565b6126e2816126ce565b82525050565b5f6020820190506126fb5f8301846126d9565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561273857808201518184015260208101905061271d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61275d82612701565b612767818561270b565b935061277781856020860161271b565b61278081612743565b840191505092915050565b5f6020820190508181035f8301526127a38184612753565b905092915050565b5f819050919050565b6127bd816127ab565b81146127c7575f80fd5b50565b5f813590506127d8816127b4565b92915050565b5f602082840312156127f3576127f2612646565b5b5f612800848285016127ca565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61283282612809565b9050919050565b61284281612828565b82525050565b5f60208201905061285b5f830184612839565b92915050565b61286a81612828565b8114612874575f80fd5b50565b5f8135905061288581612861565b92915050565b5f80604083850312156128a1576128a0612646565b5b5f6128ae85828601612877565b92505060206128bf858286016127ca565b9150509250929050565b6128d2816127ab565b82525050565b5f6020820190506128eb5f8301846128c9565b92915050565b5f805f6060848603121561290857612907612646565b5b5f61291586828701612877565b935050602061292686828701612877565b9250506040612937868287016127ca565b9150509250925092565b5f6020828403121561295657612955612646565b5b5f61296384828501612877565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6129a682612743565b810181811067ffffffffffffffff821117156129c5576129c4612970565b5b80604052505050565b5f6129d761263d565b90506129e3828261299d565b919050565b5f67ffffffffffffffff821115612a0257612a01612970565b5b602082029050602081019050919050565b5f80fd5b5f612a29612a24846129e8565b6129ce565b90508083825260208201905060208402830185811115612a4c57612a4b612a13565b5b835b81811015612a755780612a618882612877565b845260208401935050602081019050612a4e565b5050509392505050565b5f82601f830112612a9357612a9261296c565b5b8135612aa3848260208601612a17565b91505092915050565b5f67ffffffffffffffff821115612ac657612ac5612970565b5b602082029050602081019050919050565b5f61ffff82169050919050565b612aed81612ad7565b8114612af7575f80fd5b50565b5f81359050612b0881612ae4565b92915050565b5f612b20612b1b84612aac565b6129ce565b90508083825260208201905060208402830185811115612b4357612b42612a13565b5b835b81811015612b6c5780612b588882612afa565b845260208401935050602081019050612b45565b5050509392505050565b5f82601f830112612b8a57612b8961296c565b5b8135612b9a848260208601612b0e565b91505092915050565b5f8060408385031215612bb957612bb8612646565b5b5f83013567ffffffffffffffff811115612bd657612bd561264a565b5b612be285828601612a7f565b925050602083013567ffffffffffffffff811115612c0357612c0261264a565b5b612c0f85828601612b76565b9150509250929050565b5f80fd5b5f67ffffffffffffffff821115612c3757612c36612970565b5b612c4082612743565b9050602081019050919050565b828183375f83830152505050565b5f612c6d612c6884612c1d565b6129ce565b905082815260208101848484011115612c8957612c88612c19565b5b612c94848285612c4d565b509392505050565b5f82601f830112612cb057612caf61296c565b5b8135612cc0848260208601612c5b565b91505092915050565b5f60208284031215612cde57612cdd612646565b5b5f82013567ffffffffffffffff811115612cfb57612cfa61264a565b5b612d0784828501612c9c565b91505092915050565b612d19816126ce565b8114612d23575f80fd5b50565b5f81359050612d3481612d10565b92915050565b5f8060408385031215612d5057612d4f612646565b5b5f612d5d85828601612877565b9250506020612d6e85828601612d26565b9150509250929050565b5f67ffffffffffffffff821115612d9257612d91612970565b5b612d9b82612743565b9050602081019050919050565b5f612dba612db584612d78565b6129ce565b905082815260208101848484011115612dd657612dd5612c19565b5b612de1848285612c4d565b509392505050565b5f82601f830112612dfd57612dfc61296c565b5b8135612e0d848260208601612da8565b91505092915050565b5f805f8060808587031215612e2e57612e2d612646565b5b5f612e3b87828801612877565b9450506020612e4c87828801612877565b9350506040612e5d878288016127ca565b925050606085013567ffffffffffffffff811115612e7e57612e7d61264a565b5b612e8a87828801612de9565b91505092959194509250565b5f63ffffffff82169050919050565b612eae81612e96565b82525050565b5f602082019050612ec75f830184612ea5565b92915050565b5f8060408385031215612ee357612ee2612646565b5b5f612ef085828601612877565b9250506020612f0185828601612877565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612f4f57607f821691505b602082108103612f6257612f61612f0b565b5b50919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e747261637400005f82015250565b5f612f9c601e8361270b565b9150612fa782612f68565b602082019050919050565b5f6020820190508181035f830152612fc981612f90565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613007826127ab565b9150613012836127ab565b9250828202613020816127ab565b9150828204841483151761303757613036612fd0565b5b5092915050565b7f696e73756666696369656e7400000000000000000000000000000000000000005f82015250565b5f613072600c8361270b565b915061307d8261303e565b602082019050919050565b5f6020820190508181035f83015261309f81613066565b9050919050565b5f6130b0826127ab565b91506130bb836127ab565b92508282019050808211156130d3576130d2612fd0565b5b92915050565b7f736f6c64206f75740000000000000000000000000000000000000000000000005f82015250565b5f61310d60088361270b565b9150613118826130d9565b602082019050919050565b5f6020820190508181035f83015261313a81613101565b9050919050565b5f81905092915050565b50565b5f6131595f83613141565b91506131648261314b565b5f82019050919050565b5f6131788261314e565b9150819050919050565b7f5472616e73616374696f6e20556e7375636365737366756c00000000000000005f82015250565b5f6131b660188361270b565b91506131c182613182565b602082019050919050565b5f6020820190508181035f8301526131e3816131aa565b9050919050565b5f6131f482612809565b91506131ff83612809565b9250828203905073ffffffffffffffffffffffffffffffffffffffff81111561322b5761322a612fd0565b5b92915050565b7f4c656e677468206e6f74206d61746368000000000000000000000000000000005f82015250565b5f61326560108361270b565b915061327082613231565b602082019050919050565b5f6020820190508181035f83015261329281613259565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026133227fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132e7565b61332c86836132e7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61336761336261335d846127ab565b613344565b6127ab565b9050919050565b5f819050919050565b6133808361334d565b61339461338c8261336e565b8484546132f3565b825550505050565b5f90565b6133a861339c565b6133b3818484613377565b505050565b5b818110156133d6576133cb5f826133a0565b6001810190506133b9565b5050565b601f82111561341b576133ec816132c6565b6133f5846132d8565b81016020851015613404578190505b613418613410856132d8565b8301826133b8565b50505b505050565b5f82821c905092915050565b5f61343b5f1984600802613420565b1980831691505092915050565b5f613453838361342c565b9150826002028217905092915050565b61346c82612701565b67ffffffffffffffff81111561348557613484612970565b5b61348f8254612f38565b61349a8282856133da565b5f60209050601f8311600181146134cb575f84156134b9578287015190505b6134c38582613448565b86555061352a565b601f1984166134d9866132c6565b5f5b82811015613500578489015182556001820191506020850194506020810190506134db565b8683101561351d5784890151613519601f89168261342c565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b5f61354682612701565b6135508185613532565b935061356081856020860161271b565b80840191505092915050565b5f613577828561353c565b9150613583828461353c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6135e960268361270b565b91506135f48261358f565b604082019050919050565b5f6020820190508181035f830152613616816135dd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61365160208361270b565b915061365c8261361d565b602082019050919050565b5f6020820190508181035f83015261367e81613645565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6136a982613685565b6136b3818561368f565b93506136c381856020860161271b565b6136cc81612743565b840191505092915050565b5f6080820190506136ea5f830187612839565b6136f76020830186612839565b61370460408301856128c9565b8181036060830152613716818461369f565b905095945050505050565b5f8151905061372f81612679565b92915050565b5f6020828403121561374a57613749612646565b5b5f61375784828501613721565b91505092915050565b5f61376a826127ab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361379c5761379b612fd0565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6137de826127ab565b91506137e9836127ab565b9250826137f9576137f86137a7565b5b828204905092915050565b5f61380e826127ab565b9150613819836127ab565b925082820390508181111561383157613830612fd0565b5b92915050565b5f613841826127ab565b915061384c836127ab565b92508261385c5761385b6137a7565b5b828206905092915050565b5f61387182612809565b915061387c83612809565b9250828201905073ffffffffffffffffffffffffffffffffffffffff8111156138a8576138a7612fd0565b5b9291505056fea264697066735822122048ee488c41a7c14695156d2e4f36108d9981f76caa85b8d1211312b38cc5d9bd64736f6c63430008160033697066733a2f2f516d54574e45746f5751367572547a58664b4c777a4c4254394169665647716351566b616643583646725a3642372f

Deployed Bytecode

0x608060405260043610610165575f3560e01c80636817c76c116100d0578063a22cb46511610089578063d5abeb0111610063578063d5abeb0114610503578063e985e9c51461052d578063f2fde38b14610569578063f968adbe1461059157610165565b8063a22cb46514610477578063b88d4fde1461049f578063c87b56dd146104c757610165565b80636817c76c1461036d57806370a08231146103975780638a886986146103d35780638da5cb5b146103fb57806395d89b41146104255780639b642de11461044f57610165565b80632db11544116101225780632db11544146102855780633ccfd60b146102a157806342842e0e146102b75780635fd22840146102df57806362b99ad4146103075780636352211e1461033157610165565b806301ffc9a71461016957806306fdde03146101a5578063081812fc146101cf578063095ea7b31461020b57806318160ddd1461023357806323b872dd1461025d575b5f80fd5b348015610174575f80fd5b5061018f600480360381019061018a91906126a3565b6105bb565b60405161019c91906126e8565b60405180910390f35b3480156101b0575f80fd5b506101b961069c565b6040516101c6919061278b565b60405180910390f35b3480156101da575f80fd5b506101f560048036038101906101f091906127de565b61072c565b6040516102029190612848565b60405180910390f35b348015610216575f80fd5b50610231600480360381019061022c919061288b565b6107a4565b005b34801561023e575f80fd5b506102476108ad565b60405161025491906128d8565b60405180910390f35b348015610268575f80fd5b50610283600480360381019061027e91906128f1565b6108c2565b005b61029f600480360381019061029a91906127de565b6108d2565b005b3480156102ac575f80fd5b506102b5610a36565b005b3480156102c2575f80fd5b506102dd60048036038101906102d891906128f1565b610af5565b005b3480156102ea575f80fd5b50610305600480360381019061030091906127de565b610b14565b005b348015610312575f80fd5b5061031b610b28565b604051610328919061278b565b60405180910390f35b34801561033c575f80fd5b50610357600480360381019061035291906127de565b610bb4565b6040516103649190612848565b60405180910390f35b348015610378575f80fd5b50610381610bc8565b60405161038e91906128d8565b60405180910390f35b3480156103a2575f80fd5b506103bd60048036038101906103b89190612941565b610bec565b6040516103ca91906128d8565b60405180910390f35b3480156103de575f80fd5b506103f960048036038101906103f49190612ba3565b610d74565b005b348015610406575f80fd5b5061040f610e2b565b60405161041c9190612848565b60405180910390f35b348015610430575f80fd5b50610439610e53565b604051610446919061278b565b60405180910390f35b34801561045a575f80fd5b5061047560048036038101906104709190612cc9565b610ee3565b005b348015610482575f80fd5b5061049d60048036038101906104989190612d3a565b610efe565b005b3480156104aa575f80fd5b506104c560048036038101906104c09190612e16565b611070565b005b3480156104d2575f80fd5b506104ed60048036038101906104e891906127de565b6110ec565b6040516104fa919061278b565b60405180910390f35b34801561050e575f80fd5b50610517611187565b6040516105249190612eb4565b60405180910390f35b348015610538575f80fd5b50610553600480360381019061054e9190612ecd565b6111ab565b60405161056091906126e8565b60405180910390f35b348015610574575f80fd5b5061058f600480360381019061058a9190612941565b611239565b005b34801561059c575f80fd5b506105a56112bb565b6040516105b29190612eb4565b60405180910390f35b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106955750610694826112df565b5b9050919050565b6060600280546106ab90612f38565b80601f01602080910402602001604051908101604052809291908181526020018280546106d790612f38565b80156107225780601f106106f957610100808354040283529160200191610722565b820191905f5260205f20905b81548152906001019060200180831161070557829003601f168201915b5050505050905090565b5f61073682611348565b61076c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6107ae82610bb4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610815576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610834611391565b73ffffffffffffffffffffffffffffffffffffffff161415801561086657506108648161085f611391565b6111ab565b155b1561089d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108a8838383611398565b505050565b5f6108b6611447565b6001545f540303905090565b6108cd83838361144f565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093790612fb2565b60405180910390fd5b807f000000000000000000000000000000000000000000000000001c6bf52634000061096c9190612ffd565b3410156109ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a590613088565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000fa63ffffffff16816109de6108ad565b6109e891906130a6565b1115610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2090613123565b60405180910390fd5b610a333382611918565b50565b610a3e611935565b5f4790505f3390505f8173ffffffffffffffffffffffffffffffffffffffff1683604051610a6b9061316e565b5f6040518083038185875af1925050503d805f8114610aa5576040519150601f19603f3d011682016040523d82523d5f602084013e610aaa565b606091505b50508091505080610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae7906131cc565b60405180910390fd5b505050565b610b0f83838360405180602001604052805f815250611070565b505050565b610b1c611935565b610b25816119b3565b50565b60098054610b3590612f38565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6190612f38565b8015610bac5780601f10610b8357610100808354040283529160200191610bac565b820191905f5260205f20905b815481529060010190602001808311610b8f57829003601f168201915b505050505081565b5f610bbe826119bf565b5f01519050919050565b7f000000000000000000000000000000000000000000000000001c6bf52634000081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c52576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610d195760055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610d6f565b5f547f000000000000000000000000962228f791e745273700024d54e3f9897a3e819883610d4791906131ea565b73ffffffffffffffffffffffffffffffffffffffff1611610d6b5760019050610d6f565b5f90505b919050565b610d7c611935565b5f8251118015610d8d575080518251145b610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc39061327b565b60405180910390fd5b5f5b8251811015610e2657610e19838281518110610ded57610dec613299565b5b6020026020010151838381518110610e0857610e07613299565b5b602002602001015161ffff16611918565b8080600101915050610dce565b505050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e6290612f38565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8e90612f38565b8015610ed95780601f10610eb057610100808354040283529160200191610ed9565b820191905f5260205f20905b815481529060010190602001808311610ebc57829003601f168201915b5050505050905090565b610eeb611935565b8060099081610efa9190613463565b5050565b610f06611391565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f610f76611391565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661101f611391565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161106491906126e8565b60405180910390a35050565b61107b84848461144f565b61109a8373ffffffffffffffffffffffffffffffffffffffff16611ca6565b80156110af57506110ad84848484611cc8565b155b156110e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606110f782611348565b61112d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f611136611e13565b90505f8151036111545760405180602001604052805f81525061117f565b8061115e84611ea3565b60405160200161116f92919061356c565b6040516020818303038152906040525b915050919050565b7f00000000000000000000000000000000000000000000000000000000000000fa81565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611241611935565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a6906135ff565b60405180910390fd5b6112b881611ffc565b50565b7f000000000000000000000000000000000000000000000000000000000000000a81565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f81611352611447565b1115801561136057505f5482105b801561138a575060045f8381526020019081526020015f205f01601c9054906101000a900460ff16155b9050919050565b5f33905090565b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f6001905090565b5f611459826119bf565b90505f815f015173ffffffffffffffffffffffffffffffffffffffff1661147e611391565b73ffffffffffffffffffffffffffffffffffffffff1614806114b057506114af825f01516114aa611391565b6111ab565b5b806114f557506114be611391565b73ffffffffffffffffffffffffffffffffffffffff166114dd8461072c565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061152e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16825f015173ffffffffffffffffffffffffffffffffffffffff1614611596576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115fb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61160885858560016120bf565b6116165f84845f0151611398565b600160055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508360045f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260045f8581526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f6001840190505f73ffffffffffffffffffffffffffffffffffffffff1660045f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036118a8575f548110156118a757825f015160045f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826020015160045f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461191185858560016120c5565b5050505050565b611931828260405180602001604052805f8152506120cb565b5050565b61193d611391565b73ffffffffffffffffffffffffffffffffffffffff1661195b610e2b565b73ffffffffffffffffffffffffffffffffffffffff16146119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890613667565b60405180910390fd5b565b6119bc816120dd565b50565b6119c76125fd565b5f829050806119d4611447565b111580156119e257505f5481105b15611c6f575f60045f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff16151515158152505090508060400151611c6d575f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614611aee578092505050611ca1565b5f600990505b82806001900393505060045f8481526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff16151515158152505091505f73ffffffffffffffffffffffffffffffffffffffff16825f015173ffffffffffffffffffffffffffffffffffffffff1614611bfb57819350505050611ca1565b5f816001900391508111611af457847f000000000000000000000000962228f791e745273700024d54e3f9897a3e819801825f019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611ca1565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ced611391565b8786866040518563ffffffff1660e01b8152600401611d0f94939291906136d7565b6020604051808303815f875af1925050508015611d4a57506040513d601f19601f82011682018060405250810190611d479190613735565b60015b611dc0573d805f8114611d78576040519150601f19603f3d011682016040523d82523d5f602084013e611d7d565b606091505b505f815103611db8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611e2290612f38565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4e90612f38565b8015611e995780601f10611e7057610100808354040283529160200191611e99565b820191905f5260205f20905b815481529060010190602001808311611e7c57829003601f168201915b5050505050905090565b60605f8203611ee9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ff7565b5f8290505f5b5f8214611f18578080611f0190613760565b915050600a82611f1191906137d4565b9150611eef565b5f8167ffffffffffffffff811115611f3357611f32612970565b5b6040519080825280601f01601f191660200182016040528015611f655781602001600182028036833780820191505090505b5090505b5f8514611ff057600182611f7d9190613804565b9150600a85611f8c9190613837565b6030611f9891906130a6565b60f81b818381518110611fae57611fad613299565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a85611fe991906137d4565b9450611f69565b8093505050505b919050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b6120d8838383600161224e565b505050565b5f8103612116576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805490505f828261212891906130a6565b9050817f000000000000000000000000962228f791e745273700024d54e3f9897a3e81986121569190613867565b60045f805481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f000000000000000000000000962228f791e745273700024d54e3f9897a3e81980173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036121a857825f8082825461224291906130a6565b92505081905550505050565b5f805490505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036122b8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f84036122f1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122fd5f8683876120bf565b8360055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508360055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508460045f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260045f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8190505f85820190508380156124b757506124b68773ffffffffffffffffffffffffffffffffffffffff16611ca6565b5b15612578575b818773ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461252a5f888480600101955088611cc8565b612560576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036124bd57825f5414612573575f80fd5b6125e2565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612579575b815f8190555050506125f65f8683876120c5565b5050505050565b60405180606001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f151581525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126828161264e565b811461268c575f80fd5b50565b5f8135905061269d81612679565b92915050565b5f602082840312156126b8576126b7612646565b5b5f6126c58482850161268f565b91505092915050565b5f8115159050919050565b6126e2816126ce565b82525050565b5f6020820190506126fb5f8301846126d9565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561273857808201518184015260208101905061271d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61275d82612701565b612767818561270b565b935061277781856020860161271b565b61278081612743565b840191505092915050565b5f6020820190508181035f8301526127a38184612753565b905092915050565b5f819050919050565b6127bd816127ab565b81146127c7575f80fd5b50565b5f813590506127d8816127b4565b92915050565b5f602082840312156127f3576127f2612646565b5b5f612800848285016127ca565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61283282612809565b9050919050565b61284281612828565b82525050565b5f60208201905061285b5f830184612839565b92915050565b61286a81612828565b8114612874575f80fd5b50565b5f8135905061288581612861565b92915050565b5f80604083850312156128a1576128a0612646565b5b5f6128ae85828601612877565b92505060206128bf858286016127ca565b9150509250929050565b6128d2816127ab565b82525050565b5f6020820190506128eb5f8301846128c9565b92915050565b5f805f6060848603121561290857612907612646565b5b5f61291586828701612877565b935050602061292686828701612877565b9250506040612937868287016127ca565b9150509250925092565b5f6020828403121561295657612955612646565b5b5f61296384828501612877565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6129a682612743565b810181811067ffffffffffffffff821117156129c5576129c4612970565b5b80604052505050565b5f6129d761263d565b90506129e3828261299d565b919050565b5f67ffffffffffffffff821115612a0257612a01612970565b5b602082029050602081019050919050565b5f80fd5b5f612a29612a24846129e8565b6129ce565b90508083825260208201905060208402830185811115612a4c57612a4b612a13565b5b835b81811015612a755780612a618882612877565b845260208401935050602081019050612a4e565b5050509392505050565b5f82601f830112612a9357612a9261296c565b5b8135612aa3848260208601612a17565b91505092915050565b5f67ffffffffffffffff821115612ac657612ac5612970565b5b602082029050602081019050919050565b5f61ffff82169050919050565b612aed81612ad7565b8114612af7575f80fd5b50565b5f81359050612b0881612ae4565b92915050565b5f612b20612b1b84612aac565b6129ce565b90508083825260208201905060208402830185811115612b4357612b42612a13565b5b835b81811015612b6c5780612b588882612afa565b845260208401935050602081019050612b45565b5050509392505050565b5f82601f830112612b8a57612b8961296c565b5b8135612b9a848260208601612b0e565b91505092915050565b5f8060408385031215612bb957612bb8612646565b5b5f83013567ffffffffffffffff811115612bd657612bd561264a565b5b612be285828601612a7f565b925050602083013567ffffffffffffffff811115612c0357612c0261264a565b5b612c0f85828601612b76565b9150509250929050565b5f80fd5b5f67ffffffffffffffff821115612c3757612c36612970565b5b612c4082612743565b9050602081019050919050565b828183375f83830152505050565b5f612c6d612c6884612c1d565b6129ce565b905082815260208101848484011115612c8957612c88612c19565b5b612c94848285612c4d565b509392505050565b5f82601f830112612cb057612caf61296c565b5b8135612cc0848260208601612c5b565b91505092915050565b5f60208284031215612cde57612cdd612646565b5b5f82013567ffffffffffffffff811115612cfb57612cfa61264a565b5b612d0784828501612c9c565b91505092915050565b612d19816126ce565b8114612d23575f80fd5b50565b5f81359050612d3481612d10565b92915050565b5f8060408385031215612d5057612d4f612646565b5b5f612d5d85828601612877565b9250506020612d6e85828601612d26565b9150509250929050565b5f67ffffffffffffffff821115612d9257612d91612970565b5b612d9b82612743565b9050602081019050919050565b5f612dba612db584612d78565b6129ce565b905082815260208101848484011115612dd657612dd5612c19565b5b612de1848285612c4d565b509392505050565b5f82601f830112612dfd57612dfc61296c565b5b8135612e0d848260208601612da8565b91505092915050565b5f805f8060808587031215612e2e57612e2d612646565b5b5f612e3b87828801612877565b9450506020612e4c87828801612877565b9350506040612e5d878288016127ca565b925050606085013567ffffffffffffffff811115612e7e57612e7d61264a565b5b612e8a87828801612de9565b91505092959194509250565b5f63ffffffff82169050919050565b612eae81612e96565b82525050565b5f602082019050612ec75f830184612ea5565b92915050565b5f8060408385031215612ee357612ee2612646565b5b5f612ef085828601612877565b9250506020612f0185828601612877565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612f4f57607f821691505b602082108103612f6257612f61612f0b565b5b50919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e747261637400005f82015250565b5f612f9c601e8361270b565b9150612fa782612f68565b602082019050919050565b5f6020820190508181035f830152612fc981612f90565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613007826127ab565b9150613012836127ab565b9250828202613020816127ab565b9150828204841483151761303757613036612fd0565b5b5092915050565b7f696e73756666696369656e7400000000000000000000000000000000000000005f82015250565b5f613072600c8361270b565b915061307d8261303e565b602082019050919050565b5f6020820190508181035f83015261309f81613066565b9050919050565b5f6130b0826127ab565b91506130bb836127ab565b92508282019050808211156130d3576130d2612fd0565b5b92915050565b7f736f6c64206f75740000000000000000000000000000000000000000000000005f82015250565b5f61310d60088361270b565b9150613118826130d9565b602082019050919050565b5f6020820190508181035f83015261313a81613101565b9050919050565b5f81905092915050565b50565b5f6131595f83613141565b91506131648261314b565b5f82019050919050565b5f6131788261314e565b9150819050919050565b7f5472616e73616374696f6e20556e7375636365737366756c00000000000000005f82015250565b5f6131b660188361270b565b91506131c182613182565b602082019050919050565b5f6020820190508181035f8301526131e3816131aa565b9050919050565b5f6131f482612809565b91506131ff83612809565b9250828203905073ffffffffffffffffffffffffffffffffffffffff81111561322b5761322a612fd0565b5b92915050565b7f4c656e677468206e6f74206d61746368000000000000000000000000000000005f82015250565b5f61326560108361270b565b915061327082613231565b602082019050919050565b5f6020820190508181035f83015261329281613259565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026133227fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132e7565b61332c86836132e7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61336761336261335d846127ab565b613344565b6127ab565b9050919050565b5f819050919050565b6133808361334d565b61339461338c8261336e565b8484546132f3565b825550505050565b5f90565b6133a861339c565b6133b3818484613377565b505050565b5b818110156133d6576133cb5f826133a0565b6001810190506133b9565b5050565b601f82111561341b576133ec816132c6565b6133f5846132d8565b81016020851015613404578190505b613418613410856132d8565b8301826133b8565b50505b505050565b5f82821c905092915050565b5f61343b5f1984600802613420565b1980831691505092915050565b5f613453838361342c565b9150826002028217905092915050565b61346c82612701565b67ffffffffffffffff81111561348557613484612970565b5b61348f8254612f38565b61349a8282856133da565b5f60209050601f8311600181146134cb575f84156134b9578287015190505b6134c38582613448565b86555061352a565b601f1984166134d9866132c6565b5f5b82811015613500578489015182556001820191506020850194506020810190506134db565b8683101561351d5784890151613519601f89168261342c565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b5f61354682612701565b6135508185613532565b935061356081856020860161271b565b80840191505092915050565b5f613577828561353c565b9150613583828461353c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6135e960268361270b565b91506135f48261358f565b604082019050919050565b5f6020820190508181035f830152613616816135dd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61365160208361270b565b915061365c8261361d565b602082019050919050565b5f6020820190508181035f83015261367e81613645565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6136a982613685565b6136b3818561368f565b93506136c381856020860161271b565b6136cc81612743565b840191505092915050565b5f6080820190506136ea5f830187612839565b6136f76020830186612839565b61370460408301856128c9565b8181036060830152613716818461369f565b905095945050505050565b5f8151905061372f81612679565b92915050565b5f6020828403121561374a57613749612646565b5b5f61375784828501613721565b91505092915050565b5f61376a826127ab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361379c5761379b612fd0565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6137de826127ab565b91506137e9836127ab565b9250826137f9576137f86137a7565b5b828204905092915050565b5f61380e826127ab565b9150613819836127ab565b925082820390508181111561383157613830612fd0565b5b92915050565b5f613841826127ab565b915061384c836127ab565b92508261385c5761385b6137a7565b5b828206905092915050565b5f61387182612809565b915061387c83612809565b9250828201905073ffffffffffffffffffffffffffffffffffffffff8111156138a8576138a7612fd0565b5b9291505056fea264697066735822122048ee488c41a7c14695156d2e4f36108d9981f76caa85b8d1211312b38cc5d9bd64736f6c63430008160033

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.