Overview
Max Total Supply
999 WOD
Holders
234
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 WODLoading...
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-22 */ // 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 = 720000000000000000; //0.72 ETH uint256 public constant LandPriceDiscount = 580000000000000000; //0.58 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
60006001819055600881905560e0604081905260c08290526200002691600a9190620003f0565b506103e7600f556010805460ff191690553480156200004457600080fd5b506040516200358a3803806200358a833981810160405260808110156200006a57600080fd5b81019080805160405193929190846401000000008211156200008b57600080fd5b908301906020820185811115620000a157600080fd5b8251640100000000811182820188101715620000bc57600080fd5b82525081516020918201929091019080838360005b83811015620000eb578181015183820152602001620000d1565b50505050905090810190601f168015620001195780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200013d57600080fd5b9083019060208201858111156200015357600080fd5b82516401000000008111828201881017156200016e57600080fd5b82525081516020918201929091019080838360005b838110156200019d57818101518382015260200162000183565b50505050905090810190601f168015620001cb5780820380516001836020036101000a031916815260200191505b506040908152602082015191015190925090508383600a84620001f56301ffc9a760e01b62000367565b60008111620002365760405162461bcd60e51b815260040180806020018281038252602e8152602001806200355c602e913960400191505060405180910390fd5b60008211620002775760405162461bcd60e51b8152600401808060200182810382526027815260200180620035356027913960400191505060405180910390fd5b83516200028c906002906020870190620003f0565b508251620002a2906003906020860190620003f0565b5060a0919091526080525060009050620002bb620003ec565b600980546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600e9190915562112380016011555050601280546001600160a01b031990811673d06cf9e1189feab09c844c597abc3767bc12608c179091556013805490911673ee425bbbec5e9bf4a59a1c19efff522ad8b7a47a1790556200048c565b6001600160e01b03198082161415620003c7576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200043357805160ff191683800117855562000463565b8280016001018555821562000463579182015b828111156200046357825182559160200191906001019062000446565b506200047192915062000475565b5090565b5b8082111562000471576000815560010162000476565b60805160a051613080620004b5600039806123a252806123cc52806128e05250506130806000f3fe60806040526004361061025c5760003560e01c806370a0823111610144578063cb774d47116100b6578063e98665501161007a578063e986655014610a01578063eb8d244414610a16578063f0292a0314610a2b578063f2fde38b14610a40578063fc22c15c14610a73578063fca9e46f14610a885761025c565b8063cb774d4714610912578063d509dd4a14610927578063d7224ba01461099c578063e36d6498146109b1578063e985e9c5146109c65761025c565b806395d89b411161010857806395d89b411461079d578063a22cb465146107b2578063ad0d13b6146107ed578063b88d4fde14610802578063c04c6f1a146108d3578063c87b56dd146108e85761025c565b806370a0823114610701578063715018a6146107345780637aa1aae3146107495780637d17fcbe146107735780638da5cb5b146107885761025c565b806323b872dd116101dd57806342842e0e116101a157806342842e0e146105b05780634f6ccce7146105f3578063544f19bd1461061d57806355f804b3146106475780636352211e146106c25780636c0360eb146106ec5761025c565b806323b872dd146104f55780632f745c591461053857806334918dfd146105715780633ccfd60b1461058657806340ed455c1461059b5761025c565b8063109695231161022457806310969523146103de57806318160ddd1461048f57806318e20a38146104b65780631a186227146104cb5780631a269066146104e05761025c565b8063018a2c371461026157806301ffc9a71461028d57806306fdde03146102d5578063081812fc1461035f578063095ea7b3146103a5575b600080fd5b34801561026d57600080fd5b5061028b6004803603602081101561028457600080fd5b5035610a9d565b005b34801561029957600080fd5b506102c1600480360360208110156102b057600080fd5b50356001600160e01b031916610b04565b604080519115158252519081900360200190f35b3480156102e157600080fd5b506102ea610b67565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561032457818101518382015260200161030c565b50505050905090810190601f1680156103515780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036b57600080fd5b506103896004803603602081101561038257600080fd5b5035610bfa565b604080516001600160a01b039092168252519081900360200190f35b3480156103b157600080fd5b5061028b600480360360408110156103c857600080fd5b506001600160a01b038135169060200135610c5c565b3480156103ea57600080fd5b5061028b6004803603602081101561040157600080fd5b810190602081018135600160201b81111561041b57600080fd5b82018360208201111561042d57600080fd5b803590602001918460018302840111600160201b8311171561044e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610d38945050505050565b34801561049b57600080fd5b506104a4610db1565b60408051918252519081900360200190f35b3480156104c257600080fd5b506104a4610db7565b3480156104d757600080fd5b50610389610dbd565b3480156104ec57600080fd5b506102ea610dcc565b34801561050157600080fd5b5061028b6004803603606081101561051857600080fd5b506001600160a01b03813581169160208101359091169060400135610e5a565b34801561054457600080fd5b506104a46004803603604081101561055b57600080fd5b506001600160a01b038135169060200135610e65565b34801561057d57600080fd5b5061028b610f97565b34801561059257600080fd5b5061028b61100d565b3480156105a757600080fd5b506104a461109e565b3480156105bc57600080fd5b5061028b600480360360608110156105d357600080fd5b506001600160a01b038135811691602081013590911690604001356110a3565b3480156105ff57600080fd5b506104a46004803603602081101561061657600080fd5b50356110be565b34801561062957600080fd5b5061028b6004803603602081101561064057600080fd5b5035611109565b34801561065357600080fd5b5061028b6004803603602081101561066a57600080fd5b810190602081018135600160201b81111561068457600080fd5b82018360208201111561069657600080fd5b803590602001918460018302840111600160201b831117156106b757600080fd5b50909250905061122b565b3480156106ce57600080fd5b50610389600480360360208110156106e557600080fd5b5035611299565b3480156106f857600080fd5b506102ea6112ab565b34801561070d57600080fd5b506104a46004803603602081101561072457600080fd5b50356001600160a01b0316611306565b34801561074057600080fd5b5061028b611372565b34801561075557600080fd5b506102c16004803603602081101561076c57600080fd5b503561141e565b34801561077f57600080fd5b5061028b611433565b34801561079457600080fd5b506103896114f0565b3480156107a957600080fd5b506102ea6114ff565b3480156107be57600080fd5b5061028b600480360360408110156107d557600080fd5b506001600160a01b0381351690602001351515611560565b3480156107f957600080fd5b506104a4611665565b34801561080e57600080fd5b5061028b6004803603608081101561082557600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561085f57600080fd5b82018360208201111561087157600080fd5b803590602001918460018302840111600160201b8311171561089257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611671945050505050565b3480156108df57600080fd5b506103896116c9565b3480156108f457600080fd5b506102ea6004803603602081101561090b57600080fd5b50356116d8565b34801561091e57600080fd5b506104a4611809565b61028b6004803603604081101561093d57600080fd5b81359190810190604081016020820135600160201b81111561095e57600080fd5b82018360208201111561097057600080fd5b803590602001918460208302840111600160201b8311171561099157600080fd5b50909250905061180f565b3480156109a857600080fd5b506104a4611cdd565b3480156109bd57600080fd5b506104a4611ce3565b3480156109d257600080fd5b506102c1600480360360408110156109e957600080fd5b506001600160a01b0381358116916020013516611ce9565b348015610a0d57600080fd5b5061028b611d17565b348015610a2257600080fd5b506102c1611e19565b348015610a3757600080fd5b506104a4611e22565b348015610a4c57600080fd5b5061028b60048036036020811015610a6357600080fd5b50356001600160a01b0316611e28565b348015610a7f57600080fd5b506104a4611f2b565b348015610a9457600080fd5b506104a4611f37565b610aa5611f3d565b6001600160a01b0316610ab66114f0565b6001600160a01b031614610aff576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b601155565b60006001600160e01b031982166380ac58cd60e01b1480610b3557506001600160e01b03198216635b5e139f60e01b145b80610b5057506001600160e01b0319821663780e9d6360e01b145b80610b5f5750610b5f82611f41565b90505b919050565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610bf05780601f10610bc557610100808354040283529160200191610bf0565b820191906000526020600020905b815481529060010190602001808311610bd357829003601f168201915b5050505050905090565b6000610c0582611f60565b610c405760405162461bcd60e51b815260040180806020018281038252602d815260200180612fdb602d913960400191505060405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c6782611299565b9050806001600160a01b0316836001600160a01b03161415610cba5760405162461bcd60e51b8152600401808060200182810382526022815260200180612f086022913960400191505060405180910390fd5b806001600160a01b0316610ccc611f3d565b6001600160a01b03161480610ced5750610ced81610ce8611f3d565b611ce9565b610d285760405162461bcd60e51b8152600401808060200182810382526039815260200180612ddc6039913960400191505060405180910390fd5b610d33838383611f67565b505050565b610d40611f3d565b6001600160a01b0316610d516114f0565b6001600160a01b031614610d9a576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b8051610dad90600a906020840190612be6565b5050565b60015490565b60115481565b6013546001600160a01b031681565b600a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e525780601f10610e2757610100808354040283529160200191610e52565b820191906000526020600020905b815481529060010190602001808311610e3557829003601f168201915b505050505081565b610d33838383611fc3565b6000610e7083611306565b8210610ead5760405162461bcd60e51b8152600401808060200182810382526022815260200180612cfb6022913960400191505060405180910390fd5b6000610eb7610db1565b905060008060005b83811015610f5957610ecf612c60565b506000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f1b57805192505b876001600160a01b0316836001600160a01b03161415610f505786841415610f4957509350610f9192505050565b6001909301925b50600101610ebf565b5060405162461bcd60e51b815260040180806020018281038252602e815260200180612f7e602e913960400191505060405180910390fd5b92915050565b610f9f611f3d565b6001600160a01b0316610fb06114f0565b6001600160a01b031614610ff9576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b6010805460ff19811660ff90911615179055565b611015611f3d565b6001600160a01b03166110266114f0565b6001600160a01b03161461106f576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610dad573d6000803e3d6000fd5b600a81565b610d3383838360405180602001604052806000815250611671565b60006110c8610db1565b82106111055760405162461bcd60e51b8152600401808060200182810382526023815260200180612d6d6023913960400191505060405180910390fd5b5090565b611111611f3d565b6001600160a01b03166111226114f0565b6001600160a01b03161461116b576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b600081116111b6576040805162461bcd60e51b8152602060048201526013602482015272135a5b9d08185d081b19585cdd080c48139195606a1b604482015290519081900360640190fd5b600e546111cb826111c5610db1565b906122de565b111561121e576040805162461bcd60e51b815260206004820152601f60248201527f4d696e7420776f756c6420657863656564206d617820574f44204c616e647300604482015290519081900360640190fd5b6112283382612338565b50565b611233611f3d565b6001600160a01b03166112446114f0565b6001600160a01b03161461128d576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b610d33600b8383612c77565b60006112a482612352565b5192915050565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e525780601f10610e2757610100808354040283529160200191610e52565b60006001600160a01b03821661134d5760405162461bcd60e51b815260040180806020018281038252602b815260200180612e15602b913960400191505060405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160801b031690565b61137a611f3d565b6001600160a01b031661138b6114f0565b6001600160a01b0316146113d4576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b60146020526000908152604090205460ff1681565b61143b611f3d565b6001600160a01b031661144c6114f0565b6001600160a01b031614611495576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b600d54156114ea576040805162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015290519081900360640190fd5b43600c55565b6009546001600160a01b031690565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bf05780601f10610bc557610100808354040283529160200191610bf0565b611568611f3d565b6001600160a01b0316826001600160a01b031614156115ce576040805162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015290519081900360640190fd5b80600760006115db611f3d565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561161f611f3d565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b67080c92ed51ba000081565b61167c848484611fc3565b61168884848484612493565b6116c35760405162461bcd60e51b8152600401808060200182810382526033815260200180612f2a6033913960400191505060405180910390fd5b50505050565b6012546001600160a01b031681565b60606116e382611f60565b61171e5760405162461bcd60e51b815260040180806020018281038252602f815260200180612ea7602f913960400191505060405180910390fd5b6060611728612649565b905060008151116117485760405180602001604052806000815250611802565b80611752846126aa565b6040516020018083805190602001908083835b602083106117845780518252601f199092019160209182019101611765565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106117cc5780518252601f1990920191602091820191016117ad565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040525b9392505050565b600d5481565b60105460ff16611866576040805162461bcd60e51b815260206004820152601f60248201527f53616c65206d7573742062652061637469766520746f206d696e7420574f4400604482015290519081900360640190fd5b600a8311156118a65760405162461bcd60e51b81526004018080602001828103825260218152602001806130086021913960400191505060405180910390fd5b600083116118f1576040805162461bcd60e51b8152602060048201526013602482015272135a5b9d08185d081b19585cdd080c48139195606a1b604482015290519081900360640190fd5b600f54611900846111c5610db1565b111561193d5760405162461bcd60e51b8152600401808060200182810382526027815260200180612db56027913960400191505060405180910390fd5b82811115611992576040805162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070726f76696465206d6f7265207468616e2031302043415753604482015290519081900360640190fd5b60008115611baa5760005b82811015611ba857601460008585848181106119b557fe5b602090810292909201358352508101919091526040016000205460ff161515600114611ba05760125433906001600160a01b0316636352211e8686858181106119fa57fe5b905060200201356040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015611a3557600080fd5b505afa158015611a49573d6000803e3d6000fd5b505050506040513d6020811015611a5f57600080fd5b50516001600160a01b03161415611abb57600160146000868685818110611a8257fe5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055508180600101925050611ba0565b6013546000906001600160a01b0316631852e8d933878786818110611adc57fe5b905060200201356040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b158015611b2757600080fd5b505afa158015611b3b573d6000803e3d6000fd5b505050506040513d6020811015611b5157600080fd5b50511115611ba057600160146000868685818110611b6b57fe5b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555081806001019250505b60010161199d565b505b8015611c3a5734611be2611bd0611bc18785612785565b6709fdf42f6e480000906127e2565b6111c567080c92ed51ba0000856127e2565b1115611c35576040805162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015290519081900360640190fd5b611ca0565b34611c4d6709fdf42f6e480000866127e2565b1115611ca0576040805162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015290519081900360640190fd5b611caa3385612338565b600c54158015611cce5750600e54611cc0610db1565b1480611cce57506011544210155b156116c35743600c5550505050565b60085481565b600c5481565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600d5415611d6c576040805162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015290519081900360640190fd5b600c54611dc0576040805162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604482015290519081900360640190fd5b600e54600c544081611dce57fe5b06600d55600c5460ff90611de3904390612785565b1115611dfe57600e5460001943014081611df957fe5b06600d555b600d54611e1757600d54611e139060016122de565b600d555b565b60105460ff1681565b600f5481565b611e30611f3d565b6001600160a01b0316611e416114f0565b6001600160a01b031614611e8a576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b6001600160a01b038116611ecf5760405162461bcd60e51b8152600401808060200182810382526026815260200180612d1d6026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6709fdf42f6e48000081565b600e5481565b3390565b6001600160e01b03191660009081526020819052604090205460ff1690565b6001541190565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611fcb612c60565b611fd482612352565b9050600081600001516001600160a01b0316611fee611f3d565b6001600160a01b031614806120235750612006611f3d565b6001600160a01b031661201884610bfa565b6001600160a01b0316145b806120375750815161203790610ce8611f3d565b9050806120755760405162461bcd60e51b8152600401808060200182810382526032815260200180612ed66032913960400191505060405180910390fd5b846001600160a01b031682600001516001600160a01b0316146120c95760405162461bcd60e51b8152600401808060200182810382526026815260200180612e616026913960400191505060405180910390fd5b6001600160a01b03841661210e5760405162461bcd60e51b8152600401808060200182810382526025815260200180612d906025913960400191505060405180910390fd5b61211b85858560016116c3565b61212b6000848460000151611f67565b6001600160a01b03858116600090815260056020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a875260049095528386209251835495516001600160a01b03199096169088161767ffffffffffffffff60a01b1916600160a01b95909116949094029390931790559086018083529120549091166122885761220b81611f60565b156122885760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122d686868660016116c3565b505050505050565b600082820183811015611802576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b610dad82826040518060200160405280600081525061283b565b61235a612c60565b61236382611f60565b61239e5760405162461bcd60e51b815260040180806020018281038252602a815260200180612d43602a913960400191505060405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106123ef575060017f00000000000000000000000000000000000000000000000000000000000000008303015b825b81811061245b57612400612c60565b506000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612451579250610b62915050565b50600019016123f1565b5060405162461bcd60e51b815260040180806020018281038252602f815260200180612fac602f913960400191505060405180910390fd5b60006124a7846001600160a01b0316612be0565b1561263d57836001600160a01b031663150b7a026124c3611f3d565b8786866040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561253657818101518382015260200161251e565b50505050905090810190601f1680156125635780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561258557600080fd5b505af19250505080156125aa57506040513d60208110156125a557600080fd5b505160015b612623573d8080156125d8576040519150601f19603f3d011682016040523d82523d6000602084013e6125dd565b606091505b50805161261b5760405162461bcd60e51b8152600401808060200182810382526033815260200180612f2a6033913960400191505060405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612641565b5060015b949350505050565b600b8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bf05780601f10610bc557610100808354040283529160200191610bf0565b6060816126cf57506040805180820190915260018152600360fc1b6020820152610b62565b8160005b81156126e757600101600a820491506126d3565b60608167ffffffffffffffff8111801561270057600080fd5b506040519080825280601f01601f19166020018201604052801561272b576020820181803683370190505b50859350905060001982015b831561277c57600a840660300160f81b8282806001900393508151811061275a57fe5b60200101906001600160f81b031916908160001a905350600a84049350612737565b50949350505050565b6000828211156127dc576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000826127f157506000610f91565b828202828482816127fe57fe5b04146118025760405162461bcd60e51b8152600401808060200182810382526021815260200180612e406021913960400191505060405180910390fd5b6001546001600160a01b0384166128835760405162461bcd60e51b8152600401808060200182810382526021815260200180612f5d6021913960400191505060405180910390fd5b61288c81611f60565b156128de576040805162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561293d5760405162461bcd60e51b81526004018080602001828103825260228152602001806130296022913960400191505060405180910390fd5b61294a60008583866116c3565b612952612c60565b60056000866001600160a01b03166001600160a01b031681526020019081526020016000206040518060400160405290816000820160009054906101000a90046001600160801b03166001600160801b03166001600160801b031681526020016000820160109054906101000a90046001600160801b03166001600160801b03166001600160801b03168152505090506040518060400160405280858360000151016001600160801b03168152602001858360200151016001600160801b031681525060056000876001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160801b0302191690836001600160801b0316021790555060208201518160000160106101000a8154816001600160801b0302191690836001600160801b031602179055509050506040518060400160405280866001600160a01b031681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612bcd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612b866000888488612493565b612bc15760405162461bcd60e51b8152600401808060200182810382526033815260200180612f2a6033913960400191505060405180910390fd5b60019182019101612b39565b5060018190556122d660008785886116c3565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612c2757805160ff1916838001178555612c54565b82800160010185558215612c54579182015b82811115612c54578251825591602001919060010190612c39565b50611105929150612ce5565b604080518082019091526000808252602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612cb85782800160ff19823516178555612c54565b82800160010185558215612c54579182015b82811115612c54578235825591602001919060010190612cca565b5b808211156111055760008155600101612ce656fe455243373231413a206f776e657220696e646578206f7574206f6620626f756e64734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243373231413a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756e6473455243373231413a207472616e7366657220746f20746865207a65726f2061646472657373507572636861736520776f756c6420657863656564206d61782047656e65736973204c616e6473455243373231413a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c455243373231413a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77455243373231413a207472616e736665722066726f6d20696e636f7272656374206f776e65724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231413a20617070726f76616c20746f2063757272656e74206f776e6572455243373231413a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572455243373231413a206d696e7420746f20746865207a65726f2061646472657373455243373231413a20756e61626c6520746f2067657420746f6b656e206f66206f776e657220627920696e646578455243373231413a20756e61626c6520746f2064657465726d696e6520746865206f776e6572206f6620746f6b656e455243373231413a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d65455243373231413a207175616e7469747920746f206d696e7420746f6f2068696768a26469706673582212200e3023f654839e12a27981b1556886c0b79d6a1cc7793753ba35f553c3ff57e864736f6c63430007000033455243373231413a206d61782062617463682073697a65206d757374206265206e6f6e7a65726f455243373231413a20636f6c6c656374696f6e206d75737420686176652061206e6f6e7a65726f20737570706c79000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000001869f0000000000000000000000000000000000000000000000000000000063f65820000000000000000000000000000000000000000000000000000000000000000e576f726c646f6644797069616e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003574f440000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061025c5760003560e01c806370a0823111610144578063cb774d47116100b6578063e98665501161007a578063e986655014610a01578063eb8d244414610a16578063f0292a0314610a2b578063f2fde38b14610a40578063fc22c15c14610a73578063fca9e46f14610a885761025c565b8063cb774d4714610912578063d509dd4a14610927578063d7224ba01461099c578063e36d6498146109b1578063e985e9c5146109c65761025c565b806395d89b411161010857806395d89b411461079d578063a22cb465146107b2578063ad0d13b6146107ed578063b88d4fde14610802578063c04c6f1a146108d3578063c87b56dd146108e85761025c565b806370a0823114610701578063715018a6146107345780637aa1aae3146107495780637d17fcbe146107735780638da5cb5b146107885761025c565b806323b872dd116101dd57806342842e0e116101a157806342842e0e146105b05780634f6ccce7146105f3578063544f19bd1461061d57806355f804b3146106475780636352211e146106c25780636c0360eb146106ec5761025c565b806323b872dd146104f55780632f745c591461053857806334918dfd146105715780633ccfd60b1461058657806340ed455c1461059b5761025c565b8063109695231161022457806310969523146103de57806318160ddd1461048f57806318e20a38146104b65780631a186227146104cb5780631a269066146104e05761025c565b8063018a2c371461026157806301ffc9a71461028d57806306fdde03146102d5578063081812fc1461035f578063095ea7b3146103a5575b600080fd5b34801561026d57600080fd5b5061028b6004803603602081101561028457600080fd5b5035610a9d565b005b34801561029957600080fd5b506102c1600480360360208110156102b057600080fd5b50356001600160e01b031916610b04565b604080519115158252519081900360200190f35b3480156102e157600080fd5b506102ea610b67565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561032457818101518382015260200161030c565b50505050905090810190601f1680156103515780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036b57600080fd5b506103896004803603602081101561038257600080fd5b5035610bfa565b604080516001600160a01b039092168252519081900360200190f35b3480156103b157600080fd5b5061028b600480360360408110156103c857600080fd5b506001600160a01b038135169060200135610c5c565b3480156103ea57600080fd5b5061028b6004803603602081101561040157600080fd5b810190602081018135600160201b81111561041b57600080fd5b82018360208201111561042d57600080fd5b803590602001918460018302840111600160201b8311171561044e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610d38945050505050565b34801561049b57600080fd5b506104a4610db1565b60408051918252519081900360200190f35b3480156104c257600080fd5b506104a4610db7565b3480156104d757600080fd5b50610389610dbd565b3480156104ec57600080fd5b506102ea610dcc565b34801561050157600080fd5b5061028b6004803603606081101561051857600080fd5b506001600160a01b03813581169160208101359091169060400135610e5a565b34801561054457600080fd5b506104a46004803603604081101561055b57600080fd5b506001600160a01b038135169060200135610e65565b34801561057d57600080fd5b5061028b610f97565b34801561059257600080fd5b5061028b61100d565b3480156105a757600080fd5b506104a461109e565b3480156105bc57600080fd5b5061028b600480360360608110156105d357600080fd5b506001600160a01b038135811691602081013590911690604001356110a3565b3480156105ff57600080fd5b506104a46004803603602081101561061657600080fd5b50356110be565b34801561062957600080fd5b5061028b6004803603602081101561064057600080fd5b5035611109565b34801561065357600080fd5b5061028b6004803603602081101561066a57600080fd5b810190602081018135600160201b81111561068457600080fd5b82018360208201111561069657600080fd5b803590602001918460018302840111600160201b831117156106b757600080fd5b50909250905061122b565b3480156106ce57600080fd5b50610389600480360360208110156106e557600080fd5b5035611299565b3480156106f857600080fd5b506102ea6112ab565b34801561070d57600080fd5b506104a46004803603602081101561072457600080fd5b50356001600160a01b0316611306565b34801561074057600080fd5b5061028b611372565b34801561075557600080fd5b506102c16004803603602081101561076c57600080fd5b503561141e565b34801561077f57600080fd5b5061028b611433565b34801561079457600080fd5b506103896114f0565b3480156107a957600080fd5b506102ea6114ff565b3480156107be57600080fd5b5061028b600480360360408110156107d557600080fd5b506001600160a01b0381351690602001351515611560565b3480156107f957600080fd5b506104a4611665565b34801561080e57600080fd5b5061028b6004803603608081101561082557600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561085f57600080fd5b82018360208201111561087157600080fd5b803590602001918460018302840111600160201b8311171561089257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611671945050505050565b3480156108df57600080fd5b506103896116c9565b3480156108f457600080fd5b506102ea6004803603602081101561090b57600080fd5b50356116d8565b34801561091e57600080fd5b506104a4611809565b61028b6004803603604081101561093d57600080fd5b81359190810190604081016020820135600160201b81111561095e57600080fd5b82018360208201111561097057600080fd5b803590602001918460208302840111600160201b8311171561099157600080fd5b50909250905061180f565b3480156109a857600080fd5b506104a4611cdd565b3480156109bd57600080fd5b506104a4611ce3565b3480156109d257600080fd5b506102c1600480360360408110156109e957600080fd5b506001600160a01b0381358116916020013516611ce9565b348015610a0d57600080fd5b5061028b611d17565b348015610a2257600080fd5b506102c1611e19565b348015610a3757600080fd5b506104a4611e22565b348015610a4c57600080fd5b5061028b60048036036020811015610a6357600080fd5b50356001600160a01b0316611e28565b348015610a7f57600080fd5b506104a4611f2b565b348015610a9457600080fd5b506104a4611f37565b610aa5611f3d565b6001600160a01b0316610ab66114f0565b6001600160a01b031614610aff576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b601155565b60006001600160e01b031982166380ac58cd60e01b1480610b3557506001600160e01b03198216635b5e139f60e01b145b80610b5057506001600160e01b0319821663780e9d6360e01b145b80610b5f5750610b5f82611f41565b90505b919050565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610bf05780601f10610bc557610100808354040283529160200191610bf0565b820191906000526020600020905b815481529060010190602001808311610bd357829003601f168201915b5050505050905090565b6000610c0582611f60565b610c405760405162461bcd60e51b815260040180806020018281038252602d815260200180612fdb602d913960400191505060405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c6782611299565b9050806001600160a01b0316836001600160a01b03161415610cba5760405162461bcd60e51b8152600401808060200182810382526022815260200180612f086022913960400191505060405180910390fd5b806001600160a01b0316610ccc611f3d565b6001600160a01b03161480610ced5750610ced81610ce8611f3d565b611ce9565b610d285760405162461bcd60e51b8152600401808060200182810382526039815260200180612ddc6039913960400191505060405180910390fd5b610d33838383611f67565b505050565b610d40611f3d565b6001600160a01b0316610d516114f0565b6001600160a01b031614610d9a576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b8051610dad90600a906020840190612be6565b5050565b60015490565b60115481565b6013546001600160a01b031681565b600a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e525780601f10610e2757610100808354040283529160200191610e52565b820191906000526020600020905b815481529060010190602001808311610e3557829003601f168201915b505050505081565b610d33838383611fc3565b6000610e7083611306565b8210610ead5760405162461bcd60e51b8152600401808060200182810382526022815260200180612cfb6022913960400191505060405180910390fd5b6000610eb7610db1565b905060008060005b83811015610f5957610ecf612c60565b506000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f1b57805192505b876001600160a01b0316836001600160a01b03161415610f505786841415610f4957509350610f9192505050565b6001909301925b50600101610ebf565b5060405162461bcd60e51b815260040180806020018281038252602e815260200180612f7e602e913960400191505060405180910390fd5b92915050565b610f9f611f3d565b6001600160a01b0316610fb06114f0565b6001600160a01b031614610ff9576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b6010805460ff19811660ff90911615179055565b611015611f3d565b6001600160a01b03166110266114f0565b6001600160a01b03161461106f576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610dad573d6000803e3d6000fd5b600a81565b610d3383838360405180602001604052806000815250611671565b60006110c8610db1565b82106111055760405162461bcd60e51b8152600401808060200182810382526023815260200180612d6d6023913960400191505060405180910390fd5b5090565b611111611f3d565b6001600160a01b03166111226114f0565b6001600160a01b03161461116b576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b600081116111b6576040805162461bcd60e51b8152602060048201526013602482015272135a5b9d08185d081b19585cdd080c48139195606a1b604482015290519081900360640190fd5b600e546111cb826111c5610db1565b906122de565b111561121e576040805162461bcd60e51b815260206004820152601f60248201527f4d696e7420776f756c6420657863656564206d617820574f44204c616e647300604482015290519081900360640190fd5b6112283382612338565b50565b611233611f3d565b6001600160a01b03166112446114f0565b6001600160a01b03161461128d576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b610d33600b8383612c77565b60006112a482612352565b5192915050565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e525780601f10610e2757610100808354040283529160200191610e52565b60006001600160a01b03821661134d5760405162461bcd60e51b815260040180806020018281038252602b815260200180612e15602b913960400191505060405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160801b031690565b61137a611f3d565b6001600160a01b031661138b6114f0565b6001600160a01b0316146113d4576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b60146020526000908152604090205460ff1681565b61143b611f3d565b6001600160a01b031661144c6114f0565b6001600160a01b031614611495576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b600d54156114ea576040805162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015290519081900360640190fd5b43600c55565b6009546001600160a01b031690565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bf05780601f10610bc557610100808354040283529160200191610bf0565b611568611f3d565b6001600160a01b0316826001600160a01b031614156115ce576040805162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015290519081900360640190fd5b80600760006115db611f3d565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561161f611f3d565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b67080c92ed51ba000081565b61167c848484611fc3565b61168884848484612493565b6116c35760405162461bcd60e51b8152600401808060200182810382526033815260200180612f2a6033913960400191505060405180910390fd5b50505050565b6012546001600160a01b031681565b60606116e382611f60565b61171e5760405162461bcd60e51b815260040180806020018281038252602f815260200180612ea7602f913960400191505060405180910390fd5b6060611728612649565b905060008151116117485760405180602001604052806000815250611802565b80611752846126aa565b6040516020018083805190602001908083835b602083106117845780518252601f199092019160209182019101611765565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106117cc5780518252601f1990920191602091820191016117ad565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040525b9392505050565b600d5481565b60105460ff16611866576040805162461bcd60e51b815260206004820152601f60248201527f53616c65206d7573742062652061637469766520746f206d696e7420574f4400604482015290519081900360640190fd5b600a8311156118a65760405162461bcd60e51b81526004018080602001828103825260218152602001806130086021913960400191505060405180910390fd5b600083116118f1576040805162461bcd60e51b8152602060048201526013602482015272135a5b9d08185d081b19585cdd080c48139195606a1b604482015290519081900360640190fd5b600f54611900846111c5610db1565b111561193d5760405162461bcd60e51b8152600401808060200182810382526027815260200180612db56027913960400191505060405180910390fd5b82811115611992576040805162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070726f76696465206d6f7265207468616e2031302043415753604482015290519081900360640190fd5b60008115611baa5760005b82811015611ba857601460008585848181106119b557fe5b602090810292909201358352508101919091526040016000205460ff161515600114611ba05760125433906001600160a01b0316636352211e8686858181106119fa57fe5b905060200201356040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015611a3557600080fd5b505afa158015611a49573d6000803e3d6000fd5b505050506040513d6020811015611a5f57600080fd5b50516001600160a01b03161415611abb57600160146000868685818110611a8257fe5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055508180600101925050611ba0565b6013546000906001600160a01b0316631852e8d933878786818110611adc57fe5b905060200201356040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b158015611b2757600080fd5b505afa158015611b3b573d6000803e3d6000fd5b505050506040513d6020811015611b5157600080fd5b50511115611ba057600160146000868685818110611b6b57fe5b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555081806001019250505b60010161199d565b505b8015611c3a5734611be2611bd0611bc18785612785565b6709fdf42f6e480000906127e2565b6111c567080c92ed51ba0000856127e2565b1115611c35576040805162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015290519081900360640190fd5b611ca0565b34611c4d6709fdf42f6e480000866127e2565b1115611ca0576040805162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015290519081900360640190fd5b611caa3385612338565b600c54158015611cce5750600e54611cc0610db1565b1480611cce57506011544210155b156116c35743600c5550505050565b60085481565b600c5481565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600d5415611d6c576040805162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015290519081900360640190fd5b600c54611dc0576040805162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604482015290519081900360640190fd5b600e54600c544081611dce57fe5b06600d55600c5460ff90611de3904390612785565b1115611dfe57600e5460001943014081611df957fe5b06600d555b600d54611e1757600d54611e139060016122de565b600d555b565b60105460ff1681565b600f5481565b611e30611f3d565b6001600160a01b0316611e416114f0565b6001600160a01b031614611e8a576040805162461bcd60e51b81526020600482018190526024820152600080516020612e87833981519152604482015290519081900360640190fd5b6001600160a01b038116611ecf5760405162461bcd60e51b8152600401808060200182810382526026815260200180612d1d6026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6709fdf42f6e48000081565b600e5481565b3390565b6001600160e01b03191660009081526020819052604090205460ff1690565b6001541190565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611fcb612c60565b611fd482612352565b9050600081600001516001600160a01b0316611fee611f3d565b6001600160a01b031614806120235750612006611f3d565b6001600160a01b031661201884610bfa565b6001600160a01b0316145b806120375750815161203790610ce8611f3d565b9050806120755760405162461bcd60e51b8152600401808060200182810382526032815260200180612ed66032913960400191505060405180910390fd5b846001600160a01b031682600001516001600160a01b0316146120c95760405162461bcd60e51b8152600401808060200182810382526026815260200180612e616026913960400191505060405180910390fd5b6001600160a01b03841661210e5760405162461bcd60e51b8152600401808060200182810382526025815260200180612d906025913960400191505060405180910390fd5b61211b85858560016116c3565b61212b6000848460000151611f67565b6001600160a01b03858116600090815260056020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a875260049095528386209251835495516001600160a01b03199096169088161767ffffffffffffffff60a01b1916600160a01b95909116949094029390931790559086018083529120549091166122885761220b81611f60565b156122885760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122d686868660016116c3565b505050505050565b600082820183811015611802576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b610dad82826040518060200160405280600081525061283b565b61235a612c60565b61236382611f60565b61239e5760405162461bcd60e51b815260040180806020018281038252602a815260200180612d43602a913960400191505060405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106123ef575060017f000000000000000000000000000000000000000000000000000000000000000a8303015b825b81811061245b57612400612c60565b506000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612451579250610b62915050565b50600019016123f1565b5060405162461bcd60e51b815260040180806020018281038252602f815260200180612fac602f913960400191505060405180910390fd5b60006124a7846001600160a01b0316612be0565b1561263d57836001600160a01b031663150b7a026124c3611f3d565b8786866040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561253657818101518382015260200161251e565b50505050905090810190601f1680156125635780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561258557600080fd5b505af19250505080156125aa57506040513d60208110156125a557600080fd5b505160015b612623573d8080156125d8576040519150601f19603f3d011682016040523d82523d6000602084013e6125dd565b606091505b50805161261b5760405162461bcd60e51b8152600401808060200182810382526033815260200180612f2a6033913960400191505060405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612641565b5060015b949350505050565b600b8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bf05780601f10610bc557610100808354040283529160200191610bf0565b6060816126cf57506040805180820190915260018152600360fc1b6020820152610b62565b8160005b81156126e757600101600a820491506126d3565b60608167ffffffffffffffff8111801561270057600080fd5b506040519080825280601f01601f19166020018201604052801561272b576020820181803683370190505b50859350905060001982015b831561277c57600a840660300160f81b8282806001900393508151811061275a57fe5b60200101906001600160f81b031916908160001a905350600a84049350612737565b50949350505050565b6000828211156127dc576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000826127f157506000610f91565b828202828482816127fe57fe5b04146118025760405162461bcd60e51b8152600401808060200182810382526021815260200180612e406021913960400191505060405180910390fd5b6001546001600160a01b0384166128835760405162461bcd60e51b8152600401808060200182810382526021815260200180612f5d6021913960400191505060405180910390fd5b61288c81611f60565b156128de576040805162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000a83111561293d5760405162461bcd60e51b81526004018080602001828103825260228152602001806130296022913960400191505060405180910390fd5b61294a60008583866116c3565b612952612c60565b60056000866001600160a01b03166001600160a01b031681526020019081526020016000206040518060400160405290816000820160009054906101000a90046001600160801b03166001600160801b03166001600160801b031681526020016000820160109054906101000a90046001600160801b03166001600160801b03166001600160801b03168152505090506040518060400160405280858360000151016001600160801b03168152602001858360200151016001600160801b031681525060056000876001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160801b0302191690836001600160801b0316021790555060208201518160000160106101000a8154816001600160801b0302191690836001600160801b031602179055509050506040518060400160405280866001600160a01b031681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612bcd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612b866000888488612493565b612bc15760405162461bcd60e51b8152600401808060200182810382526033815260200180612f2a6033913960400191505060405180910390fd5b60019182019101612b39565b5060018190556122d660008785886116c3565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612c2757805160ff1916838001178555612c54565b82800160010185558215612c54579182015b82811115612c54578251825591602001919060010190612c39565b50611105929150612ce5565b604080518082019091526000808252602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612cb85782800160ff19823516178555612c54565b82800160010185558215612c54579182015b82811115612c54578235825591602001919060010190612cca565b5b808211156111055760008155600101612ce656fe455243373231413a206f776e657220696e646578206f7574206f6620626f756e64734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243373231413a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756e6473455243373231413a207472616e7366657220746f20746865207a65726f2061646472657373507572636861736520776f756c6420657863656564206d61782047656e65736973204c616e6473455243373231413a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c455243373231413a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77455243373231413a207472616e736665722066726f6d20696e636f7272656374206f776e65724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231413a20617070726f76616c20746f2063757272656e74206f776e6572455243373231413a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572455243373231413a206d696e7420746f20746865207a65726f2061646472657373455243373231413a20756e61626c6520746f2067657420746f6b656e206f66206f776e657220627920696e646578455243373231413a20756e61626c6520746f2064657465726d696e6520746865206f776e6572206f6620746f6b656e455243373231413a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d65455243373231413a207175616e7469747920746f206d696e7420746f6f2068696768a26469706673582212200e3023f654839e12a27981b1556886c0b79d6a1cc7793753ba35f553c3ff57e864736f6c63430007000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000001869f0000000000000000000000000000000000000000000000000000000063f65820000000000000000000000000000000000000000000000000000000000000000e576f726c646f6644797069616e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003574f440000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): WorldofDypians
Arg [1] : symbol (string): WOD
Arg [2] : maxNftSupply (uint256): 99999
Arg [3] : saleStart (uint256): 1677088800
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000000000000001869f
Arg [3] : 0000000000000000000000000000000000000000000000000000000063f65820
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 576f726c646f6644797069616e73000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 574f440000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46876:5719:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48711:123;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48711: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;48907:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48907:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48907:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48907:124:0;;-1:-1:-1;48907:124:0;;-1:-1:-1;;;;;48907:124:0:i;30394:94::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;47433:31;;;;;;;;;;;;;:::i;47512:34::-;;;;;;;;;;;;;:::i;46962:33::-;;;;;;;;;;;;;:::i;35934:142::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35934:142:0;;;;;;;;;;;;;;;;;:::i;31025:744::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31025:744:0;;;;;;;;:::i;49332:89::-;;;;;;;;;;;;;:::i;48110:131::-;;;;;;;;;;;;;:::i;47273:41::-;;;;;;;;;;;;;:::i;36139:157::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36139:157:0;;;;;;;;;;;;;;;;;:::i;30557:177::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30557:177:0;;:::i;48296:359::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48296:359:0;;:::i;49155:102::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49155:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49155:102:0;;;;;;;;;;-1:-1:-1;49155:102:0;;-1:-1:-1;49155:102:0;-1:-1:-1;49155: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;47641:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47641:41:0;;:::i;52400:192::-;;;;;;;;;;;;;:::i;45248:87::-;;;;;;;;;;;;;:::i;33714:98::-;;;;;;;;;;;;;:::i;35352:274::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35352:274:0;;;;;;;;;;:::i;47187:62::-;;;;;;;;;;;;;:::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;47473:32::-;;;;;;;;;;;;;:::i;33875:394::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33875:394:0;;:::i;47076:28::-;;;;;;;;;;;;;:::i;49463:2050::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49463:2050:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49463:2050:0;;;;;;;;;;-1:-1:-1;49463:2050:0;;-1:-1:-1;49463:2050:0;-1:-1:-1;49463:2050:0;:::i;40774:43::-;;;;;;;;;;;;;:::i;47034:33::-;;;;;;;;;;;;;:::i;35689:186::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35689:186:0;;;;;;;;;;:::i;51589:674::-;;;;;;;;;;;;;:::i;47392:32::-;;;;;;;;;;;;;:::i;47354:29::-;;;;;;;;;;;;;:::i;46202:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46202:244:0;-1:-1:-1;;;;;46202:244:0;;:::i;47113:54::-;;;;;;;;;;;;;:::i;47323:22::-;;;;;;;;;;;;;:::i;48711: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;;;;;;;;;;;;;;;48792:16:::1;:34:::0;48711: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;48907: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;;;;;;;;;;;;;;;48992:31;;::::1;::::0;:14:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48907:124:::0;:::o;30394:94::-;30470:12;;30394:94;:::o;47433:31::-;;;;:::o;47512:34::-;;;-1:-1:-1;;;;;47512: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;49332: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;;;;;;;;;;;;;;;49401:12:::1;::::0;;-1:-1:-1;;49385:28:0;::::1;49401:12;::::0;;::::1;49400:13;49385:28;::::0;;49332:89::o;48110: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;;;;;;;;;;;;;;;48205:28:::1;::::0;48173:21:::1;::::0;48205:10:::1;::::0;:28;::::1;;;::::0;48173:21;;48158:12:::1;48205:28:::0;48158:12;48205:28;48173:21;48205:10;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;47273:41:::0;47312:2;47273: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;48296:359::-;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;;;;;;;;;;;;;;;48390:1:::1;48373:14;:18;48365:50;;;::::0;;-1:-1:-1;;;48365:50:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;48365:50:0;;;;;;;;;;;;;::::1;;48546:7;;48509:33;48527:14;48509:13;:11;:13::i;:::-;:17:::0;::::1;:33::i;:::-;:44;;48501:88;;;::::0;;-1:-1:-1;;;48501:88:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48610:37;48620:10;48632:14;48610:9;:37::i;:::-;48296:359:::0;:::o;49155: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;;;;;;;;;;;;;;;49231:18:::1;:7;49241:8:::0;;49231: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;47641:41::-;;;;;;;;;;;;;;;:::o;52400: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;;;;;;;;;;;;;;;52478:13:::1;::::0;:18;52470:60:::1;;;::::0;;-1:-1:-1;;;52470:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;52572:12;52551:18;:33:::0;52400: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;47187:62::-;47231:18;47187:62;:::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;47473:32::-;;;-1:-1:-1;;;;;47473: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;49463:2050::-;49568:12;;;;49560:56;;;;;-1:-1:-1;;;49560:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;47312:2;49635:14;:33;;49627:79;;;;-1:-1:-1;;;49627:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49742:1;49725:14;:18;49717:50;;;;;-1:-1:-1;;;49717:50:0;;;;;;;;;;;;-1:-1:-1;;;49717:50:0;;;;;;;;;;;;;;;49823:8;;49786:33;49804:14;49786:13;:11;:13::i;:33::-;:45;;49778:97;;;;-1:-1:-1;;;49778:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49896:33;;;;49888:78;;;;;-1:-1:-1;;;49888:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49979:18;50018:20;;50014:746;;50060:6;50055:694;50072:19;;;50055:694;;;50123:8;:21;50132:8;;50141:1;50132:11;;;;;;;;;;;;;;;;50123:21;;-1:-1:-1;50123:21:0;;;;;;;;-1:-1:-1;50123:21:0;;;;:29;;:21;:29;50119:615;;50234:12;;50271:10;;-1:-1:-1;;;;;50234:12:0;:20;50255:8;;50264:1;50255:11;;;;;;;;;;;;;50234:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50234:33:0;-1:-1:-1;;;;;50234:47:0;;50230:209;;;50334:4;50310:8;:21;50319:8;;50328:1;50319:11;;;;;;;;;;;;;50310:21;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;50365:15;;;;;;;50407:8;;50230:209;50534:13;;50591:1;;-1:-1:-1;;;;;50534:13:0;:29;50564:10;50576:8;;50585:1;50576:11;;;;;;;;;;;;;50534:54;;;;;;;;;;;;;-1:-1:-1;;;;;50534:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50534:54:0;:58;50530:185;;;50645:4;50621:8;:21;50630:8;;50639:1;50630:11;;;;;;;;;;;;;50621:21;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;50676:15;;;;;;;50530:185;50093:3;;50055:694;;;;50014:746;50776:18;;50772:317;;50913:9;50819:90;50860:48;50874:33;:14;50893:13;50874:18;:33::i;:::-;47149:18;;50860:13;:48::i;:::-;50819:36;47231:18;50841:13;50819:21;:36::i;:90::-;:103;;50811:147;;;;;-1:-1:-1;;;50811:147:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;50772:317;;;51032:9;50999:29;47149:18;51013:14;50999:13;:29::i;:::-;:42;;50991:86;;;;;-1:-1:-1;;;50991:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;51101:37;51111:10;51123:14;51101:9;:37::i;:::-;51351:18;;:23;:92;;;;;51396:7;;51379:13;:11;:13::i;:::-;:24;:63;;;;51426:16;;51407:15;:35;;51379:63;51347:158;;;51481:12;51460:18;:33;49463: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;51589:674::-;51643:13;;:18;51635:60;;;;;-1:-1:-1;;;51635:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;51714:18;;51706:68;;;;;-1:-1:-1;;;51706:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51849:7;;51826:18;;51816:29;51849:7;51811:45;;;;;51795:13;:61;52009:18;;52031:3;;51992:36;;:12;;:16;:36::i;:::-;:42;51988:134;;;52103:7;;-1:-1:-1;;52082:12:0;:16;52072:27;52103:7;52067:43;;;;;52051:13;:59;51988:134;52173:13;;52169:87;;52224:13;;:20;;52242:1;52224:17;:20::i;:::-;52208:13;:36;52169:87;51589:674::o;47392:32::-;;;;;;:::o;47354: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:54::-;47149:18;47113:54;:::o;47323: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;49039:108::-;49132:7;49125:14;;;;;;;;-1:-1:-1;;49125:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49099:13;;49125:14;;49132:7;;49125:14;;49132:7;49125: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://0e3023f654839e12a27981b1556886c0b79d6a1cc7793753ba35f553c3ff57e8
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.