ETH Price: $3,407.07 (-0.26%)
Gas: 12 Gwei

PixelCryptoNinjaHeroes (PCNH)
 

Overview

TokenID

2686

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PCNH

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : ERC721A.sol
/*     ____  _____  __ ________                                  
*    / __ \/  _/ |/ // ____/ /                                   
*   / /_/ // / |   // __/ / /                                    
*  / ____// / /   |/ /___/ /___                                  
* /_/   /___//_/|_/_____/_____/                                  
*    ____________  ______  __________  _   _______   __    _____ 
*   / ____/ __ \ \/ / __ \/_  __/ __ \/ | / /  _/ | / /   / /   |
*  / /   / /_/ /\  / /_/ / / / / / / /  |/ // //  |/ /_  / / /| |
* / /___/ _, _/ / / ____/ / / / /_/ / /|  // // /|  / /_/ / ___ |
* \____/_/ |_| /_/_/     /_/  \____/_/ |_/___/_/ |_/\____/_/  |_|
*     __  ____________  ____  ___________                        
*    / / / / ____/ __ \/ __ \/ ____/ ___/                        
*   / /_/ / __/ / /_/ / / / / __/  \__ \    Crypto Ninja         
*  / __  / /___/ _, _/ /_/ / /___ ___/ /    Pixel Heroes         
* /_/ /_/_____/_/ |_|\____/_____//____/     Collaboration        
*/                                                               

//SPDX-License-Identifier: MIT

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.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 1;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // 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) private _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;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

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

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

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

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

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

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

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

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

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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

pragma solidity ^0.8.7;

