Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
34 SUSP
Holders
17
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
6 SUSPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Collection
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Collection is ERC721, ERC721Enumerable, ERC721URIStorage, Pausable, Ownable { // token mint price - 0.03 ether uint256 public mintPrice = 0.03 ether; // Maximum supply uint256 public maxSupply = 9999; // Maximum purchase at once uint256 public maxPurchase = 20; // Reserve max 99 tokens for founding NFT owners, giveaways, partners, marketing and team uint256 public reserve = 99; // Limit single reserve amount uint256 private reserveLimit = 20; // Sale state bool public saleIsActive = false; // Base URI string private baseURI; // Events event AssetMinted(address indexed to, uint256 indexed tokenId); // Presale mapping(address => bool) presaleAccessAddresses; uint256 public presaleAccessCount = 0; bool public presaleIsActive = false; constructor() ERC721("Who's gonna kill Bill?", "SUSP") {} function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } function flipPreSaleState() public onlyOwner { presaleIsActive = !presaleIsActive; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function setBaseURI(string memory baseURI_) public onlyOwner { baseURI = baseURI_; } function getBaseURI() public view onlyOwner returns (string memory) { return baseURI; } function addPresaleAddresses(address[] calldata addresses) public onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { presaleAccessAddresses[addresses[i]] = true; } presaleAccessCount += addresses.length; } function canAccessPresale() public view returns (bool) { return presaleAccessAddresses[msg.sender]; } function canAccessPresale(address addr) public view returns (bool) { return presaleAccessAddresses[addr]; } function mint(uint256 numberOfTokens) public payable whenNotPaused { require(presaleIsActive || saleIsActive, "Sale must be active to mint"); if (presaleIsActive && !saleIsActive) { require(canAccessPresale(), "Not in pre-sale list"); } require(numberOfTokens > 0, "At least one token must be minted"); require( numberOfTokens <= maxPurchase, "Maximum 20 tokens can be minted at once" ); require( totalSupply() + numberOfTokens <= maxSupply, "Purchase would exceed the max supply" ); if (owner() != msg.sender) { require( msg.value == mintPrice * numberOfTokens, "ETH value sent is not correct" ); } else { require( msg.value == 0, "ETH value sent is not correct" ); } for (uint256 i = 0; i < numberOfTokens; i++) { uint256 mintIndex = totalSupply() + 1; if (mintIndex <= maxSupply) { _safeMint(msg.sender, mintIndex); emit AssetMinted(msg.sender, mintIndex); } } } function reserveTokens(address to, uint256 numberOfTokens) public onlyOwner { require(numberOfTokens > 0, "At least one token must be reserved"); require( numberOfTokens <= reserve, "There's not enough tokens left in reserve" ); require( numberOfTokens <= reserveLimit, "Exceeded token reserve limit" ); for (uint256 i = 0; i < numberOfTokens; i++) { uint256 mintIndex = totalSupply() + 1; if (mintIndex <= maxSupply) { _safeMint(to, mintIndex); } } reserve = reserve - numberOfTokens; } function withdraw() public onlyOwner { address payable to = payable(msg.sender); uint256 balance = address(this).balance; to.transfer(balance); } function tokensOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount > 0) { uint256[] memory result = new uint256[](tokenCount); uint256 index; for (index = 0; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } return new uint256[](0); } function _baseURI() internal view override returns (string memory) { return baseURI; } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT 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); } }
// SPDX-License-Identifier: MIT 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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 = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: 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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), 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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "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"},{"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":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"AssetMinted","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addPresaleAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canAccessPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"canAccessPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPurchase","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":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleAccessCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveTokens","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052666a94d74f430000600c5561270f600d556014600e556063600f5560146010556000601160006101000a81548160ff02191690831515021790555060006014556000601560006101000a81548160ff0219169083151502179055503480156200006c57600080fd5b506040518060400160405280601681526020017f57686f277320676f6e6e61206b696c6c2042696c6c3f000000000000000000008152506040518060400160405280600481526020017f53555350000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f19291906200021c565b5080600190805190602001906200010a9291906200021c565b5050506000600b60006101000a81548160ff021916908315150217905550620001486200013c6200014e60201b60201c565b6200015660201b60201c565b62000331565b600033905090565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022a90620002fb565b90600052602060002090601f0160209004810192826200024e57600085556200029a565b82601f106200026957805160ff19168380011785556200029a565b828001600101855582156200029a579182015b82811115620002995782518255916020019190600101906200027c565b5b509050620002a99190620002ad565b5090565b5b80821115620002c8576000816000905550600101620002ae565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200031457607f821691505b602082108114156200032b576200032a620002cc565b5b50919050565b61519a80620003416000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610840578063e985e9c51461086b578063eb8d2444146108a8578063f0325549146108d3578063f2fde38b146108ea5761023b565b8063a22cb46514610749578063b88d4fde14610772578063bc6cd5051461079b578063c87b56dd146107d8578063cd3293de146108155761023b565b80638462151c116100f25780638462151c1461066f5780638da5cb5b146106ac57806395d89b41146106d7578063977b055b14610702578063a0712d681461072d5761023b565b806370a08231146105b0578063714c5398146105ed578063715018a61461061857806378cf19e91461062f5780638456cb59146106585761023b565b80633ccfd60b116101bc5780635c975abb116101805780635c975abb146104c75780635dde4684146104f25780636352211e1461051d5780636817c76c1461055a5780636c0635ed146105855761023b565b80633ccfd60b1461040a5780633f4ba83a1461042157806342842e0e146104385780634f6ccce71461046157806355f804b31461049e5761023b565b806323b872dd1161020357806323b872dd146103395780632f745c591461036257806330f72cd41461039f57806334918dfd146103ca5780633819fc0f146103e15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613607565b610913565b604051610274919061364f565b60405180910390f35b34801561028957600080fd5b50610292610925565b60405161029f9190613703565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061375b565b6109b7565b6040516102dc91906137c9565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613810565b610a3c565b005b34801561031a57600080fd5b50610323610b54565b604051610330919061385f565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b919061387a565b610b61565b005b34801561036e57600080fd5b5061038960048036038101906103849190613810565b610bc1565b604051610396919061385f565b60405180910390f35b3480156103ab57600080fd5b506103b4610c66565b6040516103c1919061364f565b60405180910390f35b3480156103d657600080fd5b506103df610c79565b005b3480156103ed57600080fd5b5061040860048036038101906104039190613932565b610d21565b005b34801561041657600080fd5b5061041f610e5e565b005b34801561042d57600080fd5b50610436610f2f565b005b34801561044457600080fd5b5061045f600480360381019061045a919061387a565b610fb5565b005b34801561046d57600080fd5b506104886004803603810190610483919061375b565b610fd5565b604051610495919061385f565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190613aaf565b611046565b005b3480156104d357600080fd5b506104dc6110dc565b6040516104e9919061364f565b60405180910390f35b3480156104fe57600080fd5b506105076110f3565b604051610514919061385f565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f919061375b565b6110f9565b60405161055191906137c9565b60405180910390f35b34801561056657600080fd5b5061056f6111ab565b60405161057c919061385f565b60405180910390f35b34801561059157600080fd5b5061059a6111b1565b6040516105a7919061364f565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190613af8565b611205565b6040516105e4919061385f565b60405180910390f35b3480156105f957600080fd5b506106026112bd565b60405161060f9190613703565b60405180910390f35b34801561062457600080fd5b5061062d6113cb565b005b34801561063b57600080fd5b5061065660048036038101906106519190613810565b611453565b005b34801561066457600080fd5b5061066d611600565b005b34801561067b57600080fd5b5061069660048036038101906106919190613af8565b611686565b6040516106a39190613be3565b60405180910390f35b3480156106b857600080fd5b506106c1611790565b6040516106ce91906137c9565b60405180910390f35b3480156106e357600080fd5b506106ec6117ba565b6040516106f99190613703565b60405180910390f35b34801561070e57600080fd5b5061071761184c565b604051610724919061385f565b60405180910390f35b6107476004803603810190610742919061375b565b611852565b005b34801561075557600080fd5b50610770600480360381019061076b9190613c31565b611bba565b005b34801561077e57600080fd5b5061079960048036038101906107949190613d12565b611d3b565b005b3480156107a757600080fd5b506107c260048036038101906107bd9190613af8565b611d9d565b6040516107cf919061364f565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa919061375b565b611df3565b60405161080c9190613703565b60405180910390f35b34801561082157600080fd5b5061082a611e05565b604051610837919061385f565b60405180910390f35b34801561084c57600080fd5b50610855611e0b565b604051610862919061385f565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d9190613d95565b611e11565b60405161089f919061364f565b60405180910390f35b3480156108b457600080fd5b506108bd611ea5565b6040516108ca919061364f565b60405180910390f35b3480156108df57600080fd5b506108e8611eb8565b005b3480156108f657600080fd5b50610911600480360381019061090c9190613af8565b611f60565b005b600061091e82612058565b9050919050565b60606000805461093490613e04565b80601f016020809104026020016040519081016040528092919081815260200182805461096090613e04565b80156109ad5780601f10610982576101008083540402835291602001916109ad565b820191906000526020600020905b81548152906001019060200180831161099057829003601f168201915b5050505050905090565b60006109c2826120d2565b610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890613ea8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a47826110f9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf90613f3a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ad761213e565b73ffffffffffffffffffffffffffffffffffffffff161480610b065750610b0581610b0061213e565b611e11565b5b610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90613fcc565b60405180910390fd5b610b4f8383612146565b505050565b6000600880549050905090565b610b72610b6c61213e565b826121ff565b610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba89061405e565b60405180910390fd5b610bbc8383836122dd565b505050565b6000610bcc83611205565b8210610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c04906140f0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601560009054906101000a900460ff1681565b610c8161213e565b73ffffffffffffffffffffffffffffffffffffffff16610c9f611790565b73ffffffffffffffffffffffffffffffffffffffff1614610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec9061415c565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b610d2961213e565b73ffffffffffffffffffffffffffffffffffffffff16610d47611790565b73ffffffffffffffffffffffffffffffffffffffff1614610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d949061415c565b60405180910390fd5b60005b82829050811015610e3d57600160136000858585818110610dc457610dc361417c565b5b9050602002016020810190610dd99190613af8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e35906141da565b915050610da0565b508181905060146000828254610e539190614223565b925050819055505050565b610e6661213e565b73ffffffffffffffffffffffffffffffffffffffff16610e84611790565b73ffffffffffffffffffffffffffffffffffffffff1614610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed19061415c565b60405180910390fd5b600033905060004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f2a573d6000803e3d6000fd5b505050565b610f3761213e565b73ffffffffffffffffffffffffffffffffffffffff16610f55611790565b73ffffffffffffffffffffffffffffffffffffffff1614610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa29061415c565b60405180910390fd5b610fb3612539565b565b610fd083838360405180602001604052806000815250611d3b565b505050565b6000610fdf610b54565b8210611020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611017906142eb565b60405180910390fd5b600882815481106110345761103361417c565b5b90600052602060002001549050919050565b61104e61213e565b73ffffffffffffffffffffffffffffffffffffffff1661106c611790565b73ffffffffffffffffffffffffffffffffffffffff16146110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b99061415c565b60405180910390fd5b80601290805190602001906110d89291906134f8565b5050565b6000600b60009054906101000a900460ff16905090565b60145481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111999061437d565b60405180910390fd5b80915050919050565b600c5481565b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d9061440f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606112c761213e565b73ffffffffffffffffffffffffffffffffffffffff166112e5611790565b73ffffffffffffffffffffffffffffffffffffffff161461133b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113329061415c565b60405180910390fd5b6012805461134890613e04565b80601f016020809104026020016040519081016040528092919081815260200182805461137490613e04565b80156113c15780601f10611396576101008083540402835291602001916113c1565b820191906000526020600020905b8154815290600101906020018083116113a457829003601f168201915b5050505050905090565b6113d361213e565b73ffffffffffffffffffffffffffffffffffffffff166113f1611790565b73ffffffffffffffffffffffffffffffffffffffff1614611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e9061415c565b60405180910390fd5b61145160006125db565b565b61145b61213e565b73ffffffffffffffffffffffffffffffffffffffff16611479611790565b73ffffffffffffffffffffffffffffffffffffffff16146114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c69061415c565b60405180910390fd5b60008111611512576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611509906144a1565b60405180910390fd5b600f54811115611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e90614533565b60405180910390fd5b60105481111561159c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115939061459f565b60405180910390fd5b60005b818110156115e757600060016115b3610b54565b6115bd9190614223565b9050600d5481116115d3576115d284826126a1565b5b5080806115df906141da565b91505061159f565b5080600f546115f691906145bf565b600f819055505050565b61160861213e565b73ffffffffffffffffffffffffffffffffffffffff16611626611790565b73ffffffffffffffffffffffffffffffffffffffff161461167c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116739061415c565b60405180910390fd5b6116846126bf565b565b6060600061169383611205565b9050600081111561173d5760008167ffffffffffffffff8111156116ba576116b9613984565b5b6040519080825280602002602001820160405280156116e85781602001602082028036833780820191505090505b50905060005b82811015611732576117008582610bc1565b8282815181106117135761171261417c565b5b602002602001018181525050808061172a906141da565b9150506116ee565b81935050505061178b565b600067ffffffffffffffff81111561175857611757613984565b5b6040519080825280602002602001820160405280156117865781602001602082028036833780820191505090505b509150505b919050565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546117c990613e04565b80601f01602080910402602001604051908101604052809291908181526020018280546117f590613e04565b80156118425780601f1061181757610100808354040283529160200191611842565b820191906000526020600020905b81548152906001019060200180831161182557829003601f168201915b5050505050905090565b600e5481565b61185a6110dc565b1561189a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118919061463f565b60405180910390fd5b601560009054906101000a900460ff16806118c15750601160009054906101000a900460ff165b611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f7906146ab565b60405180910390fd5b601560009054906101000a900460ff1680156119295750601160009054906101000a900460ff16155b15611976576119366111b1565b611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c90614717565b60405180910390fd5b5b600081116119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b0906147a9565b60405180910390fd5b600e548111156119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f59061483b565b60405180910390fd5b600d5481611a0a610b54565b611a149190614223565b1115611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c906148cd565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16611a74611790565b73ffffffffffffffffffffffffffffffffffffffff1614611ae35780600c54611a9d91906148ed565b3414611ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad590614993565b60405180910390fd5b611b27565b60003414611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90614993565b60405180910390fd5b5b60005b81811015611bb65760006001611b3e610b54565b611b489190614223565b9050600d548111611ba257611b5d33826126a1565b803373ffffffffffffffffffffffffffffffffffffffff167f8d1457c1d60a6987eabbac898a50d8d7c81ba604c563663d2807027a4b07905460405160405180910390a35b508080611bae906141da565b915050611b2a565b5050565b611bc261213e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c27906149ff565b60405180910390fd5b8060056000611c3d61213e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cea61213e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d2f919061364f565b60405180910390a35050565b611d4c611d4661213e565b836121ff565b611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d829061405e565b60405180910390fd5b611d9784848484612762565b50505050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6060611dfe826127be565b9050919050565b600f5481565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160009054906101000a900460ff1681565b611ec061213e565b73ffffffffffffffffffffffffffffffffffffffff16611ede611790565b73ffffffffffffffffffffffffffffffffffffffff1614611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b9061415c565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b611f6861213e565b73ffffffffffffffffffffffffffffffffffffffff16611f86611790565b73ffffffffffffffffffffffffffffffffffffffff1614611fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd39061415c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561204c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204390614a91565b60405180910390fd5b612055816125db565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120cb57506120ca82612910565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121b9836110f9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061220a826120d2565b612249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224090614b23565b60405180910390fd5b6000612254836110f9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122c357508373ffffffffffffffffffffffffffffffffffffffff166122ab846109b7565b73ffffffffffffffffffffffffffffffffffffffff16145b806122d457506122d38185611e11565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122fd826110f9565b73ffffffffffffffffffffffffffffffffffffffff1614612353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234a90614bb5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90614c47565b60405180910390fd5b6123ce8383836129f2565b6123d9600082612146565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461242991906145bf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124809190614223565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125416110dc565b612580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257790614cb3565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6125c461213e565b6040516125d191906137c9565b60405180910390a1565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126bb828260405180602001604052806000815250612a02565b5050565b6126c76110dc565b15612707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fe9061463f565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861274b61213e565b60405161275891906137c9565b60405180910390a1565b61276d8484846122dd565b61277984848484612a5d565b6127b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127af90614d45565b60405180910390fd5b50505050565b60606127c9826120d2565b612808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ff90614dd7565b60405180910390fd5b6000600a6000848152602001908152602001600020805461282890613e04565b80601f016020809104026020016040519081016040528092919081815260200182805461285490613e04565b80156128a15780601f10612876576101008083540402835291602001916128a1565b820191906000526020600020905b81548152906001019060200180831161288457829003601f168201915b5050505050905060006128b2612bf4565b90506000815114156128c857819250505061290b565b6000825111156128fd5780826040516020016128e5929190614e33565b6040516020818303038152906040529250505061290b565b61290684612c86565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129db57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129eb57506129ea82612d2d565b5b9050919050565b6129fd838383612d97565b505050565b612a0c8383612eab565b612a196000848484612a5d565b612a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4f90614d45565b60405180910390fd5b505050565b6000612a7e8473ffffffffffffffffffffffffffffffffffffffff16613079565b15612be7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa761213e565b8786866040518563ffffffff1660e01b8152600401612ac99493929190614eac565b602060405180830381600087803b158015612ae357600080fd5b505af1925050508015612b1457506040513d601f19601f82011682018060405250810190612b119190614f0d565b60015b612b97573d8060008114612b44576040519150601f19603f3d011682016040523d82523d6000602084013e612b49565b606091505b50600081511415612b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8690614d45565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bec565b600190505b949350505050565b606060128054612c0390613e04565b80601f0160208091040260200160405190810160405280929190818152602001828054612c2f90613e04565b8015612c7c5780601f10612c5157610100808354040283529160200191612c7c565b820191906000526020600020905b815481529060010190602001808311612c5f57829003601f168201915b5050505050905090565b6060612c91826120d2565b612cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc790614fac565b60405180910390fd5b6000612cda612bf4565b90506000815111612cfa5760405180602001604052806000815250612d25565b80612d048461308c565b604051602001612d15929190614e33565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612da28383836131ed565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612de557612de0816131f2565b612e24565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e2357612e22838261323b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e6757612e62816133a8565b612ea6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ea557612ea48282613479565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1290615018565b60405180910390fd5b612f24816120d2565b15612f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5b90615084565b60405180910390fd5b612f70600083836129f2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fc09190614223565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b606060008214156130d4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131e8565b600082905060005b600082146131065780806130ef906141da565b915050600a826130ff91906150d3565b91506130dc565b60008167ffffffffffffffff81111561312257613121613984565b5b6040519080825280601f01601f1916602001820160405280156131545781602001600182028036833780820191505090505b5090505b600085146131e15760018261316d91906145bf565b9150600a8561317c9190615104565b60306131889190614223565b60f81b81838151811061319e5761319d61417c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131da91906150d3565b9450613158565b8093505050505b919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161324884611205565b61325291906145bf565b9050600060076000848152602001908152602001600020549050818114613337576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133bc91906145bf565b90506000600960008481526020019081526020016000205490506000600883815481106133ec576133eb61417c565b5b90600052602060002001549050806008838154811061340e5761340d61417c565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061345d5761345c615135565b5b6001900381819060005260206000200160009055905550505050565b600061348483611205565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461350490613e04565b90600052602060002090601f016020900481019282613526576000855561356d565b82601f1061353f57805160ff191683800117855561356d565b8280016001018555821561356d579182015b8281111561356c578251825591602001919060010190613551565b5b50905061357a919061357e565b5090565b5b8082111561359757600081600090555060010161357f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135e4816135af565b81146135ef57600080fd5b50565b600081359050613601816135db565b92915050565b60006020828403121561361d5761361c6135a5565b5b600061362b848285016135f2565b91505092915050565b60008115159050919050565b61364981613634565b82525050565b60006020820190506136646000830184613640565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136a4578082015181840152602081019050613689565b838111156136b3576000848401525b50505050565b6000601f19601f8301169050919050565b60006136d58261366a565b6136df8185613675565b93506136ef818560208601613686565b6136f8816136b9565b840191505092915050565b6000602082019050818103600083015261371d81846136ca565b905092915050565b6000819050919050565b61373881613725565b811461374357600080fd5b50565b6000813590506137558161372f565b92915050565b600060208284031215613771576137706135a5565b5b600061377f84828501613746565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137b382613788565b9050919050565b6137c3816137a8565b82525050565b60006020820190506137de60008301846137ba565b92915050565b6137ed816137a8565b81146137f857600080fd5b50565b60008135905061380a816137e4565b92915050565b60008060408385031215613827576138266135a5565b5b6000613835858286016137fb565b925050602061384685828601613746565b9150509250929050565b61385981613725565b82525050565b60006020820190506138746000830184613850565b92915050565b600080600060608486031215613893576138926135a5565b5b60006138a1868287016137fb565b93505060206138b2868287016137fb565b92505060406138c386828701613746565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126138f2576138f16138cd565b5b8235905067ffffffffffffffff81111561390f5761390e6138d2565b5b60208301915083602082028301111561392b5761392a6138d7565b5b9250929050565b60008060208385031215613949576139486135a5565b5b600083013567ffffffffffffffff811115613967576139666135aa565b5b613973858286016138dc565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139bc826136b9565b810181811067ffffffffffffffff821117156139db576139da613984565b5b80604052505050565b60006139ee61359b565b90506139fa82826139b3565b919050565b600067ffffffffffffffff821115613a1a57613a19613984565b5b613a23826136b9565b9050602081019050919050565b82818337600083830152505050565b6000613a52613a4d846139ff565b6139e4565b905082815260208101848484011115613a6e57613a6d61397f565b5b613a79848285613a30565b509392505050565b600082601f830112613a9657613a956138cd565b5b8135613aa6848260208601613a3f565b91505092915050565b600060208284031215613ac557613ac46135a5565b5b600082013567ffffffffffffffff811115613ae357613ae26135aa565b5b613aef84828501613a81565b91505092915050565b600060208284031215613b0e57613b0d6135a5565b5b6000613b1c848285016137fb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b5a81613725565b82525050565b6000613b6c8383613b51565b60208301905092915050565b6000602082019050919050565b6000613b9082613b25565b613b9a8185613b30565b9350613ba583613b41565b8060005b83811015613bd6578151613bbd8882613b60565b9750613bc883613b78565b925050600181019050613ba9565b5085935050505092915050565b60006020820190508181036000830152613bfd8184613b85565b905092915050565b613c0e81613634565b8114613c1957600080fd5b50565b600081359050613c2b81613c05565b92915050565b60008060408385031215613c4857613c476135a5565b5b6000613c56858286016137fb565b9250506020613c6785828601613c1c565b9150509250929050565b600067ffffffffffffffff821115613c8c57613c8b613984565b5b613c95826136b9565b9050602081019050919050565b6000613cb5613cb084613c71565b6139e4565b905082815260208101848484011115613cd157613cd061397f565b5b613cdc848285613a30565b509392505050565b600082601f830112613cf957613cf86138cd565b5b8135613d09848260208601613ca2565b91505092915050565b60008060008060808587031215613d2c57613d2b6135a5565b5b6000613d3a878288016137fb565b9450506020613d4b878288016137fb565b9350506040613d5c87828801613746565b925050606085013567ffffffffffffffff811115613d7d57613d7c6135aa565b5b613d8987828801613ce4565b91505092959194509250565b60008060408385031215613dac57613dab6135a5565b5b6000613dba858286016137fb565b9250506020613dcb858286016137fb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e1c57607f821691505b60208210811415613e3057613e2f613dd5565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e92602c83613675565b9150613e9d82613e36565b604082019050919050565b60006020820190508181036000830152613ec181613e85565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f24602183613675565b9150613f2f82613ec8565b604082019050919050565b60006020820190508181036000830152613f5381613f17565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613fb6603883613675565b9150613fc182613f5a565b604082019050919050565b60006020820190508181036000830152613fe581613fa9565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614048603183613675565b915061405382613fec565b604082019050919050565b600060208201905081810360008301526140778161403b565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006140da602b83613675565b91506140e58261407e565b604082019050919050565b60006020820190508181036000830152614109816140cd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614146602083613675565b915061415182614110565b602082019050919050565b6000602082019050818103600083015261417581614139565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141e582613725565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614218576142176141ab565b5b600182019050919050565b600061422e82613725565b915061423983613725565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561426e5761426d6141ab565b5b828201905092915050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006142d5602c83613675565b91506142e082614279565b604082019050919050565b60006020820190508181036000830152614304816142c8565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614367602983613675565b91506143728261430b565b604082019050919050565b600060208201905081810360008301526143968161435a565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006143f9602a83613675565b91506144048261439d565b604082019050919050565b60006020820190508181036000830152614428816143ec565b9050919050565b7f4174206c65617374206f6e6520746f6b656e206d75737420626520726573657260008201527f7665640000000000000000000000000000000000000000000000000000000000602082015250565b600061448b602383613675565b91506144968261442f565b604082019050919050565b600060208201905081810360008301526144ba8161447e565b9050919050565b7f54686572652773206e6f7420656e6f75676820746f6b656e73206c656674206960008201527f6e20726573657276650000000000000000000000000000000000000000000000602082015250565b600061451d602983613675565b9150614528826144c1565b604082019050919050565b6000602082019050818103600083015261454c81614510565b9050919050565b7f457863656564656420746f6b656e2072657365727665206c696d697400000000600082015250565b6000614589601c83613675565b915061459482614553565b602082019050919050565b600060208201905081810360008301526145b88161457c565b9050919050565b60006145ca82613725565b91506145d583613725565b9250828210156145e8576145e76141ab565b5b828203905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614629601083613675565b9150614634826145f3565b602082019050919050565b600060208201905081810360008301526146588161461c565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b6000614695601b83613675565b91506146a08261465f565b602082019050919050565b600060208201905081810360008301526146c481614688565b9050919050565b7f4e6f7420696e207072652d73616c65206c697374000000000000000000000000600082015250565b6000614701601483613675565b915061470c826146cb565b602082019050919050565b60006020820190508181036000830152614730816146f4565b9050919050565b7f4174206c65617374206f6e6520746f6b656e206d757374206265206d696e746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614793602183613675565b915061479e82614737565b604082019050919050565b600060208201905081810360008301526147c281614786565b9050919050565b7f4d6178696d756d20323020746f6b656e732063616e206265206d696e7465642060008201527f6174206f6e636500000000000000000000000000000000000000000000000000602082015250565b6000614825602783613675565b9150614830826147c9565b604082019050919050565b6000602082019050818103600083015261485481614818565b9050919050565b7f507572636861736520776f756c642065786365656420746865206d617820737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b60006148b7602483613675565b91506148c28261485b565b604082019050919050565b600060208201905081810360008301526148e6816148aa565b9050919050565b60006148f882613725565b915061490383613725565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561493c5761493b6141ab565b5b828202905092915050565b7f4554482076616c75652073656e74206973206e6f7420636f7272656374000000600082015250565b600061497d601d83613675565b915061498882614947565b602082019050919050565b600060208201905081810360008301526149ac81614970565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006149e9601983613675565b91506149f4826149b3565b602082019050919050565b60006020820190508181036000830152614a18816149dc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a7b602683613675565b9150614a8682614a1f565b604082019050919050565b60006020820190508181036000830152614aaa81614a6e565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614b0d602c83613675565b9150614b1882614ab1565b604082019050919050565b60006020820190508181036000830152614b3c81614b00565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614b9f602983613675565b9150614baa82614b43565b604082019050919050565b60006020820190508181036000830152614bce81614b92565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614c31602483613675565b9150614c3c82614bd5565b604082019050919050565b60006020820190508181036000830152614c6081614c24565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614c9d601483613675565b9150614ca882614c67565b602082019050919050565b60006020820190508181036000830152614ccc81614c90565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614d2f603283613675565b9150614d3a82614cd3565b604082019050919050565b60006020820190508181036000830152614d5e81614d22565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b6000614dc1603183613675565b9150614dcc82614d65565b604082019050919050565b60006020820190508181036000830152614df081614db4565b9050919050565b600081905092915050565b6000614e0d8261366a565b614e178185614df7565b9350614e27818560208601613686565b80840191505092915050565b6000614e3f8285614e02565b9150614e4b8284614e02565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000614e7e82614e57565b614e888185614e62565b9350614e98818560208601613686565b614ea1816136b9565b840191505092915050565b6000608082019050614ec160008301876137ba565b614ece60208301866137ba565b614edb6040830185613850565b8181036060830152614eed8184614e73565b905095945050505050565b600081519050614f07816135db565b92915050565b600060208284031215614f2357614f226135a5565b5b6000614f3184828501614ef8565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f96602f83613675565b9150614fa182614f3a565b604082019050919050565b60006020820190508181036000830152614fc581614f89565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615002602083613675565b915061500d82614fcc565b602082019050919050565b6000602082019050818103600083015261503181614ff5565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061506e601c83613675565b915061507982615038565b602082019050919050565b6000602082019050818103600083015261509d81615061565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006150de82613725565b91506150e983613725565b9250826150f9576150f86150a4565b5b828204905092915050565b600061510f82613725565b915061511a83613725565b92508261512a576151296150a4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220524b6519bee716f1aa1e60d826d23ab6b3e9997b4ac23571446a5572f4018d3264736f6c63430008090033
Deployed Bytecode
0x60806040526004361061023b5760003560e01c806370a082311161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610840578063e985e9c51461086b578063eb8d2444146108a8578063f0325549146108d3578063f2fde38b146108ea5761023b565b8063a22cb46514610749578063b88d4fde14610772578063bc6cd5051461079b578063c87b56dd146107d8578063cd3293de146108155761023b565b80638462151c116100f25780638462151c1461066f5780638da5cb5b146106ac57806395d89b41146106d7578063977b055b14610702578063a0712d681461072d5761023b565b806370a08231146105b0578063714c5398146105ed578063715018a61461061857806378cf19e91461062f5780638456cb59146106585761023b565b80633ccfd60b116101bc5780635c975abb116101805780635c975abb146104c75780635dde4684146104f25780636352211e1461051d5780636817c76c1461055a5780636c0635ed146105855761023b565b80633ccfd60b1461040a5780633f4ba83a1461042157806342842e0e146104385780634f6ccce71461046157806355f804b31461049e5761023b565b806323b872dd1161020357806323b872dd146103395780632f745c591461036257806330f72cd41461039f57806334918dfd146103ca5780633819fc0f146103e15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613607565b610913565b604051610274919061364f565b60405180910390f35b34801561028957600080fd5b50610292610925565b60405161029f9190613703565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061375b565b6109b7565b6040516102dc91906137c9565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613810565b610a3c565b005b34801561031a57600080fd5b50610323610b54565b604051610330919061385f565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b919061387a565b610b61565b005b34801561036e57600080fd5b5061038960048036038101906103849190613810565b610bc1565b604051610396919061385f565b60405180910390f35b3480156103ab57600080fd5b506103b4610c66565b6040516103c1919061364f565b60405180910390f35b3480156103d657600080fd5b506103df610c79565b005b3480156103ed57600080fd5b5061040860048036038101906104039190613932565b610d21565b005b34801561041657600080fd5b5061041f610e5e565b005b34801561042d57600080fd5b50610436610f2f565b005b34801561044457600080fd5b5061045f600480360381019061045a919061387a565b610fb5565b005b34801561046d57600080fd5b506104886004803603810190610483919061375b565b610fd5565b604051610495919061385f565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190613aaf565b611046565b005b3480156104d357600080fd5b506104dc6110dc565b6040516104e9919061364f565b60405180910390f35b3480156104fe57600080fd5b506105076110f3565b604051610514919061385f565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f919061375b565b6110f9565b60405161055191906137c9565b60405180910390f35b34801561056657600080fd5b5061056f6111ab565b60405161057c919061385f565b60405180910390f35b34801561059157600080fd5b5061059a6111b1565b6040516105a7919061364f565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190613af8565b611205565b6040516105e4919061385f565b60405180910390f35b3480156105f957600080fd5b506106026112bd565b60405161060f9190613703565b60405180910390f35b34801561062457600080fd5b5061062d6113cb565b005b34801561063b57600080fd5b5061065660048036038101906106519190613810565b611453565b005b34801561066457600080fd5b5061066d611600565b005b34801561067b57600080fd5b5061069660048036038101906106919190613af8565b611686565b6040516106a39190613be3565b60405180910390f35b3480156106b857600080fd5b506106c1611790565b6040516106ce91906137c9565b60405180910390f35b3480156106e357600080fd5b506106ec6117ba565b6040516106f99190613703565b60405180910390f35b34801561070e57600080fd5b5061071761184c565b604051610724919061385f565b60405180910390f35b6107476004803603810190610742919061375b565b611852565b005b34801561075557600080fd5b50610770600480360381019061076b9190613c31565b611bba565b005b34801561077e57600080fd5b5061079960048036038101906107949190613d12565b611d3b565b005b3480156107a757600080fd5b506107c260048036038101906107bd9190613af8565b611d9d565b6040516107cf919061364f565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa919061375b565b611df3565b60405161080c9190613703565b60405180910390f35b34801561082157600080fd5b5061082a611e05565b604051610837919061385f565b60405180910390f35b34801561084c57600080fd5b50610855611e0b565b604051610862919061385f565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d9190613d95565b611e11565b60405161089f919061364f565b60405180910390f35b3480156108b457600080fd5b506108bd611ea5565b6040516108ca919061364f565b60405180910390f35b3480156108df57600080fd5b506108e8611eb8565b005b3480156108f657600080fd5b50610911600480360381019061090c9190613af8565b611f60565b005b600061091e82612058565b9050919050565b60606000805461093490613e04565b80601f016020809104026020016040519081016040528092919081815260200182805461096090613e04565b80156109ad5780601f10610982576101008083540402835291602001916109ad565b820191906000526020600020905b81548152906001019060200180831161099057829003601f168201915b5050505050905090565b60006109c2826120d2565b610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890613ea8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a47826110f9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf90613f3a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ad761213e565b73ffffffffffffffffffffffffffffffffffffffff161480610b065750610b0581610b0061213e565b611e11565b5b610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90613fcc565b60405180910390fd5b610b4f8383612146565b505050565b6000600880549050905090565b610b72610b6c61213e565b826121ff565b610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba89061405e565b60405180910390fd5b610bbc8383836122dd565b505050565b6000610bcc83611205565b8210610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c04906140f0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601560009054906101000a900460ff1681565b610c8161213e565b73ffffffffffffffffffffffffffffffffffffffff16610c9f611790565b73ffffffffffffffffffffffffffffffffffffffff1614610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec9061415c565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b610d2961213e565b73ffffffffffffffffffffffffffffffffffffffff16610d47611790565b73ffffffffffffffffffffffffffffffffffffffff1614610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d949061415c565b60405180910390fd5b60005b82829050811015610e3d57600160136000858585818110610dc457610dc361417c565b5b9050602002016020810190610dd99190613af8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e35906141da565b915050610da0565b508181905060146000828254610e539190614223565b925050819055505050565b610e6661213e565b73ffffffffffffffffffffffffffffffffffffffff16610e84611790565b73ffffffffffffffffffffffffffffffffffffffff1614610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed19061415c565b60405180910390fd5b600033905060004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f2a573d6000803e3d6000fd5b505050565b610f3761213e565b73ffffffffffffffffffffffffffffffffffffffff16610f55611790565b73ffffffffffffffffffffffffffffffffffffffff1614610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa29061415c565b60405180910390fd5b610fb3612539565b565b610fd083838360405180602001604052806000815250611d3b565b505050565b6000610fdf610b54565b8210611020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611017906142eb565b60405180910390fd5b600882815481106110345761103361417c565b5b90600052602060002001549050919050565b61104e61213e565b73ffffffffffffffffffffffffffffffffffffffff1661106c611790565b73ffffffffffffffffffffffffffffffffffffffff16146110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b99061415c565b60405180910390fd5b80601290805190602001906110d89291906134f8565b5050565b6000600b60009054906101000a900460ff16905090565b60145481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111999061437d565b60405180910390fd5b80915050919050565b600c5481565b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d9061440f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606112c761213e565b73ffffffffffffffffffffffffffffffffffffffff166112e5611790565b73ffffffffffffffffffffffffffffffffffffffff161461133b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113329061415c565b60405180910390fd5b6012805461134890613e04565b80601f016020809104026020016040519081016040528092919081815260200182805461137490613e04565b80156113c15780601f10611396576101008083540402835291602001916113c1565b820191906000526020600020905b8154815290600101906020018083116113a457829003601f168201915b5050505050905090565b6113d361213e565b73ffffffffffffffffffffffffffffffffffffffff166113f1611790565b73ffffffffffffffffffffffffffffffffffffffff1614611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e9061415c565b60405180910390fd5b61145160006125db565b565b61145b61213e565b73ffffffffffffffffffffffffffffffffffffffff16611479611790565b73ffffffffffffffffffffffffffffffffffffffff16146114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c69061415c565b60405180910390fd5b60008111611512576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611509906144a1565b60405180910390fd5b600f54811115611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e90614533565b60405180910390fd5b60105481111561159c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115939061459f565b60405180910390fd5b60005b818110156115e757600060016115b3610b54565b6115bd9190614223565b9050600d5481116115d3576115d284826126a1565b5b5080806115df906141da565b91505061159f565b5080600f546115f691906145bf565b600f819055505050565b61160861213e565b73ffffffffffffffffffffffffffffffffffffffff16611626611790565b73ffffffffffffffffffffffffffffffffffffffff161461167c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116739061415c565b60405180910390fd5b6116846126bf565b565b6060600061169383611205565b9050600081111561173d5760008167ffffffffffffffff8111156116ba576116b9613984565b5b6040519080825280602002602001820160405280156116e85781602001602082028036833780820191505090505b50905060005b82811015611732576117008582610bc1565b8282815181106117135761171261417c565b5b602002602001018181525050808061172a906141da565b9150506116ee565b81935050505061178b565b600067ffffffffffffffff81111561175857611757613984565b5b6040519080825280602002602001820160405280156117865781602001602082028036833780820191505090505b509150505b919050565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546117c990613e04565b80601f01602080910402602001604051908101604052809291908181526020018280546117f590613e04565b80156118425780601f1061181757610100808354040283529160200191611842565b820191906000526020600020905b81548152906001019060200180831161182557829003601f168201915b5050505050905090565b600e5481565b61185a6110dc565b1561189a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118919061463f565b60405180910390fd5b601560009054906101000a900460ff16806118c15750601160009054906101000a900460ff165b611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f7906146ab565b60405180910390fd5b601560009054906101000a900460ff1680156119295750601160009054906101000a900460ff16155b15611976576119366111b1565b611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c90614717565b60405180910390fd5b5b600081116119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b0906147a9565b60405180910390fd5b600e548111156119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f59061483b565b60405180910390fd5b600d5481611a0a610b54565b611a149190614223565b1115611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c906148cd565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16611a74611790565b73ffffffffffffffffffffffffffffffffffffffff1614611ae35780600c54611a9d91906148ed565b3414611ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad590614993565b60405180910390fd5b611b27565b60003414611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90614993565b60405180910390fd5b5b60005b81811015611bb65760006001611b3e610b54565b611b489190614223565b9050600d548111611ba257611b5d33826126a1565b803373ffffffffffffffffffffffffffffffffffffffff167f8d1457c1d60a6987eabbac898a50d8d7c81ba604c563663d2807027a4b07905460405160405180910390a35b508080611bae906141da565b915050611b2a565b5050565b611bc261213e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c27906149ff565b60405180910390fd5b8060056000611c3d61213e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cea61213e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d2f919061364f565b60405180910390a35050565b611d4c611d4661213e565b836121ff565b611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d829061405e565b60405180910390fd5b611d9784848484612762565b50505050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6060611dfe826127be565b9050919050565b600f5481565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160009054906101000a900460ff1681565b611ec061213e565b73ffffffffffffffffffffffffffffffffffffffff16611ede611790565b73ffffffffffffffffffffffffffffffffffffffff1614611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b9061415c565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b611f6861213e565b73ffffffffffffffffffffffffffffffffffffffff16611f86611790565b73ffffffffffffffffffffffffffffffffffffffff1614611fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd39061415c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561204c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204390614a91565b60405180910390fd5b612055816125db565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120cb57506120ca82612910565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121b9836110f9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061220a826120d2565b612249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224090614b23565b60405180910390fd5b6000612254836110f9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122c357508373ffffffffffffffffffffffffffffffffffffffff166122ab846109b7565b73ffffffffffffffffffffffffffffffffffffffff16145b806122d457506122d38185611e11565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122fd826110f9565b73ffffffffffffffffffffffffffffffffffffffff1614612353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234a90614bb5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90614c47565b60405180910390fd5b6123ce8383836129f2565b6123d9600082612146565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461242991906145bf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124809190614223565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125416110dc565b612580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257790614cb3565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6125c461213e565b6040516125d191906137c9565b60405180910390a1565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126bb828260405180602001604052806000815250612a02565b5050565b6126c76110dc565b15612707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fe9061463f565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861274b61213e565b60405161275891906137c9565b60405180910390a1565b61276d8484846122dd565b61277984848484612a5d565b6127b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127af90614d45565b60405180910390fd5b50505050565b60606127c9826120d2565b612808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ff90614dd7565b60405180910390fd5b6000600a6000848152602001908152602001600020805461282890613e04565b80601f016020809104026020016040519081016040528092919081815260200182805461285490613e04565b80156128a15780601f10612876576101008083540402835291602001916128a1565b820191906000526020600020905b81548152906001019060200180831161288457829003601f168201915b5050505050905060006128b2612bf4565b90506000815114156128c857819250505061290b565b6000825111156128fd5780826040516020016128e5929190614e33565b6040516020818303038152906040529250505061290b565b61290684612c86565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129db57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129eb57506129ea82612d2d565b5b9050919050565b6129fd838383612d97565b505050565b612a0c8383612eab565b612a196000848484612a5d565b612a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4f90614d45565b60405180910390fd5b505050565b6000612a7e8473ffffffffffffffffffffffffffffffffffffffff16613079565b15612be7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa761213e565b8786866040518563ffffffff1660e01b8152600401612ac99493929190614eac565b602060405180830381600087803b158015612ae357600080fd5b505af1925050508015612b1457506040513d601f19601f82011682018060405250810190612b119190614f0d565b60015b612b97573d8060008114612b44576040519150601f19603f3d011682016040523d82523d6000602084013e612b49565b606091505b50600081511415612b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8690614d45565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bec565b600190505b949350505050565b606060128054612c0390613e04565b80601f0160208091040260200160405190810160405280929190818152602001828054612c2f90613e04565b8015612c7c5780601f10612c5157610100808354040283529160200191612c7c565b820191906000526020600020905b815481529060010190602001808311612c5f57829003601f168201915b5050505050905090565b6060612c91826120d2565b612cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc790614fac565b60405180910390fd5b6000612cda612bf4565b90506000815111612cfa5760405180602001604052806000815250612d25565b80612d048461308c565b604051602001612d15929190614e33565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612da28383836131ed565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612de557612de0816131f2565b612e24565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e2357612e22838261323b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e6757612e62816133a8565b612ea6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ea557612ea48282613479565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1290615018565b60405180910390fd5b612f24816120d2565b15612f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5b90615084565b60405180910390fd5b612f70600083836129f2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fc09190614223565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b606060008214156130d4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131e8565b600082905060005b600082146131065780806130ef906141da565b915050600a826130ff91906150d3565b91506130dc565b60008167ffffffffffffffff81111561312257613121613984565b5b6040519080825280601f01601f1916602001820160405280156131545781602001600182028036833780820191505090505b5090505b600085146131e15760018261316d91906145bf565b9150600a8561317c9190615104565b60306131889190614223565b60f81b81838151811061319e5761319d61417c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131da91906150d3565b9450613158565b8093505050505b919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161324884611205565b61325291906145bf565b9050600060076000848152602001908152602001600020549050818114613337576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133bc91906145bf565b90506000600960008481526020019081526020016000205490506000600883815481106133ec576133eb61417c565b5b90600052602060002001549050806008838154811061340e5761340d61417c565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061345d5761345c615135565b5b6001900381819060005260206000200160009055905550505050565b600061348483611205565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461350490613e04565b90600052602060002090601f016020900481019282613526576000855561356d565b82601f1061353f57805160ff191683800117855561356d565b8280016001018555821561356d579182015b8281111561356c578251825591602001919060010190613551565b5b50905061357a919061357e565b5090565b5b8082111561359757600081600090555060010161357f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135e4816135af565b81146135ef57600080fd5b50565b600081359050613601816135db565b92915050565b60006020828403121561361d5761361c6135a5565b5b600061362b848285016135f2565b91505092915050565b60008115159050919050565b61364981613634565b82525050565b60006020820190506136646000830184613640565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136a4578082015181840152602081019050613689565b838111156136b3576000848401525b50505050565b6000601f19601f8301169050919050565b60006136d58261366a565b6136df8185613675565b93506136ef818560208601613686565b6136f8816136b9565b840191505092915050565b6000602082019050818103600083015261371d81846136ca565b905092915050565b6000819050919050565b61373881613725565b811461374357600080fd5b50565b6000813590506137558161372f565b92915050565b600060208284031215613771576137706135a5565b5b600061377f84828501613746565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137b382613788565b9050919050565b6137c3816137a8565b82525050565b60006020820190506137de60008301846137ba565b92915050565b6137ed816137a8565b81146137f857600080fd5b50565b60008135905061380a816137e4565b92915050565b60008060408385031215613827576138266135a5565b5b6000613835858286016137fb565b925050602061384685828601613746565b9150509250929050565b61385981613725565b82525050565b60006020820190506138746000830184613850565b92915050565b600080600060608486031215613893576138926135a5565b5b60006138a1868287016137fb565b93505060206138b2868287016137fb565b92505060406138c386828701613746565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126138f2576138f16138cd565b5b8235905067ffffffffffffffff81111561390f5761390e6138d2565b5b60208301915083602082028301111561392b5761392a6138d7565b5b9250929050565b60008060208385031215613949576139486135a5565b5b600083013567ffffffffffffffff811115613967576139666135aa565b5b613973858286016138dc565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139bc826136b9565b810181811067ffffffffffffffff821117156139db576139da613984565b5b80604052505050565b60006139ee61359b565b90506139fa82826139b3565b919050565b600067ffffffffffffffff821115613a1a57613a19613984565b5b613a23826136b9565b9050602081019050919050565b82818337600083830152505050565b6000613a52613a4d846139ff565b6139e4565b905082815260208101848484011115613a6e57613a6d61397f565b5b613a79848285613a30565b509392505050565b600082601f830112613a9657613a956138cd565b5b8135613aa6848260208601613a3f565b91505092915050565b600060208284031215613ac557613ac46135a5565b5b600082013567ffffffffffffffff811115613ae357613ae26135aa565b5b613aef84828501613a81565b91505092915050565b600060208284031215613b0e57613b0d6135a5565b5b6000613b1c848285016137fb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b5a81613725565b82525050565b6000613b6c8383613b51565b60208301905092915050565b6000602082019050919050565b6000613b9082613b25565b613b9a8185613b30565b9350613ba583613b41565b8060005b83811015613bd6578151613bbd8882613b60565b9750613bc883613b78565b925050600181019050613ba9565b5085935050505092915050565b60006020820190508181036000830152613bfd8184613b85565b905092915050565b613c0e81613634565b8114613c1957600080fd5b50565b600081359050613c2b81613c05565b92915050565b60008060408385031215613c4857613c476135a5565b5b6000613c56858286016137fb565b9250506020613c6785828601613c1c565b9150509250929050565b600067ffffffffffffffff821115613c8c57613c8b613984565b5b613c95826136b9565b9050602081019050919050565b6000613cb5613cb084613c71565b6139e4565b905082815260208101848484011115613cd157613cd061397f565b5b613cdc848285613a30565b509392505050565b600082601f830112613cf957613cf86138cd565b5b8135613d09848260208601613ca2565b91505092915050565b60008060008060808587031215613d2c57613d2b6135a5565b5b6000613d3a878288016137fb565b9450506020613d4b878288016137fb565b9350506040613d5c87828801613746565b925050606085013567ffffffffffffffff811115613d7d57613d7c6135aa565b5b613d8987828801613ce4565b91505092959194509250565b60008060408385031215613dac57613dab6135a5565b5b6000613dba858286016137fb565b9250506020613dcb858286016137fb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e1c57607f821691505b60208210811415613e3057613e2f613dd5565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e92602c83613675565b9150613e9d82613e36565b604082019050919050565b60006020820190508181036000830152613ec181613e85565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f24602183613675565b9150613f2f82613ec8565b604082019050919050565b60006020820190508181036000830152613f5381613f17565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613fb6603883613675565b9150613fc182613f5a565b604082019050919050565b60006020820190508181036000830152613fe581613fa9565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614048603183613675565b915061405382613fec565b604082019050919050565b600060208201905081810360008301526140778161403b565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006140da602b83613675565b91506140e58261407e565b604082019050919050565b60006020820190508181036000830152614109816140cd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614146602083613675565b915061415182614110565b602082019050919050565b6000602082019050818103600083015261417581614139565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141e582613725565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614218576142176141ab565b5b600182019050919050565b600061422e82613725565b915061423983613725565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561426e5761426d6141ab565b5b828201905092915050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006142d5602c83613675565b91506142e082614279565b604082019050919050565b60006020820190508181036000830152614304816142c8565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614367602983613675565b91506143728261430b565b604082019050919050565b600060208201905081810360008301526143968161435a565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006143f9602a83613675565b91506144048261439d565b604082019050919050565b60006020820190508181036000830152614428816143ec565b9050919050565b7f4174206c65617374206f6e6520746f6b656e206d75737420626520726573657260008201527f7665640000000000000000000000000000000000000000000000000000000000602082015250565b600061448b602383613675565b91506144968261442f565b604082019050919050565b600060208201905081810360008301526144ba8161447e565b9050919050565b7f54686572652773206e6f7420656e6f75676820746f6b656e73206c656674206960008201527f6e20726573657276650000000000000000000000000000000000000000000000602082015250565b600061451d602983613675565b9150614528826144c1565b604082019050919050565b6000602082019050818103600083015261454c81614510565b9050919050565b7f457863656564656420746f6b656e2072657365727665206c696d697400000000600082015250565b6000614589601c83613675565b915061459482614553565b602082019050919050565b600060208201905081810360008301526145b88161457c565b9050919050565b60006145ca82613725565b91506145d583613725565b9250828210156145e8576145e76141ab565b5b828203905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614629601083613675565b9150614634826145f3565b602082019050919050565b600060208201905081810360008301526146588161461c565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b6000614695601b83613675565b91506146a08261465f565b602082019050919050565b600060208201905081810360008301526146c481614688565b9050919050565b7f4e6f7420696e207072652d73616c65206c697374000000000000000000000000600082015250565b6000614701601483613675565b915061470c826146cb565b602082019050919050565b60006020820190508181036000830152614730816146f4565b9050919050565b7f4174206c65617374206f6e6520746f6b656e206d757374206265206d696e746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614793602183613675565b915061479e82614737565b604082019050919050565b600060208201905081810360008301526147c281614786565b9050919050565b7f4d6178696d756d20323020746f6b656e732063616e206265206d696e7465642060008201527f6174206f6e636500000000000000000000000000000000000000000000000000602082015250565b6000614825602783613675565b9150614830826147c9565b604082019050919050565b6000602082019050818103600083015261485481614818565b9050919050565b7f507572636861736520776f756c642065786365656420746865206d617820737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b60006148b7602483613675565b91506148c28261485b565b604082019050919050565b600060208201905081810360008301526148e6816148aa565b9050919050565b60006148f882613725565b915061490383613725565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561493c5761493b6141ab565b5b828202905092915050565b7f4554482076616c75652073656e74206973206e6f7420636f7272656374000000600082015250565b600061497d601d83613675565b915061498882614947565b602082019050919050565b600060208201905081810360008301526149ac81614970565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006149e9601983613675565b91506149f4826149b3565b602082019050919050565b60006020820190508181036000830152614a18816149dc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a7b602683613675565b9150614a8682614a1f565b604082019050919050565b60006020820190508181036000830152614aaa81614a6e565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614b0d602c83613675565b9150614b1882614ab1565b604082019050919050565b60006020820190508181036000830152614b3c81614b00565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614b9f602983613675565b9150614baa82614b43565b604082019050919050565b60006020820190508181036000830152614bce81614b92565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614c31602483613675565b9150614c3c82614bd5565b604082019050919050565b60006020820190508181036000830152614c6081614c24565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614c9d601483613675565b9150614ca882614c67565b602082019050919050565b60006020820190508181036000830152614ccc81614c90565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614d2f603283613675565b9150614d3a82614cd3565b604082019050919050565b60006020820190508181036000830152614d5e81614d22565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b6000614dc1603183613675565b9150614dcc82614d65565b604082019050919050565b60006020820190508181036000830152614df081614db4565b9050919050565b600081905092915050565b6000614e0d8261366a565b614e178185614df7565b9350614e27818560208601613686565b80840191505092915050565b6000614e3f8285614e02565b9150614e4b8284614e02565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000614e7e82614e57565b614e888185614e62565b9350614e98818560208601613686565b614ea1816136b9565b840191505092915050565b6000608082019050614ec160008301876137ba565b614ece60208301866137ba565b614edb6040830185613850565b8181036060830152614eed8184614e73565b905095945050505050565b600081519050614f07816135db565b92915050565b600060208284031215614f2357614f226135a5565b5b6000614f3184828501614ef8565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f96602f83613675565b9150614fa182614f3a565b604082019050919050565b60006020820190508181036000830152614fc581614f89565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615002602083613675565b915061500d82614fcc565b602082019050919050565b6000602082019050818103600083015261503181614ff5565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061506e601c83613675565b915061507982615038565b602082019050919050565b6000602082019050818103600083015261509d81615061565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006150de82613725565b91506150e983613725565b9250826150f9576150f86150a4565b5b828204905092915050565b600061510f82613725565b915061511a83613725565b92508261512a576151296150a4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220524b6519bee716f1aa1e60d826d23ab6b3e9997b4ac23571446a5572f4018d3264736f6c63430008090033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.