ETH Price: $3,300.33 (-1.63%)

Token

ERA Name Service (.era)

Overview

Max Total Supply

101,202 .era

Holders

90,204

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 .era
0xc0f41aa70911147db37809d1307217997d3e38cf
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
ERA_Name_Service

Compiler Version
v0.8.17+commit.8df45f5f

ZkSolc Version
v1.3.5

Optimization Enabled:
Yes with Mode 3

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at era.zksync.network on 2024-01-03
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.0;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.0;







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

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;
    mapping(uint => string) public tokenIDandAddress;
    mapping(string => uint) public tokenAddressandID;
    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

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

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

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

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


pragma solidity ^0.8.0;


contract ERA_Name_Service is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    uint256 public Cost2Character = 30000000000000000;
    uint256 public Cost3Character = 10000000000000000;
    uint256 public Cost4mCharacter = 3000000000000000;
    uint256 public royaltyBps = 500;
    string private domain='.era';
    string private BASE_URI = 'https://data.era.name/metadata/';
    string private CONTRACT_URI = 'https://data.era.name/contract.json';
    mapping(string => address) public resolveAddress;
    mapping(address => string) public primaryAddress;
    mapping(string => mapping(string => string)) public dataAddress;
    bytes _allowChars = "0123456789-_abcdefghijklmnopqrstuvwxyz";

    constructor() ERC721A("ERA Name Service", ".era") {
        tokenIDandAddress[_currentIndex]="era";
        tokenAddressandID["era"]=_currentIndex;
        resolveAddress["era"]=msg.sender;
        _safeMint(msg.sender,1);
    }
   



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

    function contractURI() public view returns (string memory) {
        return CONTRACT_URI;
    }

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view
    returns (address receiver, uint256 royaltyAmount) {
            TokenOwnership memory Ownership = _ownershipOf(_tokenId);
            return (Ownership.addr, _salePrice*royaltyBps/10000);
    }

    

    
    function setAddress(string calldata NAME, address newresolve) external {
         TokenOwnership memory Ownership = _ownershipOf(tokenAddressandID[NAME]);
        if (Ownership.addr != msg.sender) revert("Error");
        

    bytes memory result = bytes(primaryAddress[resolveAddress[NAME]]);
        if (keccak256(result) == keccak256(bytes(NAME))) {
            primaryAddress[resolveAddress[NAME]]="";
        }
        resolveAddress[NAME]=newresolve;
    }

    function setPrimaryAddress(string calldata NAME) external {
        TokenOwnership memory Ownership = _ownershipOf(tokenAddressandID[NAME]);
        if (Ownership.addr != msg.sender) revert("Error");
        primaryAddress[msg.sender]=NAME;
    }


    function setDataAddress(string calldata NAME,string calldata setArea, string  memory newDatas) external {
        TokenOwnership memory Ownership = _ownershipOf(tokenAddressandID[NAME]);
        if (Ownership.addr != msg.sender) revert("Error");
        dataAddress[NAME][setArea]=newDatas;
    }

    function getDataAddress(string memory NAME, string calldata Area) public view returns(string memory) {
        return dataAddress[NAME][Area];
    }


    function setBaseURI(string memory customBaseURI_) external onlyOwner {
        BASE_URI = customBaseURI_;
    }

    function setContractURI(string memory customContractURI_) external onlyOwner {
        CONTRACT_URI = customContractURI_;
    }

    function setRoyaltyBps(uint256 royaltyBps_) external onlyOwner {
        royaltyBps = royaltyBps_;
    }

    function setRegisterPrice(uint256 Character2,uint256 Character3,uint256 Character4more) external onlyOwner {
        Cost2Character = Character2;
        Cost3Character = Character3;
        Cost4mCharacter = Character4more;
    }

        function Register(string memory NAME)
        public
        payable
    {
        uint256 price = Cost4mCharacter;
        uint256 charlength=bytes(NAME).length;
        require(charlength>1,"Write a Name");
        if(charlength==2) {price=Cost2Character;} else if(charlength==3){price=Cost3Character;} else {price=Cost4mCharacter;}
        require (tokenAddressandID[NAME] == 0 , "This is already taken");
        require(msg.value >= price, "Insufficient funds!");
        tokenIDandAddress[_currentIndex]=NAME;
        tokenAddressandID[NAME]=_currentIndex;
        (bool success, ) = payable(owner()).call{value:msg.value}('');
        _safeMint(msg.sender,1);
    }