contract PCNH is ERC721A, Ownable, ReentrancyGuard {

    uint256 public mintPrice = 0.0001 ether;
    uint256 private maxMints = 5;
    uint256 private _totalSupply = 5555;
    string private _baseTokenURI;
    bool public paused = true;

    constructor () ERC721A ("PixelCryptoNinjaHeroes", "PCNH", maxMints, _totalSupply) {
        setBaseURI("ipfs://QmdZWjyWbhPTzn6PQhHqaAs1iKWXppLqWFDgUwRrsmBApd/");

        // 222_OwnerMints
        address ownerAddress = 0xB012A739Ca3c66337c34fbF76DAbf65EE80D43f3;  // アドレスの設定お願いします。
        for (uint256 i; i < 44; i++){
          ownerMint(5, ownerAddress);
        }
        ownerMint(2, ownerAddress);
    }

    function ownerMint(uint256 _amount, address _address) public onlyOwner { 
        require((_amount + totalSupply()) <= (_totalSupply + 1), "No more NFTs");

        _safeMint(_address, _amount);
    }

    function mint(uint256 _amount) public payable nonReentrant {
        require(!paused, "Mint: Paused");
        require(maxMints >= _amount, "publicMint: 5 maxper tx");
        require(msg.value == mintPrice * _amount, "Value sent is not correct");
        require((_amount + totalSupply()) <= (_totalSupply + 1), "No more NFTs");
        
        _safeMint(msg.sender, _amount);
    }

    function setPrice(uint256 newPrice) external onlyOwner {
        mintPrice = newPrice;
    }

    function unPause() external onlyOwner {
        setPause(false);
    }

    function pause() external onlyOwner {
        setPause(true);
    }

    function setPause(bool bool_) private onlyOwner {
        paused = bool_;
    }

    function setBaseURI(string memory uri_) public onlyOwner {
        _baseTokenURI = uri_;
    }

    function currentBaseURI() private view returns (string memory){
        return _baseTokenURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return string(abi.encodePacked(currentBaseURI(), Strings.toString(tokenId), ".json"));
    }

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

        bool success;

        (success, ) = payable(owner()).call{value: sendAmount}("");
        require(success, "Failed to withdraw");
    }

    function walletOfOwner(address _address) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_address);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
          tokenIds[i] = tokenOfOwnerByIndex(_address, i);
        }
        return tokenIds;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260016000556000600755655af3107a4000600a556005600b556115b3600c556001600e60006101000a81548160ff0219169083151502179055503480156200004b57600080fd5b506040518060400160405280601681526020017f506978656c43727970746f4e696e6a614865726f6573000000000000000000008152506040518060400160405280600481526020017f50434e4800000000000000000000000000000000000000000000000000000000815250600b54600c546000811162000104576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000fb9062000f67565b60405180910390fd5b600082116200014a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001419062000e9b565b60405180910390fd5b83600190805190602001906200016292919062000bda565b5082600290805190602001906200017b92919062000bda565b508160a08181525050806080818152505050505050620001b0620001a46200024c60201b60201c565b6200025460201b60201c565b6001600981905550620001e260405180606001604052806036815260200162005ba0603691396200031a60201b60201c565b600073b012a739ca3c66337c34fbf76dabf65ee80d43f3905060005b602c81101562000231576200021b600583620003c560201b60201c565b8080620002289062001152565b915050620001fe565b5062000245600282620003c560201b60201c565b50620013e5565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200032a6200024c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000350620004dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a09062000ebd565b60405180910390fd5b80600d9080519060200190620003c192919062000bda565b5050565b620003d56200024c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003fb620004dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000454576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200044b9062000ebd565b60405180910390fd5b6001600c5462000465919062001003565b620004756200050660201b60201c565b8362000482919062001003565b1115620004c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004bd9062000edf565b60405180910390fd5b620004d881836200050f60201b60201c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008054905090565b620005318282604051806020016040528060008152506200053560201b60201c565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620005ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005a59062000f45565b60405180910390fd5b620005bf81620009e460201b60201c565b1562000602576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005f99062000f23565b60405180910390fd5b620006176000858386620009f160201b60201c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015162000716919062000fb6565b6fffffffffffffffffffffffffffffffff1681526020018583602001516200073f919062000fb6565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015620009bf57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620009576000888488620009f760201b60201c565b62000999576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009909062000f01565b60405180910390fd5b8180620009a69062001152565b9250508080620009b69062001152565b915050620008dd565b5080600081905550620009dc600087858862000bb160201b60201c565b505050505050565b6000805482109050919050565b50505050565b600062000a258473ffffffffffffffffffffffffffffffffffffffff1662000bb760201b62001a091760201c565b1562000ba4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000a576200024c60201b60201c565b8786866040518563ffffffff1660e01b815260040162000a7b949392919062000e47565b602060405180830381600087803b15801562000a9657600080fd5b505af192505050801562000aca57506040513d601f19601f8201168201806040525081019062000ac7919062000ca1565b60015b62000b53573d806000811462000afd576040519150601f19603f3d011682016040523d82523d6000602084013e62000b02565b606091505b5060008151141562000b4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b429062000f01565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000ba9565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805462000be8906200111c565b90600052602060002090601f01602090048101928262000c0c576000855562000c58565b82601f1062000c2757805160ff191683800117855562000c58565b8280016001018555821562000c58579182015b8281111562000c5757825182559160200191906001019062000c3a565b5b50905062000c67919062000c6b565b5090565b5b8082111562000c8657600081600090555060010162000c6c565b5090565b60008151905062000c9b81620013cb565b92915050565b60006020828403121562000cba5762000cb9620011fe565b5b600062000cca8482850162000c8a565b91505092915050565b62000cde8162001060565b82525050565b600062000cf18262000f89565b62000cfd818562000f94565b935062000d0f818560208601620010e6565b62000d1a8162001203565b840191505092915050565b600062000d3460278362000fa5565b915062000d418262001214565b604082019050919050565b600062000d5b60208362000fa5565b915062000d688262001263565b602082019050919050565b600062000d82600c8362000fa5565b915062000d8f826200128c565b602082019050919050565b600062000da960338362000fa5565b915062000db682620012b5565b604082019050919050565b600062000dd0601d8362000fa5565b915062000ddd8262001304565b602082019050919050565b600062000df760218362000fa5565b915062000e04826200132d565b604082019050919050565b600062000e1e602e8362000fa5565b915062000e2b826200137c565b604082019050919050565b62000e4181620010dc565b82525050565b600060808201905062000e5e600083018762000cd3565b62000e6d602083018662000cd3565b62000e7c604083018562000e36565b818103606083015262000e90818462000ce4565b905095945050505050565b6000602082019050818103600083015262000eb68162000d25565b9050919050565b6000602082019050818103600083015262000ed88162000d4c565b9050919050565b6000602082019050818103600083015262000efa8162000d73565b9050919050565b6000602082019050818103600083015262000f1c8162000d9a565b9050919050565b6000602082019050818103600083015262000f3e8162000dc1565b9050919050565b6000602082019050818103600083015262000f608162000de8565b9050919050565b6000602082019050818103600083015262000f828162000e0f565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000fc382620010a0565b915062000fd083620010a0565b9250826fffffffffffffffffffffffffffffffff0382111562000ff85762000ff7620011a0565b5b828201905092915050565b60006200101082620010dc565b91506200101d83620010dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620010555762001054620011a0565b5b828201905092915050565b60006200106d82620010bc565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562001106578082015181840152602081019050620010e9565b8381111562001116576000848401525b50505050565b600060028204905060018216806200113557607f821691505b602082108114156200114c576200114b620011cf565b5b50919050565b60006200115f82620010dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620011955762001194620011a0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f206d6f7265204e4654730000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b620013d68162001074565b8114620013e257600080fd5b50565b60805160a0516147916200140f6000396000818161216a01526121930152600050506147916000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063a22cb46511610095578063d7224ba011610064578063d7224ba014610665578063e985e9c514610690578063f2fde38b146106cd578063f7b188a5146106f6576101cd565b8063a22cb465146105ad578063b88d4fde146105d6578063c87b56dd146105ff578063d52c57e01461063c576101cd565b80638da5cb5b116100d15780638da5cb5b1461051257806391b7f5ed1461053d57806395d89b4114610566578063a0712d6814610591576101cd565b806370a08231146104a7578063715018a6146104e45780638456cb59146104fb576101cd565b80633ccfd60b1161016f57806355f804b31161013e57806355f804b3146103eb5780635c975abb146104145780636352211e1461043f5780636817c76c1461047c576101cd565b80633ccfd60b1461033157806342842e0e14610348578063438b6300146103715780634f6ccce7146103ae576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190613091565b61070d565b6040516102069190613774565b60405180910390f35b34801561021b57600080fd5b50610224610857565b604051610231919061378f565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190613134565b6108e9565b60405161026e91906136eb565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190613051565b61096e565b005b3480156102ac57600080fd5b506102b5610a87565b6040516102c29190613ad1565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612f3b565b610a90565b005b34801561030057600080fd5b5061031b60048036038101906103169190613051565b610aa0565b6040516103289190613ad1565b60405180910390f35b34801561033d57600080fd5b50610346610c9e565b005b34801561035457600080fd5b5061036f600480360381019061036a9190612f3b565b610dd8565b005b34801561037d57600080fd5b5061039860048036038101906103939190612ece565b610df8565b6040516103a59190613752565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190613134565b610ea6565b6040516103e29190613ad1565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d91906130eb565b610ef9565b005b34801561042057600080fd5b50610429610f8f565b6040516104369190613774565b60405180910390f35b34801561044b57600080fd5b5061046660048036038101906104619190613134565b610fa2565b60405161047391906136eb565b60405180910390f35b34801561048857600080fd5b50610491610fb8565b60405161049e9190613ad1565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612ece565b610fbe565b6040516104db9190613ad1565b60405180910390f35b3480156104f057600080fd5b506104f96110a7565b005b34801561050757600080fd5b5061051061112f565b005b34801561051e57600080fd5b506105276111b7565b60405161053491906136eb565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190613134565b6111e1565b005b34801561057257600080fd5b5061057b611267565b604051610588919061378f565b60405180910390f35b6105ab60048036038101906105a69190613134565b6112f9565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190613011565b6114a3565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612f8e565b611624565b005b34801561060b57600080fd5b5061062660048036038101906106219190613134565b611680565b604051610633919061378f565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613161565b611702565b005b34801561067157600080fd5b5061067a6117ef565b6040516106879190613ad1565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190612efb565b6117f5565b6040516106c49190613774565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190612ece565b611889565b005b34801561070257600080fd5b5061070b611981565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610850575061084f82611a2c565b5b9050919050565b60606001805461086690613e85565b80601f016020809104026020016040519081016040528092919081815260200182805461089290613e85565b80156108df5780601f106108b4576101008083540402835291602001916108df565b820191906000526020600020905b8154815290600101906020018083116108c257829003601f168201915b5050505050905090565b60006108f482611a96565b610933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092a90613ab1565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097982610fa2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e1906139b1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a09611aa3565b73ffffffffffffffffffffffffffffffffffffffff161480610a385750610a3781610a32611aa3565b6117f5565b5b610a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6e90613891565b60405180910390fd5b610a82838383611aab565b505050565b60008054905090565b610a9b838383611b5d565b505050565b6000610aab83610fbe565b8210610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae3906137b1565b60405180910390fd5b6000610af6610a87565b905060008060005b83811015610c5c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bf057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c485786841415610c39578195505050505050610c98565b8380610c4490613ee8565b9450505b508080610c5490613ee8565b915050610afe565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f90613a51565b60405180910390fd5b92915050565b610ca6611aa3565b73ffffffffffffffffffffffffffffffffffffffff16610cc46111b7565b73ffffffffffffffffffffffffffffffffffffffff1614610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190613911565b60405180910390fd5b60004790506000610d296111b7565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d4c906136d6565b60006040518083038185875af1925050503d8060008114610d89576040519150601f19603f3d011682016040523d82523d6000602084013e610d8e565b606091505b50508091505080610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb906137f1565b60405180910390fd5b5050565b610df383838360405180602001604052806000815250611624565b505050565b60606000610e0583610fbe565b905060008167ffffffffffffffff811115610e2357610e2261401e565b5b604051908082528060200260200182016040528015610e515781602001602082028036833780820191505090505b50905060005b82811015610e9b57610e698582610aa0565b828281518110610e7c57610e7b613fef565b5b6020026020010181815250508080610e9390613ee8565b915050610e57565b508092505050919050565b6000610eb0610a87565b8210610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890613851565b60405180910390fd5b819050919050565b610f01611aa3565b73ffffffffffffffffffffffffffffffffffffffff16610f1f6111b7565b73ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90613911565b60405180910390fd5b80600d9080519060200190610f8b929190612ca8565b5050565b600e60009054906101000a900460ff1681565b6000610fad82612116565b600001519050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561102f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611026906138d1565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110af611aa3565b73ffffffffffffffffffffffffffffffffffffffff166110cd6111b7565b73ffffffffffffffffffffffffffffffffffffffff1614611123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111a90613911565b60405180910390fd5b61112d6000612319565b565b611137611aa3565b73ffffffffffffffffffffffffffffffffffffffff166111556111b7565b73ffffffffffffffffffffffffffffffffffffffff16146111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a290613911565b60405180910390fd5b6111b560016123df565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111e9611aa3565b73ffffffffffffffffffffffffffffffffffffffff166112076111b7565b73ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613911565b60405180910390fd5b80600a8190555050565b60606002805461127690613e85565b80601f01602080910402602001604051908101604052809291908181526020018280546112a290613e85565b80156112ef5780601f106112c4576101008083540402835291602001916112ef565b820191906000526020600020905b8154815290600101906020018083116112d257829003601f168201915b5050505050905090565b6002600954141561133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690613a71565b60405180910390fd5b6002600981905550600e60009054906101000a900460ff1615611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e906139d1565b60405180910390fd5b80600b5410156113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d3906137d1565b60405180910390fd5b80600a546113ea9190613cc7565b341461142b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611422906138b1565b60405180910390fd5b6001600c5461143a9190613c40565b611442610a87565b8261144d9190613c40565b111561148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590613991565b60405180910390fd5b6114983382612478565b600160098190555050565b6114ab611aa3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613951565b60405180910390fd5b8060066000611526611aa3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115d3611aa3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116189190613774565b60405180910390a35050565b61162f848484611b5d565b61163b84848484612496565b61167a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611671906139f1565b60405180910390fd5b50505050565b606061168b82611a96565b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190613931565b60405180910390fd5b6116d261262d565b6116db836126bf565b6040516020016116ec9291906136a7565b6040516020818303038152906040529050919050565b61170a611aa3565b73ffffffffffffffffffffffffffffffffffffffff166117286111b7565b73ffffffffffffffffffffffffffffffffffffffff161461177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590613911565b60405180910390fd5b6001600c5461178d9190613c40565b611795610a87565b836117a09190613c40565b11156117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d890613991565b60405180910390fd5b6117eb8183612478565b5050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611891611aa3565b73ffffffffffffffffffffffffffffffffffffffff166118af6111b7565b73ffffffffffffffffffffffffffffffffffffffff1614611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc90613911565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c90613811565b60405180910390fd5b61197e81612319565b50565b611989611aa3565b73ffffffffffffffffffffffffffffffffffffffff166119a76111b7565b73ffffffffffffffffffffffffffffffffffffffff16146119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490613911565b60405180910390fd5b611a0760006123df565b565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b6882612116565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b8f611aa3565b73ffffffffffffffffffffffffffffffffffffffff161480611beb5750611bb4611aa3565b73ffffffffffffffffffffffffffffffffffffffff16611bd3846108e9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c075750611c068260000151611c01611aa3565b6117f5565b5b905080611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4090613971565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb2906138f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2290613871565b60405180910390fd5b611d388585856001612820565b611d486000848460000151611aab565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611db69190613d21565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e5a9190613bfa565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f609190613c40565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120a657611fd681611a96565b156120a5576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461210e8686866001612826565b505050505050565b61211e612d2e565b61212782611a96565b612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d90613831565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106121ca5760017f0000000000000000000000000000000000000000000000000000000000000000846121bd9190613d55565b6121c79190613c40565b90505b60008390505b8181106122d8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122c457809350505050612314565b5080806122d090613e5b565b9150506121d0565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90613a91565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123e7611aa3565b73ffffffffffffffffffffffffffffffffffffffff166124056111b7565b73ffffffffffffffffffffffffffffffffffffffff161461245b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245290613911565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b61249282826040518060200160405280600081525061282c565b5050565b60006124b78473ffffffffffffffffffffffffffffffffffffffff16611a09565b15612620578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124e0611aa3565b8786866040518563ffffffff1660e01b81526004016125029493929190613706565b602060405180830381600087803b15801561251c57600080fd5b505af192505050801561254d57506040513d601f19601f8201168201806040525081019061254a91906130be565b60015b6125d0573d806000811461257d576040519150601f19603f3d011682016040523d82523d6000602084013e612582565b606091505b506000815114156125c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bf906139f1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612625565b600190505b949350505050565b6060600d805461263c90613e85565b80601f016020809104026020016040519081016040528092919081815260200182805461266890613e85565b80156126b55780601f1061268a576101008083540402835291602001916126b5565b820191906000526020600020905b81548152906001019060200180831161269857829003601f168201915b5050505050905090565b60606000821415612707576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061281b565b600082905060005b6000821461273957808061272290613ee8565b915050600a826127329190613c96565b915061270f565b60008167ffffffffffffffff8111156127555761275461401e565b5b6040519080825280601f01601f1916602001820160405280156127875781602001600182028036833780820191505090505b5090505b60008514612814576001826127a09190613d55565b9150600a856127af9190613f31565b60306127bb9190613c40565b60f81b8183815181106127d1576127d0613fef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561280d9190613c96565b945061278b565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289990613a31565b60405180910390fd5b6128ab81611a96565b156128eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e290613a11565b60405180910390fd5b6128f86000858386612820565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516129f59190613bfa565b6fffffffffffffffffffffffffffffffff168152602001858360200151612a1c9190613bfa565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612c8b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c2b6000888488612496565b612c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c61906139f1565b60405180910390fd5b8180612c7590613ee8565b9250508080612c8390613ee8565b915050612bba565b5080600081905550612ca06000878588612826565b505050505050565b828054612cb490613e85565b90600052602060002090601f016020900481019282612cd65760008555612d1d565b82601f10612cef57805160ff1916838001178555612d1d565b82800160010185558215612d1d579182015b82811115612d1c578251825591602001919060010190612d01565b5b509050612d2a9190612d68565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612d81576000816000905550600101612d69565b5090565b6000612d98612d9384613b11565b613aec565b905082815260208101848484011115612db457612db3614052565b5b612dbf848285613e19565b509392505050565b6000612dda612dd584613b42565b613aec565b905082815260208101848484011115612df657612df5614052565b5b612e01848285613e19565b509392505050565b600081359050612e18816146ff565b92915050565b600081359050612e2d81614716565b92915050565b600081359050612e428161472d565b92915050565b600081519050612e578161472d565b92915050565b600082601f830112612e7257612e7161404d565b5b8135612e82848260208601612d85565b91505092915050565b600082601f830112612ea057612e9f61404d565b5b8135612eb0848260208601612dc7565b91505092915050565b600081359050612ec881614744565b92915050565b600060208284031215612ee457612ee361405c565b5b6000612ef284828501612e09565b91505092915050565b60008060408385031215612f1257612f1161405c565b5b6000612f2085828601612e09565b9250506020612f3185828601612e09565b9150509250929050565b600080600060608486031215612f5457612f5361405c565b5b6000612f6286828701612e09565b9350506020612f7386828701612e09565b9250506040612f8486828701612eb9565b9150509250925092565b60008060008060808587031215612fa857612fa761405c565b5b6000612fb687828801612e09565b9450506020612fc787828801612e09565b9350506040612fd887828801612eb9565b925050606085013567ffffffffffffffff811115612ff957612ff8614057565b5b61300587828801612e5d565b91505092959194509250565b600080604083850312156130285761302761405c565b5b600061303685828601612e09565b925050602061304785828601612e1e565b9150509250929050565b600080604083850312156130685761306761405c565b5b600061307685828601612e09565b925050602061308785828601612eb9565b9150509250929050565b6000602082840312156130a7576130a661405c565b5b60006130b584828501612e33565b91505092915050565b6000602082840312156130d4576130d361405c565b5b60006130e284828501612e48565b91505092915050565b6000602082840312156131015761310061405c565b5b600082013567ffffffffffffffff81111561311f5761311e614057565b5b61312b84828501612e8b565b91505092915050565b60006020828403121561314a5761314961405c565b5b600061315884828501612eb9565b91505092915050565b600080604083850312156131785761317761405c565b5b600061318685828601612eb9565b925050602061319785828601612e09565b9150509250929050565b60006131ad8383613689565b60208301905092915050565b6131c281613d89565b82525050565b60006131d382613b83565b6131dd8185613bb1565b93506131e883613b73565b8060005b8381101561321957815161320088826131a1565b975061320b83613ba4565b9250506001810190506131ec565b5085935050505092915050565b61322f81613d9b565b82525050565b600061324082613b8e565b61324a8185613bc2565b935061325a818560208601613e28565b61326381614061565b840191505092915050565b600061327982613b99565b6132838185613bde565b9350613293818560208601613e28565b61329c81614061565b840191505092915050565b60006132b282613b99565b6132bc8185613bef565b93506132cc818560208601613e28565b80840191505092915050565b60006132e5602283613bde565b91506132f082614072565b604082019050919050565b6000613308601783613bde565b9150613313826140c1565b602082019050919050565b600061332b601283613bde565b9150613336826140ea565b602082019050919050565b600061334e602683613bde565b915061335982614113565b604082019050919050565b6000613371602a83613bde565b915061337c82614162565b604082019050919050565b6000613394602383613bde565b915061339f826141b1565b604082019050919050565b60006133b7602583613bde565b91506133c282614200565b604082019050919050565b60006133da603983613bde565b91506133e58261424f565b604082019050919050565b60006133fd601983613bde565b91506134088261429e565b602082019050919050565b6000613420602b83613bde565b915061342b826142c7565b604082019050919050565b6000613443602683613bde565b915061344e82614316565b604082019050919050565b6000613466600583613bef565b915061347182614365565b600582019050919050565b6000613489602083613bde565b91506134948261438e565b602082019050919050565b60006134ac602f83613bde565b91506134b7826143b7565b604082019050919050565b60006134cf601a83613bde565b91506134da82614406565b602082019050919050565b60006134f2603283613bde565b91506134fd8261442f565b604082019050919050565b6000613515600c83613bde565b91506135208261447e565b602082019050919050565b6000613538602283613bde565b9150613543826144a7565b604082019050919050565b600061355b600c83613bde565b9150613566826144f6565b602082019050919050565b600061357e600083613bd3565b91506135898261451f565b600082019050919050565b60006135a1603383613bde565b91506135ac82614522565b604082019050919050565b60006135c4601d83613bde565b91506135cf82614571565b602082019050919050565b60006135e7602183613bde565b91506135f28261459a565b604082019050919050565b600061360a602e83613bde565b9150613615826145e9565b604082019050919050565b600061362d601f83613bde565b915061363882614638565b602082019050919050565b6000613650602f83613bde565b915061365b82614661565b604082019050919050565b6000613673602d83613bde565b915061367e826146b0565b604082019050919050565b61369281613e0f565b82525050565b6136a181613e0f565b82525050565b60006136b382856132a7565b91506136bf82846132a7565b91506136ca82613459565b91508190509392505050565b60006136e182613571565b9150819050919050565b600060208201905061370060008301846131b9565b92915050565b600060808201905061371b60008301876131b9565b61372860208301866131b9565b6137356040830185613698565b81810360608301526137478184613235565b905095945050505050565b6000602082019050818103600083015261376c81846131c8565b905092915050565b60006020820190506137896000830184613226565b92915050565b600060208201905081810360008301526137a9818461326e565b905092915050565b600060208201905081810360008301526137ca816132d8565b9050919050565b600060208201905081810360008301526137ea816132fb565b9050919050565b6000602082019050818103600083015261380a8161331e565b9050919050565b6000602082019050818103600083015261382a81613341565b9050919050565b6000602082019050818103600083015261384a81613364565b9050919050565b6000602082019050818103600083015261386a81613387565b9050919050565b6000602082019050818103600083015261388a816133aa565b9050919050565b600060208201905081810360008301526138aa816133cd565b9050919050565b600060208201905081810360008301526138ca816133f0565b9050919050565b600060208201905081810360008301526138ea81613413565b9050919050565b6000602082019050818103600083015261390a81613436565b9050919050565b6000602082019050818103600083015261392a8161347c565b9050919050565b6000602082019050818103600083015261394a8161349f565b9050919050565b6000602082019050818103600083015261396a816134c2565b9050919050565b6000602082019050818103600083015261398a816134e5565b9050919050565b600060208201905081810360008301526139aa81613508565b9050919050565b600060208201905081810360008301526139ca8161352b565b9050919050565b600060208201905081810360008301526139ea8161354e565b9050919050565b60006020820190508181036000830152613a0a81613594565b9050919050565b60006020820190508181036000830152613a2a816135b7565b9050919050565b60006020820190508181036000830152613a4a816135da565b9050919050565b60006020820190508181036000830152613a6a816135fd565b9050919050565b60006020820190508181036000830152613a8a81613620565b9050919050565b60006020820190508181036000830152613aaa81613643565b9050919050565b60006020820190508181036000830152613aca81613666565b9050919050565b6000602082019050613ae66000830184613698565b92915050565b6000613af6613b07565b9050613b028282613eb7565b919050565b6000604051905090565b600067ffffffffffffffff821115613b2c57613b2b61401e565b5b613b3582614061565b9050602081019050919050565b600067ffffffffffffffff821115613b5d57613b5c61401e565b5b613b6682614061565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c0582613dd3565b9150613c1083613dd3565b9250826fffffffffffffffffffffffffffffffff03821115613c3557613c34613f62565b5b828201905092915050565b6000613c4b82613e0f565b9150613c5683613e0f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c8b57613c8a613f62565b5b828201905092915050565b6000613ca182613e0f565b9150613cac83613e0f565b925082613cbc57613cbb613f91565b5b828204905092915050565b6000613cd282613e0f565b9150613cdd83613e0f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d1657613d15613f62565b5b828202905092915050565b6000613d2c82613dd3565b9150613d3783613dd3565b925082821015613d4a57613d49613f62565b5b828203905092915050565b6000613d6082613e0f565b9150613d6b83613e0f565b925082821015613d7e57613d7d613f62565b5b828203905092915050565b6000613d9482613def565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e46578082015181840152602081019050613e2b565b83811115613e55576000848401525b50505050565b6000613e6682613e0f565b91506000821415613e7a57613e79613f62565b5b600182039050919050565b60006002820490506001821680613e9d57607f821691505b60208210811415613eb157613eb0613fc0565b5b50919050565b613ec082614061565b810181811067ffffffffffffffff82111715613edf57613ede61401e565b5b80604052505050565b6000613ef382613e0f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2657613f25613f62565b5b600182019050919050565b6000613f3c82613e0f565b9150613f4783613e0f565b925082613f5757613f56613f91565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f7075626c69634d696e743a2035206d6178706572207478000000000000000000600082015250565b7f4661696c656420746f2077697468647261770000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f56616c75652073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4e6f206d6f7265204e4654730000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e743a205061757365640000000000000000000000000000000000000000600082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61470881613d89565b811461471357600080fd5b50565b61471f81613d9b565b811461472a57600080fd5b50565b61473681613da7565b811461474157600080fd5b50565b61474d81613e0f565b811461475857600080fd5b5056fea26469706673582212208cad61970534834cccd7d285e42ed2c8e8b586a550098b6b267b15c53aad40cb64736f6c63430008070033697066733a2f2f516d645a576a7957626850547a6e36505168487161417331694b575870704c715746446755775272736d424170642f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063a22cb46511610095578063d7224ba011610064578063d7224ba014610665578063e985e9c514610690578063f2fde38b146106cd578063f7b188a5146106f6576101cd565b8063a22cb465146105ad578063b88d4fde146105d6578063c87b56dd146105ff578063d52c57e01461063c576101cd565b80638da5cb5b116100d15780638da5cb5b1461051257806391b7f5ed1461053d57806395d89b4114610566578063a0712d6814610591576101cd565b806370a08231146104a7578063715018a6146104e45780638456cb59146104fb576101cd565b80633ccfd60b1161016f57806355f804b31161013e57806355f804b3146103eb5780635c975abb146104145780636352211e1461043f5780636817c76c1461047c576101cd565b80633ccfd60b1461033157806342842e0e14610348578063438b6300146103715780634f6ccce7146103ae576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190613091565b61070d565b6040516102069190613774565b60405180910390f35b34801561021b57600080fd5b50610224610857565b604051610231919061378f565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190613134565b6108e9565b60405161026e91906136eb565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190613051565b61096e565b005b3480156102ac57600080fd5b506102b5610a87565b6040516102c29190613ad1565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612f3b565b610a90565b005b34801561030057600080fd5b5061031b60048036038101906103169190613051565b610aa0565b6040516103289190613ad1565b60405180910390f35b34801561033d57600080fd5b50610346610c9e565b005b34801561035457600080fd5b5061036f600480360381019061036a9190612f3b565b610dd8565b005b34801561037d57600080fd5b5061039860048036038101906103939190612ece565b610df8565b6040516103a59190613752565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190613134565b610ea6565b6040516103e29190613ad1565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d91906130eb565b610ef9565b005b34801561042057600080fd5b50610429610f8f565b6040516104369190613774565b60405180910390f35b34801561044b57600080fd5b5061046660048036038101906104619190613134565b610fa2565b60405161047391906136eb565b60405180910390f35b34801561048857600080fd5b50610491610fb8565b60405161049e9190613ad1565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612ece565b610fbe565b6040516104db9190613ad1565b60405180910390f35b3480156104f057600080fd5b506104f96110a7565b005b34801561050757600080fd5b5061051061112f565b005b34801561051e57600080fd5b506105276111b7565b60405161053491906136eb565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190613134565b6111e1565b005b34801561057257600080fd5b5061057b611267565b604051610588919061378f565b60405180910390f35b6105ab60048036038101906105a69190613134565b6112f9565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190613011565b6114a3565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612f8e565b611624565b005b34801561060b57600080fd5b5061062660048036038101906106219190613134565b611680565b604051610633919061378f565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613161565b611702565b005b34801561067157600080fd5b5061067a6117ef565b6040516106879190613ad1565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190612efb565b6117f5565b6040516106c49190613774565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190612ece565b611889565b005b34801561070257600080fd5b5061070b611981565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610850575061084f82611a2c565b5b9050919050565b60606001805461086690613e85565b80601f016020809104026020016040519081016040528092919081815260200182805461089290613e85565b80156108df5780601f106108b4576101008083540402835291602001916108df565b820191906000526020600020905b8154815290600101906020018083116108c257829003601f168201915b5050505050905090565b60006108f482611a96565b610933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092a90613ab1565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097982610fa2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e1906139b1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a09611aa3565b73ffffffffffffffffffffffffffffffffffffffff161480610a385750610a3781610a32611aa3565b6117f5565b5b610a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6e90613891565b60405180910390fd5b610a82838383611aab565b505050565b60008054905090565b610a9b838383611b5d565b505050565b6000610aab83610fbe565b8210610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae3906137b1565b60405180910390fd5b6000610af6610a87565b905060008060005b83811015610c5c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bf057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c485786841415610c39578195505050505050610c98565b8380610c4490613ee8565b9450505b508080610c5490613ee8565b915050610afe565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f90613a51565b60405180910390fd5b92915050565b610ca6611aa3565b73ffffffffffffffffffffffffffffffffffffffff16610cc46111b7565b73ffffffffffffffffffffffffffffffffffffffff1614610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190613911565b60405180910390fd5b60004790506000610d296111b7565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d4c906136d6565b60006040518083038185875af1925050503d8060008114610d89576040519150601f19603f3d011682016040523d82523d6000602084013e610d8e565b606091505b50508091505080610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb906137f1565b60405180910390fd5b5050565b610df383838360405180602001604052806000815250611624565b505050565b60606000610e0583610fbe565b905060008167ffffffffffffffff811115610e2357610e2261401e565b5b604051908082528060200260200182016040528015610e515781602001602082028036833780820191505090505b50905060005b82811015610e9b57610e698582610aa0565b828281518110610e7c57610e7b613fef565b5b6020026020010181815250508080610e9390613ee8565b915050610e57565b508092505050919050565b6000610eb0610a87565b8210610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890613851565b60405180910390fd5b819050919050565b610f01611aa3565b73ffffffffffffffffffffffffffffffffffffffff16610f1f6111b7565b73ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90613911565b60405180910390fd5b80600d9080519060200190610f8b929190612ca8565b5050565b600e60009054906101000a900460ff1681565b6000610fad82612116565b600001519050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561102f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611026906138d1565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110af611aa3565b73ffffffffffffffffffffffffffffffffffffffff166110cd6111b7565b73ffffffffffffffffffffffffffffffffffffffff1614611123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111a90613911565b60405180910390fd5b61112d6000612319565b565b611137611aa3565b73ffffffffffffffffffffffffffffffffffffffff166111556111b7565b73ffffffffffffffffffffffffffffffffffffffff16146111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a290613911565b60405180910390fd5b6111b560016123df565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111e9611aa3565b73ffffffffffffffffffffffffffffffffffffffff166112076111b7565b73ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613911565b60405180910390fd5b80600a8190555050565b60606002805461127690613e85565b80601f01602080910402602001604051908101604052809291908181526020018280546112a290613e85565b80156112ef5780601f106112c4576101008083540402835291602001916112ef565b820191906000526020600020905b8154815290600101906020018083116112d257829003601f168201915b5050505050905090565b6002600954141561133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690613a71565b60405180910390fd5b6002600981905550600e60009054906101000a900460ff1615611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e906139d1565b60405180910390fd5b80600b5410156113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d3906137d1565b60405180910390fd5b80600a546113ea9190613cc7565b341461142b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611422906138b1565b60405180910390fd5b6001600c5461143a9190613c40565b611442610a87565b8261144d9190613c40565b111561148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590613991565b60405180910390fd5b6114983382612478565b600160098190555050565b6114ab611aa3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613951565b60405180910390fd5b8060066000611526611aa3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115d3611aa3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116189190613774565b60405180910390a35050565b61162f848484611b5d565b61163b84848484612496565b61167a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611671906139f1565b60405180910390fd5b50505050565b606061168b82611a96565b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190613931565b60405180910390fd5b6116d261262d565b6116db836126bf565b6040516020016116ec9291906136a7565b6040516020818303038152906040529050919050565b61170a611aa3565b73ffffffffffffffffffffffffffffffffffffffff166117286111b7565b73ffffffffffffffffffffffffffffffffffffffff161461177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590613911565b60405180910390fd5b6001600c5461178d9190613c40565b611795610a87565b836117a09190613c40565b11156117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d890613991565b60405180910390fd5b6117eb8183612478565b5050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611891611aa3565b73ffffffffffffffffffffffffffffffffffffffff166118af6111b7565b73ffffffffffffffffffffffffffffffffffffffff1614611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc90613911565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c90613811565b60405180910390fd5b61197e81612319565b50565b611989611aa3565b73ffffffffffffffffffffffffffffffffffffffff166119a76111b7565b73ffffffffffffffffffffffffffffffffffffffff16146119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490613911565b60405180910390fd5b611a0760006123df565b565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b6882612116565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b8f611aa3565b73ffffffffffffffffffffffffffffffffffffffff161480611beb5750611bb4611aa3565b73ffffffffffffffffffffffffffffffffffffffff16611bd3846108e9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c075750611c068260000151611c01611aa3565b6117f5565b5b905080611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4090613971565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb2906138f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2290613871565b60405180910390fd5b611d388585856001612820565b611d486000848460000151611aab565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611db69190613d21565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e5a9190613bfa565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f609190613c40565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120a657611fd681611a96565b156120a5576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461210e8686866001612826565b505050505050565b61211e612d2e565b61212782611a96565b612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d90613831565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000583106121ca5760017f0000000000000000000000000000000000000000000000000000000000000005846121bd9190613d55565b6121c79190613c40565b90505b60008390505b8181106122d8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122c457809350505050612314565b5080806122d090613e5b565b9150506121d0565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90613a91565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123e7611aa3565b73ffffffffffffffffffffffffffffffffffffffff166124056111b7565b73ffffffffffffffffffffffffffffffffffffffff161461245b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245290613911565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b61249282826040518060200160405280600081525061282c565b5050565b60006124b78473ffffffffffffffffffffffffffffffffffffffff16611a09565b15612620578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124e0611aa3565b8786866040518563ffffffff1660e01b81526004016125029493929190613706565b602060405180830381600087803b15801561251c57600080fd5b505af192505050801561254d57506040513d601f19601f8201168201806040525081019061254a91906130be565b60015b6125d0573d806000811461257d576040519150601f19603f3d011682016040523d82523d6000602084013e612582565b606091505b506000815114156125c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bf906139f1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612625565b600190505b949350505050565b6060600d805461263c90613e85565b80601f016020809104026020016040519081016040528092919081815260200182805461266890613e85565b80156126b55780601f1061268a576101008083540402835291602001916126b5565b820191906000526020600020905b81548152906001019060200180831161269857829003601f168201915b5050505050905090565b60606000821415612707576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061281b565b600082905060005b6000821461273957808061272290613ee8565b915050600a826127329190613c96565b915061270f565b60008167ffffffffffffffff8111156127555761275461401e565b5b6040519080825280601f01601f1916602001820160405280156127875781602001600182028036833780820191505090505b5090505b60008514612814576001826127a09190613d55565b9150600a856127af9190613f31565b60306127bb9190613c40565b60f81b8183815181106127d1576127d0613fef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561280d9190613c96565b945061278b565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289990613a31565b60405180910390fd5b6128ab81611a96565b156128eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e290613a11565b60405180910390fd5b6128f86000858386612820565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516129f59190613bfa565b6fffffffffffffffffffffffffffffffff168152602001858360200151612a1c9190613bfa565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612c8b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c2b6000888488612496565b612c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c61906139f1565b60405180910390fd5b8180612c7590613ee8565b9250508080612c8390613ee8565b915050612bba565b5080600081905550612ca06000878588612826565b505050505050565b828054612cb490613e85565b90600052602060002090601f016020900481019282612cd65760008555612d1d565b82601f10612cef57805160ff1916838001178555612d1d565b82800160010185558215612d1d579182015b82811115612d1c578251825591602001919060010190612d01565b5b509050612d2a9190612d68565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612d81576000816000905550600101612d69565b5090565b6000612d98612d9384613b11565b613aec565b905082815260208101848484011115612db457612db3614052565b5b612dbf848285613e19565b509392505050565b6000612dda612dd584613b42565b613aec565b905082815260208101848484011115612df657612df5614052565b5b612e01848285613e19565b509392505050565b600081359050612e18816146ff565b92915050565b600081359050612e2d81614716565b92915050565b600081359050612e428161472d565b92915050565b600081519050612e578161472d565b92915050565b600082601f830112612e7257612e7161404d565b5b8135612e82848260208601612d85565b91505092915050565b600082601f830112612ea057612e9f61404d565b5b8135612eb0848260208601612dc7565b91505092915050565b600081359050612ec881614744565b92915050565b600060208284031215612ee457612ee361405c565b5b6000612ef284828501612e09565b91505092915050565b60008060408385031215612f1257612f1161405c565b5b6000612f2085828601612e09565b9250506020612f3185828601612e09565b9150509250929050565b600080600060608486031215612f5457612f5361405c565b5b6000612f6286828701612e09565b9350506020612f7386828701612e09565b9250506040612f8486828701612eb9565b9150509250925092565b60008060008060808587031215612fa857612fa761405c565b5b6000612fb687828801612e09565b9450506020612fc787828801612e09565b9350506040612fd887828801612eb9565b925050606085013567ffffffffffffffff811115612ff957612ff8614057565b5b61300587828801612e5d565b91505092959194509250565b600080604083850312156130285761302761405c565b5b600061303685828601612e09565b925050602061304785828601612e1e565b9150509250929050565b600080604083850312156130685761306761405c565b5b600061307685828601612e09565b925050602061308785828601612eb9565b9150509250929050565b6000602082840312156130a7576130a661405c565b5b60006130b584828501612e33565b91505092915050565b6000602082840312156130d4576130d361405c565b5b60006130e284828501612e48565b91505092915050565b6000602082840312156131015761310061405c565b5b600082013567ffffffffffffffff81111561311f5761311e614057565b5b61312b84828501612e8b565b91505092915050565b60006020828403121561314a5761314961405c565b5b600061315884828501612eb9565b91505092915050565b600080604083850312156131785761317761405c565b5b600061318685828601612eb9565b925050602061319785828601612e09565b9150509250929050565b60006131ad8383613689565b60208301905092915050565b6131c281613d89565b82525050565b60006131d382613b83565b6131dd8185613bb1565b93506131e883613b73565b8060005b8381101561321957815161320088826131a1565b975061320b83613ba4565b9250506001810190506131ec565b5085935050505092915050565b61322f81613d9b565b82525050565b600061324082613b8e565b61324a8185613bc2565b935061325a818560208601613e28565b61326381614061565b840191505092915050565b600061327982613b99565b6132838185613bde565b9350613293818560208601613e28565b61329c81614061565b840191505092915050565b60006132b282613b99565b6132bc8185613bef565b93506132cc818560208601613e28565b80840191505092915050565b60006132e5602283613bde565b91506132f082614072565b604082019050919050565b6000613308601783613bde565b9150613313826140c1565b602082019050919050565b600061332b601283613bde565b9150613336826140ea565b602082019050919050565b600061334e602683613bde565b915061335982614113565b604082019050919050565b6000613371602a83613bde565b915061337c82614162565b604082019050919050565b6000613394602383613bde565b915061339f826141b1565b604082019050919050565b60006133b7602583613bde565b91506133c282614200565b604082019050919050565b60006133da603983613bde565b91506133e58261424f565b604082019050919050565b60006133fd601983613bde565b91506134088261429e565b602082019050919050565b6000613420602b83613bde565b915061342b826142c7565b604082019050919050565b6000613443602683613bde565b915061344e82614316565b604082019050919050565b6000613466600583613bef565b915061347182614365565b600582019050919050565b6000613489602083613bde565b91506134948261438e565b602082019050919050565b60006134ac602f83613bde565b91506134b7826143b7565b604082019050919050565b60006134cf601a83613bde565b91506134da82614406565b602082019050919050565b60006134f2603283613bde565b91506134fd8261442f565b604082019050919050565b6000613515600c83613bde565b91506135208261447e565b602082019050919050565b6000613538602283613bde565b9150613543826144a7565b604082019050919050565b600061355b600c83613bde565b9150613566826144f6565b602082019050919050565b600061357e600083613bd3565b91506135898261451f565b600082019050919050565b60006135a1603383613bde565b91506135ac82614522565b604082019050919050565b60006135c4601d83613bde565b91506135cf82614571565b602082019050919050565b60006135e7602183613bde565b91506135f28261459a565b604082019050919050565b600061360a602e83613bde565b9150613615826145e9565b604082019050919050565b600061362d601f83613bde565b915061363882614638565b602082019050919050565b6000613650602f83613bde565b915061365b82614661565b604082019050919050565b6000613673602d83613bde565b915061367e826146b0565b604082019050919050565b61369281613e0f565b82525050565b6136a181613e0f565b82525050565b60006136b382856132a7565b91506136bf82846132a7565b91506136ca82613459565b91508190509392505050565b60006136e182613571565b9150819050919050565b600060208201905061370060008301846131b9565b92915050565b600060808201905061371b60008301876131b9565b61372860208301866131b9565b6137356040830185613698565b81810360608301526137478184613235565b905095945050505050565b6000602082019050818103600083015261376c81846131c8565b905092915050565b60006020820190506137896000830184613226565b92915050565b600060208201905081810360008301526137a9818461326e565b905092915050565b600060208201905081810360008301526137ca816132d8565b9050919050565b600060208201905081810360008301526137ea816132fb565b9050919050565b6000602082019050818103600083015261380a8161331e565b9050919050565b6000602082019050818103600083015261382a81613341565b9050919050565b6000602082019050818103600083015261384a81613364565b9050919050565b6000602082019050818103600083015261386a81613387565b9050919050565b6000602082019050818103600083015261388a816133aa565b9050919050565b600060208201905081810360008301526138aa816133cd565b9050919050565b600060208201905081810360008301526138ca816133f0565b9050919050565b600060208201905081810360008301526138ea81613413565b9050919050565b6000602082019050818103600083015261390a81613436565b9050919050565b6000602082019050818103600083015261392a8161347c565b9050919050565b6000602082019050818103600083015261394a8161349f565b9050919050565b6000602082019050818103600083015261396a816134c2565b9050919050565b6000602082019050818103600083015261398a816134e5565b9050919050565b600060208201905081810360008301526139aa81613508565b9050919050565b600060208201905081810360008301526139ca8161352b565b9050919050565b600060208201905081810360008301526139ea8161354e565b9050919050565b60006020820190508181036000830152613a0a81613594565b9050919050565b60006020820190508181036000830152613a2a816135b7565b9050919050565b60006020820190508181036000830152613a4a816135da565b9050919050565b60006020820190508181036000830152613a6a816135fd565b9050919050565b60006020820190508181036000830152613a8a81613620565b9050919050565b60006020820190508181036000830152613aaa81613643565b9050919050565b60006020820190508181036000830152613aca81613666565b9050919050565b6000602082019050613ae66000830184613698565b92915050565b6000613af6613b07565b9050613b028282613eb7565b919050565b6000604051905090565b600067ffffffffffffffff821115613b2c57613b2b61401e565b5b613b3582614061565b9050602081019050919050565b600067ffffffffffffffff821115613b5d57613b5c61401e565b5b613b6682614061565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c0582613dd3565b9150613c1083613dd3565b9250826fffffffffffffffffffffffffffffffff03821115613c3557613c34613f62565b5b828201905092915050565b6000613c4b82613e0f565b9150613c5683613e0f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c8b57613c8a613f62565b5b828201905092915050565b6000613ca182613e0f565b9150613cac83613e0f565b925082613cbc57613cbb613f91565b5b828204905092915050565b6000613cd282613e0f565b9150613cdd83613e0f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d1657613d15613f62565b5b828202905092915050565b6000613d2c82613dd3565b9150613d3783613dd3565b925082821015613d4a57613d49613f62565b5b828203905092915050565b6000613d6082613e0f565b9150613d6b83613e0f565b925082821015613d7e57613d7d613f62565b5b828203905092915050565b6000613d9482613def565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e46578082015181840152602081019050613e2b565b83811115613e55576000848401525b50505050565b6000613e6682613e0f565b91506000821415613e7a57613e79613f62565b5b600182039050919050565b60006002820490506001821680613e9d57607f821691505b60208210811415613eb157613eb0613fc0565b5b50919050565b613ec082614061565b810181811067ffffffffffffffff82111715613edf57613ede61401e565b5b80604052505050565b6000613ef382613e0f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2657613f25613f62565b5b600182019050919050565b6000613f3c82613e0f565b9150613f4783613e0f565b925082613f5757613f56613f91565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f7075626c69634d696e743a2035206d6178706572207478000000000000000000600082015250565b7f4661696c656420746f2077697468647261770000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f56616c75652073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4e6f206d6f7265204e4654730000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e743a205061757365640000000000000000000000000000000000000000600082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61470881613d89565b811461471357600080fd5b50565b61471f81613d9b565b811461472a57600080fd5b50565b61473681613da7565b811461474157600080fd5b50565b61474d81613e0f565b811461475857600080fd5b5056fea26469706673582212208cad61970534834cccd7d285e42ed2c8e8b586a550098b6b267b15c53aad40cb64736f6c63430008070033

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