ETH Price: $3,405.84 (+3.95%)
Gas: 7 Gwei

Token

Deeper Crypts of a Wandering Artist (DCWA)
 

Overview

Max Total Supply

1 DCWA

Holders

1

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DCWA
0xe4f44f453fbafdf39e7af6720b505fb64b041666
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:
DCWA

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 2 : DCWA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

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

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

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

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

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

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

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

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

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

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

// 
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

// 
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
/**
 * @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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

// 
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
/**
 * @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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// 
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
/**
 * @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);
}

// 
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
/**
 * @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);
}

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// 
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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

// 
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
/**
 * @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;
    }
}

// 
// Creator: Chiru Labs
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex-1;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * 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) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        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);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _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 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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

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

    /**
     * @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;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _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)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @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 address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            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('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


contract DCWA is ERC721A, Ownable {


    //author = atak.eth


    using Strings for uint256;
    string baseURI;    

    uint256 public maximumSupply = 5;

    //Block between each state
    uint256 public blocksPerState = 1800;

    //Previous tokens held by the wallet
    mapping(address => uint256[]) internal ownersPreviousTokens;
    //Last transfered block for each NFT
    mapping(uint256 => uint256) public lastTransferedBlock;
    //Last transfered to whitelisted wallet block for each NFT
    mapping(uint256 => uint256) public lastTransferedBlockToWhitelisted;
    //Exclusive tokens with more states than usual
    mapping(uint256 => uint256) public tokenMaxState;
    //Whitelisted wallets(No state change)
    mapping(address => bool) public whitelistedWallets;
    //Last token state before transfering to a whitelisted wallet
    mapping(uint256 => uint256) internal lastStateOfToken;


 
    
    
    
    constructor() ERC721A("Deeper Crypts of a Wandering Artist", "DCWA") {
        currentIndex++;
    }

    function manageWhitelistOfAddress(address _address, bool _whitelisted) public onlyOwner{
        whitelistedWallets[_address] = _whitelisted;
    }

    function changeMaxStateOfToken(uint256 _tokenId, uint256 _newMax) public onlyOwner{
        tokenMaxState[_tokenId] = _newMax;
    }

    function changeBlocksPerState(uint256 _newCount) public onlyOwner{
        blocksPerState = _newCount;
    }

    function getTokenState(uint256 tokenId) public view returns(uint256){

        uint256 blocksSinceLastTransfer = block.number - lastTransferedBlock[tokenId];
        uint256 stateCount = blocksSinceLastTransfer / blocksPerState;
        uint256 currentTokenState;

        if(whitelistedWallets[ownerOf(tokenId)]){
            currentTokenState = lastStateOfToken[tokenId];
        }else if(stateCount <= tokenMaxState[tokenId]){
            currentTokenState = stateCount;
        }else{
            currentTokenState = tokenMaxState[tokenId];
        }

        return currentTokenState;

    }

    function tokenURI(uint256 tokenId) public view override returns (string memory){

        return string(abi.encodePacked(baseURI, tokenId.toString(), "_", getTokenState(tokenId).toString(), ".json"));

    }

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


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


    function safeTransferFrom(address from, address to, uint256 tokenId) public override {
        
        bool previouslyOwned = false;

        for(uint256 i = 0; i < ownersPreviousTokens[to].length; i++){
            if((ownersPreviousTokens[to])[i] == tokenId){
                previouslyOwned = true;
            }
        }

        
        if(whitelistedWallets[to]){
            lastStateOfToken[tokenId] = getTokenState(tokenId);
            lastTransferedBlockToWhitelisted[tokenId] = block.number;
        }else if(previouslyOwned){
            lastTransferedBlock[tokenId] = block.number;
        }else if(whitelistedWallets[from]){
            lastTransferedBlock[tokenId] += (block.number - lastTransferedBlockToWhitelisted[tokenId]);
        }else{
            ownersPreviousTokens[to].push(tokenId);

            if(getTokenState(tokenId) > 0){
                //Goes 1 state back
                lastTransferedBlock[tokenId] += blocksPerState;
            }
            
        }

        safeTransferFrom(from, to, tokenId, '');
    }




    function mint() external onlyOwner {
        require(currentIndex + 1 <= maximumSupply, "Exceeds maximum supply");

        lastTransferedBlock[currentIndex] = block.number;
        
        _safeMint(msg.sender, 1);
    }


    


    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(payable(msg.sender).send(balance));
    }

}

File 2 of 2 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blocksPerState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCount","type":"uint256"}],"name":"changeBlocksPerState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"changeMaxStateOfToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastTransferedBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastTransferedBlockToWhitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_whitelisted","type":"bool"}],"name":"manageWhitelistOfAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maximumSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMaxState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526005600955610708600a553480156200001c57600080fd5b50604051806060016040528060238152602001620044ca602391396040518060400160405280600481526020017f4443574100000000000000000000000000000000000000000000000000000000815250816001908051906020019062000085929190620001ae565b5080600290805190602001906200009e929190620001ae565b505050620000c1620000b5620000e060201b60201c565b620000e860201b60201c565b600080815480929190620000d5906200029e565b91905055506200034a565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001bc9062000268565b90600052602060002090601f016020900481019282620001e057600085556200022c565b82601f10620001fb57805160ff19168380011785556200022c565b828001600101855582156200022c579182015b828111156200022b5782518255916020019190600101906200020e565b5b5090506200023b91906200023f565b5090565b5b808211156200025a57600081600090555060010162000240565b5090565b6000819050919050565b600060028204905060018216806200028157607f821691505b602082108114156200029857620002976200031b565b5b50919050565b6000620002ab826200025e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620002e157620002e0620002ec565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614170806200035a6000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063b9e2b691116100a2578063e7eed2e711610071578063e7eed2e7146105b5578063e985e9c5146105d3578063f2fde38b14610603578063f45fd0f31461061f576101f0565b8063b9e2b6911461051d578063c459044f1461054d578063c87b56dd14610569578063ca12388f14610599576101f0565b806395d89b41116100de57806395d89b4114610497578063a22cb465146104b5578063a80dcfee146104d1578063b88d4fde14610501576101f0565b8063715018a6146104355780637d3bc15f1461043f578063853828b61461046f5780638da5cb5b14610479576101f0565b80632f745c591161018757806355f804b31161015657806355f804b3146103895780636352211e146103a55780636a60e416146103d557806370a0823114610405576101f0565b80632f745c59146102f15780633ed916b21461032157806342842e0e1461033d5780634f6ccce714610359576101f0565b8063095ea7b3116101c3578063095ea7b3146102915780631249c58b146102ad57806318160ddd146102b757806323b872dd146102d5576101f0565b806301ffc9a7146101f55780630480e58b1461022557806306fdde0314610243578063081812fc14610261575b600080fd5b61020f600480360381019061020a9190612e40565b61064f565b60405161021c919061342c565b60405180910390f35b61022d610799565b60405161023a91906136c9565b60405180910390f35b61024b61079f565b6040516102589190613447565b60405180910390f35b61027b60048036038101906102769190612ee3565b610831565b60405161028891906133c5565b60405180910390f35b6102ab60048036038101906102a69190612e00565b6108b6565b005b6102b56109cf565b005b6102bf610ac4565b6040516102cc91906136c9565b60405180910390f35b6102ef60048036038101906102ea9190612cea565b610ada565b005b61030b60048036038101906103069190612e00565b610aea565b60405161031891906136c9565b60405180910390f35b61033b60048036038101906103369190612ee3565b610cdc565b005b61035760048036038101906103529190612cea565b610d62565b005b610373600480360381019061036e9190612ee3565b611045565b60405161038091906136c9565b60405180910390f35b6103a3600480360381019061039e9190612e9a565b611098565b005b6103bf60048036038101906103ba9190612ee3565b61112e565b6040516103cc91906133c5565b60405180910390f35b6103ef60048036038101906103ea9190612ee3565b611144565b6040516103fc91906136c9565b60405180910390f35b61041f600480360381019061041a9190612c7d565b61115c565b60405161042c91906136c9565b60405180910390f35b61043d611245565b005b61045960048036038101906104549190612ee3565b6112cd565b60405161046691906136c9565b60405180910390f35b6104776112e5565b005b6104816113a7565b60405161048e91906133c5565b60405180910390f35b61049f6113d1565b6040516104ac9190613447565b60405180910390f35b6104cf60048036038101906104ca9190612dc0565b611463565b005b6104eb60048036038101906104e69190612c7d565b6115e4565b6040516104f8919061342c565b60405180910390f35b61051b60048036038101906105169190612d3d565b611604565b005b61053760048036038101906105329190612ee3565b611660565b60405161054491906136c9565b60405180910390f35b61056760048036038101906105629190612f10565b611678565b005b610583600480360381019061057e9190612ee3565b611710565b6040516105909190613447565b60405180910390f35b6105b360048036038101906105ae9190612dc0565b611756565b005b6105bd61182d565b6040516105ca91906136c9565b60405180910390f35b6105ed60048036038101906105e89190612caa565b611833565b6040516105fa919061342c565b60405180910390f35b61061d60048036038101906106189190612c7d565b6118c7565b005b61063960048036038101906106349190612ee3565b6119bf565b60405161064691906136c9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061078257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610792575061079182611ab1565b5b9050919050565b60095481565b6060600180546107ae90613934565b80601f01602080910402602001604051908101604052809291908181526020018280546107da90613934565b80156108275780601f106107fc57610100808354040283529160200191610827565b820191906000526020600020905b81548152906001019060200180831161080a57829003601f168201915b5050505050905090565b600061083c82611b1b565b61087b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610872906136a9565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c18261112e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610932576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610929906135e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610951611b28565b73ffffffffffffffffffffffffffffffffffffffff161480610980575061097f8161097a611b28565b611833565b5b6109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b690613509565b60405180910390fd5b6109ca838383611b30565b505050565b6109d7611b28565b73ffffffffffffffffffffffffffffffffffffffff166109f56113a7565b73ffffffffffffffffffffffffffffffffffffffff1614610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290613569565b60405180910390fd5b6009546001600054610a5d91906137c3565b1115610a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a95906135c9565b60405180910390fd5b43600c60008054815260200190815260200160002081905550610ac2336001611be2565b565b60006001600054610ad5919061384a565b905090565b610ae5838383611c00565b505050565b6000610af58361115c565b8210610b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2d90613469565b60405180910390fd5b6000610b40610ac4565b905060008060005b83811015610c9a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c3a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8c5786841415610c83578195505050505050610cd6565b83806001019450505b508080600101915050610b48565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd90613669565b60405180910390fd5b92915050565b610ce4611b28565b73ffffffffffffffffffffffffffffffffffffffff16610d026113a7565b73ffffffffffffffffffffffffffffffffffffffff1614610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90613569565b60405180910390fd5b80600a8190555050565b6000805b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015610e2b5782600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110610e0257610e01613a9e565b5b90600052602060002001541415610e1857600191505b8080610e2390613997565b915050610d66565b50600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ebb57610e87826119bf565b601060008481526020019081526020016000208190555043600d600084815260200190815260200160002081905550611024565b8015610ede5743600c600084815260200190815260200160002081905550611023565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f7d57600d60008381526020019081526020016000205443610f4f919061384a565b600c60008481526020019081526020016000206000828254610f7191906137c3565b92505081905550611022565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208290806001815401808255809150506001900390600052602060002001600090919091909150556000610fee836119bf565b111561102157600a54600c6000848152602001908152602001600020600082825461101991906137c3565b925050819055505b5b5b5b61103f84848460405180602001604052806000815250611604565b50505050565b600061104f610ac4565b8210611090576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611087906134c9565b60405180910390fd5b819050919050565b6110a0611b28565b73ffffffffffffffffffffffffffffffffffffffff166110be6113a7565b73ffffffffffffffffffffffffffffffffffffffff1614611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b90613569565b60405180910390fd5b806008908051906020019061112a929190612a57565b5050565b600061113982612140565b600001519050919050565b600c6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490613529565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61124d611b28565b73ffffffffffffffffffffffffffffffffffffffff1661126b6113a7565b73ffffffffffffffffffffffffffffffffffffffff16146112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b890613569565b60405180910390fd5b6112cb60006122da565b565b600d6020528060005260406000206000915090505481565b6112ed611b28565b73ffffffffffffffffffffffffffffffffffffffff1661130b6113a7565b73ffffffffffffffffffffffffffffffffffffffff1614611361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135890613569565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506113a457600080fd5b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546113e090613934565b80601f016020809104026020016040519081016040528092919081815260200182805461140c90613934565b80156114595780601f1061142e57610100808354040283529160200191611459565b820191906000526020600020905b81548152906001019060200180831161143c57829003601f168201915b5050505050905090565b61146b611b28565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d090613589565b60405180910390fd5b80600660006114e6611b28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611593611b28565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115d8919061342c565b60405180910390a35050565b600f6020528060005260406000206000915054906101000a900460ff1681565b61160f848484611c00565b61161b848484846123a0565b61165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190613609565b60405180910390fd5b50505050565b600e6020528060005260406000206000915090505481565b611680611b28565b73ffffffffffffffffffffffffffffffffffffffff1661169e6113a7565b73ffffffffffffffffffffffffffffffffffffffff16146116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90613569565b60405180910390fd5b80600e6000848152602001908152602001600020819055505050565b6060600861171d83612537565b61172e611729856119bf565b612537565b6040516020016117409392919061337e565b6040516020818303038152906040529050919050565b61175e611b28565b73ffffffffffffffffffffffffffffffffffffffff1661177c6113a7565b73ffffffffffffffffffffffffffffffffffffffff16146117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990613569565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118cf611b28565b73ffffffffffffffffffffffffffffffffffffffff166118ed6113a7565b73ffffffffffffffffffffffffffffffffffffffff1614611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a90613569565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90613489565b60405180910390fd5b6119bc816122da565b50565b600080600c600084815260200190815260200160002054436119e1919061384a565b90506000600a54826119f39190613819565b90506000600f6000611a048761112e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a6c5760106000868152602001908152602001600020549050611aa6565b600e6000868152602001908152602001600020548211611a8e57819050611aa5565b600e60008681526020019081526020016000205490505b5b809350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611bfc828260405180602001604052806000815250612698565b5050565b6000611c0b82612140565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c32611b28565b73ffffffffffffffffffffffffffffffffffffffff161480611c8e5750611c57611b28565b73ffffffffffffffffffffffffffffffffffffffff16611c7684610831565b73ffffffffffffffffffffffffffffffffffffffff16145b80611caa5750611ca98260000151611ca4611b28565b611833565b5b905080611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce3906135a9565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590613549565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc5906134e9565b60405180910390fd5b611ddb85858560016126aa565b611deb6000848460000151611b30565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120d05761202f81611b1b565b156120cf5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461213985858560016126b0565b5050505050565b612148612add565b61215182611b1b565b612190576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612187906134a9565b60405180910390fd5b60008290505b60008110612299576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461228a5780925050506122d5565b50808060019003915050612196565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc90613689565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006123c18473ffffffffffffffffffffffffffffffffffffffff166126b6565b1561252a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123ea611b28565b8786866040518563ffffffff1660e01b815260040161240c94939291906133e0565b602060405180830381600087803b15801561242657600080fd5b505af192505050801561245757506040513d601f19601f820116820180604052508101906124549190612e6d565b60015b6124da573d8060008114612487576040519150601f19603f3d011682016040523d82523d6000602084013e61248c565b606091505b506000815114156124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990613609565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061252f565b600190505b949350505050565b6060600082141561257f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612693565b600082905060005b600082146125b157808061259a90613997565b915050600a826125aa9190613819565b9150612587565b60008167ffffffffffffffff8111156125cd576125cc613acd565b5b6040519080825280601f01601f1916602001820160405280156125ff5781602001600182028036833780820191505090505b5090505b6000851461268c57600182612618919061384a565b9150600a8561262791906139e0565b603061263391906137c3565b60f81b81838151811061264957612648613a9e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126859190613819565b9450612603565b8093505050505b919050565b6126a583838360016126d9565b505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561274f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274690613629565b60405180910390fd5b6000841415612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278a90613649565b60405180910390fd5b6127a060008683876126aa565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612a3a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612a25576129e560008884886123a0565b612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90613609565b60405180910390fd5b5b8180600101925050808060010191505061296e565b508060008190555050612a5060008683876126b0565b5050505050565b828054612a6390613934565b90600052602060002090601f016020900481019282612a855760008555612acc565b82601f10612a9e57805160ff1916838001178555612acc565b82800160010185558215612acc579182015b82811115612acb578251825591602001919060010190612ab0565b5b509050612ad99190612b17565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612b30576000816000905550600101612b18565b5090565b6000612b47612b4284613709565b6136e4565b905082815260208101848484011115612b6357612b62613b01565b5b612b6e8482856138f2565b509392505050565b6000612b89612b848461373a565b6136e4565b905082815260208101848484011115612ba557612ba4613b01565b5b612bb08482856138f2565b509392505050565b600081359050612bc7816140de565b92915050565b600081359050612bdc816140f5565b92915050565b600081359050612bf18161410c565b92915050565b600081519050612c068161410c565b92915050565b600082601f830112612c2157612c20613afc565b5b8135612c31848260208601612b34565b91505092915050565b600082601f830112612c4f57612c4e613afc565b5b8135612c5f848260208601612b76565b91505092915050565b600081359050612c7781614123565b92915050565b600060208284031215612c9357612c92613b0b565b5b6000612ca184828501612bb8565b91505092915050565b60008060408385031215612cc157612cc0613b0b565b5b6000612ccf85828601612bb8565b9250506020612ce085828601612bb8565b9150509250929050565b600080600060608486031215612d0357612d02613b0b565b5b6000612d1186828701612bb8565b9350506020612d2286828701612bb8565b9250506040612d3386828701612c68565b9150509250925092565b60008060008060808587031215612d5757612d56613b0b565b5b6000612d6587828801612bb8565b9450506020612d7687828801612bb8565b9350506040612d8787828801612c68565b925050606085013567ffffffffffffffff811115612da857612da7613b06565b5b612db487828801612c0c565b91505092959194509250565b60008060408385031215612dd757612dd6613b0b565b5b6000612de585828601612bb8565b9250506020612df685828601612bcd565b9150509250929050565b60008060408385031215612e1757612e16613b0b565b5b6000612e2585828601612bb8565b9250506020612e3685828601612c68565b9150509250929050565b600060208284031215612e5657612e55613b0b565b5b6000612e6484828501612be2565b91505092915050565b600060208284031215612e8357612e82613b0b565b5b6000612e9184828501612bf7565b91505092915050565b600060208284031215612eb057612eaf613b0b565b5b600082013567ffffffffffffffff811115612ece57612ecd613b06565b5b612eda84828501612c3a565b91505092915050565b600060208284031215612ef957612ef8613b0b565b5b6000612f0784828501612c68565b91505092915050565b60008060408385031215612f2757612f26613b0b565b5b6000612f3585828601612c68565b9250506020612f4685828601612c68565b9150509250929050565b612f598161387e565b82525050565b612f6881613890565b82525050565b6000612f7982613780565b612f838185613796565b9350612f93818560208601613901565b612f9c81613b10565b840191505092915050565b6000612fb28261378b565b612fbc81856137a7565b9350612fcc818560208601613901565b612fd581613b10565b840191505092915050565b6000612feb8261378b565b612ff581856137b8565b9350613005818560208601613901565b80840191505092915050565b6000815461301e81613934565b61302881866137b8565b94506001821660008114613043576001811461305457613087565b60ff19831686528186019350613087565b61305d8561376b565b60005b8381101561307f57815481890152600182019150602081019050613060565b838801955050505b50505092915050565b600061309d6022836137a7565b91506130a882613b21565b604082019050919050565b60006130c06026836137a7565b91506130cb82613b70565b604082019050919050565b60006130e3602a836137a7565b91506130ee82613bbf565b604082019050919050565b60006131066023836137a7565b915061311182613c0e565b604082019050919050565b60006131296025836137a7565b915061313482613c5d565b604082019050919050565b600061314c6039836137a7565b915061315782613cac565b604082019050919050565b600061316f602b836137a7565b915061317a82613cfb565b604082019050919050565b60006131926026836137a7565b915061319d82613d4a565b604082019050919050565b60006131b56005836137b8565b91506131c082613d99565b600582019050919050565b60006131d86020836137a7565b91506131e382613dc2565b602082019050919050565b60006131fb601a836137a7565b915061320682613deb565b602082019050919050565b600061321e6032836137a7565b915061322982613e14565b604082019050919050565b60006132416016836137a7565b915061324c82613e63565b602082019050919050565b60006132646022836137a7565b915061326f82613e8c565b604082019050919050565b60006132876033836137a7565b915061329282613edb565b604082019050919050565b60006132aa6001836137b8565b91506132b582613f2a565b600182019050919050565b60006132cd6021836137a7565b91506132d882613f53565b604082019050919050565b60006132f06028836137a7565b91506132fb82613fa2565b604082019050919050565b6000613313602e836137a7565b915061331e82613ff1565b604082019050919050565b6000613336602f836137a7565b915061334182614040565b604082019050919050565b6000613359602d836137a7565b91506133648261408f565b604082019050919050565b613378816138e8565b82525050565b600061338a8286613011565b91506133968285612fe0565b91506133a18261329d565b91506133ad8284612fe0565b91506133b8826131a8565b9150819050949350505050565b60006020820190506133da6000830184612f50565b92915050565b60006080820190506133f56000830187612f50565b6134026020830186612f50565b61340f604083018561336f565b81810360608301526134218184612f6e565b905095945050505050565b60006020820190506134416000830184612f5f565b92915050565b600060208201905081810360008301526134618184612fa7565b905092915050565b6000602082019050818103600083015261348281613090565b9050919050565b600060208201905081810360008301526134a2816130b3565b9050919050565b600060208201905081810360008301526134c2816130d6565b9050919050565b600060208201905081810360008301526134e2816130f9565b9050919050565b600060208201905081810360008301526135028161311c565b9050919050565b600060208201905081810360008301526135228161313f565b9050919050565b6000602082019050818103600083015261354281613162565b9050919050565b6000602082019050818103600083015261356281613185565b9050919050565b60006020820190508181036000830152613582816131cb565b9050919050565b600060208201905081810360008301526135a2816131ee565b9050919050565b600060208201905081810360008301526135c281613211565b9050919050565b600060208201905081810360008301526135e281613234565b9050919050565b6000602082019050818103600083015261360281613257565b9050919050565b600060208201905081810360008301526136228161327a565b9050919050565b60006020820190508181036000830152613642816132c0565b9050919050565b60006020820190508181036000830152613662816132e3565b9050919050565b6000602082019050818103600083015261368281613306565b9050919050565b600060208201905081810360008301526136a281613329565b9050919050565b600060208201905081810360008301526136c28161334c565b9050919050565b60006020820190506136de600083018461336f565b92915050565b60006136ee6136ff565b90506136fa8282613966565b919050565b6000604051905090565b600067ffffffffffffffff82111561372457613723613acd565b5b61372d82613b10565b9050602081019050919050565b600067ffffffffffffffff82111561375557613754613acd565b5b61375e82613b10565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006137ce826138e8565b91506137d9836138e8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561380e5761380d613a11565b5b828201905092915050565b6000613824826138e8565b915061382f836138e8565b92508261383f5761383e613a40565b5b828204905092915050565b6000613855826138e8565b9150613860836138e8565b92508282101561387357613872613a11565b5b828203905092915050565b6000613889826138c8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561391f578082015181840152602081019050613904565b8381111561392e576000848401525b50505050565b6000600282049050600182168061394c57607f821691505b602082108114156139605761395f613a6f565b5b50919050565b61396f82613b10565b810181811067ffffffffffffffff8211171561398e5761398d613acd565b5b80604052505050565b60006139a2826138e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139d5576139d4613a11565b5b600182019050919050565b60006139eb826138e8565b91506139f6836138e8565b925082613a0657613a05613a40565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f5f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6140e78161387e565b81146140f257600080fd5b50565b6140fe81613890565b811461410957600080fd5b50565b6141158161389c565b811461412057600080fd5b50565b61412c816138e8565b811461413757600080fd5b5056fea264697066735822122043b6767b21d809ee3c2832f23467f63ca682b5f0db0abb0618356ec8eeca0b4064736f6c6343000807003344656570657220437279707473206f6620612057616e646572696e6720417274697374

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063b9e2b691116100a2578063e7eed2e711610071578063e7eed2e7146105b5578063e985e9c5146105d3578063f2fde38b14610603578063f45fd0f31461061f576101f0565b8063b9e2b6911461051d578063c459044f1461054d578063c87b56dd14610569578063ca12388f14610599576101f0565b806395d89b41116100de57806395d89b4114610497578063a22cb465146104b5578063a80dcfee146104d1578063b88d4fde14610501576101f0565b8063715018a6146104355780637d3bc15f1461043f578063853828b61461046f5780638da5cb5b14610479576101f0565b80632f745c591161018757806355f804b31161015657806355f804b3146103895780636352211e146103a55780636a60e416146103d557806370a0823114610405576101f0565b80632f745c59146102f15780633ed916b21461032157806342842e0e1461033d5780634f6ccce714610359576101f0565b8063095ea7b3116101c3578063095ea7b3146102915780631249c58b146102ad57806318160ddd146102b757806323b872dd146102d5576101f0565b806301ffc9a7146101f55780630480e58b1461022557806306fdde0314610243578063081812fc14610261575b600080fd5b61020f600480360381019061020a9190612e40565b61064f565b60405161021c919061342c565b60405180910390f35b61022d610799565b60405161023a91906136c9565b60405180910390f35b61024b61079f565b6040516102589190613447565b60405180910390f35b61027b60048036038101906102769190612ee3565b610831565b60405161028891906133c5565b60405180910390f35b6102ab60048036038101906102a69190612e00565b6108b6565b005b6102b56109cf565b005b6102bf610ac4565b6040516102cc91906136c9565b60405180910390f35b6102ef60048036038101906102ea9190612cea565b610ada565b005b61030b60048036038101906103069190612e00565b610aea565b60405161031891906136c9565b60405180910390f35b61033b60048036038101906103369190612ee3565b610cdc565b005b61035760048036038101906103529190612cea565b610d62565b005b610373600480360381019061036e9190612ee3565b611045565b60405161038091906136c9565b60405180910390f35b6103a3600480360381019061039e9190612e9a565b611098565b005b6103bf60048036038101906103ba9190612ee3565b61112e565b6040516103cc91906133c5565b60405180910390f35b6103ef60048036038101906103ea9190612ee3565b611144565b6040516103fc91906136c9565b60405180910390f35b61041f600480360381019061041a9190612c7d565b61115c565b60405161042c91906136c9565b60405180910390f35b61043d611245565b005b61045960048036038101906104549190612ee3565b6112cd565b60405161046691906136c9565b60405180910390f35b6104776112e5565b005b6104816113a7565b60405161048e91906133c5565b60405180910390f35b61049f6113d1565b6040516104ac9190613447565b60405180910390f35b6104cf60048036038101906104ca9190612dc0565b611463565b005b6104eb60048036038101906104e69190612c7d565b6115e4565b6040516104f8919061342c565b60405180910390f35b61051b60048036038101906105169190612d3d565b611604565b005b61053760048036038101906105329190612ee3565b611660565b60405161054491906136c9565b60405180910390f35b61056760048036038101906105629190612f10565b611678565b005b610583600480360381019061057e9190612ee3565b611710565b6040516105909190613447565b60405180910390f35b6105b360048036038101906105ae9190612dc0565b611756565b005b6105bd61182d565b6040516105ca91906136c9565b60405180910390f35b6105ed60048036038101906105e89190612caa565b611833565b6040516105fa919061342c565b60405180910390f35b61061d60048036038101906106189190612c7d565b6118c7565b005b61063960048036038101906106349190612ee3565b6119bf565b60405161064691906136c9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061078257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610792575061079182611ab1565b5b9050919050565b60095481565b6060600180546107ae90613934565b80601f01602080910402602001604051908101604052809291908181526020018280546107da90613934565b80156108275780601f106107fc57610100808354040283529160200191610827565b820191906000526020600020905b81548152906001019060200180831161080a57829003601f168201915b5050505050905090565b600061083c82611b1b565b61087b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610872906136a9565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c18261112e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610932576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610929906135e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610951611b28565b73ffffffffffffffffffffffffffffffffffffffff161480610980575061097f8161097a611b28565b611833565b5b6109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b690613509565b60405180910390fd5b6109ca838383611b30565b505050565b6109d7611b28565b73ffffffffffffffffffffffffffffffffffffffff166109f56113a7565b73ffffffffffffffffffffffffffffffffffffffff1614610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290613569565b60405180910390fd5b6009546001600054610a5d91906137c3565b1115610a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a95906135c9565b60405180910390fd5b43600c60008054815260200190815260200160002081905550610ac2336001611be2565b565b60006001600054610ad5919061384a565b905090565b610ae5838383611c00565b505050565b6000610af58361115c565b8210610b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2d90613469565b60405180910390fd5b6000610b40610ac4565b905060008060005b83811015610c9a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c3a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8c5786841415610c83578195505050505050610cd6565b83806001019450505b508080600101915050610b48565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd90613669565b60405180910390fd5b92915050565b610ce4611b28565b73ffffffffffffffffffffffffffffffffffffffff16610d026113a7565b73ffffffffffffffffffffffffffffffffffffffff1614610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90613569565b60405180910390fd5b80600a8190555050565b6000805b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015610e2b5782600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110610e0257610e01613a9e565b5b90600052602060002001541415610e1857600191505b8080610e2390613997565b915050610d66565b50600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ebb57610e87826119bf565b601060008481526020019081526020016000208190555043600d600084815260200190815260200160002081905550611024565b8015610ede5743600c600084815260200190815260200160002081905550611023565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f7d57600d60008381526020019081526020016000205443610f4f919061384a565b600c60008481526020019081526020016000206000828254610f7191906137c3565b92505081905550611022565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208290806001815401808255809150506001900390600052602060002001600090919091909150556000610fee836119bf565b111561102157600a54600c6000848152602001908152602001600020600082825461101991906137c3565b925050819055505b5b5b5b61103f84848460405180602001604052806000815250611604565b50505050565b600061104f610ac4565b8210611090576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611087906134c9565b60405180910390fd5b819050919050565b6110a0611b28565b73ffffffffffffffffffffffffffffffffffffffff166110be6113a7565b73ffffffffffffffffffffffffffffffffffffffff1614611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b90613569565b60405180910390fd5b806008908051906020019061112a929190612a57565b5050565b600061113982612140565b600001519050919050565b600c6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490613529565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61124d611b28565b73ffffffffffffffffffffffffffffffffffffffff1661126b6113a7565b73ffffffffffffffffffffffffffffffffffffffff16146112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b890613569565b60405180910390fd5b6112cb60006122da565b565b600d6020528060005260406000206000915090505481565b6112ed611b28565b73ffffffffffffffffffffffffffffffffffffffff1661130b6113a7565b73ffffffffffffffffffffffffffffffffffffffff1614611361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135890613569565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506113a457600080fd5b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546113e090613934565b80601f016020809104026020016040519081016040528092919081815260200182805461140c90613934565b80156114595780601f1061142e57610100808354040283529160200191611459565b820191906000526020600020905b81548152906001019060200180831161143c57829003601f168201915b5050505050905090565b61146b611b28565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d090613589565b60405180910390fd5b80600660006114e6611b28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611593611b28565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115d8919061342c565b60405180910390a35050565b600f6020528060005260406000206000915054906101000a900460ff1681565b61160f848484611c00565b61161b848484846123a0565b61165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190613609565b60405180910390fd5b50505050565b600e6020528060005260406000206000915090505481565b611680611b28565b73ffffffffffffffffffffffffffffffffffffffff1661169e6113a7565b73ffffffffffffffffffffffffffffffffffffffff16146116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90613569565b60405180910390fd5b80600e6000848152602001908152602001600020819055505050565b6060600861171d83612537565b61172e611729856119bf565b612537565b6040516020016117409392919061337e565b6040516020818303038152906040529050919050565b61175e611b28565b73ffffffffffffffffffffffffffffffffffffffff1661177c6113a7565b73ffffffffffffffffffffffffffffffffffffffff16146117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990613569565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118cf611b28565b73ffffffffffffffffffffffffffffffffffffffff166118ed6113a7565b73ffffffffffffffffffffffffffffffffffffffff1614611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a90613569565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90613489565b60405180910390fd5b6119bc816122da565b50565b600080600c600084815260200190815260200160002054436119e1919061384a565b90506000600a54826119f39190613819565b90506000600f6000611a048761112e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a6c5760106000868152602001908152602001600020549050611aa6565b600e6000868152602001908152602001600020548211611a8e57819050611aa5565b600e60008681526020019081526020016000205490505b5b809350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611bfc828260405180602001604052806000815250612698565b5050565b6000611c0b82612140565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c32611b28565b73ffffffffffffffffffffffffffffffffffffffff161480611c8e5750611c57611b28565b73ffffffffffffffffffffffffffffffffffffffff16611c7684610831565b73ffffffffffffffffffffffffffffffffffffffff16145b80611caa5750611ca98260000151611ca4611b28565b611833565b5b905080611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce3906135a9565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590613549565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc5906134e9565b60405180910390fd5b611ddb85858560016126aa565b611deb6000848460000151611b30565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120d05761202f81611b1b565b156120cf5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461213985858560016126b0565b5050505050565b612148612add565b61215182611b1b565b612190576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612187906134a9565b60405180910390fd5b60008290505b60008110612299576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461228a5780925050506122d5565b50808060019003915050612196565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc90613689565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006123c18473ffffffffffffffffffffffffffffffffffffffff166126b6565b1561252a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123ea611b28565b8786866040518563ffffffff1660e01b815260040161240c94939291906133e0565b602060405180830381600087803b15801561242657600080fd5b505af192505050801561245757506040513d601f19601f820116820180604052508101906124549190612e6d565b60015b6124da573d8060008114612487576040519150601f19603f3d011682016040523d82523d6000602084013e61248c565b606091505b506000815114156124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990613609565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061252f565b600190505b949350505050565b6060600082141561257f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612693565b600082905060005b600082146125b157808061259a90613997565b915050600a826125aa9190613819565b9150612587565b60008167ffffffffffffffff8111156125cd576125cc613acd565b5b6040519080825280601f01601f1916602001820160405280156125ff5781602001600182028036833780820191505090505b5090505b6000851461268c57600182612618919061384a565b9150600a8561262791906139e0565b603061263391906137c3565b60f81b81838151811061264957612648613a9e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126859190613819565b9450612603565b8093505050505b919050565b6126a583838360016126d9565b505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561274f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274690613629565b60405180910390fd5b6000841415612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278a90613649565b60405180910390fd5b6127a060008683876126aa565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612a3a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612a25576129e560008884886123a0565b612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90613609565b60405180910390fd5b5b8180600101925050808060010191505061296e565b508060008190555050612a5060008683876126b0565b5050505050565b828054612a6390613934565b90600052602060002090601f016020900481019282612a855760008555612acc565b82601f10612a9e57805160ff1916838001178555612acc565b82800160010185558215612acc579182015b82811115612acb578251825591602001919060010190612ab0565b5b509050612ad99190612b17565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612b30576000816000905550600101612b18565b5090565b6000612b47612b4284613709565b6136e4565b905082815260208101848484011115612b6357612b62613b01565b5b612b6e8482856138f2565b509392505050565b6000612b89612b848461373a565b6136e4565b905082815260208101848484011115612ba557612ba4613b01565b5b612bb08482856138f2565b509392505050565b600081359050612bc7816140de565b92915050565b600081359050612bdc816140f5565b92915050565b600081359050612bf18161410c565b92915050565b600081519050612c068161410c565b92915050565b600082601f830112612c2157612c20613afc565b5b8135612c31848260208601612b34565b91505092915050565b600082601f830112612c4f57612c4e613afc565b5b8135612c5f848260208601612b76565b91505092915050565b600081359050612c7781614123565b92915050565b600060208284031215612c9357612c92613b0b565b5b6000612ca184828501612bb8565b91505092915050565b60008060408385031215612cc157612cc0613b0b565b5b6000612ccf85828601612bb8565b9250506020612ce085828601612bb8565b9150509250929050565b600080600060608486031215612d0357612d02613b0b565b5b6000612d1186828701612bb8565b9350506020612d2286828701612bb8565b9250506040612d3386828701612c68565b9150509250925092565b60008060008060808587031215612d5757612d56613b0b565b5b6000612d6587828801612bb8565b9450506020612d7687828801612bb8565b9350506040612d8787828801612c68565b925050606085013567ffffffffffffffff811115612da857612da7613b06565b5b612db487828801612c0c565b91505092959194509250565b60008060408385031215612dd757612dd6613b0b565b5b6000612de585828601612bb8565b9250506020612df685828601612bcd565b9150509250929050565b60008060408385031215612e1757612e16613b0b565b5b6000612e2585828601612bb8565b9250506020612e3685828601612c68565b9150509250929050565b600060208284031215612e5657612e55613b0b565b5b6000612e6484828501612be2565b91505092915050565b600060208284031215612e8357612e82613b0b565b5b6000612e9184828501612bf7565b91505092915050565b600060208284031215612eb057612eaf613b0b565b5b600082013567ffffffffffffffff811115612ece57612ecd613b06565b5b612eda84828501612c3a565b91505092915050565b600060208284031215612ef957612ef8613b0b565b5b6000612f0784828501612c68565b91505092915050565b60008060408385031215612f2757612f26613b0b565b5b6000612f3585828601612c68565b9250506020612f4685828601612c68565b9150509250929050565b612f598161387e565b82525050565b612f6881613890565b82525050565b6000612f7982613780565b612f838185613796565b9350612f93818560208601613901565b612f9c81613b10565b840191505092915050565b6000612fb28261378b565b612fbc81856137a7565b9350612fcc818560208601613901565b612fd581613b10565b840191505092915050565b6000612feb8261378b565b612ff581856137b8565b9350613005818560208601613901565b80840191505092915050565b6000815461301e81613934565b61302881866137b8565b94506001821660008114613043576001811461305457613087565b60ff19831686528186019350613087565b61305d8561376b565b60005b8381101561307f57815481890152600182019150602081019050613060565b838801955050505b50505092915050565b600061309d6022836137a7565b91506130a882613b21565b604082019050919050565b60006130c06026836137a7565b91506130cb82613b70565b604082019050919050565b60006130e3602a836137a7565b91506130ee82613bbf565b604082019050919050565b60006131066023836137a7565b915061311182613c0e565b604082019050919050565b60006131296025836137a7565b915061313482613c5d565b604082019050919050565b600061314c6039836137a7565b915061315782613cac565b604082019050919050565b600061316f602b836137a7565b915061317a82613cfb565b604082019050919050565b60006131926026836137a7565b915061319d82613d4a565b604082019050919050565b60006131b56005836137b8565b91506131c082613d99565b600582019050919050565b60006131d86020836137a7565b91506131e382613dc2565b602082019050919050565b60006131fb601a836137a7565b915061320682613deb565b602082019050919050565b600061321e6032836137a7565b915061322982613e14565b604082019050919050565b60006132416016836137a7565b915061324c82613e63565b602082019050919050565b60006132646022836137a7565b915061326f82613e8c565b604082019050919050565b60006132876033836137a7565b915061329282613edb565b604082019050919050565b60006132aa6001836137b8565b91506132b582613f2a565b600182019050919050565b60006132cd6021836137a7565b91506132d882613f53565b604082019050919050565b60006132f06028836137a7565b91506132fb82613fa2565b604082019050919050565b6000613313602e836137a7565b915061331e82613ff1565b604082019050919050565b6000613336602f836137a7565b915061334182614040565b604082019050919050565b6000613359602d836137a7565b91506133648261408f565b604082019050919050565b613378816138e8565b82525050565b600061338a8286613011565b91506133968285612fe0565b91506133a18261329d565b91506133ad8284612fe0565b91506133b8826131a8565b9150819050949350505050565b60006020820190506133da6000830184612f50565b92915050565b60006080820190506133f56000830187612f50565b6134026020830186612f50565b61340f604083018561336f565b81810360608301526134218184612f6e565b905095945050505050565b60006020820190506134416000830184612f5f565b92915050565b600060208201905081810360008301526134618184612fa7565b905092915050565b6000602082019050818103600083015261348281613090565b9050919050565b600060208201905081810360008301526134a2816130b3565b9050919050565b600060208201905081810360008301526134c2816130d6565b9050919050565b600060208201905081810360008301526134e2816130f9565b9050919050565b600060208201905081810360008301526135028161311c565b9050919050565b600060208201905081810360008301526135228161313f565b9050919050565b6000602082019050818103600083015261354281613162565b9050919050565b6000602082019050818103600083015261356281613185565b9050919050565b60006020820190508181036000830152613582816131cb565b9050919050565b600060208201905081810360008301526135a2816131ee565b9050919050565b600060208201905081810360008301526135c281613211565b9050919050565b600060208201905081810360008301526135e281613234565b9050919050565b6000602082019050818103600083015261360281613257565b9050919050565b600060208201905081810360008301526136228161327a565b9050919050565b60006020820190508181036000830152613642816132c0565b9050919050565b60006020820190508181036000830152613662816132e3565b9050919050565b6000602082019050818103600083015261368281613306565b9050919050565b600060208201905081810360008301526136a281613329565b9050919050565b600060208201905081810360008301526136c28161334c565b9050919050565b60006020820190506136de600083018461336f565b92915050565b60006136ee6136ff565b90506136fa8282613966565b919050565b6000604051905090565b600067ffffffffffffffff82111561372457613723613acd565b5b61372d82613b10565b9050602081019050919050565b600067ffffffffffffffff82111561375557613754613acd565b5b61375e82613b10565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006137ce826138e8565b91506137d9836138e8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561380e5761380d613a11565b5b828201905092915050565b6000613824826138e8565b915061382f836138e8565b92508261383f5761383e613a40565b5b828204905092915050565b6000613855826138e8565b9150613860836138e8565b92508282101561387357613872613a11565b5b828203905092915050565b6000613889826138c8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561391f578082015181840152602081019050613904565b8381111561392e576000848401525b50505050565b6000600282049050600182168061394c57607f821691505b602082108114156139605761395f613a6f565b5b50919050565b61396f82613b10565b810181811067ffffffffffffffff8211171561398e5761398d613acd565b5b80604052505050565b60006139a2826138e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139d5576139d4613a11565b5b600182019050919050565b60006139eb826138e8565b91506139f6836138e8565b925082613a0657613a05613a40565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f5f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6140e78161387e565b81146140f257600080fd5b50565b6140fe81613890565b811461410957600080fd5b50565b6141158161389c565b811461412057600080fd5b50565b61412c816138e8565b811461413757600080fd5b5056fea264697066735822122043b6767b21d809ee3c2832f23467f63ca682b5f0db0abb0618356ec8eeca0b4064736f6c63430008070033

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.