function walletOfOwnerName(address _owner)
    public
    view
    returns (string[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    string[] memory ownedTokenIds = new string[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = string.concat(tokenIDandAddress[currentTokenId],domain);

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }


function lastAddresses(uint256 count)
    public
    view
    returns (string[] memory)
  {
    uint256 total = totalSupply();
    if(count>total){count=total;}
    string[] memory lastAddr = new string[](count);
    uint256 currentId = total - count;
    uint256 ownedTokenIndex = 0;
    require(currentId>=0,"Invalid");
    while (total > currentId) {
        lastAddr[ownedTokenIndex] = string.concat(tokenIDandAddress[total]);
        ownedTokenIndex++;
      total--;
    }

    return lastAddr;
  }

 function _checkName(string memory _name) public view returns(bool){
        uint allowedChars =0;
        bytes memory byteString = bytes(_name);
        bytes memory allowed = bytes(_allowChars);  
        for(uint i=0; i < byteString.length ; i++){
           for(uint j=0; j<allowed.length; j++){
              if(byteString[i]==allowed[j] )
              allowedChars++;         
           }
        }
        if (allowedChars==byteString.length) { return true; } else { return false; }
       
    }
    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        (bool success, ) = payable(owner()).call{value:balance}('');
        }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Cost2Character","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Cost3Character","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Cost4mCharacter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"NAME","type":"string"}],"name":"Register","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"_checkName","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"string","name":"","type":"string"}],"name":"dataAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"NAME","type":"string"},{"internalType":"string","name":"Area","type":"string"}],"name":"getDataAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"count","type":"uint256"}],"name":"lastAddresses","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"primaryAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"resolveAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"string","name":"NAME","type":"string"},{"internalType":"address","name":"newresolve","type":"address"}],"name":"setAddress","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":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customContractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"NAME","type":"string"},{"internalType":"string","name":"setArea","type":"string"},{"internalType":"string","name":"newDatas","type":"string"}],"name":"setDataAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"NAME","type":"string"}],"name":"setPrimaryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"Character2","type":"uint256"},{"internalType":"uint256","name":"Character3","type":"uint256"},{"internalType":"uint256","name":"Character4more","type":"uint256"}],"name":"setRegisterPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"royaltyBps_","type":"uint256"}],"name":"setRoyaltyBps","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":"string","name":"","type":"string"}],"name":"tokenAddressandID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIDandAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwnerName","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b00000000000000000000000000000000000000000000000000000000000000000100058dba82a10d9c222b771b0e8f10e677cda54ad25c12ce2d9bd9e8fb671c00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0004000000000002000c00000000000200000000030100190000006003300270000005180430019700030000004103550002000000010355000005180030019d000100000000001f0000008001000039000000400010043f00000001012001900000008a0000c13d0000000001000031000000040210008c0000081e0000413d0000000202000367000000000202043b000000e002200270000005210320009c0000022b0000613d000005220320009c000002aa0000613d000005230320009c000002da0000613d000005240320009c000002f50000613d000005250320009c000000c40000613d000005260320009c000000dc0000613d000005270320009c000000f40000613d000005280320009c000001100000613d000005290320009c0000031a0000613d0000052a0320009c000003240000613d0000052b0320009c0000034f0000613d0000052c0320009c000003a60000613d0000052d0320009c000003d20000613d0000052e0120009c000003e60000613d0000052f0120009c000001320000613d000005300120009c000003fb0000613d000005310120009c000004250000613d000005320120009c000004410000613d000005330120009c0000046e0000613d000005340120009c000004870000613d000005350120009c000004b90000613d000005360120009c000004e50000613d000005370120009c000004fe0000613d000005380120009c0000050c0000613d000005390120009c000005250000613d0000053a0120009c0000014a0000613d0000053b0120009c000005550000613d0000053c0120009c0000057c0000613d0000053d0120009c000005c10000613d0000053e0120009c000005d90000613d0000053f0120009c000006650000613d000005400120009c0000067e0000613d000005410120009c000006be0000613d000005420120009c000006d60000613d000005430120009c000007280000613d000005440120009c000007540000613d000005450120009c000007720000613d000005460120009c000007a20000613d000005470120009c000007ca0000613d000005480120009c000008070000613d000005490120009c0000081e0000c13d0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000200310008c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d00000004010000390000000201100367000000000101043b0000056302100197000000000212004b0000081e0000c13d0000000102000039000005640310009c000000840000613d000005650310009c000000840000613d000005660110009c00000000020000190000000102006039000000010220018f000000400100043d000000000021043500000020020000390000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000c001000039000000400010043f0000001001000039000000800010043f0000051901000041000000a00010043f000000400100043d000c00000001001d145c0ade0000040f0000000c0300002900000020013000390000051a020000410000000000210435000000040100003900000000001304350000000001030019145c0baf0000040f0000051b010000410000000c02000039000000000012041b0000051c010000410000000d02000039000000000012041b0000051d010000410000000e02000039000000000012041b000001f4010000390000000f02000039000000000012041b145c0afc0000040f145c0b170000040f145c0b320000040f145c0b570000040f000000000100041a145c0b7c0000040f145c0b830000040f145c0b9d0000040f000000000200041a000000000021041b145c0ba60000040f000000000201041a0000051e0320019700000000020004110000051f04200197000000000343019f000000000031041b0000000001020019145c0c7f0000040f000000200100003900000100001004430000012000000443000001000100003900000040020000390000052003000041145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d0000000001000031145c0e700000040f0000000003010433000b00000003001d000000400200043d000c00000002001d0000002001100039145c0dc20000040f0000000b030000290000000c010000290000000004130019000000020200003900000000002404350000002002300039145c0aa20000040f000000000201041a000000400100043d000000000021043500000020020000390000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000000310004c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d0000000e01000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000000310004c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d0000000301000039000000000101041a000000010200008a000000000121013f000000000200041a0000000002120019000000400100043d000000000021043500000020020000390000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000200310008c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d0000000a01000039000000000101041a0000051f011001970000000002000411000000000121004b00000000010000190000000101006039145c0f640000040f00000004010000390000000201100367000000000101043b0000000f02000039000000000012041b000000000100001900000000020000190000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000000310004c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d0000000d01000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d0000000002000031000000040120008a0000054a03000041000000400410008c000000000400001900000000040340190000054a01100197000000000510004c000000000300a0190000054a0110009c00000000010400190000000001036019000000000110004c0000081e0000c13d00000004010000390000000201100367000000000101043b0000054c0310009c0000081e0000213d0000000401100039145c0f480000040f000b00000001001d000c00000002001d00000002010003670000002402100370000000000202043b000a00000002001d0000051f0220009c0000081e0000213d0000000b02000029000000000221034f000000400100043d0000000c030000290000001f0630018f00000005073002720000017a0000613d000000000300001900000005043002100000000005410019000000000442034f000000000404043b00000000004504350000000103300039000000000473004b000001720000413d000000000360004c000001890000613d0000000503700210000000000232034f00000000033100190000000304600210000000000503043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000230435000800000007001d000900000006001d0000000c040000290000000002410019000000020300003900000000003204350000002002400039000700000002001d145c0aa20000040f000000000101041a145c0fb50000040f000000400600043d00000000010104330000051f011001970000000002000411000000000121004b000009d00000c13d0000000b0100002900000002011003670000000805000029000000000250004c000001a80000613d000000000200001900000005032002100000000004360019000000000331034f000000000303043b00000000003404350000000102200039000000000352004b000001a00000413d0000000903000029000000000230004c000001b80000613d0000000502500210000000000121034f00000000022600190000000303300210000000000402043300000000043401cf000000000434022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f00000000001204350000000c0100002900000000011600190000001302000039000500000002001d000000000021043500000000010600190000000702000029145c0aa20000040f000000000101041a0000051f0110019700000000001004350000001401000039000400000001001d000000200010043f00000040020000390000000001000019145c0aa20000040f000000400200043d000600000002001d145c0efe0000040f000000060400002900000000014100490000001f01100039000000200200008a000000000221016f0000000001420019000000000221004b000000000200001900000001020040390000054c0310009c0000051e0000213d00000001022001900000051e0000c13d000000400010043f00000000020404330000002001400039145c0aa20000040f000600000001001d00000000030000310000000b010000290000000c02000029145c0e1a0000040f00000000020104330000002001100039145c0aa20000040f0000000602000029000000000112004b00000a5e0000c13d000000400100043d0000000b0200002900000002022003670000000806000029000000000360004c000001f70000613d000000000300001900000005043002100000000005410019000000000442034f000000000404043b00000000004504350000000103300039000000000463004b000001ef0000413d0000000903000029000000000330004c000002090000613d00000008030000290000000503300210000000000232034f000000000331001900000009040000290000000304400210000000000503043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002304350000000c020000290000000002210019000000050300002900000000003204350000000702000029145c0aa20000040f000000000101041a0000051f0110019700000000001004350000000401000029000000200010043f00000040020000390000000001000019145c0aa20000040f000900000001001d000000000101041a145c0eec0000040f000800000001001d000000200110008c00000a5b0000413d0000000901000029000000000010043500000020020000390000000001000019145c0aa20000040f00000008020000290000001f0220003900000005022002700000000002210019000000000321004b00000a5b0000813d000000000001041b0000000101100039000002260000013d0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000200310008c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d00000004010000390000000201100367000000000101043b000800000001001d0000051f0110009c0000081e0000213d0000000801000029145c0f8b0000040f000700000001001d145c13d60000040f000000010300003900000000020100190000002001200039000100000001001d0000004001000039000200000001001d0000001004000039000300000003001d0000000005000019000900000002001d000a00000004001d0000000701000029000000000115004b000009c80000813d000c00000005001d0000000001030019000b00000003001d145c0fb50000040f0000000b0300002900000000010104330000051f011001970000000802000029000000000121004b000002940000c13d00000000003004350000000301000029000000200010043f00000000010000190000000202000029145c0aa20000040f000000400200043d000600000002001d0000002002200039145c0ff40000040f000500000001001d0000000a01000029000000000101041a000400000001001d145c0eec0000040f000000040300002900000001023001900000029d0000c13d000001000200008a000000000223016f00000005060000290000000000260435000000060500002900000000025600490000000001210019000000200210008a00000000002504350000001f01100039000000200200008a000000000221016f0000000001520019000000000221004b000000000200001900000001020040390000054c0310009c0000051e0000213d00000001022001900000051e0000c13d000000400010043f000000090200002900000000010204330000000c04000029000000000141004b0000088e0000a13d00000005014002100000000103000029000000000113001900000000005104350000000001020433000000000141004b0000088e0000a13d0000000104400039000c00000004001d0000000b030000290000000101300039000000010200008a000000000223004b000000000301001900000009020000290000000a040000290000000c05000029000002510000c13d000009790000013d0000000a0200002900000000002004350000054b0200004100000000030000190000000506000029000000000413004b000002740000813d0000000004630019000000000502041a000000000054043500000020033000390000000102200039000002a20000013d0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000000310004c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d0000000401000039000a00000001001d000000000101041a000b00000001001d000000400200043d000c00000002001d145c0eec0000040f0000000b030000290000000c0700002900000000001704350000000102300190000008950000c13d000001000200008a000000000223016f00000020037000390000000000230435000000000110004c0000002002000039000000000200601900000020022000390000000001070019145c0e060000040f000000400100043d000b00000001001d0000000c02000029145c0de10000040f0000000b03000029000000000231004900000000010300190000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000200310008c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d00000004010000390000000201100367000000000101043b145c10150000040f0000051f02100197000000400100043d000000000021043500000020020000390000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000400310008c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d00000002010003670000000402100370000000000202043b000c00000002001d0000051f0220009c0000081e0000213d0000002401100370000000000101043b000b00000001001d145c0fb50000040f00000000010104330000051f031001970000000c01000029000000000131004b000009930000c13d000000400100043d000005610200004100000000002104350000000402000039145c0ad50000040f0000000001000416000000000110004c0000081e0000c13d0000000001000031145c0eac0000040f145c10580000040f000000000100001900000000020000190000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000400310008c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d00000002010003670000002402100370000000000202043b000c00000002001d0000000401100370000000000101043b145c0fb50000040f0000000c0500002900000000020104330000000f01000039000000000301041a00000000415300a9000000000450004c000003460000613d00000000545100d9000000000343004b000009790000c13d000027101310011a000000400100043d000000200410003900000000003404350000051f02200197000000000021043500000040020000390000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000200310008c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d0000000301000039000000000101041a000000010200008a000000000121013f000000000200041a0000000003120019000c00000003001d00000004010000390000000201100367000000000101043b000000000231004b0000000001038019000b00000001001d145c13d60000040f0000000c020000290000000b030000290000000003320049000900000003001d00000000030100190000002001300039000700000001001d0000000004000019000800000003001d0000000901000029000000000112004b0000098a0000a13d0000000001030433000000000141004b0000088e0000a13d000a00000004001d000c00000002001d00000000002004350000000101000039000000200010043f00000040020000390000000001000019145c0aa20000040f000000400200043d000b00000002001d0000002002200039145c0ff40000040f0000000b050000290000000001510049000000200210008a00000000002504350000001f01100039000000200200008a000000000221016f0000000001520019000000000221004b000000000200001900000001020040390000054c0310009c0000051e0000213d00000001022001900000051e0000c13d000000400010043f0000000a04000029000000050140021000000007020000290000000001120019000000000051043500000008030000290000000001030433000000000141004b0000000c020000290000088e0000a13d000000010220008a0000000104400039000003770000013d0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000000310004c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d0000000a01000039000000000101041a0000051f021001970000000001000411000c00000002001d000000000112004b00000000010000190000000101006039145c0f640000040f0000000b02000039000000000102041a000000020110008c000008a20000c13d000000400100043d00000044021000390000055e03000041000000000032043500000024021000390000001f0300003900000000003204350000054f0200004100000000002104350000000402100039000000200300003900000000003204350000006402000039145c0ad50000040f145c0e700000040f0000000e02000039000000000402041a0000000003010433000000010230008c000008210000213d000000400100043d00000044021000390000055c03000041000000000032043500000024021000390000000c0300003900000000003204350000054f0200004100000000002104350000000402100039000000200300003900000000003204350000006402000039145c0ad50000040f0000000001000416000000000110004c0000081e0000c13d0000000001000031145c0eac0000040f000c00000001001d000b00000002001d000a00000003001d000000400100043d000900000001001d145c0dfa0000040f000000090400002900000000000404350000000c010000290000000b020000290000000a03000029145c10290000040f000000000100001900000000020000190000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d0000000001000031145c0e700000040f000c00000001001d0000000a01000039000000000101041a0000051f011001970000000002000411000000000121004b00000000010000190000000101006039145c0f640000040f0000000c0300002900000000020304330000054c0120009c0000051e0000213d0000001101000039000b00000001001d000000000101041a000a00000002001d145c0eec0000040f0000000a07000029000000200210008c000008260000413d0000001f02700039000000050220027000000551022000410000055103000041000000200470008c00000000020340190000000b0300002900000000003004350000001f0110003900000005011002700000055101100041000000000312004b000008260000813d000000000002041b0000000102200039000004200000013d0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000200310008c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d00000004010000390000000201100367000000000101043b145c0fb50000040f00000000010104330000051f02100197000000400100043d000000000021043500000020020000390000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000200310008c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d00000004010000390000000201100367000000000101043b00000000001004350000000101000039000000200010043f00000040020000390000000001000019145c0aa20000040f000000400200043d000c00000002001d145c0efe0000040f0000000c0300002900000000023100490000000001030019145c0e060000040f0000002001000039000000400200043d000b00000002001d000000000012043500000020022000390000000c01000029145c0dce0000040f0000000b03000029000000000231004900000000010300190000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000200310008c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d145c0de80000040f145c0f8b0000040f000000400300043d0000000000130435000000200200003900000000010300190000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000000310004c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d0000000a01000039000b00000001001d000000000101041a000a00000001001d0000051f02100197000c00000002001d0000000001000411000000000112004b00000000010000190000000101006039145c0f640000040f0000000a010000290000051e011001970000000b02000029000000000012041b00000518010000410000000002000414000005180320009c0000000001024019000000c00110021000000558011001c70000800d02000039000000030300003900000559040000410000000c050000290000000006000019145c14520000040f00000001012001900000081e0000613d000000000100001900000000020000190000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000200310008c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d145c0de80000040f0000051f0110019700000000001004350000001401000039000000200010043f00000040020000390000000001000019145c0aa20000040f000000400200043d000c00000002001d145c0efe0000040f0000000c0300002900000000023100490000000001030019145c0e060000040f0000002001000039000000400200043d000b00000002001d000000000012043500000020022000390000000c01000029145c0dce0000040f0000000b03000029000000000231004900000000010300190000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000000310004c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d0000000a01000039000000000101041a0000051f02100197000000400100043d000000000021043500000020020000390000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d0000000001000031145c0e700000040f145c13f90000040f000000000110004c0000000002000019000000010200c039000000400100043d000000000021043500000020020000390000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d0000000001000031145c0e700000040f000c00000001001d0000000a01000039000000000101041a0000051f011001970000000002000411000000000121004b00000000010000190000000101006039145c0f640000040f0000000c0300002900000000020304330000054c0120009c000008390000a13d0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000000310004c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d0000000501000039000a00000001001d000000000101041a000b00000001001d000000400200043d000c00000002001d145c0eec0000040f0000000b030000290000000c0700002900000000001704350000000102300190000008bc0000c13d000001000200008a000000000223016f00000020037000390000000000230435000000000110004c0000002002000039000000000200601900000020022000390000000001070019145c0e060000040f000000400100043d000b00000001001d0000000c02000029145c0de10000040f0000000b03000029000000000231004900000000010300190000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000400310008c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d00000002010003670000000402100370000000000202043b00000000030200190000051f0220009c0000081e0000213d0000002401100370000000000201043b000000000120004c0000000001000019000000010100c039000c00000002001d000000000112004b0000081e0000c13d0000000004000411000000000143004b000009d90000c13d000000400100043d000005560200004100000000002104350000000402000039145c0ad50000040f0000000001000416000000000110004c0000081e0000c13d0000000002000031000000040120008a0000054a03000041000000400410008c000000000400001900000000040340190000054a01100197000000000510004c000000000300a0190000054a0110009c00000000010400190000000001036019000000000110004c0000081e0000c13d00000004010000390000000201100367000000000101043b0000054c0310009c0000081e0000213d0000000401100039145c0e580000040f000c00000001001d00000024010000390000000201100367000000000101043b0000054c0210009c0000081e0000213d00000000020000310000000401100039145c0f480000040f000b00000001001d000a00000002001d0000000c010000290000000003010433000800000003001d000000400200043d000900000002001d0000002001100039145c0dc20000040f000000080300002900000009010000290000000004130019000000150200003900000000002404350000002002300039145c0aa20000040f00000000030100190000000b010000290000000a02000029145c124e0000040f000000400200043d000c00000002001d145c0efe0000040f0000000c0300002900000000023100490000000001030019145c0e060000040f000000400100043d000b00000001001d0000000c02000029145c0de10000040f0000000b03000029000000000231004900000000010300190000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000000310004c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d0000000c01000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d0000000002000031000000040120008a0000054a03000041000000600410008c000000000400001900000000040340190000054a01100197000000000510004c000000000300a0190000054a0110009c00000000010400190000000001036019000000000110004c0000081e0000c13d00000004010000390000000201100367000000000101043b0000054c0310009c0000081e0000213d0000000401100039145c0f480000040f000b00000001001d000c00000002001d00000024010000390000000201100367000000000101043b0000054c0210009c0000081e0000213d00000000020000310000000401100039145c0f480000040f000a00000001001d000900000002001d00000044010000390000000201100367000000000101043b0000054c0210009c0000081e0000213d00000000020000310000000401100039145c0e580000040f0000000c040000290000001f0640018f0000000b020000290000000203200367000000400800043d000800000001001d0000000507400272000006160000613d000000000100001900000005041002100000000005480019000000000443034f000000000404043b00000000004504350000000101100039000000000471004b0000060e0000413d000000000160004c000006250000613d0000000501700210000000000313034f00000000011800190000000304600210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000600000007001d000700000006001d0000000c0400002900000000014800190000000203000039000000000031043500000020024000390000000001080019000500000002001d145c0aa20000040f000000000101041a145c0fb50000040f00000000010104330000051f011001970000000002000411000000000121004b000009800000c13d000000400100043d0000000b0200002900000002022003670000000606000029000000000360004c000006450000613d000000000300001900000005043002100000000005410019000000000442034f000000000404043b00000000004504350000000103300039000000000463004b0000063d0000413d0000000704000029000000000340004c000006550000613d0000000503600210000000000232034f00000000033100190000000304400210000000000503043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002304350000000c020000290000000002210019000000150300003900000000003204350000000502000029145c0aa20000040f00000000030100190000000a010000290000000902000029145c124e0000040f0000000802000029145c12df0000040f000000000100001900000000020000190000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d0000000001000031145c0e700000040f0000000003010433000b00000003001d000000400200043d000c00000002001d0000002001100039145c0dc20000040f0000000b030000290000000c010000290000000004130019000000130200003900000000002404350000002002300039145c0aa20000040f000000000101041a0000051f02100197000000400100043d000000000021043500000020020000390000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d0000000003000031000000040130008a0000054a02000041000000800410008c000000000400001900000000040240190000054a01100197000000000510004c000000000200a0190000054a0110009c00000000010400190000000001026019000000000110004c0000081e0000c13d00000002010003670000000402100370000000000202043b000c00000002001d0000051f0220009c0000081e0000213d0000002402100370000000000202043b000b00000002001d0000051f0220009c0000081e0000213d0000006402100370000000000402043b0000054c0240009c0000081e0000213d00000023024000390000054a05000041000000000632004b000000000600001900000000060580190000054a073001970000054a02200197000000000872004b0000000005008019000000000272013f0000054a0220009c00000000020600190000000002056019000000000220004c0000081e0000c13d0000000402400039000000000221034f000000000202043b0000004401100370000000000101043b000a00000001001d0000002401400039145c0e1a0000040f00000000040100190000000c010000290000000b020000290000000a03000029145c10290000040f000000000100001900000000020000190000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000000310004c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d0000000f01000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d0000000002000031000000040120008a0000054a03000041000000200410008c000000000400001900000000040340190000054a01100197000000000510004c000000000300a0190000054a0110009c00000000010400190000000001036019000000000110004c0000081e0000c13d00000004010000390000000201100367000000000101043b0000054c0310009c0000081e0000213d0000000401100039145c0f480000040f000000400300043d00000000090200190000001f0890018f000c00000001001d00000002021003670000000504900272000006fe0000613d000000000500001900000005065002100000000007630019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000006f60000413d000000000580004c0000070d0000613d0000000504400210000000000242034f00000000044300190000000301800210000000000504043300000000051501cf000000000515022f000000000202043b0000010001100089000000000212022f00000000011201cf000000000151019f000000000014043500000000019300190000000202000039000000000021043500000020029000390000000001030019000b00000009001d145c0aa20000040f000000000101041a145c0fb50000040f000000000200041100000000010104330000051f01100197000000000121004b000009800000c13d00000000002004350000001401000039000000200010043f00000040020000390000000001000019145c0aa20000040f0000000c020000290000000b03000029145c12960000040f000000000100001900000000020000190000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000600310008c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d0000000a01000039000000000101041a0000051f011001970000000002000411000000000121004b00000000010000190000000101006039145c0f640000040f00000004010000390000000201100367000000000101043b0000000c02000039000000000012041b00000024010000390000000201100367000000000101043b0000000d02000039000000000012041b00000044010000390000000201100367000000000101043b0000000e02000039000000000012041b000000000100001900000000020000190000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000200310008c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d00000004010000390000000201100367000000000101043b000c00000001001d145c10450000040f000000400300043d000000000110004c000008c90000c13d0000055301000041000000000013043500000004020000390000000001030019145c0ad50000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000000310004c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d0000001201000039000a00000001001d000000000101041a000b00000001001d000000400200043d000c00000002001d145c0eec0000040f0000000b030000290000000c0700002900000000001704350000000102300190000008f30000c13d000001000200008a000000000223016f00000020037000390000000000230435000000000110004c0000002002000039000000000200601900000020022000390000000001070019145c0e060000040f000000400100043d000b00000001001d0000000c02000029145c0de10000040f0000000b03000029000000000231004900000000010300190000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000400310008c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d145c0de80000040f000c00000001001d145c0df10000040f0000000c020000290000051f0220019700000000002004350000000902000039000000200020043f000c00000001001d00000040020000390000000001000019145c0aa20000040f0000000c02000029145c0f410000040f000000000101041a000000ff011001900000000002000019000000010200c039000000400100043d000000000021043500000020020000390000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d0000000002000031000000040120008a0000054a03000041000000400410008c000000000400001900000000040340190000054a01100197000000000510004c000000000300a0190000054a0110009c00000000010400190000000001036019000000000110004c0000081e0000c13d00000004010000390000000201100367000000000101043b0000054c0310009c0000081e0000213d0000000401100039145c0e580000040f000c00000001001d00000024010000390000000201100367000000000101043b0000054c0210009c0000081e0000213d00000000020000310000000401100039145c0e580000040f000b00000001001d0000000c010000290000000003010433000900000003001d000000400200043d000a00000002001d0000002001100039145c0dc20000040f00000009030000290000000a010000290000000004130019000000150200003900000000002404350000002002300039145c0aa20000040f00000000020100190000000b01000029145c0e9b0000040f145c0f260000040f0000000002010019000000400100043d000c00000001001d145c0de10000040f0000000c03000029000000000231004900000000010300190000000003000019145c0acb0000040f0000000001000416000000000110004c0000081e0000c13d000000040100008a00000000011000310000054a02000041000000200310008c000000000300001900000000030240190000054a01100197000000000410004c000000000200a0190000054a0110009c00000000010300190000000001026019000000000110004c0000081e0000c13d00000004010000390000000201100367000000000101043b000c00000001001d0000051f0110009c000009000000a13d00000000010000190000000002000019145c0ad50000040f000000020230008c000008510000c13d0000000c02000039000000000402041a000008550000013d0000001f0170008c0000091c0000a13d0000000b060000290000000000600435000000200100008a000000000217016f0000055101000041000000200300003900000000040000190000000c08000029000000000524004b00000000058300190000092a0000813d0000000005050433000000000051041b000000200440003900000020033000390000000101100039000008300000013d0000001201000039000b00000001001d000000000101041a000a00000002001d145c0eec0000040f0000000a07000029000000200210008c0000086d0000413d0000001f02700039000000050220027000000550022000410000055003000041000000200470008c00000000020340190000000b0300002900000000003004350000001f0110003900000005011002700000055001100041000000000312004b0000086d0000813d000000000002041b00000001022000390000084c0000013d000000030230008c000008550000c13d0000000d02000039000000000402041a000c00000004001d000b00000001001d145c0e890000040f000000000101041a000000000110004c000008800000c13d00000000010004160000000c02000029000000000121004b0000093c0000813d000000400100043d00000044021000390000055b0300004100000000003204350000002402100039000000130300003900000000003204350000054f0200004100000000002104350000000402100039000000200300003900000000003204350000006402000039145c0ad50000040f0000001f0170008c000009590000a13d0000000b060000290000000000600435000000200100008a000000000217016f0000055001000041000000200300003900000000040000190000000c08000029000000000524004b0000000005830019000009670000813d0000000005050433000000000051041b000000200440003900000020033000390000000101100039000008770000013d000000400100043d00000044021000390000055a0300004100000000003204350000002402100039000000150300003900000000003204350000054f0200004100000000002104350000000402100039000000200300003900000000003204350000006402000039145c0ad50000040f0000055f0100004100000000001004350000003201000039000000040010043f00000024020000390000000001000019145c0ad50000040f0000000a020000290000000000200435000005620300004100000020047000390000000002000019000000000512004b000002ce0000813d0000000005240019000000000603041a0000000000650435000000200220003900000001033000390000089a0000013d0000000201000039000b00000002001d000000000012041b0000000001000414000a00000001001d0000055d010000410000000000100439000000000100041000000004001004430000800a010000390000002402000039145c0ab90000040f00000000030100190000000c04000029000000040140008c00000a100000613d000000000130004c00000a030000c13d0000000a0100002900000000020400190000000003000019000000000400001900000000050000190000000006000019145c0a6b0000040f00000a100000013d0000000a020000290000000000200435000005570300004100000020047000390000000002000019000000000512004b000005490000813d0000000005240019000000000603041a000000000065043500000020022000390000000103300039000008c10000013d0000001101000039000900000001001d000000000101041a000a00000001001d000b00000003001d145c0eec0000040f0000000a030000290000000b0700002900000000001704350000000102300190000009af0000c13d000001000200008a000000000323016f00000020027000390000000000320435000000000110004c00000020030000390000000003006019000000000172004900000000013100190000001f01100039000000200400008a000000000141016f0000000002710019000000000112004b000000000100001900000001010040390000054c0320009c0000051e0000213d00000001011001900000051e0000c13d000000400020043f0000000001070433000000000110004c00000a180000c13d000005520120009c0000051e0000213d0000002001200039000000400010043f0000000000020435000000400100043d00000a540000013d0000000a020000290000000000200435000005500300004100000020047000390000000002000019000000000512004b000007960000813d0000000005240019000000000603041a000000000065043500000020022000390000000103300039000008f80000013d0000000a01000039000000000101041a0000051f011001970000000002000411000000000121004b00000000010000190000000101006039145c0f640000040f0000000c01000029000000000210004c000009bc0000c13d000000400100043d00000064021000390000054d03000041000000000032043500000044021000390000054e0300004100000000003204350000002402100039000000260300003900000000003204350000054f0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039145c0ad50000040f000000000170004c00000000010000190000000b060000290000000c02000029000009230000613d000000200120003900000000010104330000000302700210000000010300008a000000000223022f000000000232013f000000000221016f0000000101700210000009360000013d000000000272004b000009340000813d0000000302700210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003050433000000000223016f000000000021041b00000001010000390000000102700210000000000112019f000000000016041b000000000100001900000000020000190000000003000019145c0acb0000040f000000000100041a00000000001004350000000101000039000000200010043f00000040020000390000000001000019145c0aa20000040f0000000b02000029145c12df0000040f0000000b01000029145c0e890000040f000000000200041a000000000021041b00000000010004140000000a02000039000000000202041a00000000030004160000051f04200197000000040240008c00000a3a0000613d000000000230004c00000a2e0000c13d00000000020400190000000003000019000000000400001900000000050000190000000006000019145c0a6b0000040f00000a3a0000013d000000000170004c00000000010000190000000b060000290000000c02000029000009600000613d000000200120003900000000010104330000000302700210000000010300008a000000000223022f000000000232013f000000000221016f0000000101700210000009730000013d000000000272004b000009710000813d0000000302700210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003050433000000000223016f000000000021041b00000001010000390000000102700210000000000112019f000000000016041b000000000100001900000000020000190000000003000019145c0acb0000040f0000055f0100004100000000001004350000001101000039000000040010043f00000024020000390000000001000019145c0ad50000040f000000400200043d000c00000002001d0000054f0100004100000000001204350000000401200039145c12710000040f0000000c0300002900000000023100490000000001030019145c0ad50000040f000000400100043d000c00000001001d0000000002030019145c0ec80000040f0000000c03000029000000000231004900000000010300190000000003000019145c0acb0000040f0000000004000411000000000134004b000009c10000613d00000000003004350000000901000039000000200010043f0000004002000039000900000002001d0000000001000019000800000004001d000a00000003001d145c0aa20000040f00000008020000290000051f022001970000000000200435000000200010043f00000000010000190000000902000029145c0aa20000040f0000000a03000029000000000101041a000000ff01100190000009c10000c13d000000400100043d000005600200004100000000002104350000000402000039145c0ad50000040f00000009020000290000000000200435000005510400004100000020027000390000000003000019000000000513004b000008db0000813d0000000005230019000000000604041a000000000065043500000020033000390000000104400039000009b40000013d145c0f740000040f000000000100001900000000020000190000000003000019145c0acb0000040f0000000c010000290000000b02000029145c11130000040f000000000100001900000000020000190000000003000019145c0acb0000040f000000400100043d000c00000001001d145c0ec80000040f0000000c03000029000000000231004900000000010300190000000003000019145c0acb0000040f0000054f0100004100000000001604350000000401600039000c00000006001d145c12710000040f0000000c0300002900000000023100490000000001030019145c0ad50000040f00000000004004350000000901000039000000200010043f0000004002000039000900000002001d0000000001000019000b00000003001d000a00000004001d145c0aa20000040f0000000b020000290000000000200435000000200010043f00000000010000190000000902000029145c0aa20000040f000001000200008a000000000301041a000000000223016f0000000c03000029000000000232019f000000000021041b000000400100043d000000000031043500000518020000410000000003000414000005180430009c0000000003028019000005180410009c00000000010280190000004001100210000000c002300210000000000112019f00000554011001c70000800d02000039000000030300003900000555040000410000000a050000290000000b06000029145c14520000040f0000000101200190000004b50000c13d0000081e0000013d00000518010000410000000a05000029000005180250009c0000000001054019000000c00110021000000558011001c700008009020000390000000005000019145c14520000040f00000000020100190000006002200270000105180020019d0003000000010355145c11360000040f00000001010000390000000b02000029000000000012041b000000000100001900000000020000190000000003000019145c0acb0000040f000a00000004001d0000000c0100002900000000001004350000000101000039000000200010043f00000040020000390000000001000019145c0aa20000040f0000000b070000290000000002070433000000400300043d000c00000003001d00000020033000390000000004000019000000000524004b00000a410000813d0000000005340019000000200440003900000000067400190000000006060433000000000065043500000a260000013d0000051802000041000005180510009c0000000001028019000000c00110021000000558011001c700008009020000390000000005000019145c14520000040f00000000020100190000006002200270000105180020019d0003000000010355145c11360000040f0000000001000411145c132a0000040f000000000100001900000000020000190000000003000019145c0acb0000040f00000000023200190000000000020435145c0ff40000040f0000000c020000290000000001210049000000200310008a00000000003204350000001f011000390000000a03000029000000000331016f0000000001230019000000000331004b000000000400001900000001040040390000054c0310009c0000051e0000213d00000001034001900000051e0000c13d000000400010043f000c00000001001d145c0de10000040f0000000c03000029000000000231004900000000010300190000000003000019145c0acb0000040f0000000901000029000000000001041b0000000b010000290000000b010000290000000c02000029145c122a0000040f0000000a020000290000051f02200197000000000301041a0000051e03300197000000000223019f000000000021041b000000000100001900000000020000190000000003000019145c0acb0000040f0002000000000002000200000006001d000100000005001d0000051805000041000005180630009c00000000030580190000004003300210000005180640009c00000000040580190000006004400210000000000334019f000005180410009c0000000001058019000000c001100210000000000113019f145c14520000040f00000001090000290000000003010019000000600330027000000518033001970000000205000029000000000453004b00000000050340190000001f0450018f000000050550027200000a8e0000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b00000a860000413d000000010220018f000000000640004c00000a9e0000613d0000000505500210000000000651034f00000000055900190000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000001020019000000000001042d0000051803000041000005180410009c00000000010380190000004001100210000005180420009c00000000020380190000006002200210000000000112019f0000000002000414000005180420009c0000000002038019000000c002200210000000000112019f00000558011001c70000801002000039145c14570000040f000000010220019000000ab60000613d000000000101043b000000000001042d00000000010000190000000002000019145c0ad50000040f000000000301001900000518010000410000000004000414000005180540009c0000000001044019000000c0011002100000006002200210000000000112001900000567011000410000000002030019145c14570000040f000000010220019000000ac80000613d000000000101043b000000000001042d00000000010000190000000002000019145c0ad50000040f0000051804000041000005180510009c000000000104801900000040011002100000000001310019000005180320009c0000000002048019000000600220021000000000012100190000145d0001042e0000051803000041000005180420009c0000000002038019000005180410009c000000000103801900000040011002100000006002200210000000000112019f0000145e00010430000005680210009c00000ae30000813d0000004001100039000000400010043f000000000001042d0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f000000010210019000000001011002700000007f0310018f00000000010360190000001f0310008c00000000030000190000000103002039000000010330018f000000000232004b00000af50000c13d000000000001042d0000055f0100004100000000001004350000002201000039000000040010043f00000024020000390000000001000019145c0ad50000040f00020000000000020000001001000039000200000001001d000000000101041a145c0aea0000040f0000000002010019000000200120008c00000b130000413d00000002010000290000000000100435000100000002001d00000020020000390000000001000019145c0aa20000040f00000001020000290000001f0220003900000005022002700000000002210019000000000321004b00000b130000813d000000000001041b000000010110003900000b0e0000013d00000569010000410000000202000029000000000012041b000000000001042d00020000000000020000001101000039000200000001001d000000000101041a145c0aea0000040f0000000002010019000000200120008c00000b2e0000413d00000002010000290000000000100435000100000002001d00000020020000390000000001000019145c0aa20000040f00000001020000290000001f0220003900000005022002700000000002210019000000000321004b00000b2e0000813d000000000001041b000000010110003900000b290000013d0000056a010000410000000202000029000000000012041b000000000001042d00020000000000020000001201000039000200000001001d000000000101041a145c0aea0000040f0000000002010019000000200120008c00000b4a0000413d00000002010000290000000000100435000100000002001d00000020020000390000000001000019145c0aa20000040f00000001020000290000001f02200039000000050220027000000000022100190000000201100039000000000321004b00000b4a0000813d000000000001041b000000010110003900000b450000013d00000047010000390000000202000029000000000012041b000000000020043500000020020000390000000001000019145c0aa20000040f0000056b02000041000000000021041b00000001011000390000056c02000041000000000021041b000000000001042d00020000000000020000001601000039000200000001001d000000000101041a145c0aea0000040f0000000002010019000000200120008c00000b6f0000413d00000002010000290000000000100435000100000002001d00000020020000390000000001000019145c0aa20000040f00000001020000290000001f02200039000000050220027000000000022100190000000201100039000000000321004b00000b6f0000813d000000000001041b000000010110003900000b6a0000013d0000004d010000390000000202000029000000000012041b000000000020043500000020020000390000000001000019145c0aa20000040f0000056d02000041000000000021041b00000001011000390000056e02000041000000000021041b000000000001042d00000000001004350000000101000039000000200010043f00000040020000390000000001000019145c0aa20000040f000000000001042d0002000000000002000200000001001d000000000101041a145c0aea0000040f0000000002010019000000200120008c00000b990000413d00000002010000290000000000100435000100000002001d00000020020000390000000001000019145c0aa20000040f00000001020000290000001f0220003900000005022002700000000002210019000000000321004b00000b990000813d000000000001041b000000010110003900000b940000013d0000056f010000410000000202000029000000000012041b000000000001042d000000400100043d000005700200004100000000002104350000000302100039000000020300003900000000003204350000002302000039145c0aa20000040f000000000001042d000000400100043d000005700200004100000000002104350000000302100039000000130300003900000000003204350000002302000039145c0aa20000040f000000000001042d0004000000000002000300000001001d000000800100043d000400000001001d000005710110009c00000c750000813d0000000401000039000200000001001d000000000101041a145c0aea0000040f0000000002010019000000200120008c000000040400002900000bd30000413d00000002010000290000000000100435000100000002001d00000020020000390000000001000019145c0aa20000040f00000004040000290000001f024000390000000502200270000000200340008c0000000003020019000000000300401900000001020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b00000bd30000813d000000000001041b000000010110003900000bce0000013d0000001f0140008c00000bea0000a13d000000020100002900000000001004350000002002000039000100000002001d0000000001000019145c0aa20000040f00000001070000290000000406000029000000200200008a000000000226016f00000000030000190000000305000029000000000423004b000000800470003900000bf60000813d0000000004040433000000000041041b00000020033000390000002007700039000000010110003900000be10000013d000000000140004c0000000001000019000000030500002900000bef0000613d000000a00100043d0000000302400210000000010300008a000000000223022f000000000232013f000000000221016f000000010140021000000c020000013d000000000262004b00000c000000813d0000000302600210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b00000001010000390000000102600210000000000112019f0000000202000029000000000012041b0000000001050433000400000001001d0000054c0110009c00000c750000213d0000000501000039000200000001001d000000000101041a145c0aea0000040f0000000002010019000000200120008c000000040400002900000c270000413d00000002010000290000000000100435000100000002001d00000020020000390000000001000019145c0aa20000040f00000004040000290000001f024000390000000502200270000000200340008c0000000003020019000000000300401900000001020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b00000c270000813d000000000001041b000000010110003900000c220000013d000000200140008c00000c3e0000413d000000020100002900000000001004350000002002000039000100000002001d0000000001000019145c0aa20000040f00000001070000290000000406000029000000200200008a000000000226016f00000000030000190000000305000029000000000423004b000000000457001900000c4b0000813d0000000004040433000000000041041b00000020033000390000002007700039000000010110003900000c350000013d000000000140004c0000000001000019000000030200002900000c440000613d000000200120003900000000010104330000000302400210000000010300008a000000000223022f000000000232013f000000000221016f000000010140021000000c570000013d000000000262004b00000c550000813d0000000302600210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b00000001010000390000000102600210000000000112019f0000000202000029000000000012041b0000000101000039000400000001001d000000000010041b00000000010004110000051f061001970000000a01000039000000000201041a0000051e03200197000000000363019f000000000031041b00000518010000410000000003000414000005180430009c0000000001034019000000c00110021000000558011001c70000051f052001970000800d0200003900000003030000390000055904000041145c14520000040f000000010120019000000c7c0000613d0000000b010000390000000402000029000000000021041b000000000001042d0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f00000000010000190000000002000019145c0ad50000040f0006000000000002000000400300043d000005720230009c00000d1f0000813d0000002002300039000000400020043f000200000003001d0000000000030435000000000200041a000400000002001d0000051f03100198000300000001001d00000d260000613d00000000003004350000000701000039000100000001001d000000200010043f0000004002000039000600000002001d000500000003001d0000000001000019145c0aa20000040f000000000201041a000005730320019700000001022000390000054c02200197000000000232019f000000000021041b000000050100002900000000001004350000000101000029000000200010043f00000000010000190000000602000029145c0aa20000040f000000000201041a000005740320019700000571022000410000057502200197000000000232019f000000000021041b000000040100002900000000001004350000000601000039000100000001001d000000200010043f00000000010000190000000602000029145c0aa20000040f000000000201041a0000051e022001970000000503000029000000000232019f000000000021041b000000040100002900000000001004350000000101000029000000200010043f00000000010000190000000602000029145c0aa20000040f00000576020000410000000000200439000600000001001d0000800b010000390000000402000039145c0ab90000040f000000a00110021000000577011001970000000603000029000000000203041a0000057802200197000000000112019f000000000013041b000005790100004100000000001004390000000301000029000000040010044300008002010000390000002402000039145c0ab90000040f00000004030000290000000102300039000100000002001d000000000110004c000000000203001900000d020000613d00000001010000390000000007020019000000010110019000000cdd0000c13d0000000101000029000000000117004b00000cfd0000813d00000518010000410000000002000414000005180320009c0000000001024019000000c00110021000000558011001c70000800d0200003900000004030000390000057a0400004100000000050000190000000506000029000600000007001d0000000607000029145c14520000040f0000000603000029000000010120019000000d1c0000613d000000030100002900000000020300190000000203000029145c0d2b0000040f00000006070000290000000107700039000000000110004c0000000001000019000000040200002900000cd80000c13d000000400100043d0000057b0200004100000000002104350000000402000039145c0ad50000040f000000000100041a000000000121004b00000d1c0000c13d000000000070041b000000000001042d00000001010000390000000007020019000000010110019000000d090000c13d0000000101000029000000000117004b00000d000000813d00000518010000410000000002000414000005180320009c0000000001024019000000c00110021000000558011001c70000800d0200003900000004030000390000057a0400004100000000050000190000000506000029000600000007001d0000000607000029145c14520000040f000000060700002900000001077000390000000101200190000000000100001900000d040000c13d00000000010000190000000002000019145c0ad50000040f0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f000000400100043d0000057c0200004100000000002104350000000402000039145c0ad50000040f00040000000000020000000004010019000000400900043d0000057d01000041000000000019043500000064059000390000000001000414000000800600003900000000006504350000004405900039000000000025043500000000020004110000051f022001970000000405900039000000000025043500000024029000390000000000020435000000000503043300000084029000390000000000520435000000a4029000390000000006000019000000000756004b00000d490000813d0000000007260019000000200660003900000000083600190000000008080433000000000087043500000d410000013d000000000225001900000000000204350000051f02400197000000040320008c00000d530000c13d0000000002000415000000040220008a00000020022000c9000400000000001d00000d640000013d0000001f03500039000000200400008a000100000004001d000000000343016f000000a404300039000000200600003900000000030900190000000005090019000200000009001d145c0a6b0000040f00000002090000290000000002000415000000030220008a00000020022000c9000300000000001d000000000110004c00000d820000613d0000000101000031000000200310008c000000200300003900000000030140190000001f03300039000000600430018f0000000003940019000000000443004b000000000400001900000001040040390000054c0530009c00000db90000213d000000010440019000000db90000c13d000000400030043f0000001f0110008c00000d7f0000a13d00000000010904330000056303100197000000000331004b00000d7f0000c13d000000200220011a000000000201001f0000057d0110009c00000000010000190000000101006039000000000001042d00000000010000190000000002000019145c0ad50000040f00000001030000290000006001000039000000010200003200000db10000613d0000003f01200039000000000331016f000000400100043d0000000003310019000000000413004b000000000400001900000001040040390000054c0530009c00000db90000213d000000010440019000000db90000c13d000000400030043f00000000002104350000002002100039000000030300036700000001050000310000001f0450018f000000050550027200000da20000613d000000000600001900000005076002100000000008720019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b00000d9a0000413d000000000640004c00000db10000613d0000000505500210000000000353034f00000000025200190000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000002010433000000000320004c00000dc00000c13d000000400100043d0000057b0200004100000000002104350000000402000039145c0ad50000040f0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f0000002001100039145c0ad50000040f0000000004000019000000000534004b00000dcb0000813d0000000005240019000000000614001900000000060604330000000000650435000000200440003900000dc30000013d00000000012300190000000000010435000000000001042d0000000003010433000000000032043500000020022000390000000004000019000000000534004b00000dda0000813d0000000005240019000000200440003900000000061400190000000006060433000000000065043500000dd20000013d000000000123001900000000000104350000001f01300039000000200300008a000000000131016f0000000001120019000000000001042d00000000030200190000002002000039000000000021043500000020021000390000000001030019145c0dce0000040f000000000001042d00000004010000390000000201100367000000000101043b0000057e0210009c00000dee0000813d000000000001042d00000000010000190000000002000019145c0ad50000040f00000024010000390000000201100367000000000101043b0000057e0210009c00000df70000813d000000000001042d00000000010000190000000002000019145c0ad50000040f000005720210009c00000dff0000813d0000002001100039000000400010043f000000000001042d0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f0000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b000000000200001900000001020040390000054c0310009c00000e130000213d000000010220019000000e130000c13d000000400010043f000000000001042d0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f0000000004010019000005710120009c00000e4e0000813d0000003f01200039000000200500008a000000000551016f000000400100043d0000000005510019000000000615004b000000000600001900000001060040390000054c0750009c00000e4e0000213d000000010660019000000e4e0000c13d000000400050043f00000000002104350000000005420019000000000335004b00000e550000213d0000001f0520018f00000002044003670000002003100039000000050620027200000e3c0000613d000000000700001900000005087002100000000009830019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b00000e340000413d000000000750004c00000e4b0000613d0000000506600210000000000464034f00000000066300190000000305500210000000000706043300000000075701cf000000000757022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000474019f000000000046043500000000022300190000000000020435000000000001042d0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f00000000010000190000000002000019145c0ad50000040f00000000030200190000001f021000390000054a04000041000000000532004b000000000500001900000000050440190000054a063001970000054a02200197000000000762004b000000000400a019000000000262013f0000054a0220009c00000000020500190000000002046019000000000220004c00000e6d0000613d0000000202100367000000000202043b0000002001100039145c0e1a0000040f000000000001042d00000000010000190000000002000019145c0ad50000040f0000000002010019000000040120008a0000054a030000410000001f0410008c000000000400001900000000040320190000054a01100197000000000510004c00000000030080190000054a0110009c00000000010400190000000001036019000000000110004c00000e860000613d00000004010000390000000201100367000000000101043b0000054c0310009c00000e860000213d0000000401100039145c0e580000040f000000000001042d00000000010000190000000002000019145c0ad50000040f0000000002010019000000400100043d00000000030204330000000004000019000000000534004b00000e950000813d0000000005140019000000200440003900000000062400190000000006060433000000000065043500000e8d0000013d0000000002130019000000020400003900000000004204350000002002300039145c0aa20000040f000000000001042d0000000003010019000000400100043d00000000040304330000000005000019000000000645004b00000ea70000813d0000000006150019000000200550003900000000073500190000000007070433000000000076043500000e9f0000013d000000000314001900000000002304350000002002400039145c0aa20000040f000000000001042d000000040110008a0000054a020000410000005f0310008c000000000300001900000000030220190000054a01100197000000000410004c00000000020080190000054a0110009c00000000010300190000000001026019000000000110004c00000ec50000613d00000002030003670000000401300370000000000101043b0000051f0210009c00000ec50000213d0000002402300370000000000202043b0000051f0420009c00000ec50000213d0000004403300370000000000303043b000000000001042d00000000010000190000000002000019145c0ad50000040f000500000000000200000020030000390000000000310435000500000002001d000000000302043300000020021000390000000000320435000000400200008a0000000002120049000100000002001d0000004004100039000200000003001d0000000501300210000000000214001900000000030000190000000201000029000000000113004b00000eea0000813d00000001010000290000000001210019000000000014043500000005010000290000002001100039000500000001001d0000000001010433000400000004001d000300000003001d145c0dce0000040f0000000303000029000000040400002900000001033000390000002004400039000000000201001900000ed70000013d0000000001020019000000000001042d000000010210019000000001011002700000007f0310018f00000000010360190000001f0310008c00000000030000190000000103002039000000010330018f000000000232004b00000ef70000c13d000000000001042d0000055f0100004100000000001004350000002201000039000000040010043f00000024020000390000000001000019145c0ad50000040f0003000000000002000300000002001d000100000001001d000000000101041a000200000001001d145c0eec0000040f0000000202000029000000000301001900000003010000290000000000310435000000010120019000000f140000c13d000001000100008a000000000112016f000000030200002900000020022000390000000000120435000000000130004c000000200300003900000000030060190000000001320019000000000001042d0000000101000029000000000010043500000020020000390000000001000019000200000003001d145c0aa20000040f0000000206000029000000030200002900000020022000390000000003000019000000000463004b00000f120000813d0000000004320019000000000501041a00000000005404350000002003300039000000010110003900000f1e0000013d0001000000000002000000400200043d000100000002001d145c0efe0000040f000000010400002900000000014100490000001f01100039000000200200008a000000000221016f0000000001420019000000000221004b000000000200001900000001020040390000054c0310009c00000f3a0000213d000000010220019000000f3a0000c13d000000400010043f0000000001040019000000000001042d0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f0000051f022001970000000000200435000000200010043f00000040020000390000000001000019145c0aa20000040f000000000001042d0000001f031000390000054a04000041000000000523004b000000000500001900000000050440190000054a062001970000054a03300197000000000763004b000000000400a019000000000363013f0000054a0330009c00000000030500190000000003046019000000000330004c00000f610000613d0000000203100367000000000303043b0000054c0430009c00000f610000213d00000020011000390000000004310019000000000224004b00000f610000213d0000000002030019000000000001042d00000000010000190000000002000019145c0ad50000040f000000000110004c00000f670000613d000000000001042d000000400100043d00000044021000390000057f0300004100000000003204350000054f020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000006402000039145c0ad50000040f0000051f061001970000000a01000039000000000201041a0000051e03200197000000000363019f000000000031041b00000518010000410000000003000414000005180430009c0000000001034019000000c00110021000000558011001c70000051f052001970000800d0200003900000003030000390000055904000041145c14520000040f000000010120019000000f880000613d000000000001042d00000000010000190000000002000019145c0ad50000040f0000051f0110019800000f960000613d00000000001004350000000701000039000000200010043f00000040020000390000000001000019145c0aa20000040f000000000101041a0000054c01100197000000000001042d000000400100043d000005800200004100000000002104350000000402000039145c0ad50000040f0000000002010019000000400100043d000005810310009c00000fae0000813d0000006003100039000000400030043f000000000202041a00000582032001980000000003000019000000010300c03900000040041000390000000000340435000000a0032002700000054c03300197000000200410003900000000003404350000051f022001970000000000210435000000000001042d0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f00030000000000020000000003010019000000400100043d000005810210009c00000fed0000813d0000006002100039000000400020043f00000040021000390000000000020435000000200210003900000000000204350000000000010435000000000130004c00000fe80000613d000000000100041a000000000131004b00000fe80000a13d00000000003004350000000601000039000200000001001d000000200010043f00000040020000390000000001000019000300000003001d145c0aa20000040f145c0f9b0000040f000000030300002900000040021000390000000002020433000000000220004c00000fe80000c13d00000000020104330000051f02200198000000020200002900000fe70000c13d0000004001000039000100000001001d000000010330008a000300000003001d0000000000300435000000200020043f00000000010000190000000102000029145c0aa20000040f145c0f9b0000040f000000030300002900000000020104330000051f02200198000000020200002900000fda0000613d000000000001042d000000400100043d000005830200004100000000002104350000000402000039145c0ad50000040f0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f0003000000000002000300000002001d000100000001001d000000000101041a000200000001001d145c0eec0000040f000000020200002900000000060100190000000101200190000010040000c13d000001000100008a000000000112016f000000030500002900000000001504350000000001560019000000000001042d0000000101000029000000000010043500000020020000390000000001000019000200000006001d145c0aa20000040f000000020600002900000000020000190000000305000029000000000362004b000010020000813d0000000003520019000000000401041a0000000000430435000000200220003900000001011000390000100d0000013d0001000000000002000100000001001d145c10450000040f000000000110004c000010240000613d000000010100002900000000001004350000000801000039000000200010043f00000040020000390000000001000019145c0aa20000040f000000000101041a0000051f01100197000000000001042d000000400100043d000005840200004100000000002104350000000402000039145c0ad50000040f0004000000000002000300000004001d000400000002001d000100000001001d000200000003001d145c10580000040f000005790100004100000000001004390000000401000029000000040010044300008002010000390000002402000039145c0ab90000040f000000000110004c0000103f0000613d0000000101000029000000040200002900000002030000290000000304000029145c11cc0000040f000000000110004c000010400000613d000000000001042d000000400100043d0000057b0200004100000000002104350000000402000039145c0ad50000040f000000000210004c0000000002000019000010560000613d000000000200041a000000000212004b0000000002000019000010560000a13d00000000001004350000000601000039000000200010043f00000040020000390000000001000019145c0aa20000040f000000000101041a000005820110019800000000020000190000000102006039000000010120018f000000000001042d0007000000000002000400000002001d000500000001001d000700000003001d0000000001030019145c0fb50000040f000100000001001d00000000010104330000051f0210019700000005010000290000051f01100197000000000112004b000011040000c13d0000000001000411000600000002001d000500000001001d000000000121004b000010820000613d000000060100002900000000001004350000000901000039000000200010043f0000004002000039000300000002001d0000000001000019145c0aa20000040f00000005020000290000051f022001970000000000200435000000200010043f00000000010000190000000302000029145c0aa20000040f000000000101041a000000ff01100190000010820000c13d0000000701000029145c10150000040f0000051f011001970000000502000029000000000121004b0000110e0000c13d00000004010000290000051f01100198000500000001001d0000000703000029000011090000613d00000000003004350000000801000039000000200010043f00000040020000390000000001000019145c0aa20000040f000000000201041a0000051e02200197000000000021041b00000518010000410000000002000414000005180320009c0000000001024019000000c00110021000000558011001c70000800d0200003900000004030000390000058704000041000000060500002900000000060000190000000707000029145c14520000040f0000000101200190000011010000613d000000060100002900000000001004350000000701000039000300000001001d000000200010043f0000004002000039000400000002001d0000000001000019145c0aa20000040f000000000201041a0000057303200197000000010220008a0000054c02200197000000000232019f000000000021041b000000050100002900000000001004350000000301000029000000200010043f00000000010000190000000402000029145c0aa20000040f000000000201041a000005730320019700000001022000390000054c02200197000000000232019f000000000021041b000000070100002900000000001004350000000601000039000300000001001d000000200010043f00000000010000190000000402000029145c0aa20000040f000200000001001d000000000201041a0000051e032001970000000502000029000000000223019f000000000021041b000005760100004100000000001004390000800b010000390000000402000039145c0ab90000040f000000a00110021000000577011001970000000203000029000000000203041a0000057802200197000000000112019f000000000013041b00000007010000290000000101100039000200000001001d00000000001004350000000301000029000000200010043f00000000010000190000000402000029145c0aa20000040f000000000201041a0000051f032001980000000605000029000010f20000c13d000000000300041a0000000204000029000000000334004b000010f20000613d0000051e02200197000000000252019f000000000021041b000000000201041a0000057802200197000000010300002900000020033000390000000003030433000000a0033002100000057703300197000000000232019f000000000021041b00000518010000410000000002000414000005180320009c0000000001024019000000c00110021000000558011001c70000800d0200003900000004030000390000057a0400004100000005060000290000000707000029145c14520000040f0000000101200190000011010000613d000000000001042d00000000010000190000000002000019145c0ad50000040f000000400100043d000005850200004100000000002104350000000402000039145c0ad50000040f000000400100043d000005880200004100000000002104350000000402000039145c0ad50000040f000000400100043d000005860200004100000000002104350000000402000039145c0ad50000040f0003000000000002000200000003001d000300000002001d000100000001001d00000000002004350000000801000039000000200010043f00000040020000390000000001000019145c0aa20000040f00000001020000290000051f06200197000000000201041a0000051e02200197000000000262019f000000000021041b00000518010000410000000002000414000005180320009c000000000102401900000002020000290000051f05200197000000c00110021000000558011001c70000800d02000039000000040300003900000587040000410000000307000029145c14520000040f0000000101200190000011330000613d000000000001042d00000000010000190000000002000019145c0ad50000040f00000060010000390000000102000032000011670000613d000005710120009c000011680000813d0000003f01200039000000200300008a000000000331016f000000400100043d0000000003310019000000000413004b000000000400001900000001040040390000054c0530009c000011680000213d0000000104400190000011680000c13d000000400030043f00000000002104350000002002100039000000030300036700000001050000310000001f0450018f0000000505500272000011580000613d000000000600001900000005076002100000000008720019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b000011500000413d000000000640004c000011670000613d0000000505500210000000000353034f00000000025200190000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000000001042d0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f0005000000000002000200000001001d000000400500043d0000057d01000041000000000015043500000064015000390000000004000414000100000004001d000000800400003900000000004104350000004401500039000000000021043500000000010004110000051f011001970000000402500039000000000012043500000024015000390000000000010435000300000005001d00000084025000390000000001030019145c0dce0000040f00000002020000290000051f02200197000000040320008c0000118e0000c13d0000000002000415000000050220008a00000020022000c9000500000000001d0000119a0000013d00000003030000290000000004310049000000200600003900000001010000290000000005030019145c0a6b0000040f0000000002000415000000040220008a00000020022000c9000400000000001d000000000110004c000011c10000613d0000000101000031000000200310008c000000200300003900000000030140190000001f03300039000000600430018f00000003060000290000000003640019000000000443004b000000000400001900000001040040390000054c0530009c0000000005060019000011ba0000213d0000000104400190000011ba0000c13d000000400030043f0000001f0110008c000011b70000a13d00000000010504330000056303100197000000000313004b000011b70000c13d000000200220011a000000000201001f0000057d0110009c00000000010000190000000101006039000000000001042d00000000010000190000000002000019145c0ad50000040f0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f145c11360000040f0000000002010433000000000320004c000011ca0000c13d000000400100043d0000057b0200004100000000002104350000000402000039145c0ad50000040f0000002001100039145c0ad50000040f0005000000000002000200000002001d000000400600043d0000057d02000041000000000026043500000064026000390000000005000414000100000005001d00000080050000390000000000520435000000440260003900000000003204350000051f011001970000002402600039000000000012043500000000010004110000051f0110019700000004026000390000000000120435000300000006001d00000084026000390000000001040019145c0dce0000040f00000002020000290000051f02200197000000040320008c000011ec0000c13d0000000002000415000000050220008a00000020022000c9000500000000001d000011f80000013d00000003030000290000000004310049000000200600003900000001010000290000000005030019145c0a6b0000040f0000000002000415000000040220008a00000020022000c9000400000000001d000000000110004c0000121f0000613d0000000101000031000000200310008c000000200300003900000000030140190000001f03300039000000600430018f00000003060000290000000003640019000000000443004b000000000400001900000001040040390000054c0530009c0000000005060019000012180000213d0000000104400190000012180000c13d000000400030043f0000001f0110008c000012150000a13d00000000010504330000056303100197000000000313004b000012150000c13d000000200220011a000000000201001f0000057d0110009c00000000010000190000000101006039000000000001042d00000000010000190000000002000019145c0ad50000040f0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f145c11360000040f0000000002010433000000000320004c000012280000c13d000000400100043d0000057b0200004100000000002104350000000402000039145c0ad50000040f0000002001100039145c0ad50000040f0000000003010019000000400100043d0000001f0420018f00000002033003670000000505200272000012390000613d000000000600001900000005076002100000000008710019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b000012310000413d000000000640004c000012480000613d0000000505500210000000000353034f00000000055100190000000304400210000000000605043300000000064601cf000000000646022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000363019f00000000003504350000000003210019000000130400003900000000004304350000002002200039145c0aa20000040f000000000001042d0000000004010019000000400100043d0000001f0520018f000000020440036700000005062002720000125d0000613d000000000700001900000005087002100000000009810019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b000012550000413d000000000750004c0000126c0000613d0000000506600210000000000464034f00000000066100190000000305500210000000000706043300000000075701cf000000000757022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000474019f0000000000460435000000000421001900000000003404350000002002200039145c0aa20000040f000000000001042d000000400210003900000589030000410000000000320435000000200210003900000005030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d00020000000000020000000004020019000000200240008c000012950000413d000000000010043500000020020000390000000001000019000200000004001d000100000003001d145c0aa20000040f00000001030000290000001f023000390000000502200270000000200330008c0000000003020019000000000300401900000002020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000012950000813d000000000001041b0000000101100039000012900000013d000000000001042d0003000000000002000100000002001d0000000002010019000300000003001d000005710130009c000012d80000813d000000000102041a000200000002001d145c0eec0000040f000000000201001900000002010000290000000303000029145c127b0000040f00000003050000290000001f0150008c000012b90000a13d0000000201000029000000000010043500000020020000390000000001000019145c0aa20000040f0000000305000029000000200200008a000000000225016f00000000030000190000000106000029000000000423004b0000000004630019000012c70000813d0000000204400367000000000404043b000000000041041b00000020033000390000000101100039000012b00000013d0000000204000029000000000150004c0000000001000019000012c00000613d00000001010000290000000201100367000000000101043b0000000302500210000000010300008a000000000223022f000000000232013f000000000221016f0000000101500210000012d50000013d000000000252004b000012d20000813d0000000302500210000000f80220018f000000010300008a000000000223022f000000000232013f0000000203400367000000000303043b000000000223016f000000000021041b000000010100003900000001025002100000000204000029000000000112019f000000000014041b000000000001042d0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f00040000000000020000000003010019000200000002001d0000000001020433000400000001001d000005710110009c000013230000813d000000000103041a000300000003001d145c0eec0000040f000000000201001900000003010000290000000403000029145c127b0000040f00000004050000290000001f0150008c000013050000a13d000000030100002900000000001004350000002002000039000100000002001d0000000001000019145c0aa20000040f00000001070000290000000405000029000000200200008a000000000225016f00000000030000190000000206000029000000000423004b0000000004670019000013130000813d0000000004040433000000000041041b000000200330003900000020077000390000000101100039000012fc0000013d0000000304000029000000000150004c00000000010000190000130c0000613d0000000201000029000000200110003900000000010104330000000302500210000000010300008a000000000223022f000000000232013f000000000221016f0000000101500210000013200000013d000000000252004b0000131d0000813d0000000302500210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000010100003900000001025002100000000304000029000000000112019f000000000014041b000000000001042d0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f0006000000000002000000400300043d000005720230009c000013ca0000813d0000002002300039000000400020043f000200000003001d0000000000030435000000000200041a000400000002001d0000051f03100198000300000001001d000013d10000613d00000000003004350000000701000039000100000001001d000000200010043f0000004002000039000600000002001d000500000003001d0000000001000019145c0aa20000040f000000000201041a000005730320019700000001022000390000054c02200197000000000232019f000000000021041b000000050100002900000000001004350000000101000029000000200010043f00000000010000190000000602000029145c0aa20000040f000000000201041a000005740320019700000571022000410000057502200197000000000232019f000000000021041b000000040100002900000000001004350000000601000039000100000001001d000000200010043f00000000010000190000000602000029145c0aa20000040f000000000201041a0000051e022001970000000503000029000000000232019f000000000021041b000000040100002900000000001004350000000101000029000000200010043f00000000010000190000000602000029145c0aa20000040f00000576020000410000000000200439000600000001001d0000800b010000390000000402000039145c0ab90000040f000000a00110021000000577011001970000000603000029000000000203041a0000057802200197000000000112019f000000000013041b000005790100004100000000001004390000000301000029000000040010044300008002010000390000002402000039145c0ab90000040f00000004030000290000000102300039000100000002001d000000000110004c0000000002030019000013ad0000613d000000010100003900000000070200190000000101100190000013880000c13d0000000101000029000000000117004b000013a80000813d00000518010000410000000002000414000005180320009c0000000001024019000000c00110021000000558011001c70000800d0200003900000004030000390000057a0400004100000000050000190000000506000029000600000007001d0000000607000029145c14520000040f00000006030000290000000101200190000013c70000613d000000030100002900000000020300190000000203000029145c116f0000040f00000006070000290000000107700039000000000110004c00000000010000190000000402000029000013830000c13d000000400100043d0000057b0200004100000000002104350000000402000039145c0ad50000040f000000000100041a000000000121004b000013c70000c13d000000000070041b000000000001042d000000010100003900000000070200190000000101100190000013b40000c13d0000000101000029000000000117004b000013ab0000813d00000518010000410000000002000414000005180320009c0000000001024019000000c00110021000000558011001c70000800d0200003900000004030000390000057a0400004100000000050000190000000506000029000600000007001d0000000607000029145c14520000040f0000000607000029000000010770003900000001012001900000000001000019000013af0000c13d00000000010000190000000002000019145c0ad50000040f0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f000000400100043d0000057c0200004100000000002104350000000402000039145c0ad50000040f0000000002010019000005710120009c000013f20000813d00000005032002100000003f01300039000000200400008a000000000441016f000000400100043d0000000004410019000000000514004b000000000500001900000001050040390000054c0640009c000013f20000213d0000000105500190000013f20000c13d000000400040043f0000006004000039000000000601001900000000050000190000000000260435000000000235004b000013f10000813d000000200550003900000000061500190000000002040019000013ea0000013d000000000001042d0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f0004000000000002000200000001001d0000001601000039000100000001001d000000000101041a000300000001001d000000400200043d000400000002001d145c0eec0000040f0000000304000029000000040b00002900000000001b043500000001024001900000002002b00039000014380000c13d000001000300008a000000000334016f0000000000320435000000000110004c000000200300003900000000030060190000003f01300039000000200300008a000000000331016f0000000001b30019000000000331004b000000000300001900000001030040390000054c0410009c0000144b0000213d00000001033001900000144b0000c13d000000400010043f00000002010000290000002003100039000000000101043300000000040000190000000005000019000000000615004b000014340000813d000000000653001900000000070b04330000000008000019000000000978004b000014320000813d00000000098200190000000009090433000000000a0604330000000009a9013f0000058b0990009c000014300000213d000000010900008a000000000994004b000014440000613d00000001044000390000000108800039000014240000013d00000001055000390000141f0000013d000000000114004b00000000010000190000000101006039000000000001042d000000010300002900000000003004350000058a040000410000000003000019000000000513004b0000140e0000813d0000000005320019000000000604041a0000000000650435000000200330003900000001044000390000143c0000013d0000055f0100004100000000001004350000001101000039000000040010043f00000024020000390000000001000019145c0ad50000040f0000055f0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019145c0ad50000040f00001455002104210000000102000039000000000001042d0000000002000019000014540000013d0000145a002104230000000102000039000000000001042d0000000002000019000014590000013d0000145c000004320000145d0001042e0000145e00010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff455241204e616d652053657276696365000000000000000000000000000000002e65726100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a94d74f430000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000aa87bee538000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f990f91a0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000d6eec780000000000000000000000000000000000000000000000000000000016ec31050000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000000000000000000000000000000000001f72d8310000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000002f7758cd000000000000000000000000000000000000000000000000000000003ccfd60b0000000000000000000000000000000000000000000000000000000040b2d3af0000000000000000000000000000000000000000000000000000000042842e0e000000000000000000000000000000000000000000000000000000004865c5720000000000000000000000000000000000000000000000000000000055f804b3000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000006e32e4990000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008699e738000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000922efb9500000000000000000000000000000000000000000000000000000000938e3d7b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009b2ea4bd00000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a515419d00000000000000000000000000000000000000000000000000000000a87e2e7c00000000000000000000000000000000000000000000000000000000af52974400000000000000000000000000000000000000000000000000000000b6c6e69200000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c63adb2b00000000000000000000000000000000000000000000000000000000c6fbf9a900000000000000000000000000000000000000000000000000000000c72c431400000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f121a87000000000000000000000000000000000000000000000000000000000f2fde38b0000000000000000000000000000000000000000000000000000000001ffc9a780000000000000000000000000000000000000000000000000000000000000001b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672000000000000000000000000000000000000000000000000ffffffffffffffff64647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a000000000000000000000000000000000000000000000000000000000bb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec344431ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c68000000000000000000000000000000000000000000000000ffffffffffffffdfa14c4b5000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000002000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31b06307db00000000000000000000000000000000000000000000000000000000036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05468697320697320616c72656164792074616b656e0000000000000000000000496e73756666696369656e742066756e6473210000000000000000000000000057726974652061204e616d6500000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f395265656e7472616e637947756172643a207265656e7472616e742063616c6c004e487b7100000000000000000000000000000000000000000000000000000000cfb3b94200000000000000000000000000000000000000000000000000000000943f7b8c000000000000000000000000000000000000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19bffffffff0000000000000000000000000000000000000000000000000000000080ac58cd000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000000200000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc02e6572610000000000000000000000000000000000000000000000000000000868747470733a2f2f646174612e6572612e6e616d652f6d657461646174612f3e68747470733a2f2f646174612e6572612e6e616d652f636f6e74726163742e6a736f6e0000000000000000000000000000000000000000000000000000000000303132333435363738392d5f6162636465666768696a6b6c6d6e6f707172737475767778797a0000000000000000000000000000000000000000000000000000657261000000000000000000000000000000000000000000000000000000000665726100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff00000000000000000000000000000000ffffffffffffffff0000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913200000000ffffffffffffffff0000000000000000000000000000000000000000ffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efd1a57ed6000000000000000000000000000000000000000000000000000000002e07630000000000000000000000000000000000000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728f4eb60400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffa0000000ff00000000000000000000000000000000000000000000000000000000df2d9b4200000000000000000000000000000000000000000000000000000000cf4700e400000000000000000000000000000000000000000000000000000000a11481000000000000000000000000000000000000000000000000000000000059c896be000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925ea553b34000000000000000000000000000000000000000000000000000000004572726f72000000000000000000000000000000000000000000000000000000d833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b512428900ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000

[ 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.