Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
373 FTT
Holders
168
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 FTTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FreakingTurtles
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** * @title Freaking Turtles contract * @dev Extends ERC721 Non-Fungible Token Standard Basic Implementation */ /** * SPDX-License-Identifier: MIT */ /* __ .,-;-;-,. /'_\ _/_/_/_|_\_\) / '-<_><_><_><_>=/\ `/_/====/_/-'\_\ "" "" "" */ pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract FreakingTurtles is ERC721Enumerable, Ownable { using SafeMath for uint256; using Strings for uint256; event Minted(address indexed to, uint256 indexed tokenId); string public provenance; string private _baseTokenURI; uint256 public constant PRE_SALE_PRICE = 0.04 ether; uint256 public constant SALE_PRICE = 0.05 ether; uint256 public constant MAX_PRE_SALE_PURCHASE = 10; uint256 public constant MAX_SALE_PURCHASE = 20; uint256 public constant MAX_TOKENS = 9999; uint256 public constant MAX_PRE_SOLD = 1000; uint256 public preSoldCount; bool public preSaleIsActive; bool public saleIsActive; mapping (address => bool) public preSaleAddresses; mapping (address => uint256) public reservedClaims; constructor() ERC721("Freaking Turtles", "FTT") { preSaleIsActive = false; saleIsActive = false; } function setBaseURI(string memory baseURI) external onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setProvenance(string memory prov) external onlyOwner { provenance = prov; } function tokensOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } 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(), '.json')) : ""; } // WHITELIST function whitelistAddresses(address[] memory addrs) external onlyOwner { for (uint256 i = 0; i < addrs.length; i++) { preSaleAddresses[addrs[i]] = true; } } // RESERVE function reserveClaims(address[] memory addresses, uint256[] memory amounts) external onlyOwner { for (uint i=0; i < addresses.length; i++){ reservedClaims[addresses[i]] = amounts[i]; } } // START PAUSE function startPreSale() external onlyOwner { require(preSaleIsActive == false, "Pre Sale is started"); require(saleIsActive == false, "Sale is started"); preSaleIsActive = true; } function pausePreSale() external onlyOwner { require(preSaleIsActive == true, "Pre Sale is paused"); preSaleIsActive = false; } function startSale() external onlyOwner { require(preSaleIsActive == false, "Pre Sale is started"); require(saleIsActive == false, "Sale is started"); saleIsActive = true; } function pauseSale() external onlyOwner { require(saleIsActive == true, "Sale is paused"); saleIsActive = false; } // MINT function claimReserved() external { require(reservedClaims[msg.sender] > 0, "Nothing to claim"); uint256 amount = reservedClaims[msg.sender]; reservedClaims[msg.sender] = 0; uint256 supply = totalSupply(); for (uint256 i = 0; i < amount; i++) { _safeMint(msg.sender, supply + i); } } function mintPreSale(uint256 numberOfTokens) external payable { require(preSaleIsActive == true, "Pre Sale must be active to mint tokens"); require(preSaleAddresses[msg.sender] == true, "Address is not whitelisted"); require(numberOfTokens > 0, "At least one token must be minted"); require(numberOfTokens <= MAX_PRE_SALE_PURCHASE, "Exceeded max token purchase"); require(preSoldCount.add(numberOfTokens) <= MAX_PRE_SOLD, "Purchase would exceed max supply of pre sale"); require(PRE_SALE_PRICE.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct"); uint256 supply = totalSupply(); for (uint256 i = 0; i < numberOfTokens; i++) { _safeMint(msg.sender, supply + i); emit Minted(msg.sender, supply + i); preSoldCount++; } } function mintSale(uint256 numberOfTokens) external payable { require(saleIsActive == true, "Sale must be active to mint tokens"); require(numberOfTokens > 0, "At least one token must be minted"); require(numberOfTokens <= MAX_SALE_PURCHASE, "Exceeded max token purchase"); require(totalSupply().add(numberOfTokens) <= MAX_TOKENS, "Purchase would exceed max supply of tokens"); require(SALE_PRICE.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct"); uint256 supply = totalSupply(); for (uint256 i = 0; i < numberOfTokens; i++) { _safeMint(msg.sender, supply + i); emit Minted(msg.sender, supply + i); } } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(owner()).transfer(balance); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// 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"; 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 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", "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":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PRE_SALE_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRE_SOLD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SALE_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRE_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintSale","outputs":[],"stateMutability":"payable","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":"pausePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preSaleAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSoldCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"reserveClaims","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reservedClaims","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":"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":"string","name":"prov","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"whitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601081526020017f467265616b696e6720547572746c6573000000000000000000000000000000008152506040518060400160405280600381526020017f4654540000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001dc565b508060019080519060200190620000af929190620001dc565b505050620000d2620000c66200010e60201b60201c565b6200011660201b60201c565b6000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff021916908315150217905550620002f1565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ea906200028c565b90600052602060002090601f0160209004810192826200020e57600085556200025a565b82601f106200022957805160ff19168380011785556200025a565b828001600101855582156200025a579182015b82811115620002595782518255916020019190600101906200023c565b5b5090506200026991906200026d565b5090565b5b80821115620002885760008160009055506001016200026e565b5090565b60006002820490506001821680620002a557607f821691505b60208210811415620002bc57620002bb620002c2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61557c80620003016000396000f3fe6080604052600436106102675760003560e01c806355f804b311610144578063b66a0e5d116100b6578063e985e9c51161007a578063e985e9c5146108c8578063eb8d244414610905578063f2fde38b14610930578063f47c84c514610959578063fad007d814610984578063ffe630b5146109af57610267565b8063b66a0e5d146107f2578063b88d4fde14610809578063b988477214610832578063c87b56dd1461084e578063d144a39a1461088b57610267565b80637f205a74116101085780637f205a74146106e25780638462151c1461070d5780638da5cb5b1461074a57806395d89b41146107755780639d7121f1146107a0578063a22cb465146107c957610267565b806355f804b3146105eb5780635c63ed2e146106145780636352211e1461065157806370a082311461068e578063715018a6146106cb57610267565b80632bf04304116101dd57806347ed7fc0116101a157806347ed7fc01461050e5780634875bccb146105395780634d4d2736146105555780634f6ccce71461058057806355367ba9146105bd57806355dd574c146105d457610267565b80632bf04304146104515780632f745c591461047a5780633ccfd60b146104b757806342842e0e146104ce5780634357da58146104f757610267565b80630d10b4a11161022f5780630d10b4a1146103515780630f7309e81461037c57806318160ddd146103a7578063193402bb146103d25780631f0234d8146103fd57806323b872dd1461042857610267565b806301ffc9a71461026c578063036a7a19146102a957806306fdde03146102c0578063081812fc146102eb578063095ea7b314610328575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613c3c565b6109d8565b6040516102a09190614379565b60405180910390f35b3480156102b557600080fd5b506102be610a52565b005b3480156102cc57600080fd5b506102d5610ba1565b6040516102e29190614394565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190613cdf565b610c33565b60405161031f91906142f0565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190613b3b565b610cb8565b005b34801561035d57600080fd5b50610366610dd0565b6040516103739190614796565b60405180910390f35b34801561038857600080fd5b50610391610dd5565b60405161039e9190614394565b60405180910390f35b3480156103b357600080fd5b506103bc610e63565b6040516103c99190614796565b60405180910390f35b3480156103de57600080fd5b506103e7610e70565b6040516103f49190614796565b60405180910390f35b34801561040957600080fd5b50610412610e7b565b60405161041f9190614379565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190613a25565b610e8e565b005b34801561045d57600080fd5b5061047860048036038101906104739190613b7b565b610eee565b005b34801561048657600080fd5b506104a1600480360381019061049c9190613b3b565b610fff565b6040516104ae9190614796565b60405180910390f35b3480156104c357600080fd5b506104cc6110a4565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613a25565b611176565b005b34801561050357600080fd5b5061050c611196565b005b34801561051a57600080fd5b50610523611285565b6040516105309190614796565b60405180910390f35b610553600480360381019061054e9190613cdf565b61128a565b005b34801561056157600080fd5b5061056a6114b4565b6040516105779190614796565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a29190613cdf565b6114ba565b6040516105b49190614796565b60405180910390f35b3480156105c957600080fd5b506105d261152b565b005b3480156105e057600080fd5b506105e961161a565b005b3480156105f757600080fd5b50610612600480360381019061060d9190613c96565b61175f565b005b34801561062057600080fd5b5061063b600480360381019061063691906139b8565b6117f5565b6040516106489190614796565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190613cdf565b61180d565b60405161068591906142f0565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b091906139b8565b6118bf565b6040516106c29190614796565b60405180910390f35b3480156106d757600080fd5b506106e0611977565b005b3480156106ee57600080fd5b506106f76119ff565b6040516107049190614796565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f91906139b8565b611a0a565b6040516107419190614357565b60405180910390f35b34801561075657600080fd5b5061075f611ab8565b60405161076c91906142f0565b60405180910390f35b34801561078157600080fd5b5061078a611ae2565b6040516107979190614394565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c29190613bc4565b611b74565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190613afb565b611c8c565b005b3480156107fe57600080fd5b50610807611e0d565b005b34801561081557600080fd5b50610830600480360381019061082b9190613a78565b611f52565b005b61084c60048036038101906108479190613cdf565b611fb4565b005b34801561085a57600080fd5b5061087560048036038101906108709190613cdf565b612284565b6040516108829190614394565b60405180910390f35b34801561089757600080fd5b506108b260048036038101906108ad91906139b8565b61232b565b6040516108bf9190614379565b60405180910390f35b3480156108d457600080fd5b506108ef60048036038101906108ea91906139e5565b61234b565b6040516108fc9190614379565b60405180910390f35b34801561091157600080fd5b5061091a6123df565b6040516109279190614379565b60405180910390f35b34801561093c57600080fd5b50610957600480360381019061095291906139b8565b6123f2565b005b34801561096557600080fd5b5061096e6124ea565b60405161097b9190614796565b60405180910390f35b34801561099057600080fd5b506109996124f0565b6040516109a69190614796565b60405180910390f35b3480156109bb57600080fd5b506109d660048036038101906109d19190613c96565b6124f6565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4b5750610a4a8261258c565b5b9050919050565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb906143b6565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610b67610e63565b905060005b82811015610b9c57610b89338284610b84919061490c565b61266e565b8080610b9490614b3a565b915050610b6c565b505050565b606060008054610bb090614ad7565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdc90614ad7565b8015610c295780601f10610bfe57610100808354040283529160200191610c29565b820191906000526020600020905b815481529060010190602001808311610c0c57829003601f168201915b5050505050905090565b6000610c3e8261268c565b610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490614616565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cc38261180d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b906146d6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d536126f8565b73ffffffffffffffffffffffffffffffffffffffff161480610d825750610d8181610d7c6126f8565b61234b565b5b610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890614576565b60405180910390fd5b610dcb8383612700565b505050565b600a81565b600b8054610de290614ad7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0e90614ad7565b8015610e5b5780601f10610e3057610100808354040283529160200191610e5b565b820191906000526020600020905b815481529060010190602001808311610e3e57829003601f168201915b505050505081565b6000600880549050905090565b668e1bc9bf04000081565b600e60009054906101000a900460ff1681565b610e9f610e996126f8565b826127b9565b610ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed590614716565b60405180910390fd5b610ee9838383612897565b505050565b610ef66126f8565b73ffffffffffffffffffffffffffffffffffffffff16610f14611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190614636565b60405180910390fd5b60005b8151811015610ffb576001600f6000848481518110610f8f57610f8e614c70565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ff390614b3a565b915050610f6d565b5050565b600061100a836118bf565b821061104b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611042906143d6565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6110ac6126f8565b73ffffffffffffffffffffffffffffffffffffffff166110ca611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790614636565b60405180910390fd5b600047905061112d611ab8565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611172573d6000803e3d6000fd5b5050565b61119183838360405180602001604052806000815250611f52565b505050565b61119e6126f8565b73ffffffffffffffffffffffffffffffffffffffff166111bc611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120990614636565b60405180910390fd5b60011515600e60009054906101000a900460ff16151514611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90614696565b60405180910390fd5b6000600e60006101000a81548160ff021916908315150217905550565b601481565b60011515600e60019054906101000a900460ff161515146112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d7906146b6565b60405180910390fd5b60008111611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90614476565b60405180910390fd5b6014811115611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e906146f6565b60405180910390fd5b61270f61138482611376610e63565b612af390919063ffffffff16565b11156113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc906145d6565b60405180910390fd5b346113e08266b1a2bc2ec50000612b0990919063ffffffff16565b1115611421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141890614516565b60405180910390fd5b600061142b610e63565b905060005b828110156114af5761144d338284611448919061490c565b61266e565b8082611459919061490c565b3373ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe60405160405180910390a380806114a790614b3a565b915050611430565b505050565b600d5481565b60006114c4610e63565b8210611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90614736565b60405180910390fd5b6008828154811061151957611518614c70565b5b90600052602060002001549050919050565b6115336126f8565b73ffffffffffffffffffffffffffffffffffffffff16611551611ab8565b73ffffffffffffffffffffffffffffffffffffffff16146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90614636565b60405180910390fd5b60011515600e60019054906101000a900460ff161515146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f490614756565b60405180910390fd5b6000600e60016101000a81548160ff021916908315150217905550565b6116226126f8565b73ffffffffffffffffffffffffffffffffffffffff16611640611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90614636565b60405180910390fd5b60001515600e60009054906101000a900460ff161515146116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390614776565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514611742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173990614436565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b6117676126f8565b73ffffffffffffffffffffffffffffffffffffffff16611785611ab8565b73ffffffffffffffffffffffffffffffffffffffff16146117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d290614636565b60405180910390fd5b80600c90805190602001906117f1929190613690565b5050565b60106020528060005260406000206000915090505481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad906145b6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192790614596565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61197f6126f8565b73ffffffffffffffffffffffffffffffffffffffff1661199d611ab8565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614636565b60405180910390fd5b6119fd6000612b1f565b565b66b1a2bc2ec5000081565b60606000611a17836118bf565b905060008167ffffffffffffffff811115611a3557611a34614c9f565b5b604051908082528060200260200182016040528015611a635781602001602082028036833780820191505090505b50905060005b82811015611aad57611a7b8582610fff565b828281518110611a8e57611a8d614c70565b5b6020026020010181815250508080611aa590614b3a565b915050611a69565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611af190614ad7565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1d90614ad7565b8015611b6a5780601f10611b3f57610100808354040283529160200191611b6a565b820191906000526020600020905b815481529060010190602001808311611b4d57829003601f168201915b5050505050905090565b611b7c6126f8565b73ffffffffffffffffffffffffffffffffffffffff16611b9a611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be790614636565b60405180910390fd5b60005b8251811015611c8757818181518110611c0f57611c0e614c70565b5b602002602001015160106000858481518110611c2e57611c2d614c70565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611c7f90614b3a565b915050611bf3565b505050565b611c946126f8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf9906144b6565b60405180910390fd5b8060056000611d0f6126f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dbc6126f8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e019190614379565b60405180910390a35050565b611e156126f8565b73ffffffffffffffffffffffffffffffffffffffff16611e33611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8090614636565b60405180910390fd5b60001515600e60009054906101000a900460ff16151514611edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed690614776565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c90614436565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b611f63611f5d6126f8565b836127b9565b611fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9990614716565b60405180910390fd5b611fae84848484612be5565b50505050565b60011515600e60009054906101000a900460ff1615151461200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190614556565b60405180910390fd5b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461209d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612094906144d6565b60405180910390fd5b600081116120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d790614476565b60405180910390fd5b600a811115612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b906146f6565b60405180910390fd5b6103e861213c82600d54612af390919063ffffffff16565b111561217d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612174906144f6565b60405180910390fd5b3461219882668e1bc9bf040000612b0990919063ffffffff16565b11156121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090614516565b60405180910390fd5b60006121e3610e63565b905060005b8281101561227f57612205338284612200919061490c565b61266e565b8082612211919061490c565b3373ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe60405160405180910390a3600d600081548092919061226790614b3a565b9190505550808061227790614b3a565b9150506121e8565b505050565b606061228f8261268c565b6122ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c590614676565b60405180910390fd5b60006122d8612c41565b905060008151116122f85760405180602001604052806000815250612323565b8061230284612cd3565b6040516020016123139291906142c1565b6040516020818303038152906040525b915050919050565b600f6020528060005260406000206000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60019054906101000a900460ff1681565b6123fa6126f8565b73ffffffffffffffffffffffffffffffffffffffff16612418611ab8565b73ffffffffffffffffffffffffffffffffffffffff161461246e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246590614636565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d590614416565b60405180910390fd5b6124e781612b1f565b50565b61270f81565b6103e881565b6124fe6126f8565b73ffffffffffffffffffffffffffffffffffffffff1661251c611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614612572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256990614636565b60405180910390fd5b80600b9080519060200190612588929190613690565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061265757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612667575061266682612e34565b5b9050919050565b612688828260405180602001604052806000815250612e9e565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127738361180d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127c48261268c565b612803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fa90614536565b60405180910390fd5b600061280e8361180d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061287d57508373ffffffffffffffffffffffffffffffffffffffff1661286584610c33565b73ffffffffffffffffffffffffffffffffffffffff16145b8061288e575061288d818561234b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128b78261180d565b73ffffffffffffffffffffffffffffffffffffffff161461290d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290490614656565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561297d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297490614496565b60405180910390fd5b612988838383612ef9565b612993600082612700565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129e391906149ed565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a3a919061490c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183612b01919061490c565b905092915050565b60008183612b179190614993565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bf0848484612897565b612bfc8484848461300d565b612c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c32906143f6565b60405180910390fd5b50505050565b6060600c8054612c5090614ad7565b80601f0160208091040260200160405190810160405280929190818152602001828054612c7c90614ad7565b8015612cc95780601f10612c9e57610100808354040283529160200191612cc9565b820191906000526020600020905b815481529060010190602001808311612cac57829003601f168201915b5050505050905090565b60606000821415612d1b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e2f565b600082905060005b60008214612d4d578080612d3690614b3a565b915050600a82612d469190614962565b9150612d23565b60008167ffffffffffffffff811115612d6957612d68614c9f565b5b6040519080825280601f01601f191660200182016040528015612d9b5781602001600182028036833780820191505090505b5090505b60008514612e2857600182612db491906149ed565b9150600a85612dc39190614b83565b6030612dcf919061490c565b60f81b818381518110612de557612de4614c70565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e219190614962565b9450612d9f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ea883836131a4565b612eb5600084848461300d565b612ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eeb906143f6565b60405180910390fd5b505050565b612f04838383613372565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f4757612f4281613377565b612f86565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f8557612f8483826133c0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fc957612fc48161352d565b613008565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130075761300682826135fe565b5b5b505050565b600061302e8473ffffffffffffffffffffffffffffffffffffffff1661367d565b15613197578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130576126f8565b8786866040518563ffffffff1660e01b8152600401613079949392919061430b565b602060405180830381600087803b15801561309357600080fd5b505af19250505080156130c457506040513d601f19601f820116820180604052508101906130c19190613c69565b60015b613147573d80600081146130f4576040519150601f19603f3d011682016040523d82523d6000602084013e6130f9565b606091505b5060008151141561313f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613136906143f6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061319c565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320b906145f6565b60405180910390fd5b61321d8161268c565b1561325d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325490614456565b60405180910390fd5b61326960008383612ef9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132b9919061490c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016133cd846118bf565b6133d791906149ed565b90506000600760008481526020019081526020016000205490508181146134bc576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061354191906149ed565b905060006009600084815260200190815260200160002054905060006008838154811061357157613570614c70565b5b90600052602060002001549050806008838154811061359357613592614c70565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806135e2576135e1614c41565b5b6001900381819060005260206000200160009055905550505050565b6000613609836118bf565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461369c90614ad7565b90600052602060002090601f0160209004810192826136be5760008555613705565b82601f106136d757805160ff1916838001178555613705565b82800160010185558215613705579182015b828111156137045782518255916020019190600101906136e9565b5b5090506137129190613716565b5090565b5b8082111561372f576000816000905550600101613717565b5090565b6000613746613741846147d6565b6147b1565b9050808382526020820190508285602086028201111561376957613768614cd3565b5b60005b85811015613799578161377f8882613897565b84526020840193506020830192505060018101905061376c565b5050509392505050565b60006137b66137b184614802565b6147b1565b905080838252602082019050828560208602820111156137d9576137d8614cd3565b5b60005b8581101561380957816137ef88826139a3565b8452602084019350602083019250506001810190506137dc565b5050509392505050565b60006138266138218461482e565b6147b1565b90508281526020810184848401111561384257613841614cd8565b5b61384d848285614a95565b509392505050565b60006138686138638461485f565b6147b1565b90508281526020810184848401111561388457613883614cd8565b5b61388f848285614a95565b509392505050565b6000813590506138a6816154ea565b92915050565b600082601f8301126138c1576138c0614cce565b5b81356138d1848260208601613733565b91505092915050565b600082601f8301126138ef576138ee614cce565b5b81356138ff8482602086016137a3565b91505092915050565b60008135905061391781615501565b92915050565b60008135905061392c81615518565b92915050565b60008151905061394181615518565b92915050565b600082601f83011261395c5761395b614cce565b5b813561396c848260208601613813565b91505092915050565b600082601f83011261398a57613989614cce565b5b813561399a848260208601613855565b91505092915050565b6000813590506139b28161552f565b92915050565b6000602082840312156139ce576139cd614ce2565b5b60006139dc84828501613897565b91505092915050565b600080604083850312156139fc576139fb614ce2565b5b6000613a0a85828601613897565b9250506020613a1b85828601613897565b9150509250929050565b600080600060608486031215613a3e57613a3d614ce2565b5b6000613a4c86828701613897565b9350506020613a5d86828701613897565b9250506040613a6e868287016139a3565b9150509250925092565b60008060008060808587031215613a9257613a91614ce2565b5b6000613aa087828801613897565b9450506020613ab187828801613897565b9350506040613ac2878288016139a3565b925050606085013567ffffffffffffffff811115613ae357613ae2614cdd565b5b613aef87828801613947565b91505092959194509250565b60008060408385031215613b1257613b11614ce2565b5b6000613b2085828601613897565b9250506020613b3185828601613908565b9150509250929050565b60008060408385031215613b5257613b51614ce2565b5b6000613b6085828601613897565b9250506020613b71858286016139a3565b9150509250929050565b600060208284031215613b9157613b90614ce2565b5b600082013567ffffffffffffffff811115613baf57613bae614cdd565b5b613bbb848285016138ac565b91505092915050565b60008060408385031215613bdb57613bda614ce2565b5b600083013567ffffffffffffffff811115613bf957613bf8614cdd565b5b613c05858286016138ac565b925050602083013567ffffffffffffffff811115613c2657613c25614cdd565b5b613c32858286016138da565b9150509250929050565b600060208284031215613c5257613c51614ce2565b5b6000613c608482850161391d565b91505092915050565b600060208284031215613c7f57613c7e614ce2565b5b6000613c8d84828501613932565b91505092915050565b600060208284031215613cac57613cab614ce2565b5b600082013567ffffffffffffffff811115613cca57613cc9614cdd565b5b613cd684828501613975565b91505092915050565b600060208284031215613cf557613cf4614ce2565b5b6000613d03848285016139a3565b91505092915050565b6000613d1883836142a3565b60208301905092915050565b613d2d81614a21565b82525050565b6000613d3e826148a0565b613d4881856148ce565b9350613d5383614890565b8060005b83811015613d84578151613d6b8882613d0c565b9750613d76836148c1565b925050600181019050613d57565b5085935050505092915050565b613d9a81614a33565b82525050565b6000613dab826148ab565b613db581856148df565b9350613dc5818560208601614aa4565b613dce81614ce7565b840191505092915050565b6000613de4826148b6565b613dee81856148f0565b9350613dfe818560208601614aa4565b613e0781614ce7565b840191505092915050565b6000613e1d826148b6565b613e278185614901565b9350613e37818560208601614aa4565b80840191505092915050565b6000613e506010836148f0565b9150613e5b82614cf8565b602082019050919050565b6000613e73602b836148f0565b9150613e7e82614d21565b604082019050919050565b6000613e966032836148f0565b9150613ea182614d70565b604082019050919050565b6000613eb96026836148f0565b9150613ec482614dbf565b604082019050919050565b6000613edc600f836148f0565b9150613ee782614e0e565b602082019050919050565b6000613eff601c836148f0565b9150613f0a82614e37565b602082019050919050565b6000613f226021836148f0565b9150613f2d82614e60565b604082019050919050565b6000613f456024836148f0565b9150613f5082614eaf565b604082019050919050565b6000613f686019836148f0565b9150613f7382614efe565b602082019050919050565b6000613f8b601a836148f0565b9150613f9682614f27565b602082019050919050565b6000613fae602c836148f0565b9150613fb982614f50565b604082019050919050565b6000613fd1601f836148f0565b9150613fdc82614f9f565b602082019050919050565b6000613ff4602c836148f0565b9150613fff82614fc8565b604082019050919050565b60006140176026836148f0565b915061402282615017565b604082019050919050565b600061403a6038836148f0565b915061404582615066565b604082019050919050565b600061405d602a836148f0565b9150614068826150b5565b604082019050919050565b60006140806029836148f0565b915061408b82615104565b604082019050919050565b60006140a3602a836148f0565b91506140ae82615153565b604082019050919050565b60006140c66020836148f0565b91506140d1826151a2565b602082019050919050565b60006140e9602c836148f0565b91506140f4826151cb565b604082019050919050565b600061410c600583614901565b91506141178261521a565b600582019050919050565b600061412f6020836148f0565b915061413a82615243565b602082019050919050565b60006141526029836148f0565b915061415d8261526c565b604082019050919050565b6000614175602f836148f0565b9150614180826152bb565b604082019050919050565b60006141986012836148f0565b91506141a38261530a565b602082019050919050565b60006141bb6022836148f0565b91506141c682615333565b604082019050919050565b60006141de6021836148f0565b91506141e982615382565b604082019050919050565b6000614201601b836148f0565b915061420c826153d1565b602082019050919050565b60006142246031836148f0565b915061422f826153fa565b604082019050919050565b6000614247602c836148f0565b915061425282615449565b604082019050919050565b600061426a600e836148f0565b915061427582615498565b602082019050919050565b600061428d6013836148f0565b9150614298826154c1565b602082019050919050565b6142ac81614a8b565b82525050565b6142bb81614a8b565b82525050565b60006142cd8285613e12565b91506142d98284613e12565b91506142e4826140ff565b91508190509392505050565b60006020820190506143056000830184613d24565b92915050565b60006080820190506143206000830187613d24565b61432d6020830186613d24565b61433a60408301856142b2565b818103606083015261434c8184613da0565b905095945050505050565b600060208201905081810360008301526143718184613d33565b905092915050565b600060208201905061438e6000830184613d91565b92915050565b600060208201905081810360008301526143ae8184613dd9565b905092915050565b600060208201905081810360008301526143cf81613e43565b9050919050565b600060208201905081810360008301526143ef81613e66565b9050919050565b6000602082019050818103600083015261440f81613e89565b9050919050565b6000602082019050818103600083015261442f81613eac565b9050919050565b6000602082019050818103600083015261444f81613ecf565b9050919050565b6000602082019050818103600083015261446f81613ef2565b9050919050565b6000602082019050818103600083015261448f81613f15565b9050919050565b600060208201905081810360008301526144af81613f38565b9050919050565b600060208201905081810360008301526144cf81613f5b565b9050919050565b600060208201905081810360008301526144ef81613f7e565b9050919050565b6000602082019050818103600083015261450f81613fa1565b9050919050565b6000602082019050818103600083015261452f81613fc4565b9050919050565b6000602082019050818103600083015261454f81613fe7565b9050919050565b6000602082019050818103600083015261456f8161400a565b9050919050565b6000602082019050818103600083015261458f8161402d565b9050919050565b600060208201905081810360008301526145af81614050565b9050919050565b600060208201905081810360008301526145cf81614073565b9050919050565b600060208201905081810360008301526145ef81614096565b9050919050565b6000602082019050818103600083015261460f816140b9565b9050919050565b6000602082019050818103600083015261462f816140dc565b9050919050565b6000602082019050818103600083015261464f81614122565b9050919050565b6000602082019050818103600083015261466f81614145565b9050919050565b6000602082019050818103600083015261468f81614168565b9050919050565b600060208201905081810360008301526146af8161418b565b9050919050565b600060208201905081810360008301526146cf816141ae565b9050919050565b600060208201905081810360008301526146ef816141d1565b9050919050565b6000602082019050818103600083015261470f816141f4565b9050919050565b6000602082019050818103600083015261472f81614217565b9050919050565b6000602082019050818103600083015261474f8161423a565b9050919050565b6000602082019050818103600083015261476f8161425d565b9050919050565b6000602082019050818103600083015261478f81614280565b9050919050565b60006020820190506147ab60008301846142b2565b92915050565b60006147bb6147cc565b90506147c78282614b09565b919050565b6000604051905090565b600067ffffffffffffffff8211156147f1576147f0614c9f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561481d5761481c614c9f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561484957614848614c9f565b5b61485282614ce7565b9050602081019050919050565b600067ffffffffffffffff82111561487a57614879614c9f565b5b61488382614ce7565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061491782614a8b565b915061492283614a8b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561495757614956614bb4565b5b828201905092915050565b600061496d82614a8b565b915061497883614a8b565b92508261498857614987614be3565b5b828204905092915050565b600061499e82614a8b565b91506149a983614a8b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149e2576149e1614bb4565b5b828202905092915050565b60006149f882614a8b565b9150614a0383614a8b565b925082821015614a1657614a15614bb4565b5b828203905092915050565b6000614a2c82614a6b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ac2578082015181840152602081019050614aa7565b83811115614ad1576000848401525b50505050565b60006002820490506001821680614aef57607f821691505b60208210811415614b0357614b02614c12565b5b50919050565b614b1282614ce7565b810181811067ffffffffffffffff82111715614b3157614b30614c9f565b5b80604052505050565b6000614b4582614a8b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b7857614b77614bb4565b5b600182019050919050565b6000614b8e82614a8b565b9150614b9983614a8b565b925082614ba957614ba8614be3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f7468696e6720746f20636c61696d00000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520697320737461727465640000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4174206c65617374206f6e6520746f6b656e206d757374206265206d696e746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f41646472657373206973206e6f742077686974656c6973746564000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66207072652073616c650000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5072652053616c65206d7573742062652061637469766520746f206d696e742060008201527f746f6b656e730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5072652053616c65206973207061757365640000000000000000000000000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c6520697320706175736564000000000000000000000000000000000000600082015250565b7f5072652053616c65206973207374617274656400000000000000000000000000600082015250565b6154f381614a21565b81146154fe57600080fd5b50565b61550a81614a33565b811461551557600080fd5b50565b61552181614a3f565b811461552c57600080fd5b50565b61553881614a8b565b811461554357600080fd5b5056fea2646970667358221220510298ddf4a8ebff636e49c12795824d07ce646bb8159460e3755cb262d5af8864736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102675760003560e01c806355f804b311610144578063b66a0e5d116100b6578063e985e9c51161007a578063e985e9c5146108c8578063eb8d244414610905578063f2fde38b14610930578063f47c84c514610959578063fad007d814610984578063ffe630b5146109af57610267565b8063b66a0e5d146107f2578063b88d4fde14610809578063b988477214610832578063c87b56dd1461084e578063d144a39a1461088b57610267565b80637f205a74116101085780637f205a74146106e25780638462151c1461070d5780638da5cb5b1461074a57806395d89b41146107755780639d7121f1146107a0578063a22cb465146107c957610267565b806355f804b3146105eb5780635c63ed2e146106145780636352211e1461065157806370a082311461068e578063715018a6146106cb57610267565b80632bf04304116101dd57806347ed7fc0116101a157806347ed7fc01461050e5780634875bccb146105395780634d4d2736146105555780634f6ccce71461058057806355367ba9146105bd57806355dd574c146105d457610267565b80632bf04304146104515780632f745c591461047a5780633ccfd60b146104b757806342842e0e146104ce5780634357da58146104f757610267565b80630d10b4a11161022f5780630d10b4a1146103515780630f7309e81461037c57806318160ddd146103a7578063193402bb146103d25780631f0234d8146103fd57806323b872dd1461042857610267565b806301ffc9a71461026c578063036a7a19146102a957806306fdde03146102c0578063081812fc146102eb578063095ea7b314610328575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613c3c565b6109d8565b6040516102a09190614379565b60405180910390f35b3480156102b557600080fd5b506102be610a52565b005b3480156102cc57600080fd5b506102d5610ba1565b6040516102e29190614394565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190613cdf565b610c33565b60405161031f91906142f0565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190613b3b565b610cb8565b005b34801561035d57600080fd5b50610366610dd0565b6040516103739190614796565b60405180910390f35b34801561038857600080fd5b50610391610dd5565b60405161039e9190614394565b60405180910390f35b3480156103b357600080fd5b506103bc610e63565b6040516103c99190614796565b60405180910390f35b3480156103de57600080fd5b506103e7610e70565b6040516103f49190614796565b60405180910390f35b34801561040957600080fd5b50610412610e7b565b60405161041f9190614379565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190613a25565b610e8e565b005b34801561045d57600080fd5b5061047860048036038101906104739190613b7b565b610eee565b005b34801561048657600080fd5b506104a1600480360381019061049c9190613b3b565b610fff565b6040516104ae9190614796565b60405180910390f35b3480156104c357600080fd5b506104cc6110a4565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613a25565b611176565b005b34801561050357600080fd5b5061050c611196565b005b34801561051a57600080fd5b50610523611285565b6040516105309190614796565b60405180910390f35b610553600480360381019061054e9190613cdf565b61128a565b005b34801561056157600080fd5b5061056a6114b4565b6040516105779190614796565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a29190613cdf565b6114ba565b6040516105b49190614796565b60405180910390f35b3480156105c957600080fd5b506105d261152b565b005b3480156105e057600080fd5b506105e961161a565b005b3480156105f757600080fd5b50610612600480360381019061060d9190613c96565b61175f565b005b34801561062057600080fd5b5061063b600480360381019061063691906139b8565b6117f5565b6040516106489190614796565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190613cdf565b61180d565b60405161068591906142f0565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b091906139b8565b6118bf565b6040516106c29190614796565b60405180910390f35b3480156106d757600080fd5b506106e0611977565b005b3480156106ee57600080fd5b506106f76119ff565b6040516107049190614796565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f91906139b8565b611a0a565b6040516107419190614357565b60405180910390f35b34801561075657600080fd5b5061075f611ab8565b60405161076c91906142f0565b60405180910390f35b34801561078157600080fd5b5061078a611ae2565b6040516107979190614394565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c29190613bc4565b611b74565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190613afb565b611c8c565b005b3480156107fe57600080fd5b50610807611e0d565b005b34801561081557600080fd5b50610830600480360381019061082b9190613a78565b611f52565b005b61084c60048036038101906108479190613cdf565b611fb4565b005b34801561085a57600080fd5b5061087560048036038101906108709190613cdf565b612284565b6040516108829190614394565b60405180910390f35b34801561089757600080fd5b506108b260048036038101906108ad91906139b8565b61232b565b6040516108bf9190614379565b60405180910390f35b3480156108d457600080fd5b506108ef60048036038101906108ea91906139e5565b61234b565b6040516108fc9190614379565b60405180910390f35b34801561091157600080fd5b5061091a6123df565b6040516109279190614379565b60405180910390f35b34801561093c57600080fd5b50610957600480360381019061095291906139b8565b6123f2565b005b34801561096557600080fd5b5061096e6124ea565b60405161097b9190614796565b60405180910390f35b34801561099057600080fd5b506109996124f0565b6040516109a69190614796565b60405180910390f35b3480156109bb57600080fd5b506109d660048036038101906109d19190613c96565b6124f6565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4b5750610a4a8261258c565b5b9050919050565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb906143b6565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610b67610e63565b905060005b82811015610b9c57610b89338284610b84919061490c565b61266e565b8080610b9490614b3a565b915050610b6c565b505050565b606060008054610bb090614ad7565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdc90614ad7565b8015610c295780601f10610bfe57610100808354040283529160200191610c29565b820191906000526020600020905b815481529060010190602001808311610c0c57829003601f168201915b5050505050905090565b6000610c3e8261268c565b610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490614616565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cc38261180d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b906146d6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d536126f8565b73ffffffffffffffffffffffffffffffffffffffff161480610d825750610d8181610d7c6126f8565b61234b565b5b610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890614576565b60405180910390fd5b610dcb8383612700565b505050565b600a81565b600b8054610de290614ad7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0e90614ad7565b8015610e5b5780601f10610e3057610100808354040283529160200191610e5b565b820191906000526020600020905b815481529060010190602001808311610e3e57829003601f168201915b505050505081565b6000600880549050905090565b668e1bc9bf04000081565b600e60009054906101000a900460ff1681565b610e9f610e996126f8565b826127b9565b610ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed590614716565b60405180910390fd5b610ee9838383612897565b505050565b610ef66126f8565b73ffffffffffffffffffffffffffffffffffffffff16610f14611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190614636565b60405180910390fd5b60005b8151811015610ffb576001600f6000848481518110610f8f57610f8e614c70565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ff390614b3a565b915050610f6d565b5050565b600061100a836118bf565b821061104b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611042906143d6565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6110ac6126f8565b73ffffffffffffffffffffffffffffffffffffffff166110ca611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790614636565b60405180910390fd5b600047905061112d611ab8565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611172573d6000803e3d6000fd5b5050565b61119183838360405180602001604052806000815250611f52565b505050565b61119e6126f8565b73ffffffffffffffffffffffffffffffffffffffff166111bc611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120990614636565b60405180910390fd5b60011515600e60009054906101000a900460ff16151514611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90614696565b60405180910390fd5b6000600e60006101000a81548160ff021916908315150217905550565b601481565b60011515600e60019054906101000a900460ff161515146112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d7906146b6565b60405180910390fd5b60008111611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90614476565b60405180910390fd5b6014811115611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e906146f6565b60405180910390fd5b61270f61138482611376610e63565b612af390919063ffffffff16565b11156113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc906145d6565b60405180910390fd5b346113e08266b1a2bc2ec50000612b0990919063ffffffff16565b1115611421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141890614516565b60405180910390fd5b600061142b610e63565b905060005b828110156114af5761144d338284611448919061490c565b61266e565b8082611459919061490c565b3373ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe60405160405180910390a380806114a790614b3a565b915050611430565b505050565b600d5481565b60006114c4610e63565b8210611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90614736565b60405180910390fd5b6008828154811061151957611518614c70565b5b90600052602060002001549050919050565b6115336126f8565b73ffffffffffffffffffffffffffffffffffffffff16611551611ab8565b73ffffffffffffffffffffffffffffffffffffffff16146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90614636565b60405180910390fd5b60011515600e60019054906101000a900460ff161515146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f490614756565b60405180910390fd5b6000600e60016101000a81548160ff021916908315150217905550565b6116226126f8565b73ffffffffffffffffffffffffffffffffffffffff16611640611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90614636565b60405180910390fd5b60001515600e60009054906101000a900460ff161515146116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390614776565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514611742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173990614436565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b6117676126f8565b73ffffffffffffffffffffffffffffffffffffffff16611785611ab8565b73ffffffffffffffffffffffffffffffffffffffff16146117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d290614636565b60405180910390fd5b80600c90805190602001906117f1929190613690565b5050565b60106020528060005260406000206000915090505481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad906145b6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192790614596565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61197f6126f8565b73ffffffffffffffffffffffffffffffffffffffff1661199d611ab8565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614636565b60405180910390fd5b6119fd6000612b1f565b565b66b1a2bc2ec5000081565b60606000611a17836118bf565b905060008167ffffffffffffffff811115611a3557611a34614c9f565b5b604051908082528060200260200182016040528015611a635781602001602082028036833780820191505090505b50905060005b82811015611aad57611a7b8582610fff565b828281518110611a8e57611a8d614c70565b5b6020026020010181815250508080611aa590614b3a565b915050611a69565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611af190614ad7565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1d90614ad7565b8015611b6a5780601f10611b3f57610100808354040283529160200191611b6a565b820191906000526020600020905b815481529060010190602001808311611b4d57829003601f168201915b5050505050905090565b611b7c6126f8565b73ffffffffffffffffffffffffffffffffffffffff16611b9a611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be790614636565b60405180910390fd5b60005b8251811015611c8757818181518110611c0f57611c0e614c70565b5b602002602001015160106000858481518110611c2e57611c2d614c70565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611c7f90614b3a565b915050611bf3565b505050565b611c946126f8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf9906144b6565b60405180910390fd5b8060056000611d0f6126f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dbc6126f8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e019190614379565b60405180910390a35050565b611e156126f8565b73ffffffffffffffffffffffffffffffffffffffff16611e33611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8090614636565b60405180910390fd5b60001515600e60009054906101000a900460ff16151514611edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed690614776565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c90614436565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b611f63611f5d6126f8565b836127b9565b611fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9990614716565b60405180910390fd5b611fae84848484612be5565b50505050565b60011515600e60009054906101000a900460ff1615151461200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190614556565b60405180910390fd5b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461209d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612094906144d6565b60405180910390fd5b600081116120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d790614476565b60405180910390fd5b600a811115612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b906146f6565b60405180910390fd5b6103e861213c82600d54612af390919063ffffffff16565b111561217d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612174906144f6565b60405180910390fd5b3461219882668e1bc9bf040000612b0990919063ffffffff16565b11156121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090614516565b60405180910390fd5b60006121e3610e63565b905060005b8281101561227f57612205338284612200919061490c565b61266e565b8082612211919061490c565b3373ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe60405160405180910390a3600d600081548092919061226790614b3a565b9190505550808061227790614b3a565b9150506121e8565b505050565b606061228f8261268c565b6122ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c590614676565b60405180910390fd5b60006122d8612c41565b905060008151116122f85760405180602001604052806000815250612323565b8061230284612cd3565b6040516020016123139291906142c1565b6040516020818303038152906040525b915050919050565b600f6020528060005260406000206000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60019054906101000a900460ff1681565b6123fa6126f8565b73ffffffffffffffffffffffffffffffffffffffff16612418611ab8565b73ffffffffffffffffffffffffffffffffffffffff161461246e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246590614636565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d590614416565b60405180910390fd5b6124e781612b1f565b50565b61270f81565b6103e881565b6124fe6126f8565b73ffffffffffffffffffffffffffffffffffffffff1661251c611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614612572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256990614636565b60405180910390fd5b80600b9080519060200190612588929190613690565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061265757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612667575061266682612e34565b5b9050919050565b612688828260405180602001604052806000815250612e9e565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127738361180d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127c48261268c565b612803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fa90614536565b60405180910390fd5b600061280e8361180d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061287d57508373ffffffffffffffffffffffffffffffffffffffff1661286584610c33565b73ffffffffffffffffffffffffffffffffffffffff16145b8061288e575061288d818561234b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128b78261180d565b73ffffffffffffffffffffffffffffffffffffffff161461290d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290490614656565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561297d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297490614496565b60405180910390fd5b612988838383612ef9565b612993600082612700565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129e391906149ed565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a3a919061490c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183612b01919061490c565b905092915050565b60008183612b179190614993565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bf0848484612897565b612bfc8484848461300d565b612c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c32906143f6565b60405180910390fd5b50505050565b6060600c8054612c5090614ad7565b80601f0160208091040260200160405190810160405280929190818152602001828054612c7c90614ad7565b8015612cc95780601f10612c9e57610100808354040283529160200191612cc9565b820191906000526020600020905b815481529060010190602001808311612cac57829003601f168201915b5050505050905090565b60606000821415612d1b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e2f565b600082905060005b60008214612d4d578080612d3690614b3a565b915050600a82612d469190614962565b9150612d23565b60008167ffffffffffffffff811115612d6957612d68614c9f565b5b6040519080825280601f01601f191660200182016040528015612d9b5781602001600182028036833780820191505090505b5090505b60008514612e2857600182612db491906149ed565b9150600a85612dc39190614b83565b6030612dcf919061490c565b60f81b818381518110612de557612de4614c70565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e219190614962565b9450612d9f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ea883836131a4565b612eb5600084848461300d565b612ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eeb906143f6565b60405180910390fd5b505050565b612f04838383613372565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f4757612f4281613377565b612f86565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f8557612f8483826133c0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fc957612fc48161352d565b613008565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130075761300682826135fe565b5b5b505050565b600061302e8473ffffffffffffffffffffffffffffffffffffffff1661367d565b15613197578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130576126f8565b8786866040518563ffffffff1660e01b8152600401613079949392919061430b565b602060405180830381600087803b15801561309357600080fd5b505af19250505080156130c457506040513d601f19601f820116820180604052508101906130c19190613c69565b60015b613147573d80600081146130f4576040519150601f19603f3d011682016040523d82523d6000602084013e6130f9565b606091505b5060008151141561313f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613136906143f6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061319c565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320b906145f6565b60405180910390fd5b61321d8161268c565b1561325d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325490614456565b60405180910390fd5b61326960008383612ef9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132b9919061490c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016133cd846118bf565b6133d791906149ed565b90506000600760008481526020019081526020016000205490508181146134bc576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061354191906149ed565b905060006009600084815260200190815260200160002054905060006008838154811061357157613570614c70565b5b90600052602060002001549050806008838154811061359357613592614c70565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806135e2576135e1614c41565b5b6001900381819060005260206000200160009055905550505050565b6000613609836118bf565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461369c90614ad7565b90600052602060002090601f0160209004810192826136be5760008555613705565b82601f106136d757805160ff1916838001178555613705565b82800160010185558215613705579182015b828111156137045782518255916020019190600101906136e9565b5b5090506137129190613716565b5090565b5b8082111561372f576000816000905550600101613717565b5090565b6000613746613741846147d6565b6147b1565b9050808382526020820190508285602086028201111561376957613768614cd3565b5b60005b85811015613799578161377f8882613897565b84526020840193506020830192505060018101905061376c565b5050509392505050565b60006137b66137b184614802565b6147b1565b905080838252602082019050828560208602820111156137d9576137d8614cd3565b5b60005b8581101561380957816137ef88826139a3565b8452602084019350602083019250506001810190506137dc565b5050509392505050565b60006138266138218461482e565b6147b1565b90508281526020810184848401111561384257613841614cd8565b5b61384d848285614a95565b509392505050565b60006138686138638461485f565b6147b1565b90508281526020810184848401111561388457613883614cd8565b5b61388f848285614a95565b509392505050565b6000813590506138a6816154ea565b92915050565b600082601f8301126138c1576138c0614cce565b5b81356138d1848260208601613733565b91505092915050565b600082601f8301126138ef576138ee614cce565b5b81356138ff8482602086016137a3565b91505092915050565b60008135905061391781615501565b92915050565b60008135905061392c81615518565b92915050565b60008151905061394181615518565b92915050565b600082601f83011261395c5761395b614cce565b5b813561396c848260208601613813565b91505092915050565b600082601f83011261398a57613989614cce565b5b813561399a848260208601613855565b91505092915050565b6000813590506139b28161552f565b92915050565b6000602082840312156139ce576139cd614ce2565b5b60006139dc84828501613897565b91505092915050565b600080604083850312156139fc576139fb614ce2565b5b6000613a0a85828601613897565b9250506020613a1b85828601613897565b9150509250929050565b600080600060608486031215613a3e57613a3d614ce2565b5b6000613a4c86828701613897565b9350506020613a5d86828701613897565b9250506040613a6e868287016139a3565b9150509250925092565b60008060008060808587031215613a9257613a91614ce2565b5b6000613aa087828801613897565b9450506020613ab187828801613897565b9350506040613ac2878288016139a3565b925050606085013567ffffffffffffffff811115613ae357613ae2614cdd565b5b613aef87828801613947565b91505092959194509250565b60008060408385031215613b1257613b11614ce2565b5b6000613b2085828601613897565b9250506020613b3185828601613908565b9150509250929050565b60008060408385031215613b5257613b51614ce2565b5b6000613b6085828601613897565b9250506020613b71858286016139a3565b9150509250929050565b600060208284031215613b9157613b90614ce2565b5b600082013567ffffffffffffffff811115613baf57613bae614cdd565b5b613bbb848285016138ac565b91505092915050565b60008060408385031215613bdb57613bda614ce2565b5b600083013567ffffffffffffffff811115613bf957613bf8614cdd565b5b613c05858286016138ac565b925050602083013567ffffffffffffffff811115613c2657613c25614cdd565b5b613c32858286016138da565b9150509250929050565b600060208284031215613c5257613c51614ce2565b5b6000613c608482850161391d565b91505092915050565b600060208284031215613c7f57613c7e614ce2565b5b6000613c8d84828501613932565b91505092915050565b600060208284031215613cac57613cab614ce2565b5b600082013567ffffffffffffffff811115613cca57613cc9614cdd565b5b613cd684828501613975565b91505092915050565b600060208284031215613cf557613cf4614ce2565b5b6000613d03848285016139a3565b91505092915050565b6000613d1883836142a3565b60208301905092915050565b613d2d81614a21565b82525050565b6000613d3e826148a0565b613d4881856148ce565b9350613d5383614890565b8060005b83811015613d84578151613d6b8882613d0c565b9750613d76836148c1565b925050600181019050613d57565b5085935050505092915050565b613d9a81614a33565b82525050565b6000613dab826148ab565b613db581856148df565b9350613dc5818560208601614aa4565b613dce81614ce7565b840191505092915050565b6000613de4826148b6565b613dee81856148f0565b9350613dfe818560208601614aa4565b613e0781614ce7565b840191505092915050565b6000613e1d826148b6565b613e278185614901565b9350613e37818560208601614aa4565b80840191505092915050565b6000613e506010836148f0565b9150613e5b82614cf8565b602082019050919050565b6000613e73602b836148f0565b9150613e7e82614d21565b604082019050919050565b6000613e966032836148f0565b9150613ea182614d70565b604082019050919050565b6000613eb96026836148f0565b9150613ec482614dbf565b604082019050919050565b6000613edc600f836148f0565b9150613ee782614e0e565b602082019050919050565b6000613eff601c836148f0565b9150613f0a82614e37565b602082019050919050565b6000613f226021836148f0565b9150613f2d82614e60565b604082019050919050565b6000613f456024836148f0565b9150613f5082614eaf565b604082019050919050565b6000613f686019836148f0565b9150613f7382614efe565b602082019050919050565b6000613f8b601a836148f0565b9150613f9682614f27565b602082019050919050565b6000613fae602c836148f0565b9150613fb982614f50565b604082019050919050565b6000613fd1601f836148f0565b9150613fdc82614f9f565b602082019050919050565b6000613ff4602c836148f0565b9150613fff82614fc8565b604082019050919050565b60006140176026836148f0565b915061402282615017565b604082019050919050565b600061403a6038836148f0565b915061404582615066565b604082019050919050565b600061405d602a836148f0565b9150614068826150b5565b604082019050919050565b60006140806029836148f0565b915061408b82615104565b604082019050919050565b60006140a3602a836148f0565b91506140ae82615153565b604082019050919050565b60006140c66020836148f0565b91506140d1826151a2565b602082019050919050565b60006140e9602c836148f0565b91506140f4826151cb565b604082019050919050565b600061410c600583614901565b91506141178261521a565b600582019050919050565b600061412f6020836148f0565b915061413a82615243565b602082019050919050565b60006141526029836148f0565b915061415d8261526c565b604082019050919050565b6000614175602f836148f0565b9150614180826152bb565b604082019050919050565b60006141986012836148f0565b91506141a38261530a565b602082019050919050565b60006141bb6022836148f0565b91506141c682615333565b604082019050919050565b60006141de6021836148f0565b91506141e982615382565b604082019050919050565b6000614201601b836148f0565b915061420c826153d1565b602082019050919050565b60006142246031836148f0565b915061422f826153fa565b604082019050919050565b6000614247602c836148f0565b915061425282615449565b604082019050919050565b600061426a600e836148f0565b915061427582615498565b602082019050919050565b600061428d6013836148f0565b9150614298826154c1565b602082019050919050565b6142ac81614a8b565b82525050565b6142bb81614a8b565b82525050565b60006142cd8285613e12565b91506142d98284613e12565b91506142e4826140ff565b91508190509392505050565b60006020820190506143056000830184613d24565b92915050565b60006080820190506143206000830187613d24565b61432d6020830186613d24565b61433a60408301856142b2565b818103606083015261434c8184613da0565b905095945050505050565b600060208201905081810360008301526143718184613d33565b905092915050565b600060208201905061438e6000830184613d91565b92915050565b600060208201905081810360008301526143ae8184613dd9565b905092915050565b600060208201905081810360008301526143cf81613e43565b9050919050565b600060208201905081810360008301526143ef81613e66565b9050919050565b6000602082019050818103600083015261440f81613e89565b9050919050565b6000602082019050818103600083015261442f81613eac565b9050919050565b6000602082019050818103600083015261444f81613ecf565b9050919050565b6000602082019050818103600083015261446f81613ef2565b9050919050565b6000602082019050818103600083015261448f81613f15565b9050919050565b600060208201905081810360008301526144af81613f38565b9050919050565b600060208201905081810360008301526144cf81613f5b565b9050919050565b600060208201905081810360008301526144ef81613f7e565b9050919050565b6000602082019050818103600083015261450f81613fa1565b9050919050565b6000602082019050818103600083015261452f81613fc4565b9050919050565b6000602082019050818103600083015261454f81613fe7565b9050919050565b6000602082019050818103600083015261456f8161400a565b9050919050565b6000602082019050818103600083015261458f8161402d565b9050919050565b600060208201905081810360008301526145af81614050565b9050919050565b600060208201905081810360008301526145cf81614073565b9050919050565b600060208201905081810360008301526145ef81614096565b9050919050565b6000602082019050818103600083015261460f816140b9565b9050919050565b6000602082019050818103600083015261462f816140dc565b9050919050565b6000602082019050818103600083015261464f81614122565b9050919050565b6000602082019050818103600083015261466f81614145565b9050919050565b6000602082019050818103600083015261468f81614168565b9050919050565b600060208201905081810360008301526146af8161418b565b9050919050565b600060208201905081810360008301526146cf816141ae565b9050919050565b600060208201905081810360008301526146ef816141d1565b9050919050565b6000602082019050818103600083015261470f816141f4565b9050919050565b6000602082019050818103600083015261472f81614217565b9050919050565b6000602082019050818103600083015261474f8161423a565b9050919050565b6000602082019050818103600083015261476f8161425d565b9050919050565b6000602082019050818103600083015261478f81614280565b9050919050565b60006020820190506147ab60008301846142b2565b92915050565b60006147bb6147cc565b90506147c78282614b09565b919050565b6000604051905090565b600067ffffffffffffffff8211156147f1576147f0614c9f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561481d5761481c614c9f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561484957614848614c9f565b5b61485282614ce7565b9050602081019050919050565b600067ffffffffffffffff82111561487a57614879614c9f565b5b61488382614ce7565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061491782614a8b565b915061492283614a8b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561495757614956614bb4565b5b828201905092915050565b600061496d82614a8b565b915061497883614a8b565b92508261498857614987614be3565b5b828204905092915050565b600061499e82614a8b565b91506149a983614a8b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149e2576149e1614bb4565b5b828202905092915050565b60006149f882614a8b565b9150614a0383614a8b565b925082821015614a1657614a15614bb4565b5b828203905092915050565b6000614a2c82614a6b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ac2578082015181840152602081019050614aa7565b83811115614ad1576000848401525b50505050565b60006002820490506001821680614aef57607f821691505b60208210811415614b0357614b02614c12565b5b50919050565b614b1282614ce7565b810181811067ffffffffffffffff82111715614b3157614b30614c9f565b5b80604052505050565b6000614b4582614a8b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b7857614b77614bb4565b5b600182019050919050565b6000614b8e82614a8b565b9150614b9983614a8b565b925082614ba957614ba8614be3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f7468696e6720746f20636c61696d00000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520697320737461727465640000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4174206c65617374206f6e6520746f6b656e206d757374206265206d696e746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f41646472657373206973206e6f742077686974656c6973746564000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66207072652073616c650000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5072652053616c65206d7573742062652061637469766520746f206d696e742060008201527f746f6b656e730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5072652053616c65206973207061757365640000000000000000000000000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c6520697320706175736564000000000000000000000000000000000000600082015250565b7f5072652053616c65206973207374617274656400000000000000000000000000600082015250565b6154f381614a21565b81146154fe57600080fd5b50565b61550a81614a33565b811461551557600080fd5b50565b61552181614a3f565b811461552c57600080fd5b50565b61553881614a8b565b811461554357600080fd5b5056fea2646970667358221220510298ddf4a8ebff636e49c12795824d07ce646bb8159460e3755cb262d5af8864736f6c63430008070033
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.