ERC-721
Overview
Max Total Supply
30 Test
Holders
4
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 TestLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WorldOfDypians
Compiler Version
v0.7.0+commit.9e61f92b
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-16 */ // File: @openzeppelin/contracts/utils/Context.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/introspection/IERC165.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity >=0.6.2 <0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol pragma solidity >=0.6.2 <0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol pragma solidity >=0.6.2 <0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity >=0.6.0 <0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File: @openzeppelin/contracts/introspection/ERC165.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ 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) { 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) { 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) { // 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) { 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) { 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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); 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) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @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. 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) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); 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) { require(b > 0, "SafeMath: modulo by zero"); 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) { 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. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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) { 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) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity >=0.6.2 <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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` 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); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = bytes1(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } } // File: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity >=0.6.0 <0.8.0; // import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; // import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; // import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; // import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; // import "@openzeppelin/contracts/utils/Address.sol"; // import "@openzeppelin/contracts/utils/Context.sol"; // import "@openzeppelin/contracts/utils/Strings.sol"; // import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using SafeMath for uint256; using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/WorldOfDypians.sol pragma solidity ^0.7.0; interface StakeContract { function calculateReward(address account, uint256 tokenId) external view returns (uint256); } interface CawsContract { function ownerOf(uint256 tokenId) external view returns (address); } /** * @title WorldOfDypians contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract WorldOfDypians is ERC721A, Ownable { using SafeMath for uint256; string public WOD_PROVENANCE = ""; string public baseURI; uint256 public startingIndexBlock; uint256 public startingIndex; uint256 public constant landPrice = 2000000000000000; //0.002 ETH uint256 public constant LandPriceDiscount = 1000000000000000; //0.001 ETH uint public constant maxLandPurchase = 10; uint256 public MAX_WOD; uint256 public MAX_MINT = 999; bool public saleIsActive = false; uint256 public REVEAL_TIMESTAMP; CawsContract public cawsContract; StakeContract public stakeContract; // Mapping to keep track of CAWS token IDs that have been used to mint a new NFT mapping (uint256 => bool) public cawsUsed; constructor(string memory name, string memory symbol, uint256 maxNftSupply, uint256 saleStart) ERC721A(name, symbol, maxLandPurchase, maxNftSupply) { MAX_WOD = maxNftSupply; REVEAL_TIMESTAMP = saleStart + (86400 * 13); cawsContract = CawsContract(0xd06cF9e1189FEAb09c844C597abc3767BC12608c); stakeContract = StakeContract(0xEe425BbbEC5e9Bf4a59a1c19eFff522AD8b7A47A); } function withdraw() public onlyOwner { uint balance = address(this).balance; msg.sender.transfer(balance); } /** * Mint the rest of WOD */ function reserveWod(uint numberOfTokens) public onlyOwner { require(numberOfTokens > 0, "Mint at least 1 NFT"); require(totalSupply() >= 999, "Genesis Mint is not Finished"); require(totalSupply().add(numberOfTokens) <= MAX_WOD, "Mint would exceed max WOD Lands"); _safeMint(msg.sender, numberOfTokens); } /** * Set Reveal Timestamp. */ function setRevealTimestamp(uint256 revealTimeStamp) public onlyOwner { REVEAL_TIMESTAMP = revealTimeStamp; } /* * Set provenance once it's calculated */ function setProvenanceHash(string memory provenanceHash) public onlyOwner { WOD_PROVENANCE = provenanceHash; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string calldata tokenURI) external onlyOwner { baseURI = tokenURI; } /* * Pause sale if active, make active if paused */ function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } /** * Mints WOD */ function mintWodGenesis(uint numberOfTokens, uint[] calldata tokenIds) public payable { require(saleIsActive, "Sale must be active to mint WOD"); require(numberOfTokens <= maxLandPurchase, "Can only mint 10 tokens at a time"); require(numberOfTokens > 0, "Mint at least 1 NFT"); require(totalSupply().add(numberOfTokens) <= MAX_MINT, "Purchase would exceed max Genesis Lands"); require(tokenIds.length <= numberOfTokens, "Cannot provide more than 10 CAWS"); uint countDiscount = 0; if (tokenIds.length != 0) { for (uint i = 0; i < tokenIds.length; i++) { if (cawsUsed[tokenIds[i]] != true) { //Check if user is ownerOf Caws if (cawsContract.ownerOf(tokenIds[i]) == msg.sender) { cawsUsed[tokenIds[i]] = true; countDiscount++; continue; } //Check if user has deposited Caws in Staking if (stakeContract.calculateReward(msg.sender, tokenIds[i]) > 0) { cawsUsed[tokenIds[i]] = true; countDiscount++; } } } } if (countDiscount != 0) { require(LandPriceDiscount.mul(countDiscount).add(landPrice.mul(numberOfTokens.sub(countDiscount))) <= msg.value, "Ether value sent is not correct"); } else { require(landPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct"); } _safeMint(msg.sender, numberOfTokens); // If we haven't set the starting index and this is either 1) the last saleable token or 2) the first token to be sold after // the end of pre-sale, set the starting index block if (startingIndexBlock == 0 && (totalSupply() == MAX_WOD || block.timestamp >= REVEAL_TIMESTAMP)) { startingIndexBlock = block.number; } } /** * Set the starting index for the collection */ function setStartingIndex() public { require(startingIndex == 0, "Starting index is already set"); require(startingIndexBlock != 0, "Starting index block must be set"); startingIndex = uint(blockhash(startingIndexBlock)) % MAX_WOD; // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes) if (block.number.sub(startingIndexBlock) > 255) { startingIndex = uint(blockhash(block.number - 1)) % MAX_WOD; } // Prevent default sequence if (startingIndex == 0) { startingIndex = startingIndex.add(1); } } /** * Set the starting index block for the collection, essentially unblocking * setting starting index */ function emergencySetStartingIndexBlock() public onlyOwner { require(startingIndex == 0, "Starting index is already set"); startingIndexBlock = block.number; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"maxNftSupply","type":"uint256"},{"internalType":"uint256","name":"saleStart","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"LandPriceDiscount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WOD_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cawsContract","outputs":[{"internalType":"contract CawsContract","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cawsUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"landPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLandPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"mintWodGenesis","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveWod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"revealTimeStamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakeContract","outputs":[{"internalType":"contract StakeContract","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60006001819055600881905560e0604081905260c08290526200002691600a9190620003f0565b506103e7600f556010805460ff191690553480156200004457600080fd5b50604051620035e3380380620035e3833981810160405260808110156200006a57600080fd5b81019080805160405193929190846401000000008211156200008b57600080fd5b908301906020820185811115620000a157600080fd5b8251640100000000811182820188101715620000bc57600080fd5b82525081516020918201929091019080838360005b83811015620000eb578181015183820152602001620000d1565b50505050905090810190601f168015620001195780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200013d57600080fd5b9083019060208201858111156200015357600080fd5b82516401000000008111828201881017156200016e57600080fd5b82525081516020918201929091019080838360005b838110156200019d57818101518382015260200162000183565b50505050905090810190601f168015620001cb5780820380516001836020036101000a031916815260200191505b506040908152602082015191015190925090508383600a84620001f56301ffc9a760e01b62000367565b60008111620002365760405162461bcd60e51b815260040180806020018281038252602e815260200180620035b5602e913960400191505060405180910390fd5b60008211620002775760405162461bcd60e51b81526004018080602001828103825260278152602001806200358e6027913960400191505060405180910390fd5b83516200028c906002906020870190620003f0565b508251620002a2906003906020860190620003f0565b5060a0919091526080525060009050620002bb620003ec565b600980546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600e9190915562112380016011555050601280546001600160a01b031990811673d06cf9e1189feab09c844c597abc3767bc12608c179091556013805490911673ee425bbbec5e9bf4a59a1c19efff522ad8b7a47a1790556200048c565b6001600160e01b03198082161415620003c7576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200043357805160ff191683800117855562000463565b8280016001018555821562000463579182015b828111156200046357825182559160200191906001019062000446565b506200047192915062000475565b5090565b5b8082111562000471576000815560010162000476565b60805160a0516130d9620004b5600039806123fb528061242552806129395250506130d96000f3fe60806040526004361061025c5760003560e01c806370a0823111610144578063cb774d47116100b6578063e98665501161007a578063e986655014610a01578063eb8d244414610a16578063f0292a0314610a2b578063f2fde38b14610a40578063fc22c15c14610a73578063fca9e46f14610a885761025c565b8063cb774d4714610912578063d509dd4a14610927578063d7224ba01461099c578063e36d6498146109b1578063e985e9c5146109c65761025c565b806395d89b411161010857806395d89b411461079d578063a22cb465146107b2578063ad0d13b6146107ed578063b88d4fde14610802578063c04c6f1a146108d3578063c87b56dd146108e85761025c565b806370a0823114610701578063715018a6146107345780637aa1aae3146107495780637d17fcbe146107735780638da5cb5b146107885761025c565b806323b872dd116101dd57806342842e0e116101a157806342842e0e146105b05780634f6ccce7146105f3578063544f19bd1461061d57806355f804b3146106475780636352211e146106c25780636c0360eb146106ec5761025c565b806323b872dd146104f55780632f745c591461053857806334918dfd146105715780633ccfd60b1461058657806340ed455c1461059b5761025c565b8063109695231161022457806310969523146103de57806318160ddd1461048f57806318e20a38146104b65780631a186227146104cb5780631a269066146104e05761025c565b8063018a2c371461026157806301ffc9a71461028d57806306fdde03146102d5578063081812fc1461035f578063095ea7b3146103a5575b600080fd5b34801561026d57600080fd5b5061028b6004803603602081101561028457600080fd5b5035610a9d565b005b34801561029957600080fd5b506102c1600480360360208110156102b057600080fd5b50356001600160e01b031916610b04565b604080519115158252519081900360200190f35b3480156102e157600080fd5b506102ea610b67565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561032457818101518382015260200161030c565b50505050905090810190601f1680156103515780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036b57600080fd5b506103896004803603602081101561038257600080fd5b5035610bfa565b604080516001600160a01b039092168252519081900360200190f35b3480156103b157600080fd5b5061028b600480360360408110156103c857600080fd5b506001600160a01b038135169060200135610c5c565b3480156103ea57600080fd5b5061028b6004803603602081101561040157600080fd5b810190602081018135600160201b81111561041b57600080fd5b82018360208201111561042d57600080fd5b803590602001918460018302840111600160201b8311171561044e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610d38945050505050565b34801561049b57600080fd5b506104a4610db1565b60408051918252519081900360200190f35b3480156104c257600080fd5b506104a4610db7565b3480156104d757600080fd5b50610389610dbd565b3480156104ec57600080fd5b506102ea610dcc565b34801561050157600080fd5b5061028b6004803603606081101561051857600080fd5b506001600160a01b03813581169160208101359091169060400135610e5a565b34801561054457600080fd5b506104a46004803603604081101561055b57600080fd5b506001600160a01b038135169060200135610e65565b34801561057d57600080fd5b5061028b610f97565b34801561059257600080fd5b5061028b61100d565b3480156105a757600080fd5b506104a461109e565b3480156105bc57600080fd5b5061028b600480360360608110156105d357600080fd5b506001600160a01b038135811691602081013590911690604001356110a3565b3480156105ff57600080fd5b506104a46004803603602081101561061657600080fd5b50356110be565b34801561062957600080fd5b5061028b6004803603602081101561064057600080fd5b5035611109565b34801561065357600080fd5b5061028b6004803603602081101561066a57600080fd5b810190602081018135600160201b81111561068457600080fd5b82018360208201111561069657600080fd5b803590602001918460018302840111600160201b831117156106b757600080fd5b509092509050611289565b3480156106ce57600080fd5b50610389600480360360208110156106e557600080fd5b50356112f7565b3480156106f857600080fd5b506102ea611309565b34801561070d57600080fd5b506104a46004803603602081101561072457600080fd5b50356001600160a01b0316611364565b34801561074057600080fd5b5061028b6113d0565b34801561075557600080fd5b506102c16004803603602081101561076c57600080fd5b503561147c565b34801561077f57600080fd5b5061028b611491565b34801561079457600080fd5b5061038961154e565b3480156107a957600080fd5b506102ea61155d565b3480156107be57600080fd5b5061028b600480360360408110156107d557600080fd5b506001600160a01b03813516906020013515156115be565b3480156107f957600080fd5b506104a46116c3565b34801561080e57600080fd5b5061028b6004803603608081101561082557600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561085f57600080fd5b82018360208201111561087157600080fd5b803590602001918460018302840111600160201b8311171561089257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506116ce945050505050565b3480156108df57600080fd5b50610389611726565b3480156108f457600080fd5b506102ea6004803603602081101561090b57600080fd5b5035611735565b34801561091e57600080fd5b506104a4611866565b61028b6004803603604081101561093d57600080fd5b81359190810190604081016020820135600160201b81111561095e57600080fd5b82018360208201111561097057600080fd5b803590602001918460208302840111600160201b8311171561099157600080fd5b50909250905061186c565b3480156109a857600080fd5b506104a4611d37565b3480156109bd57600080fd5b506104a4611d3d565b3480156109d257600080fd5b506102c1600480360360408110156109e957600080fd5b506001600160a01b0381358116916020013516611d43565b348015610a0d57600080fd5b5061028b611d71565b348015610a2257600080fd5b506102c1611e73565b348015610a3757600080fd5b506104a4611e7c565b348015610a4c57600080fd5b5061028b60048036036020811015610a6357600080fd5b50356001600160a01b0316611e82565b348015610a7f57600080fd5b506104a4611f85565b348015610a9457600080fd5b506104a4611f90565b610aa5611f96565b6001600160a01b0316610ab661154e565b6001600160a01b031614610aff576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b601155565b60006001600160e01b031982166380ac58cd60e01b1480610b3557506001600160e01b03198216635b5e139f60e01b145b80610b5057506001600160e01b0319821663780e9d6360e01b145b80610b5f5750610b5f82611f9a565b90505b919050565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610bf05780601f10610bc557610100808354040283529160200191610bf0565b820191906000526020600020905b815481529060010190602001808311610bd357829003601f168201915b5050505050905090565b6000610c0582611fb9565b610c405760405162461bcd60e51b815260040180806020018281038252602d815260200180613034602d913960400191505060405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c67826112f7565b9050806001600160a01b0316836001600160a01b03161415610cba5760405162461bcd60e51b8152600401808060200182810382526022815260200180612f616022913960400191505060405180910390fd5b806001600160a01b0316610ccc611f96565b6001600160a01b03161480610ced5750610ced81610ce8611f96565b611d43565b610d285760405162461bcd60e51b8152600401808060200182810382526039815260200180612e356039913960400191505060405180910390fd5b610d33838383611fc0565b505050565b610d40611f96565b6001600160a01b0316610d5161154e565b6001600160a01b031614610d9a576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b8051610dad90600a906020840190612c3f565b5050565b60015490565b60115481565b6013546001600160a01b031681565b600a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e525780601f10610e2757610100808354040283529160200191610e52565b820191906000526020600020905b815481529060010190602001808311610e3557829003601f168201915b505050505081565b610d3383838361201c565b6000610e7083611364565b8210610ead5760405162461bcd60e51b8152600401808060200182810382526022815260200180612d546022913960400191505060405180910390fd5b6000610eb7610db1565b905060008060005b83811015610f5957610ecf612cb9565b506000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f1b57805192505b876001600160a01b0316836001600160a01b03161415610f505786841415610f4957509350610f9192505050565b6001909301925b50600101610ebf565b5060405162461bcd60e51b815260040180806020018281038252602e815260200180612fd7602e913960400191505060405180910390fd5b92915050565b610f9f611f96565b6001600160a01b0316610fb061154e565b6001600160a01b031614610ff9576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b6010805460ff19811660ff90911615179055565b611015611f96565b6001600160a01b031661102661154e565b6001600160a01b03161461106f576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610dad573d6000803e3d6000fd5b600a81565b610d33838383604051806020016040528060008152506116ce565b60006110c8610db1565b82106111055760405162461bcd60e51b8152600401808060200182810382526023815260200180612dc66023913960400191505060405180910390fd5b5090565b611111611f96565b6001600160a01b031661112261154e565b6001600160a01b03161461116b576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b600081116111b6576040805162461bcd60e51b8152602060048201526013602482015272135a5b9d08185d081b19585cdd080c48139195606a1b604482015290519081900360640190fd5b6103e76111c1610db1565b1015611214576040805162461bcd60e51b815260206004820152601c60248201527f47656e65736973204d696e74206973206e6f742046696e697368656400000000604482015290519081900360640190fd5b600e5461122982611223610db1565b90612337565b111561127c576040805162461bcd60e51b815260206004820152601f60248201527f4d696e7420776f756c6420657863656564206d617820574f44204c616e647300604482015290519081900360640190fd5b6112863382612391565b50565b611291611f96565b6001600160a01b03166112a261154e565b6001600160a01b0316146112eb576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b610d33600b8383612cd0565b6000611302826123ab565b5192915050565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e525780601f10610e2757610100808354040283529160200191610e52565b60006001600160a01b0382166113ab5760405162461bcd60e51b815260040180806020018281038252602b815260200180612e6e602b913960400191505060405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6113d8611f96565b6001600160a01b03166113e961154e565b6001600160a01b031614611432576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b60146020526000908152604090205460ff1681565b611499611f96565b6001600160a01b03166114aa61154e565b6001600160a01b0316146114f3576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b600d5415611548576040805162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015290519081900360640190fd5b43600c55565b6009546001600160a01b031690565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bf05780601f10610bc557610100808354040283529160200191610bf0565b6115c6611f96565b6001600160a01b0316826001600160a01b0316141561162c576040805162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015290519081900360640190fd5b8060076000611639611f96565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561167d611f96565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b66038d7ea4c6800081565b6116d984848461201c565b6116e5848484846124ec565b6117205760405162461bcd60e51b8152600401808060200182810382526033815260200180612f836033913960400191505060405180910390fd5b50505050565b6012546001600160a01b031681565b606061174082611fb9565b61177b5760405162461bcd60e51b815260040180806020018281038252602f815260200180612f00602f913960400191505060405180910390fd5b60606117856126a2565b905060008151116117a5576040518060200160405280600081525061185f565b806117af84612703565b6040516020018083805190602001908083835b602083106117e15780518252601f1990920191602091820191016117c2565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106118295780518252601f19909201916020918201910161180a565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040525b9392505050565b600d5481565b60105460ff166118c3576040805162461bcd60e51b815260206004820152601f60248201527f53616c65206d7573742062652061637469766520746f206d696e7420574f4400604482015290519081900360640190fd5b600a8311156119035760405162461bcd60e51b81526004018080602001828103825260218152602001806130616021913960400191505060405180910390fd5b6000831161194e576040805162461bcd60e51b8152602060048201526013602482015272135a5b9d08185d081b19585cdd080c48139195606a1b604482015290519081900360640190fd5b600f5461195d84611223610db1565b111561199a5760405162461bcd60e51b8152600401808060200182810382526027815260200180612e0e6027913960400191505060405180910390fd5b828111156119ef576040805162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070726f76696465206d6f7265207468616e2031302043415753604482015290519081900360640190fd5b60008115611c075760005b82811015611c055760146000858584818110611a1257fe5b602090810292909201358352508101919091526040016000205460ff161515600114611bfd5760125433906001600160a01b0316636352211e868685818110611a5757fe5b905060200201356040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015611a9257600080fd5b505afa158015611aa6573d6000803e3d6000fd5b505050506040513d6020811015611abc57600080fd5b50516001600160a01b03161415611b1857600160146000868685818110611adf57fe5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055508180600101925050611bfd565b6013546000906001600160a01b0316631852e8d933878786818110611b3957fe5b905060200201356040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b158015611b8457600080fd5b505afa158015611b98573d6000803e3d6000fd5b505050506040513d6020811015611bae57600080fd5b50511115611bfd57600160146000868685818110611bc857fe5b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555081806001019250505b6001016119fa565b505b8015611c955734611c3d611c2c611c1e87856127de565b66071afd498d00009061283b565b61122366038d7ea4c680008561283b565b1115611c90576040805162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015290519081900360640190fd5b611cfa565b34611ca766071afd498d00008661283b565b1115611cfa576040805162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015290519081900360640190fd5b611d043385612391565b600c54158015611d285750600e54611d1a610db1565b1480611d2857506011544210155b156117205743600c5550505050565b60085481565b600c5481565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600d5415611dc6576040805162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015290519081900360640190fd5b600c54611e1a576040805162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604482015290519081900360640190fd5b600e54600c544081611e2857fe5b06600d55600c5460ff90611e3d9043906127de565b1115611e5857600e5460001943014081611e5357fe5b06600d555b600d54611e7157600d54611e6d906001612337565b600d555b565b60105460ff1681565b600f5481565b611e8a611f96565b6001600160a01b0316611e9b61154e565b6001600160a01b031614611ee4576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b6001600160a01b038116611f295760405162461bcd60e51b8152600401808060200182810382526026815260200180612d766026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b66071afd498d000081565b600e5481565b3390565b6001600160e01b03191660009081526020819052604090205460ff1690565b6001541190565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b612024612cb9565b61202d826123ab565b9050600081600001516001600160a01b0316612047611f96565b6001600160a01b0316148061207c575061205f611f96565b6001600160a01b031661207184610bfa565b6001600160a01b0316145b806120905750815161209090610ce8611f96565b9050806120ce5760405162461bcd60e51b8152600401808060200182810382526032815260200180612f2f6032913960400191505060405180910390fd5b846001600160a01b031682600001516001600160a01b0316146121225760405162461bcd60e51b8152600401808060200182810382526026815260200180612eba6026913960400191505060405180910390fd5b6001600160a01b0384166121675760405162461bcd60e51b8152600401808060200182810382526025815260200180612de96025913960400191505060405180910390fd5b6121748585856001611720565b6121846000848460000151611fc0565b6001600160a01b03858116600090815260056020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a875260049095528386209251835495516001600160a01b03199096169088161767ffffffffffffffff60a01b1916600160a01b95909116949094029390931790559086018083529120549091166122e15761226481611fb9565b156122e15760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461232f8686866001611720565b505050505050565b60008282018381101561185f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b610dad828260405180602001604052806000815250612894565b6123b3612cb9565b6123bc82611fb9565b6123f75760405162461bcd60e51b815260040180806020018281038252602a815260200180612d9c602a913960400191505060405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612448575060017f00000000000000000000000000000000000000000000000000000000000000008303015b825b8181106124b457612459612cb9565b506000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156124aa579250610b62915050565b506000190161244a565b5060405162461bcd60e51b815260040180806020018281038252602f815260200180613005602f913960400191505060405180910390fd5b6000612500846001600160a01b0316612c39565b1561269657836001600160a01b031663150b7a0261251c611f96565b8786866040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561258f578181015183820152602001612577565b50505050905090810190601f1680156125bc5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b1580156125de57600080fd5b505af192505050801561260357506040513d60208110156125fe57600080fd5b505160015b61267c573d808015612631576040519150601f19603f3d011682016040523d82523d6000602084013e612636565b606091505b5080516126745760405162461bcd60e51b8152600401808060200182810382526033815260200180612f836033913960400191505060405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061269a565b5060015b949350505050565b600b8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bf05780601f10610bc557610100808354040283529160200191610bf0565b60608161272857506040805180820190915260018152600360fc1b6020820152610b62565b8160005b811561274057600101600a8204915061272c565b60608167ffffffffffffffff8111801561275957600080fd5b506040519080825280601f01601f191660200182016040528015612784576020820181803683370190505b50859350905060001982015b83156127d557600a840660300160f81b828280600190039350815181106127b357fe5b60200101906001600160f81b031916908160001a905350600a84049350612790565b50949350505050565b600082821115612835576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008261284a57506000610f91565b8282028284828161285757fe5b041461185f5760405162461bcd60e51b8152600401808060200182810382526021815260200180612e996021913960400191505060405180910390fd5b6001546001600160a01b0384166128dc5760405162461bcd60e51b8152600401808060200182810382526021815260200180612fb66021913960400191505060405180910390fd5b6128e581611fb9565b15612937576040805162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156129965760405162461bcd60e51b81526004018080602001828103825260228152602001806130826022913960400191505060405180910390fd5b6129a36000858386611720565b6129ab612cb9565b60056000866001600160a01b03166001600160a01b031681526020019081526020016000206040518060400160405290816000820160009054906101000a90046001600160801b03166001600160801b03166001600160801b031681526020016000820160109054906101000a90046001600160801b03166001600160801b03166001600160801b03168152505090506040518060400160405280858360000151016001600160801b03168152602001858360200151016001600160801b031681525060056000876001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160801b0302191690836001600160801b0316021790555060208201518160000160106101000a8154816001600160801b0302191690836001600160801b031602179055509050506040518060400160405280866001600160a01b031681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612c265760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612bdf60008884886124ec565b612c1a5760405162461bcd60e51b8152600401808060200182810382526033815260200180612f836033913960400191505060405180910390fd5b60019182019101612b92565b50600181905561232f6000878588611720565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612c8057805160ff1916838001178555612cad565b82800160010185558215612cad579182015b82811115612cad578251825591602001919060010190612c92565b50611105929150612d3e565b604080518082019091526000808252602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612d115782800160ff19823516178555612cad565b82800160010185558215612cad579182015b82811115612cad578235825591602001919060010190612d23565b5b808211156111055760008155600101612d3f56fe455243373231413a206f776e657220696e646578206f7574206f6620626f756e64734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243373231413a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756e6473455243373231413a207472616e7366657220746f20746865207a65726f2061646472657373507572636861736520776f756c6420657863656564206d61782047656e65736973204c616e6473455243373231413a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c455243373231413a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77455243373231413a207472616e736665722066726f6d20696e636f7272656374206f776e65724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231413a20617070726f76616c20746f2063757272656e74206f776e6572455243373231413a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572455243373231413a206d696e7420746f20746865207a65726f2061646472657373455243373231413a20756e61626c6520746f2067657420746f6b656e206f66206f776e657220627920696e646578455243373231413a20756e61626c6520746f2064657465726d696e6520746865206f776e6572206f6620746f6b656e455243373231413a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d65455243373231413a207175616e7469747920746f206d696e7420746f6f2068696768a26469706673582212206279c3e2e4c73aa74c221aecbfc21443e8ef7e3dc84d6d04a27079229986645f64736f6c63430007000033455243373231413a206d61782062617463682073697a65206d757374206265206e6f6e7a65726f455243373231413a20636f6c6c656374696f6e206d75737420686176652061206e6f6e7a65726f20737570706c79000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000063ee29250000000000000000000000000000000000000000000000000000000000000004546573740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045465737400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061025c5760003560e01c806370a0823111610144578063cb774d47116100b6578063e98665501161007a578063e986655014610a01578063eb8d244414610a16578063f0292a0314610a2b578063f2fde38b14610a40578063fc22c15c14610a73578063fca9e46f14610a885761025c565b8063cb774d4714610912578063d509dd4a14610927578063d7224ba01461099c578063e36d6498146109b1578063e985e9c5146109c65761025c565b806395d89b411161010857806395d89b411461079d578063a22cb465146107b2578063ad0d13b6146107ed578063b88d4fde14610802578063c04c6f1a146108d3578063c87b56dd146108e85761025c565b806370a0823114610701578063715018a6146107345780637aa1aae3146107495780637d17fcbe146107735780638da5cb5b146107885761025c565b806323b872dd116101dd57806342842e0e116101a157806342842e0e146105b05780634f6ccce7146105f3578063544f19bd1461061d57806355f804b3146106475780636352211e146106c25780636c0360eb146106ec5761025c565b806323b872dd146104f55780632f745c591461053857806334918dfd146105715780633ccfd60b1461058657806340ed455c1461059b5761025c565b8063109695231161022457806310969523146103de57806318160ddd1461048f57806318e20a38146104b65780631a186227146104cb5780631a269066146104e05761025c565b8063018a2c371461026157806301ffc9a71461028d57806306fdde03146102d5578063081812fc1461035f578063095ea7b3146103a5575b600080fd5b34801561026d57600080fd5b5061028b6004803603602081101561028457600080fd5b5035610a9d565b005b34801561029957600080fd5b506102c1600480360360208110156102b057600080fd5b50356001600160e01b031916610b04565b604080519115158252519081900360200190f35b3480156102e157600080fd5b506102ea610b67565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561032457818101518382015260200161030c565b50505050905090810190601f1680156103515780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036b57600080fd5b506103896004803603602081101561038257600080fd5b5035610bfa565b604080516001600160a01b039092168252519081900360200190f35b3480156103b157600080fd5b5061028b600480360360408110156103c857600080fd5b506001600160a01b038135169060200135610c5c565b3480156103ea57600080fd5b5061028b6004803603602081101561040157600080fd5b810190602081018135600160201b81111561041b57600080fd5b82018360208201111561042d57600080fd5b803590602001918460018302840111600160201b8311171561044e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610d38945050505050565b34801561049b57600080fd5b506104a4610db1565b60408051918252519081900360200190f35b3480156104c257600080fd5b506104a4610db7565b3480156104d757600080fd5b50610389610dbd565b3480156104ec57600080fd5b506102ea610dcc565b34801561050157600080fd5b5061028b6004803603606081101561051857600080fd5b506001600160a01b03813581169160208101359091169060400135610e5a565b34801561054457600080fd5b506104a46004803603604081101561055b57600080fd5b506001600160a01b038135169060200135610e65565b34801561057d57600080fd5b5061028b610f97565b34801561059257600080fd5b5061028b61100d565b3480156105a757600080fd5b506104a461109e565b3480156105bc57600080fd5b5061028b600480360360608110156105d357600080fd5b506001600160a01b038135811691602081013590911690604001356110a3565b3480156105ff57600080fd5b506104a46004803603602081101561061657600080fd5b50356110be565b34801561062957600080fd5b5061028b6004803603602081101561064057600080fd5b5035611109565b34801561065357600080fd5b5061028b6004803603602081101561066a57600080fd5b810190602081018135600160201b81111561068457600080fd5b82018360208201111561069657600080fd5b803590602001918460018302840111600160201b831117156106b757600080fd5b509092509050611289565b3480156106ce57600080fd5b50610389600480360360208110156106e557600080fd5b50356112f7565b3480156106f857600080fd5b506102ea611309565b34801561070d57600080fd5b506104a46004803603602081101561072457600080fd5b50356001600160a01b0316611364565b34801561074057600080fd5b5061028b6113d0565b34801561075557600080fd5b506102c16004803603602081101561076c57600080fd5b503561147c565b34801561077f57600080fd5b5061028b611491565b34801561079457600080fd5b5061038961154e565b3480156107a957600080fd5b506102ea61155d565b3480156107be57600080fd5b5061028b600480360360408110156107d557600080fd5b506001600160a01b03813516906020013515156115be565b3480156107f957600080fd5b506104a46116c3565b34801561080e57600080fd5b5061028b6004803603608081101561082557600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561085f57600080fd5b82018360208201111561087157600080fd5b803590602001918460018302840111600160201b8311171561089257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506116ce945050505050565b3480156108df57600080fd5b50610389611726565b3480156108f457600080fd5b506102ea6004803603602081101561090b57600080fd5b5035611735565b34801561091e57600080fd5b506104a4611866565b61028b6004803603604081101561093d57600080fd5b81359190810190604081016020820135600160201b81111561095e57600080fd5b82018360208201111561097057600080fd5b803590602001918460208302840111600160201b8311171561099157600080fd5b50909250905061186c565b3480156109a857600080fd5b506104a4611d37565b3480156109bd57600080fd5b506104a4611d3d565b3480156109d257600080fd5b506102c1600480360360408110156109e957600080fd5b506001600160a01b0381358116916020013516611d43565b348015610a0d57600080fd5b5061028b611d71565b348015610a2257600080fd5b506102c1611e73565b348015610a3757600080fd5b506104a4611e7c565b348015610a4c57600080fd5b5061028b60048036036020811015610a6357600080fd5b50356001600160a01b0316611e82565b348015610a7f57600080fd5b506104a4611f85565b348015610a9457600080fd5b506104a4611f90565b610aa5611f96565b6001600160a01b0316610ab661154e565b6001600160a01b031614610aff576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b601155565b60006001600160e01b031982166380ac58cd60e01b1480610b3557506001600160e01b03198216635b5e139f60e01b145b80610b5057506001600160e01b0319821663780e9d6360e01b145b80610b5f5750610b5f82611f9a565b90505b919050565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610bf05780601f10610bc557610100808354040283529160200191610bf0565b820191906000526020600020905b815481529060010190602001808311610bd357829003601f168201915b5050505050905090565b6000610c0582611fb9565b610c405760405162461bcd60e51b815260040180806020018281038252602d815260200180613034602d913960400191505060405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c67826112f7565b9050806001600160a01b0316836001600160a01b03161415610cba5760405162461bcd60e51b8152600401808060200182810382526022815260200180612f616022913960400191505060405180910390fd5b806001600160a01b0316610ccc611f96565b6001600160a01b03161480610ced5750610ced81610ce8611f96565b611d43565b610d285760405162461bcd60e51b8152600401808060200182810382526039815260200180612e356039913960400191505060405180910390fd5b610d33838383611fc0565b505050565b610d40611f96565b6001600160a01b0316610d5161154e565b6001600160a01b031614610d9a576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b8051610dad90600a906020840190612c3f565b5050565b60015490565b60115481565b6013546001600160a01b031681565b600a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e525780601f10610e2757610100808354040283529160200191610e52565b820191906000526020600020905b815481529060010190602001808311610e3557829003601f168201915b505050505081565b610d3383838361201c565b6000610e7083611364565b8210610ead5760405162461bcd60e51b8152600401808060200182810382526022815260200180612d546022913960400191505060405180910390fd5b6000610eb7610db1565b905060008060005b83811015610f5957610ecf612cb9565b506000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f1b57805192505b876001600160a01b0316836001600160a01b03161415610f505786841415610f4957509350610f9192505050565b6001909301925b50600101610ebf565b5060405162461bcd60e51b815260040180806020018281038252602e815260200180612fd7602e913960400191505060405180910390fd5b92915050565b610f9f611f96565b6001600160a01b0316610fb061154e565b6001600160a01b031614610ff9576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b6010805460ff19811660ff90911615179055565b611015611f96565b6001600160a01b031661102661154e565b6001600160a01b03161461106f576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610dad573d6000803e3d6000fd5b600a81565b610d33838383604051806020016040528060008152506116ce565b60006110c8610db1565b82106111055760405162461bcd60e51b8152600401808060200182810382526023815260200180612dc66023913960400191505060405180910390fd5b5090565b611111611f96565b6001600160a01b031661112261154e565b6001600160a01b03161461116b576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b600081116111b6576040805162461bcd60e51b8152602060048201526013602482015272135a5b9d08185d081b19585cdd080c48139195606a1b604482015290519081900360640190fd5b6103e76111c1610db1565b1015611214576040805162461bcd60e51b815260206004820152601c60248201527f47656e65736973204d696e74206973206e6f742046696e697368656400000000604482015290519081900360640190fd5b600e5461122982611223610db1565b90612337565b111561127c576040805162461bcd60e51b815260206004820152601f60248201527f4d696e7420776f756c6420657863656564206d617820574f44204c616e647300604482015290519081900360640190fd5b6112863382612391565b50565b611291611f96565b6001600160a01b03166112a261154e565b6001600160a01b0316146112eb576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b610d33600b8383612cd0565b6000611302826123ab565b5192915050565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e525780601f10610e2757610100808354040283529160200191610e52565b60006001600160a01b0382166113ab5760405162461bcd60e51b815260040180806020018281038252602b815260200180612e6e602b913960400191505060405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6113d8611f96565b6001600160a01b03166113e961154e565b6001600160a01b031614611432576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b60146020526000908152604090205460ff1681565b611499611f96565b6001600160a01b03166114aa61154e565b6001600160a01b0316146114f3576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b600d5415611548576040805162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015290519081900360640190fd5b43600c55565b6009546001600160a01b031690565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bf05780601f10610bc557610100808354040283529160200191610bf0565b6115c6611f96565b6001600160a01b0316826001600160a01b0316141561162c576040805162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015290519081900360640190fd5b8060076000611639611f96565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561167d611f96565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b66038d7ea4c6800081565b6116d984848461201c565b6116e5848484846124ec565b6117205760405162461bcd60e51b8152600401808060200182810382526033815260200180612f836033913960400191505060405180910390fd5b50505050565b6012546001600160a01b031681565b606061174082611fb9565b61177b5760405162461bcd60e51b815260040180806020018281038252602f815260200180612f00602f913960400191505060405180910390fd5b60606117856126a2565b905060008151116117a5576040518060200160405280600081525061185f565b806117af84612703565b6040516020018083805190602001908083835b602083106117e15780518252601f1990920191602091820191016117c2565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106118295780518252601f19909201916020918201910161180a565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040525b9392505050565b600d5481565b60105460ff166118c3576040805162461bcd60e51b815260206004820152601f60248201527f53616c65206d7573742062652061637469766520746f206d696e7420574f4400604482015290519081900360640190fd5b600a8311156119035760405162461bcd60e51b81526004018080602001828103825260218152602001806130616021913960400191505060405180910390fd5b6000831161194e576040805162461bcd60e51b8152602060048201526013602482015272135a5b9d08185d081b19585cdd080c48139195606a1b604482015290519081900360640190fd5b600f5461195d84611223610db1565b111561199a5760405162461bcd60e51b8152600401808060200182810382526027815260200180612e0e6027913960400191505060405180910390fd5b828111156119ef576040805162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070726f76696465206d6f7265207468616e2031302043415753604482015290519081900360640190fd5b60008115611c075760005b82811015611c055760146000858584818110611a1257fe5b602090810292909201358352508101919091526040016000205460ff161515600114611bfd5760125433906001600160a01b0316636352211e868685818110611a5757fe5b905060200201356040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015611a9257600080fd5b505afa158015611aa6573d6000803e3d6000fd5b505050506040513d6020811015611abc57600080fd5b50516001600160a01b03161415611b1857600160146000868685818110611adf57fe5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055508180600101925050611bfd565b6013546000906001600160a01b0316631852e8d933878786818110611b3957fe5b905060200201356040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b158015611b8457600080fd5b505afa158015611b98573d6000803e3d6000fd5b505050506040513d6020811015611bae57600080fd5b50511115611bfd57600160146000868685818110611bc857fe5b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555081806001019250505b6001016119fa565b505b8015611c955734611c3d611c2c611c1e87856127de565b66071afd498d00009061283b565b61122366038d7ea4c680008561283b565b1115611c90576040805162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015290519081900360640190fd5b611cfa565b34611ca766071afd498d00008661283b565b1115611cfa576040805162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015290519081900360640190fd5b611d043385612391565b600c54158015611d285750600e54611d1a610db1565b1480611d2857506011544210155b156117205743600c5550505050565b60085481565b600c5481565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600d5415611dc6576040805162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015290519081900360640190fd5b600c54611e1a576040805162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604482015290519081900360640190fd5b600e54600c544081611e2857fe5b06600d55600c5460ff90611e3d9043906127de565b1115611e5857600e5460001943014081611e5357fe5b06600d555b600d54611e7157600d54611e6d906001612337565b600d555b565b60105460ff1681565b600f5481565b611e8a611f96565b6001600160a01b0316611e9b61154e565b6001600160a01b031614611ee4576040805162461bcd60e51b81526020600482018190526024820152600080516020612ee0833981519152604482015290519081900360640190fd5b6001600160a01b038116611f295760405162461bcd60e51b8152600401808060200182810382526026815260200180612d766026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b66071afd498d000081565b600e5481565b3390565b6001600160e01b03191660009081526020819052604090205460ff1690565b6001541190565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b612024612cb9565b61202d826123ab565b9050600081600001516001600160a01b0316612047611f96565b6001600160a01b0316148061207c575061205f611f96565b6001600160a01b031661207184610bfa565b6001600160a01b0316145b806120905750815161209090610ce8611f96565b9050806120ce5760405162461bcd60e51b8152600401808060200182810382526032815260200180612f2f6032913960400191505060405180910390fd5b846001600160a01b031682600001516001600160a01b0316146121225760405162461bcd60e51b8152600401808060200182810382526026815260200180612eba6026913960400191505060405180910390fd5b6001600160a01b0384166121675760405162461bcd60e51b8152600401808060200182810382526025815260200180612de96025913960400191505060405180910390fd5b6121748585856001611720565b6121846000848460000151611fc0565b6001600160a01b03858116600090815260056020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a875260049095528386209251835495516001600160a01b03199096169088161767ffffffffffffffff60a01b1916600160a01b95909116949094029390931790559086018083529120549091166122e15761226481611fb9565b156122e15760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461232f8686866001611720565b505050505050565b60008282018381101561185f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b610dad828260405180602001604052806000815250612894565b6123b3612cb9565b6123bc82611fb9565b6123f75760405162461bcd60e51b815260040180806020018281038252602a815260200180612d9c602a913960400191505060405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a8310612448575060017f000000000000000000000000000000000000000000000000000000000000000a8303015b825b8181106124b457612459612cb9565b506000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156124aa579250610b62915050565b506000190161244a565b5060405162461bcd60e51b815260040180806020018281038252602f815260200180613005602f913960400191505060405180910390fd5b6000612500846001600160a01b0316612c39565b1561269657836001600160a01b031663150b7a0261251c611f96565b8786866040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561258f578181015183820152602001612577565b50505050905090810190601f1680156125bc5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b1580156125de57600080fd5b505af192505050801561260357506040513d60208110156125fe57600080fd5b505160015b61267c573d808015612631576040519150601f19603f3d011682016040523d82523d6000602084013e612636565b606091505b5080516126745760405162461bcd60e51b8152600401808060200182810382526033815260200180612f836033913960400191505060405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061269a565b5060015b949350505050565b600b8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bf05780601f10610bc557610100808354040283529160200191610bf0565b60608161272857506040805180820190915260018152600360fc1b6020820152610b62565b8160005b811561274057600101600a8204915061272c565b60608167ffffffffffffffff8111801561275957600080fd5b506040519080825280601f01601f191660200182016040528015612784576020820181803683370190505b50859350905060001982015b83156127d557600a840660300160f81b828280600190039350815181106127b357fe5b60200101906001600160f81b031916908160001a905350600a84049350612790565b50949350505050565b600082821115612835576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008261284a57506000610f91565b8282028284828161285757fe5b041461185f5760405162461bcd60e51b8152600401808060200182810382526021815260200180612e996021913960400191505060405180910390fd5b6001546001600160a01b0384166128dc5760405162461bcd60e51b8152600401808060200182810382526021815260200180612fb66021913960400191505060405180910390fd5b6128e581611fb9565b15612937576040805162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000a8311156129965760405162461bcd60e51b81526004018080602001828103825260228152602001806130826022913960400191505060405180910390fd5b6129a36000858386611720565b6129ab612cb9565b60056000866001600160a01b03166001600160a01b031681526020019081526020016000206040518060400160405290816000820160009054906101000a90046001600160801b03166001600160801b03166001600160801b031681526020016000820160109054906101000a90046001600160801b03166001600160801b03166001600160801b03168152505090506040518060400160405280858360000151016001600160801b03168152602001858360200151016001600160801b031681525060056000876001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160801b0302191690836001600160801b0316021790555060208201518160000160106101000a8154816001600160801b0302191690836001600160801b031602179055509050506040518060400160405280866001600160a01b031681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612c265760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612bdf60008884886124ec565b612c1a5760405162461bcd60e51b8152600401808060200182810382526033815260200180612f836033913960400191505060405180910390fd5b60019182019101612b92565b50600181905561232f6000878588611720565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612c8057805160ff1916838001178555612cad565b82800160010185558215612cad579182015b82811115612cad578251825591602001919060010190612c92565b50611105929150612d3e565b604080518082019091526000808252602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612d115782800160ff19823516178555612cad565b82800160010185558215612cad579182015b82811115612cad578235825591602001919060010190612d23565b5b808211156111055760008155600101612d3f56fe455243373231413a206f776e657220696e646578206f7574206f6620626f756e64734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243373231413a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756e6473455243373231413a207472616e7366657220746f20746865207a65726f2061646472657373507572636861736520776f756c6420657863656564206d61782047656e65736973204c616e6473455243373231413a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c455243373231413a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77455243373231413a207472616e736665722066726f6d20696e636f7272656374206f776e65724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231413a20617070726f76616c20746f2063757272656e74206f776e6572455243373231413a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572455243373231413a206d696e7420746f20746865207a65726f2061646472657373455243373231413a20756e61626c6520746f2067657420746f6b656e206f66206f776e657220627920696e646578455243373231413a20756e61626c6520746f2064657465726d696e6520746865206f776e6572206f6620746f6b656e455243373231413a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d65455243373231413a207175616e7469747920746f206d696e7420746f6f2068696768a26469706673582212206279c3e2e4c73aa74c221aecbfc21443e8ef7e3dc84d6d04a27079229986645f64736f6c63430007000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000063ee29250000000000000000000000000000000000000000000000000000000000000004546573740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045465737400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Test
Arg [1] : symbol (string): Test
Arg [2] : maxNftSupply (uint256): 1000
Arg [3] : saleStart (uint256): 1676552485
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [3] : 0000000000000000000000000000000000000000000000000000000063ee2925
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 5465737400000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 5465737400000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46876:5714:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48706:123;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48706:123:0;;:::i;:::-;;31833:370;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31833:370:0;-1:-1:-1;;;;;;31833:370:0;;:::i;:::-;;;;;;;;;;;;;;;;;;33559:94;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35084:204;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35084:204:0;;:::i;:::-;;;;-1:-1:-1;;;;;35084:204:0;;;;;;;;;;;;;;34647:379;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34647:379:0;;;;;;;;:::i;48902:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48902:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48902:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48902:124:0;;-1:-1:-1;48902:124:0;;-1:-1:-1;;;;;48902:124:0:i;30394:94::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;47431:31;;;;;;;;;;;;;:::i;47510:34::-;;;;;;;;;;;;;:::i;46962:33::-;;;;;;;;;;;;;:::i;35934:142::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35934:142:0;;;;;;;;;;;;;;;;;:::i;31025:744::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31025:744:0;;;;;;;;:::i;49327:89::-;;;;;;;;;;;;;:::i;48108:131::-;;;;;;;;;;;;;:::i;47271:41::-;;;;;;;;;;;;;:::i;36139:157::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36139:157:0;;;;;;;;;;;;;;;;;:::i;30557:177::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30557:177:0;;:::i;48294:356::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48294:356:0;;:::i;49150:102::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49150:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49150:102:0;;;;;;;;;;-1:-1:-1;49150:102:0;;-1:-1:-1;49150:102:0;-1:-1:-1;49150:102:0;:::i;33382:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33382:118:0;;:::i;47004:21::-;;;;;;;;;;;;;:::i;32259:211::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32259:211:0;-1:-1:-1;;;;;32259:211:0;;:::i;45899:148::-;;;;;;;;;;;;;:::i;47639:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47639:41:0;;:::i;52395:192::-;;;;;;;;;;;;;:::i;45248:87::-;;;;;;;;;;;;;:::i;33714:98::-;;;;;;;;;;;;;:::i;35352:274::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35352:274:0;;;;;;;;;;:::i;47186:60::-;;;;;;;;;;;;;:::i;36359:311::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36359:311:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36359:311:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36359:311:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36359:311:0;;-1:-1:-1;36359:311:0;;-1:-1:-1;;;;;36359:311:0:i;47471:32::-;;;;;;;;;;;;;:::i;33875:394::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33875:394:0;;:::i;47076:28::-;;;;;;;;;;;;;:::i;49458:2050::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49458:2050:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49458:2050:0;;;;;;;;;;-1:-1:-1;49458:2050:0;;-1:-1:-1;49458:2050:0;-1:-1:-1;49458:2050:0;:::i;40774:43::-;;;;;;;;;;;;;:::i;47034:33::-;;;;;;;;;;;;;:::i;35689:186::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35689:186:0;;;;;;;;;;:::i;51584:674::-;;;;;;;;;;;;;:::i;47390:32::-;;;;;;;;;;;;;:::i;47352:29::-;;;;;;;;;;;;;:::i;46202:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46202:244:0;-1:-1:-1;;;;;46202:244:0;;:::i;47113:52::-;;;;;;;;;;;;;:::i;47321:22::-;;;;;;;;;;;;;:::i;48706:123::-;45479:12;:10;:12::i;:::-;-1:-1:-1;;;;;45468:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45468:23:0;;45460:68;;;;;-1:-1:-1;;;45460:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45460:68:0;;;;;;;;;;;;;;;48787:16:::1;:34:::0;48706:123::o;31833:370::-;31960:4;-1:-1:-1;;;;;;31990:40:0;;-1:-1:-1;;;31990:40:0;;:99;;-1:-1:-1;;;;;;;32041:48:0;;-1:-1:-1;;;32041:48:0;31990:99;:160;;;-1:-1:-1;;;;;;;32100:50:0;;-1:-1:-1;;;32100:50:0;31990:160;:207;;;;32161:36;32185:11;32161:23;:36::i;:::-;31976:221;;31833:370;;;;:::o;33559:94::-;33642:5;33635:12;;;;;;;-1:-1:-1;;33635:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33613:13;;33635:12;;33642:5;;33635:12;;33642:5;33635:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33559:94;:::o;35084:204::-;35152:7;35176:16;35184:7;35176;:16::i;:::-;35168:74;;;;-1:-1:-1;;;35168:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35258:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35258:24:0;;35084:204::o;34647:379::-;34716:13;34732:24;34748:7;34732:15;:24::i;:::-;34716:40;;34777:5;-1:-1:-1;;;;;34771:11:0;:2;-1:-1:-1;;;;;34771:11:0;;;34763:58;;;;-1:-1:-1;;;34763:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34862:5;-1:-1:-1;;;;;34846:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;34846:21:0;;:62;;;;34871:37;34888:5;34895:12;:10;:12::i;:::-;34871:16;:37::i;:::-;34830:153;;;;-1:-1:-1;;;34830:153:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34992:28;35001:2;35005:7;35014:5;34992:8;:28::i;:::-;34647:379;;;:::o;48902:124::-;45479:12;:10;:12::i;:::-;-1:-1:-1;;;;;45468:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45468:23:0;;45460:68;;;;;-1:-1:-1;;;45460:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45460:68:0;;;;;;;;;;;;;;;48987:31;;::::1;::::0;:14:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48902:124:::0;:::o;30394:94::-;30470:12;;30394:94;:::o;47431:31::-;;;;:::o;47510:34::-;;;-1:-1:-1;;;;;47510:34:0;;:::o;46962:33::-;;;;;;;;;;;;;;;-1:-1:-1;;46962:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35934:142::-;36042:28;36052:4;36058:2;36062:7;36042:9;:28::i;31025:744::-;31134:7;31169:16;31179:5;31169:9;:16::i;:::-;31161:5;:24;31153:71;;;;-1:-1:-1;;;31153:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31231:22;31256:13;:11;:13::i;:::-;31231:38;;31276:19;31306:25;31356:9;31351:350;31375:14;31371:1;:18;31351:350;;;31405:31;;:::i;:::-;-1:-1:-1;31439:14:0;;;;:11;:14;;;;;;;;;31405:48;;;;;;;;;-1:-1:-1;;;;;31405:48:0;;;;;-1:-1:-1;;;31405:48:0;;;;;;;;;;;;31466:28;31462:89;;31527:14;;;-1:-1:-1;31462:89:0;31584:5;-1:-1:-1;;;;;31563:26:0;:17;-1:-1:-1;;;;;31563:26:0;;31559:135;;;31621:5;31606:11;:20;31602:59;;;-1:-1:-1;31648:1:0;-1:-1:-1;31641:8:0;;-1:-1:-1;;;31641:8:0;31602:59;31671:13;;;;;31559:135;-1:-1:-1;31391:3:0;;31351:350;;;;31707:56;;-1:-1:-1;;;31707:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31025:744;;;;;:::o;49327:89::-;45479:12;:10;:12::i;:::-;-1:-1:-1;;;;;45468:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45468:23:0;;45460:68;;;;;-1:-1:-1;;;45460:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45460:68:0;;;;;;;;;;;;;;;49396:12:::1;::::0;;-1:-1:-1;;49380:28:0;::::1;49396:12;::::0;;::::1;49395:13;49380:28;::::0;;49327:89::o;48108:131::-;45479:12;:10;:12::i;:::-;-1:-1:-1;;;;;45468:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45468:23:0;;45460:68;;;;;-1:-1:-1;;;45460:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45460:68:0;;;;;;;;;;;;;;;48203:28:::1;::::0;48171:21:::1;::::0;48203:10:::1;::::0;:28;::::1;;;::::0;48171:21;;48156:12:::1;48203:28:::0;48156:12;48203:28;48171:21;48203:10;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;47271:41:::0;47310:2;47271:41;:::o;36139:157::-;36251:39;36268:4;36274:2;36278:7;36251:39;;;;;;;;;;;;:16;:39::i;30557:177::-;30624:7;30656:13;:11;:13::i;:::-;30648:5;:21;30640:69;;;;-1:-1:-1;;;30640:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30723:5:0;30557:177::o;48294:356::-;45479:12;:10;:12::i;:::-;-1:-1:-1;;;;;45468:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45468:23:0;;45460:68;;;;;-1:-1:-1;;;45460:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45460:68:0;;;;;;;;;;;;;;;48388:1:::1;48371:14;:18;48363:50;;;::::0;;-1:-1:-1;;;48363:50:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;48363:50:0;;;;;;;;;;;;;::::1;;48449:3;48432:13;:11;:13::i;:::-;:20;;48424:61;;;::::0;;-1:-1:-1;;;48424:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48541:7;;48504:33;48522:14;48504:13;:11;:13::i;:::-;:17:::0;::::1;:33::i;:::-;:44;;48496:88;;;::::0;;-1:-1:-1;;;48496:88:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48605:37;48615:10;48627:14;48605:9;:37::i;:::-;48294:356:::0;:::o;49150:102::-;45479:12;:10;:12::i;:::-;-1:-1:-1;;;;;45468:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45468:23:0;;45460:68;;;;;-1:-1:-1;;;45460:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45460:68:0;;;;;;;;;;;;;;;49226:18:::1;:7;49236:8:::0;;49226:18:::1;:::i;33382:118::-:0;33446:7;33469:20;33481:7;33469:11;:20::i;:::-;:25;;33382:118;-1:-1:-1;;33382:118:0:o;47004:21::-;;;;;;;;;;;;;;;-1:-1:-1;;47004:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32259:211;32323:7;-1:-1:-1;;;;;32347:19:0;;32339:75;;;;-1:-1:-1;;;32339:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32436:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;32436:27:0;;32259:211::o;45899:148::-;45479:12;:10;:12::i;:::-;-1:-1:-1;;;;;45468:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45468:23:0;;45460:68;;;;;-1:-1:-1;;;45460:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45460:68:0;;;;;;;;;;;;;;;45990:6:::1;::::0;45969:40:::1;::::0;46006:1:::1;::::0;-1:-1:-1;;;;;45990:6:0::1;::::0;45969:40:::1;::::0;46006:1;;45969:40:::1;46020:6;:19:::0;;-1:-1:-1;;;;;;46020:19:0::1;::::0;;45899:148::o;47639:41::-;;;;;;;;;;;;;;;:::o;52395:192::-;45479:12;:10;:12::i;:::-;-1:-1:-1;;;;;45468:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45468:23:0;;45460:68;;;;;-1:-1:-1;;;45460:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45460:68:0;;;;;;;;;;;;;;;52473:13:::1;::::0;:18;52465:60:::1;;;::::0;;-1:-1:-1;;;52465:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;52567:12;52546:18;:33:::0;52395:192::o;45248:87::-;45321:6;;-1:-1:-1;;;;;45321:6:0;45248:87;:::o;33714:98::-;33799:7;33792:14;;;;;;;;-1:-1:-1;;33792:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33770:13;;33792:14;;33799:7;;33792:14;;33799:7;33792:14;;;;;;;;;;;;;;;;;;;;;;;;35352:274;35455:12;:10;:12::i;:::-;-1:-1:-1;;;;;35443:24:0;:8;-1:-1:-1;;;;;35443:24:0;;;35435:63;;;;;-1:-1:-1;;;35435:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35552:8;35507:18;:32;35526:12;:10;:12::i;:::-;-1:-1:-1;;;;;35507:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;35507:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;35507:53:0;;;;;;;;;;;35587:12;:10;:12::i;:::-;-1:-1:-1;;;;;35572:48:0;;35611:8;35572:48;;;;;;;;;;;;;;;;;;;;35352:274;;:::o;47186:60::-;47230:16;47186:60;:::o;36359:311::-;36496:28;36506:4;36512:2;36516:7;36496:9;:28::i;:::-;36547:48;36570:4;36576:2;36580:7;36589:5;36547:22;:48::i;:::-;36531:133;;;;-1:-1:-1;;;36531:133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36359:311;;;;:::o;47471:32::-;;;-1:-1:-1;;;;;47471:32:0;;:::o;33875:394::-;33973:13;34014:16;34022:7;34014;:16::i;:::-;33998:97;;;;-1:-1:-1;;;33998:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34104:21;34128:10;:8;:10::i;:::-;34104:34;;34183:1;34165:7;34159:21;:25;:104;;;;;;;;;;;;;;;;;34220:7;34229:18;:7;:16;:18::i;:::-;34203:45;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34203:45:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34203:45:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34203:45:0;;;;;;;;;;;;;-1:-1:-1;;34203:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34159:104;34145:118;33875:394;-1:-1:-1;;;33875:394:0:o;47076:28::-;;;;:::o;49458:2050::-;49563:12;;;;49555:56;;;;;-1:-1:-1;;;49555:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;47310:2;49630:14;:33;;49622:79;;;;-1:-1:-1;;;49622:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49737:1;49720:14;:18;49712:50;;;;;-1:-1:-1;;;49712:50:0;;;;;;;;;;;;-1:-1:-1;;;49712:50:0;;;;;;;;;;;;;;;49818:8;;49781:33;49799:14;49781:13;:11;:13::i;:33::-;:45;;49773:97;;;;-1:-1:-1;;;49773:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49891:33;;;;49883:78;;;;;-1:-1:-1;;;49883:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49974:18;50013:20;;50009:746;;50055:6;50050:694;50067:19;;;50050:694;;;50118:8;:21;50127:8;;50136:1;50127:11;;;;;;;;;;;;;;;;50118:21;;-1:-1:-1;50118:21:0;;;;;;;;-1:-1:-1;50118:21:0;;;;:29;;:21;:29;50114:615;;50229:12;;50266:10;;-1:-1:-1;;;;;50229:12:0;:20;50250:8;;50259:1;50250:11;;;;;;;;;;;;;50229:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50229:33:0;-1:-1:-1;;;;;50229:47:0;;50225:209;;;50329:4;50305:8;:21;50314:8;;50323:1;50314:11;;;;;;;;;;;;;50305:21;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;50360:15;;;;;;;50402:8;;50225:209;50529:13;;50586:1;;-1:-1:-1;;;;;50529:13:0;:29;50559:10;50571:8;;50580:1;50571:11;;;;;;;;;;;;;50529:54;;;;;;;;;;;;;-1:-1:-1;;;;;50529:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50529:54:0;:58;50525:185;;;50640:4;50616:8;:21;50625:8;;50634:1;50625:11;;;;;;;;;;;;;50616:21;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;50671:15;;;;;;;50525:185;50088:3;;50050:694;;;;50009:746;50771:18;;50767:317;;50908:9;50814:90;50855:48;50869:33;:14;50888:13;50869:18;:33::i;:::-;47149:16;;50855:13;:48::i;:::-;50814:36;47230:16;50836:13;50814:21;:36::i;:90::-;:103;;50806:147;;;;;-1:-1:-1;;;50806:147:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;50767:317;;;51027:9;50994:29;47149:16;51008:14;50994:13;:29::i;:::-;:42;;50986:86;;;;;-1:-1:-1;;;50986:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;51096:37;51106:10;51118:14;51096:9;:37::i;:::-;51346:18;;:23;:92;;;;;51391:7;;51374:13;:11;:13::i;:::-;:24;:63;;;;51421:16;;51402:15;:35;;51374:63;51342:158;;;51476:12;51455:18;:33;49458:2050;;;;:::o;40774:43::-;;;;:::o;47034:33::-;;;;:::o;35689:186::-;-1:-1:-1;;;;;35834:25:0;;;35811:4;35834:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35689:186::o;51584:674::-;51638:13;;:18;51630:60;;;;;-1:-1:-1;;;51630:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;51709:18;;51701:68;;;;;-1:-1:-1;;;51701:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51844:7;;51821:18;;51811:29;51844:7;51806:45;;;;;51790:13;:61;52004:18;;52026:3;;51987:36;;:12;;:16;:36::i;:::-;:42;51983:134;;;52098:7;;-1:-1:-1;;52077:12:0;:16;52067:27;52098:7;52062:43;;;;;52046:13;:59;51983:134;52168:13;;52164:87;;52219:13;;:20;;52237:1;52219:17;:20::i;:::-;52203:13;:36;52164:87;51584:674::o;47390:32::-;;;;;;:::o;47352:29::-;;;;:::o;46202:244::-;45479:12;:10;:12::i;:::-;-1:-1:-1;;;;;45468:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45468:23:0;;45460:68;;;;;-1:-1:-1;;;45460:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45460:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46291:22:0;::::1;46283:73;;;;-1:-1:-1::0;;;46283:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46393:6;::::0;46372:38:::1;::::0;-1:-1:-1;;;;;46372:38:0;;::::1;::::0;46393:6:::1;::::0;46372:38:::1;::::0;46393:6:::1;::::0;46372:38:::1;46421:6;:17:::0;;-1:-1:-1;;;;;;46421:17:0::1;-1:-1:-1::0;;;;;46421:17:0;;;::::1;::::0;;;::::1;::::0;;46202:244::o;47113:52::-;47149:16;47113:52;:::o;47321:22::-;;;;:::o;667:106::-;755:10;667:106;:::o;10235:150::-;-1:-1:-1;;;;;;10344:33:0;10320:4;10344:33;;;;;;;;;;;;;;10235:150::o;36909:105::-;36996:12;;-1:-1:-1;36986:22:0;36909:105::o;40596:172::-;40693:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40693:29:0;-1:-1:-1;;;;;40693:29:0;;;;;;;;;40734:28;;40693:24;;40734:28;;;;;;;40596:172;;;:::o;38961:1529::-;39058:35;;:::i;:::-;39096:20;39108:7;39096:11;:20::i;:::-;39058:58;;39125:22;39167:13;:18;;;-1:-1:-1;;;;;39151:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;39151:34:0;;:81;;;;39220:12;:10;:12::i;:::-;-1:-1:-1;;;;;39196:36:0;:20;39208:7;39196:11;:20::i;:::-;-1:-1:-1;;;;;39196:36:0;;39151:81;:142;;;-1:-1:-1;39260:18:0;;39243:50;;39280:12;:10;:12::i;39243:50::-;39125:169;;39319:17;39303:101;;;;-1:-1:-1;;;39303:101:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39451:4;-1:-1:-1;;;;;39429:26:0;:13;:18;;;-1:-1:-1;;;;;39429:26:0;;39413:98;;;;-1:-1:-1;;;39413:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39526:16:0;;39518:66;;;;-1:-1:-1;;;39518:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39593:43;39615:4;39621:2;39625:7;39634:1;39593:21;:43::i;:::-;39693:49;39710:1;39714:7;39723:13;:18;;;39693:8;:49::i;:::-;-1:-1:-1;;;;;39751:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39751:31:0;;;-1:-1:-1;;;;;39751:31:0;;;-1:-1:-1;;39751:31:0;;;;;;;39789:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39789:29:0;;;;;;;;;;;;;39848:43;;;;;;;;;;39874:15;39848:43;;;;;;;;;;39825:20;;;:11;:20;;;;;;:66;;;;;;-1:-1:-1;;;;;;39825:66:0;;;;;;;-1:-1:-1;;;;39825:66:0;-1:-1:-1;;;39825:66:0;;;;;;;;;;;;;;40141:11;;;40163:24;;;;;:29;40141:11;;40163:29;40159:236;;40221:20;40229:11;40221:7;:20::i;:::-;40217:171;;;40281:97;;;;;;;;40308:18;;-1:-1:-1;;;;;40281:97:0;;;;;;40339:28;;;;40281:97;;;;;;;;;;-1:-1:-1;40254:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;40254:124:0;;;;;;;;;-1:-1:-1;;;;40254:124:0;-1:-1:-1;;;40254:124:0;;;;;;;;;;;;;;40217:171;40427:7;40423:2;-1:-1:-1;;;;;40408:27:0;40417:4;-1:-1:-1;;;;;40408:27:0;;;;;;;;;;;40442:42;40463:4;40469:2;40473:7;40482:1;40442:20;:42::i;:::-;38961:1529;;;;;;:::o;13797:179::-;13855:7;13887:5;;;13911:6;;;;13903:46;;;;;-1:-1:-1;;;13903:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;37020:98;37085:27;37095:2;37099:8;37085:27;;;;;;;;;;;;:9;:27::i;32722:606::-;32798:21;;:::i;:::-;32839:16;32847:7;32839;:16::i;:::-;32831:71;;;;-1:-1:-1;;;32831:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32911:26;32959:12;32948:7;:23;32944:93;;-1:-1:-1;33028:1:0;33013:12;33003:22;;:26;32944:93;33065:7;33045:212;33082:18;33074:4;:26;33045:212;;33119:31;;:::i;:::-;-1:-1:-1;33153:17:0;;;;:11;:17;;;;;;;;;33119:51;;;;;;;;;-1:-1:-1;;;;;33119:51:0;;;;;-1:-1:-1;;;33119:51:0;;;;;;;;;;;;33183:28;33179:71;;33231:9;-1:-1:-1;33224:16:0;;-1:-1:-1;;33224:16:0;33179:71;-1:-1:-1;;;33102:6:0;33045:212;;;;33265:57;;-1:-1:-1;;;33265:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42311:690;42448:4;42465:15;:2;-1:-1:-1;;;;;42465:13:0;;:15::i;:::-;42461:535;;;42520:2;-1:-1:-1;;;;;42504:36:0;;42541:12;:10;:12::i;:::-;42555:4;42561:7;42570:5;42504:72;;;;;;;;;;;;;-1:-1:-1;;;;;42504:72:0;;;;;;-1:-1:-1;;;;;42504:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42504:72:0;;;42491:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42735:13:0;;42731:215;;42768:61;;-1:-1:-1;;;42768:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42731:215;42914:6;42908:13;42899:6;42895:2;42891:15;42884:38;42491:464;-1:-1:-1;;;;;;42626:55:0;-1:-1:-1;;;42626:55:0;;-1:-1:-1;42619:62:0;;42461:535;-1:-1:-1;42984:4:0;42461:535;42311:690;;;;;;:::o;49034:108::-;49127:7;49120:14;;;;;;;;-1:-1:-1;;49120:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49094:13;;49120:14;;49127:7;;49120:14;;49127:7;49120:14;;;;;;;;;;;;;;;;;;;;;;;;26741:746;26797:13;27018:10;27014:53;;-1:-1:-1;27045:10:0;;;;;;;;;;;;-1:-1:-1;;;27045:10:0;;;;;;27014:53;27092:5;27077:12;27133:78;27140:9;;27133:78;;27166:8;;27197:2;27189:10;;;;27133:78;;;27221:19;27253:6;27243:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27243:17:0;-1:-1:-1;27315:5:0;;-1:-1:-1;27221:39:0;-1:-1:-1;;;27287:10:0;;27331:117;27338:9;;27331:117;;27407:2;27400:4;:9;27395:2;:14;27382:29;;27364:6;27371:7;;;;;;;27364:15;;;;;;;;;;;:47;-1:-1:-1;;;;;27364:47:0;;;;;;;;-1:-1:-1;27434:2:0;27426:10;;;;27331:117;;;-1:-1:-1;27472:6:0;26741:746;-1:-1:-1;;;;26741:746:0:o;14259:158::-;14317:7;14350:1;14345;:6;;14337:49;;;;;-1:-1:-1;;;14337:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14404:5:0;;;14259:158::o;14676:220::-;14734:7;14758:6;14754:20;;-1:-1:-1;14773:1:0;14766:8;;14754:20;14797:5;;;14801:1;14797;:5;:1;14821:5;;;;;:10;14813:56;;;;-1:-1:-1;;;14813:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37457:1272;37585:12;;-1:-1:-1;;;;;37612:16:0;;37604:62;;;;-1:-1:-1;;;37604:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37803:21;37811:12;37803:7;:21::i;:::-;37802:22;37794:64;;;;;-1:-1:-1;;;37794:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37885:12;37873:8;:24;;37865:71;;;;-1:-1:-1;;;37865:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37945:61;37975:1;37979:2;37983:12;37997:8;37945:21;:61::i;:::-;38015:30;;:::i;:::-;38048:12;:16;38061:2;-1:-1:-1;;;;;38048:16:0;-1:-1:-1;;;;;38048:16:0;;;;;;;;;;;;38015:49;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38015:49:0;-1:-1:-1;;;;;38015:49:0;-1:-1:-1;;;;;38015:49:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38015:49:0;-1:-1:-1;;;;;38015:49:0;-1:-1:-1;;;;;38015:49:0;;;;;;;38090:119;;;;;;;;38140:8;38110:11;:19;;;:39;-1:-1:-1;;;;;38090:119:0;;;;;38193:8;38158:11;:24;;;:44;-1:-1:-1;;;;;38090:119:0;;;;38071:12;:16;38084:2;-1:-1:-1;;;;;38071:16:0;-1:-1:-1;;;;;38071:16:0;;;;;;;;;;;;:138;;;;;;;;;;;;;-1:-1:-1;;;;;38071:138:0;;;;;-1:-1:-1;;;;;38071:138:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38071:138:0;;;;;-1:-1:-1;;;;;38071:138:0;;;;;;;;;38244:43;;;;;;;;38259:2;-1:-1:-1;;;;;38244:43:0;;;;;38270:15;38244:43;;;;;38216:11;:25;38228:12;38216:25;;;;;;;;;;;:71;;;;;;;;;;;;;-1:-1:-1;;;;;38216:71:0;;;;;-1:-1:-1;;;;;38216:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38296:20;38319:12;38296:35;;38345:9;38340:281;38364:8;38360:1;:12;38340:281;;;38393:38;;38418:12;;-1:-1:-1;;;;;38393:38:0;;;38410:1;;38393:38;;38410:1;;38393:38;38458:59;38489:1;38493:2;38497:12;38511:5;38458:22;:59::i;:::-;38440:150;;;;-1:-1:-1;;;38440:150:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38599:14;;;;;38374:3;38340:281;;;-1:-1:-1;38629:12:0;:27;;;38663:60;38692:1;38696:2;38700:12;38714:8;38663:20;:60::i;19238:422::-;19605:20;19644:8;;;19238:422::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://6279c3e2e4c73aa74c221aecbfc21443e8ef7e3dc84d6d04a27079229986645f
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.