Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
69 Gengang
Holders
49
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GengangLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GengangNFT
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-03 */ //Gengang $GHOST NFTs - Gengang Collection //Community: https://t.me/GengarERC // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } pragma solidity >=0.7.0 <0.9.0; contract GengangNFT is ERC721Enumerable, Ownable { using Strings for uint256; using SafeMath for uint256; using Counters for Counters.Counter; // Constants string public baseExtension = ".json"; uint256 public cost = 0 ether; // Supply mapping(address => uint256) public lastMinted; // Rate limiting uint256 public maxSupply = 69; uint256 public lastSupply = maxSupply; uint256 public maxMintAmount = 1; // Lists uint256[69] public remainingIds; mapping(uint256 => uint256) public lastDividendAt; mapping(uint256 => address) public minters; // Params bool public paused = false; string private _baseTokenURI; address private _wallet; // Constructor constructor(string memory name, string memory symbol, string memory baseTokenURI) ERC721(name, symbol) { // Save URI _baseTokenURI = baseTokenURI; // Save dev wallet _wallet = msg.sender; } // URI Handling function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } // Setters function setBaseURI(string memory baseURI) external onlyOwner { _baseTokenURI = baseURI; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } // Minting function mint(uint256 _mintAmount) public payable { // Checks require(!paused, "Gengang: minting has not started yet"); require(_mintAmount > 0, "Gengang: you have to mint at least one"); require(_mintAmount <= maxMintAmount, "Gengang: you can only mint 1 at a time"); require(lastSupply >= _mintAmount, "Gengang: the collection is sold out"); if (msg.sender != owner()) { require(msg.value >= cost * _mintAmount, "Gengang: total cost isn't match"); } // Minting for (uint256 i = 1; i <= _mintAmount; i++) { // Mint for caller _randomMint(msg.sender); } } // Random mint function _randomMint(address _target) internal returns (uint256) { // Get Random id to mint uint256 _index = _getRandom() % lastSupply; uint256 _realIndex = getValue(_index) + 1; // Reduce supply lastSupply--; // Replace used id by last remainingIds[_index] = getValue(lastSupply); // Mint _safeMint(_target, _realIndex); // Save Original minters minters[_realIndex] = msg.sender; return _realIndex; } // Mint for reserved spots function _regularMint() internal returns (uint256) { // Get Actual id to mint uint256 _index = totalSupply(); uint256 _realIndex = getValue(_index) + 1; // Reduce supply lastSupply--; // Replace used id by last remainingIds[_index] = getValue(lastSupply); // Mint _safeMint(msg.sender, _realIndex); // Save Original minters minters[_realIndex] = msg.sender; return _realIndex; } // Get Token List function getTokenIds(address _owner) public view returns (uint256[] memory) { // Count owned Token uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); // Get ids of owned Token for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } // Return compiled Token URI function tokenURI(uint256 _id) public view virtual override returns (string memory){ require(_exists(_id),"Gengang: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _id.toString(), baseExtension)) : ""; } // Payments function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } // Utils // Get value from a remaining id node function getValue(uint _index) internal view returns(uint256){ if(remainingIds[_index] != 0) return remainingIds[_index]; else return _index; } // Create a random id for minting function _getRandom() internal view returns (uint256) { return uint256( keccak256( abi.encodePacked(block.difficulty, block.timestamp, lastSupply) ) ); } }
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":"string","name":"baseTokenURI","type":"string"}],"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":[{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastDividendAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minters","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"remainingIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","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":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600b91906200014b565b506000600c556045600e819055600f5560016010556058805460ff191690553480156200005457600080fd5b5060405162002bcf38038062002bcf83398101604081905262000077916200029c565b825183908390620000909060009060208501906200014b565b508051620000a69060019060208401906200014b565b505050620000c3620000bd620000f560201b60201c565b620000f9565b8051620000d89060599060208401906200014b565b5050605a80546001600160a01b03191633179055506200037c9050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001599062000329565b90600052602060002090601f0160209004810192826200017d5760008555620001c8565b82601f106200019857805160ff1916838001178555620001c8565b82800160010185558215620001c8579182015b82811115620001c8578251825591602001919060010190620001ab565b50620001d6929150620001da565b5090565b5b80821115620001d65760008155600101620001db565b600082601f83011262000202578081fd5b81516001600160401b03808211156200021f576200021f62000366565b6040516020601f8401601f191682018101838111838210171562000247576200024762000366565b60405283825285840181018710156200025e578485fd5b8492505b8383101562000281578583018101518284018201529182019162000262565b838311156200029257848185840101525b5095945050505050565b600080600060608486031215620002b1578283fd5b83516001600160401b0380821115620002c8578485fd5b620002d687838801620001f1565b94506020860151915080821115620002ec578384fd5b620002fa87838801620001f1565b9350604086015191508082111562000310578283fd5b506200031f86828701620001f1565b9150509250925092565b6002810460018216806200033e57607f821691505b602082108114156200036057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612843806200038c6000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063c6682862116100ab578063da3ef23f1161006f578063da3ef23f146105d8578063e985e9c5146105f8578063ee6d9d6d14610618578063f2fde38b14610638578063f75b8c5f146106585761021a565b8063c668286214610541578063c87b56dd14610556578063d004b03614610576578063d2068857146105a3578063d5abeb01146105c35761021a565b80638da5cb5b116100f25780638da5cb5b146104c457806395d89b41146104d9578063a0712d68146104ee578063a22cb46514610501578063b88d4fde146105215761021a565b806370a082311461044f578063715018a61461046f5780637f00c7a6146104845780638623ec7b146104a45761021a565b80632e686d69116101a657806344a0d68a1161017557806344a0d68a146103ba5780634f6ccce7146103da57806355f804b3146103fa5780635c975abb1461041a5780636352211e1461042f5761021a565b80632e686d69146103525780632f745c59146103725780633ccfd60b1461039257806342842e0e1461039a5761021a565b8063095ea7b3116101ed578063095ea7b3146102c657806313faede6146102e657806318160ddd14610308578063239c70ae1461031d57806323b872dd146103325761021a565b806301ffc9a71461021f57806302329a291461025557806306fdde0314610277578063081812fc14610299575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611e01565b61066d565b60405161024c9190612033565b60405180910390f35b34801561026157600080fd5b50610275610270366004611de7565b61069a565b005b34801561028357600080fd5b5061028c6106f5565b60405161024c919061203e565b3480156102a557600080fd5b506102b96102b4366004611e7f565b610787565b60405161024c9190611f9e565b3480156102d257600080fd5b506102756102e1366004611dbe565b6107ca565b3480156102f257600080fd5b506102fb610862565b60405161024c9190612691565b34801561031457600080fd5b506102fb610868565b34801561032957600080fd5b506102fb61086e565b34801561033e57600080fd5b5061027561034d366004611ce1565b610874565b34801561035e57600080fd5b506102fb61036d366004611c95565b6108ac565b34801561037e57600080fd5b506102fb61038d366004611dbe565b6108be565b610275610910565b3480156103a657600080fd5b506102756103b5366004611ce1565b6109bb565b3480156103c657600080fd5b506102756103d5366004611e7f565b6109d6565b3480156103e657600080fd5b506102fb6103f5366004611e7f565b610a1a565b34801561040657600080fd5b50610275610415366004611e39565b610a75565b34801561042657600080fd5b5061023f610acb565b34801561043b57600080fd5b506102b961044a366004611e7f565b610ad4565b34801561045b57600080fd5b506102fb61046a366004611c95565b610b09565b34801561047b57600080fd5b50610275610b4d565b34801561049057600080fd5b5061027561049f366004611e7f565b610b98565b3480156104b057600080fd5b506102b96104bf366004611e7f565b610bdc565b3480156104d057600080fd5b506102b9610bf7565b3480156104e557600080fd5b5061028c610c06565b6102756104fc366004611e7f565b610c15565b34801561050d57600080fd5b5061027561051c366004611d95565b610d0f565b34801561052d57600080fd5b5061027561053c366004611d1c565b610ddd565b34801561054d57600080fd5b5061028c610e1c565b34801561056257600080fd5b5061028c610571366004611e7f565b610eaa565b34801561058257600080fd5b50610596610591366004611c95565b610f30565b60405161024c9190611fef565b3480156105af57600080fd5b506102fb6105be366004611e7f565b610fee565b3480156105cf57600080fd5b506102fb611000565b3480156105e457600080fd5b506102756105f3366004611e39565b611006565b34801561060457600080fd5b5061023f610613366004611caf565b611058565b34801561062457600080fd5b506102fb610633366004611e7f565b611086565b34801561064457600080fd5b50610275610653366004611c95565b61109d565b34801561066457600080fd5b506102fb61110b565b60006001600160e01b0319821663780e9d6360e01b1480610692575061069282611111565b90505b919050565b6106a2611151565b6001600160a01b03166106b3610bf7565b6001600160a01b0316146106e25760405162461bcd60e51b81526004016106d9906124a9565b60405180910390fd5b6058805460ff1916911515919091179055565b6060600080546107049061274b565b80601f01602080910402602001604051908101604052809291908181526020018280546107309061274b565b801561077d5780601f106107525761010080835404028352916020019161077d565b820191906000526020600020905b81548152906001019060200180831161076057829003601f168201915b5050505050905090565b600061079282611155565b6107ae5760405162461bcd60e51b81526004016106d99061245d565b506000908152600460205260409020546001600160a01b031690565b60006107d582610ad4565b9050806001600160a01b0316836001600160a01b031614156108095760405162461bcd60e51b81526004016106d990612527565b806001600160a01b031661081b611151565b6001600160a01b03161480610837575061083781610613611151565b6108535760405162461bcd60e51b81526004016106d990612338565b61085d8383611172565b505050565b600c5481565b60085490565b60105481565b61088561087f611151565b826111e0565b6108a15760405162461bcd60e51b81526004016106d990612568565b61085d838383611265565b600d6020526000908152604090205481565b60006108c983610b09565b82106108e75760405162461bcd60e51b81526004016106d990612088565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610918611151565b6001600160a01b0316610929610bf7565b6001600160a01b03161461094f5760405162461bcd60e51b81526004016106d9906124a9565b6000336001600160a01b03164760405161096890611f85565b60006040518083038185875af1925050503d80600081146109a5576040519150601f19603f3d011682016040523d82523d6000602084013e6109aa565b606091505b50509050806109b857600080fd5b50565b61085d83838360405180602001604052806000815250610ddd565b6109de611151565b6001600160a01b03166109ef610bf7565b6001600160a01b031614610a155760405162461bcd60e51b81526004016106d9906124a9565b600c55565b6000610a24610868565b8210610a425760405162461bcd60e51b81526004016106d9906125b9565b60088281548110610a6357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610a7d611151565b6001600160a01b0316610a8e610bf7565b6001600160a01b031614610ab45760405162461bcd60e51b81526004016106d9906124a9565b8051610ac7906059906020840190611b65565b5050565b60585460ff1681565b6000818152600260205260408120546001600160a01b0316806106925760405162461bcd60e51b81526004016106d9906123df565b60006001600160a01b038216610b315760405162461bcd60e51b81526004016106d990612395565b506001600160a01b031660009081526003602052604090205490565b610b55611151565b6001600160a01b0316610b66610bf7565b6001600160a01b031614610b8c5760405162461bcd60e51b81526004016106d9906124a9565b610b966000611392565b565b610ba0611151565b6001600160a01b0316610bb1610bf7565b6001600160a01b031614610bd75760405162461bcd60e51b81526004016106d9906124a9565b601055565b6057602052600090815260409020546001600160a01b031681565b600a546001600160a01b031690565b6060600180546107049061274b565b60585460ff1615610c385760405162461bcd60e51b81526004016106d9906122a8565b60008111610c585760405162461bcd60e51b81526004016106d99061264b565b601054811115610c7a5760405162461bcd60e51b81526004016106d990612605565b80600f541015610c9c5760405162461bcd60e51b81526004016106d990612125565b610ca4610bf7565b6001600160a01b0316336001600160a01b031614610ce95780600c54610cca91906126d2565b341015610ce95760405162461bcd60e51b81526004016106d990612051565b60015b818111610ac757610cfc336113e4565b5080610d0781612786565b915050610cec565b610d17611151565b6001600160a01b0316826001600160a01b03161415610d485760405162461bcd60e51b81526004016106d990612271565b8060056000610d55611151565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d99611151565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dd19190612033565b60405180910390a35050565b610dee610de8611151565b836111e0565b610e0a5760405162461bcd60e51b81526004016106d990612568565b610e1684848484611489565b50505050565b600b8054610e299061274b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e559061274b565b8015610ea25780601f10610e7757610100808354040283529160200191610ea2565b820191906000526020600020905b815481529060010190602001808311610e8557829003601f168201915b505050505081565b6060610eb582611155565b610ed15760405162461bcd60e51b81526004016106d9906121e5565b6000610edb6114bc565b90506000815111610efb5760405180602001604052806000815250610f29565b80610f05846114cb565b600b604051602001610f1993929190611ec3565b6040516020818303038152906040525b9392505050565b60606000610f3d83610b09565b905060008167ffffffffffffffff811115610f6857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610f91578160200160208202803683370190505b50905060005b82811015610fe657610fa985826108be565b828281518110610fc957634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610fde81612786565b915050610f97565b509392505050565b60566020526000908152604090205481565b600e5481565b61100e611151565b6001600160a01b031661101f610bf7565b6001600160a01b0316146110455760405162461bcd60e51b81526004016106d9906124a9565b8051610ac790600b906020840190611b65565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6011816045811061109657600080fd5b0154905081565b6110a5611151565b6001600160a01b03166110b6610bf7565b6001600160a01b0316146110dc5760405162461bcd60e51b81526004016106d9906124a9565b6001600160a01b0381166111025760405162461bcd60e51b81526004016106d990612168565b6109b881611392565b600f5481565b60006001600160e01b031982166380ac58cd60e01b148061114257506001600160e01b03198216635b5e139f60e01b145b806106925750610692826115e6565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111a782610ad4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006111eb82611155565b6112075760405162461bcd60e51b81526004016106d9906122ec565b600061121283610ad4565b9050806001600160a01b0316846001600160a01b0316148061124d5750836001600160a01b031661124284610787565b6001600160a01b0316145b8061125d575061125d8185611058565b949350505050565b826001600160a01b031661127882610ad4565b6001600160a01b03161461129e5760405162461bcd60e51b81526004016106d9906124de565b6001600160a01b0382166112c45760405162461bcd60e51b81526004016106d99061222d565b6112cf8383836115ff565b6112da600082611172565b6001600160a01b03831660009081526003602052604081208054600192906113039084906126f1565b90915550506001600160a01b03821660009081526003602052604081208054600192906113319084906126a6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080600f546113f2611688565b6113fc91906127a1565b90506000611409826116bf565b6114149060016126a6565b600f8054919250600061142683612734565b9190505550611436600f546116bf565b6011836045811061145757634e487b7160e01b600052603260045260246000fd5b0155611463848261171a565b600081815260576020526040902080546001600160a01b03191633179055915050919050565b611494848484611265565b6114a084848484611734565b610e165760405162461bcd60e51b81526004016106d9906120d3565b6060605980546107049061274b565b6060816114f057506040805180820190915260018152600360fc1b6020820152610695565b8160005b811561151a578061150481612786565b91506115139050600a836126be565b91506114f4565b60008167ffffffffffffffff81111561154357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561156d576020820181803683370190505b5090505b841561125d576115826001836126f1565b915061158f600a866127a1565b61159a9060306126a6565b60f81b8183815181106115bd57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506115df600a866126be565b9450611571565b6001600160e01b031981166301ffc9a760e01b14919050565b61160a83838361085d565b6001600160a01b038316611626576116218161184f565b611649565b816001600160a01b0316836001600160a01b031614611649576116498382611893565b6001600160a01b0382166116655761166081611930565b61085d565b826001600160a01b0316826001600160a01b03161461085d5761085d8282611a09565b60004442600f546040516020016116a193929190611f88565b6040516020818303038152906040528051906020012060001c905090565b6000601182604581106116e257634e487b7160e01b600052603260045260246000fd5b015415611713576011826045811061170a57634e487b7160e01b600052603260045260246000fd5b01549050610695565b5080610695565b610ac7828260405180602001604052806000815250611a4d565b6000611748846001600160a01b0316611a80565b1561184457836001600160a01b031663150b7a02611764611151565b8786866040518563ffffffff1660e01b81526004016117869493929190611fb2565b602060405180830381600087803b1580156117a057600080fd5b505af19250505080156117d0575060408051601f3d908101601f191682019092526117cd91810190611e1d565b60015b61182a573d8080156117fe576040519150601f19603f3d011682016040523d82523d6000602084013e611803565b606091505b5080516118225760405162461bcd60e51b81526004016106d9906120d3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061125d565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016118a084610b09565b6118aa91906126f1565b6000838152600760205260409020549091508082146118fd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611942906001906126f1565b6000838152600960205260408120546008805493945090928490811061197857634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106119a757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119ed57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611a1483610b09565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611a578383611a86565b611a646000848484611734565b61085d5760405162461bcd60e51b81526004016106d9906120d3565b3b151590565b6001600160a01b038216611aac5760405162461bcd60e51b81526004016106d990612428565b611ab581611155565b15611ad25760405162461bcd60e51b81526004016106d9906121ae565b611ade600083836115ff565b6001600160a01b0382166000908152600360205260408120805460019290611b079084906126a6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b719061274b565b90600052602060002090601f016020900481019282611b935760008555611bd9565b82601f10611bac57805160ff1916838001178555611bd9565b82800160010185558215611bd9579182015b82811115611bd9578251825591602001919060010190611bbe565b50611be5929150611be9565b5090565b5b80821115611be55760008155600101611bea565b600067ffffffffffffffff80841115611c1957611c196127e1565b604051601f8501601f191681016020018281118282101715611c3d57611c3d6127e1565b604052848152915081838501861015611c5557600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461069557600080fd5b8035801515811461069557600080fd5b600060208284031215611ca6578081fd5b610f2982611c6e565b60008060408385031215611cc1578081fd5b611cca83611c6e565b9150611cd860208401611c6e565b90509250929050565b600080600060608486031215611cf5578081fd5b611cfe84611c6e565b9250611d0c60208501611c6e565b9150604084013590509250925092565b60008060008060808587031215611d31578081fd5b611d3a85611c6e565b9350611d4860208601611c6e565b925060408501359150606085013567ffffffffffffffff811115611d6a578182fd5b8501601f81018713611d7a578182fd5b611d8987823560208401611bfe565b91505092959194509250565b60008060408385031215611da7578182fd5b611db083611c6e565b9150611cd860208401611c85565b60008060408385031215611dd0578182fd5b611dd983611c6e565b946020939093013593505050565b600060208284031215611df8578081fd5b610f2982611c85565b600060208284031215611e12578081fd5b8135610f29816127f7565b600060208284031215611e2e578081fd5b8151610f29816127f7565b600060208284031215611e4a578081fd5b813567ffffffffffffffff811115611e60578182fd5b8201601f81018413611e70578182fd5b61125d84823560208401611bfe565b600060208284031215611e90578081fd5b5035919050565b60008151808452611eaf816020860160208601612708565b601f01601f19169290920160200192915050565b600084516020611ed68285838a01612708565b855191840191611ee98184848a01612708565b8554920191839060028104600180831680611f0557607f831692505b858310811415611f2357634e487b7160e01b88526022600452602488fd5b808015611f375760018114611f4857611f74565b60ff19851688528388019550611f74565b611f518b61269a565b895b85811015611f6c5781548a820152908401908801611f53565b505083880195505b50939b9a5050505050505050505050565b90565b9283526020830191909152604082015260600190565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fe590830184611e97565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120275783518352928401929184019160010161200b565b50909695505050505050565b901515815260200190565b600060208252610f296020830184611e97565b6020808252601f908201527f47656e67616e673a20746f74616c20636f73742069736e2774206d6174636800604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526023908201527f47656e67616e673a2074686520636f6c6c656374696f6e20697320736f6c64206040820152621bdd5d60ea1b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526028908201527f47656e67616e673a2055524920717565727920666f72206e6f6e657869737465604082015267373a103a37b5b2b760c11b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526024908201527f47656e67616e673a206d696e74696e6720686173206e6f742073746172746564604082015263081e595d60e21b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526026908201527f47656e67616e673a20796f752063616e206f6e6c79206d696e74203120617420604082015265612074696d6560d01b606082015260800190565b60208082526026908201527f47656e67616e673a20796f75206861766520746f206d696e74206174206c65616040820152657374206f6e6560d01b606082015260800190565b90815260200190565b60009081526020902090565b600082198211156126b9576126b96127b5565b500190565b6000826126cd576126cd6127cb565b500490565b60008160001904831182151516156126ec576126ec6127b5565b500290565b600082821015612703576127036127b5565b500390565b60005b8381101561272357818101518382015260200161270b565b83811115610e165750506000910152565b600081612743576127436127b5565b506000190190565b60028104600182168061275f57607f821691505b6020821081141561278057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561279a5761279a6127b5565b5060010190565b6000826127b0576127b06127cb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109b857600080fdfea2646970667358221220783e0477e3a36665c0af9311aeced98ad59736e3381f186720a427354586b01964736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b47656e67616e67204e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000747656e67616e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569666462336e757576696b706e6d736c6c766a64346a6272647368777868646472667164746a646e616776366f6a753270753634752f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c806370a0823111610123578063c6682862116100ab578063da3ef23f1161006f578063da3ef23f146105d8578063e985e9c5146105f8578063ee6d9d6d14610618578063f2fde38b14610638578063f75b8c5f146106585761021a565b8063c668286214610541578063c87b56dd14610556578063d004b03614610576578063d2068857146105a3578063d5abeb01146105c35761021a565b80638da5cb5b116100f25780638da5cb5b146104c457806395d89b41146104d9578063a0712d68146104ee578063a22cb46514610501578063b88d4fde146105215761021a565b806370a082311461044f578063715018a61461046f5780637f00c7a6146104845780638623ec7b146104a45761021a565b80632e686d69116101a657806344a0d68a1161017557806344a0d68a146103ba5780634f6ccce7146103da57806355f804b3146103fa5780635c975abb1461041a5780636352211e1461042f5761021a565b80632e686d69146103525780632f745c59146103725780633ccfd60b1461039257806342842e0e1461039a5761021a565b8063095ea7b3116101ed578063095ea7b3146102c657806313faede6146102e657806318160ddd14610308578063239c70ae1461031d57806323b872dd146103325761021a565b806301ffc9a71461021f57806302329a291461025557806306fdde0314610277578063081812fc14610299575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611e01565b61066d565b60405161024c9190612033565b60405180910390f35b34801561026157600080fd5b50610275610270366004611de7565b61069a565b005b34801561028357600080fd5b5061028c6106f5565b60405161024c919061203e565b3480156102a557600080fd5b506102b96102b4366004611e7f565b610787565b60405161024c9190611f9e565b3480156102d257600080fd5b506102756102e1366004611dbe565b6107ca565b3480156102f257600080fd5b506102fb610862565b60405161024c9190612691565b34801561031457600080fd5b506102fb610868565b34801561032957600080fd5b506102fb61086e565b34801561033e57600080fd5b5061027561034d366004611ce1565b610874565b34801561035e57600080fd5b506102fb61036d366004611c95565b6108ac565b34801561037e57600080fd5b506102fb61038d366004611dbe565b6108be565b610275610910565b3480156103a657600080fd5b506102756103b5366004611ce1565b6109bb565b3480156103c657600080fd5b506102756103d5366004611e7f565b6109d6565b3480156103e657600080fd5b506102fb6103f5366004611e7f565b610a1a565b34801561040657600080fd5b50610275610415366004611e39565b610a75565b34801561042657600080fd5b5061023f610acb565b34801561043b57600080fd5b506102b961044a366004611e7f565b610ad4565b34801561045b57600080fd5b506102fb61046a366004611c95565b610b09565b34801561047b57600080fd5b50610275610b4d565b34801561049057600080fd5b5061027561049f366004611e7f565b610b98565b3480156104b057600080fd5b506102b96104bf366004611e7f565b610bdc565b3480156104d057600080fd5b506102b9610bf7565b3480156104e557600080fd5b5061028c610c06565b6102756104fc366004611e7f565b610c15565b34801561050d57600080fd5b5061027561051c366004611d95565b610d0f565b34801561052d57600080fd5b5061027561053c366004611d1c565b610ddd565b34801561054d57600080fd5b5061028c610e1c565b34801561056257600080fd5b5061028c610571366004611e7f565b610eaa565b34801561058257600080fd5b50610596610591366004611c95565b610f30565b60405161024c9190611fef565b3480156105af57600080fd5b506102fb6105be366004611e7f565b610fee565b3480156105cf57600080fd5b506102fb611000565b3480156105e457600080fd5b506102756105f3366004611e39565b611006565b34801561060457600080fd5b5061023f610613366004611caf565b611058565b34801561062457600080fd5b506102fb610633366004611e7f565b611086565b34801561064457600080fd5b50610275610653366004611c95565b61109d565b34801561066457600080fd5b506102fb61110b565b60006001600160e01b0319821663780e9d6360e01b1480610692575061069282611111565b90505b919050565b6106a2611151565b6001600160a01b03166106b3610bf7565b6001600160a01b0316146106e25760405162461bcd60e51b81526004016106d9906124a9565b60405180910390fd5b6058805460ff1916911515919091179055565b6060600080546107049061274b565b80601f01602080910402602001604051908101604052809291908181526020018280546107309061274b565b801561077d5780601f106107525761010080835404028352916020019161077d565b820191906000526020600020905b81548152906001019060200180831161076057829003601f168201915b5050505050905090565b600061079282611155565b6107ae5760405162461bcd60e51b81526004016106d99061245d565b506000908152600460205260409020546001600160a01b031690565b60006107d582610ad4565b9050806001600160a01b0316836001600160a01b031614156108095760405162461bcd60e51b81526004016106d990612527565b806001600160a01b031661081b611151565b6001600160a01b03161480610837575061083781610613611151565b6108535760405162461bcd60e51b81526004016106d990612338565b61085d8383611172565b505050565b600c5481565b60085490565b60105481565b61088561087f611151565b826111e0565b6108a15760405162461bcd60e51b81526004016106d990612568565b61085d838383611265565b600d6020526000908152604090205481565b60006108c983610b09565b82106108e75760405162461bcd60e51b81526004016106d990612088565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610918611151565b6001600160a01b0316610929610bf7565b6001600160a01b03161461094f5760405162461bcd60e51b81526004016106d9906124a9565b6000336001600160a01b03164760405161096890611f85565b60006040518083038185875af1925050503d80600081146109a5576040519150601f19603f3d011682016040523d82523d6000602084013e6109aa565b606091505b50509050806109b857600080fd5b50565b61085d83838360405180602001604052806000815250610ddd565b6109de611151565b6001600160a01b03166109ef610bf7565b6001600160a01b031614610a155760405162461bcd60e51b81526004016106d9906124a9565b600c55565b6000610a24610868565b8210610a425760405162461bcd60e51b81526004016106d9906125b9565b60088281548110610a6357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610a7d611151565b6001600160a01b0316610a8e610bf7565b6001600160a01b031614610ab45760405162461bcd60e51b81526004016106d9906124a9565b8051610ac7906059906020840190611b65565b5050565b60585460ff1681565b6000818152600260205260408120546001600160a01b0316806106925760405162461bcd60e51b81526004016106d9906123df565b60006001600160a01b038216610b315760405162461bcd60e51b81526004016106d990612395565b506001600160a01b031660009081526003602052604090205490565b610b55611151565b6001600160a01b0316610b66610bf7565b6001600160a01b031614610b8c5760405162461bcd60e51b81526004016106d9906124a9565b610b966000611392565b565b610ba0611151565b6001600160a01b0316610bb1610bf7565b6001600160a01b031614610bd75760405162461bcd60e51b81526004016106d9906124a9565b601055565b6057602052600090815260409020546001600160a01b031681565b600a546001600160a01b031690565b6060600180546107049061274b565b60585460ff1615610c385760405162461bcd60e51b81526004016106d9906122a8565b60008111610c585760405162461bcd60e51b81526004016106d99061264b565b601054811115610c7a5760405162461bcd60e51b81526004016106d990612605565b80600f541015610c9c5760405162461bcd60e51b81526004016106d990612125565b610ca4610bf7565b6001600160a01b0316336001600160a01b031614610ce95780600c54610cca91906126d2565b341015610ce95760405162461bcd60e51b81526004016106d990612051565b60015b818111610ac757610cfc336113e4565b5080610d0781612786565b915050610cec565b610d17611151565b6001600160a01b0316826001600160a01b03161415610d485760405162461bcd60e51b81526004016106d990612271565b8060056000610d55611151565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d99611151565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dd19190612033565b60405180910390a35050565b610dee610de8611151565b836111e0565b610e0a5760405162461bcd60e51b81526004016106d990612568565b610e1684848484611489565b50505050565b600b8054610e299061274b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e559061274b565b8015610ea25780601f10610e7757610100808354040283529160200191610ea2565b820191906000526020600020905b815481529060010190602001808311610e8557829003601f168201915b505050505081565b6060610eb582611155565b610ed15760405162461bcd60e51b81526004016106d9906121e5565b6000610edb6114bc565b90506000815111610efb5760405180602001604052806000815250610f29565b80610f05846114cb565b600b604051602001610f1993929190611ec3565b6040516020818303038152906040525b9392505050565b60606000610f3d83610b09565b905060008167ffffffffffffffff811115610f6857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610f91578160200160208202803683370190505b50905060005b82811015610fe657610fa985826108be565b828281518110610fc957634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610fde81612786565b915050610f97565b509392505050565b60566020526000908152604090205481565b600e5481565b61100e611151565b6001600160a01b031661101f610bf7565b6001600160a01b0316146110455760405162461bcd60e51b81526004016106d9906124a9565b8051610ac790600b906020840190611b65565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6011816045811061109657600080fd5b0154905081565b6110a5611151565b6001600160a01b03166110b6610bf7565b6001600160a01b0316146110dc5760405162461bcd60e51b81526004016106d9906124a9565b6001600160a01b0381166111025760405162461bcd60e51b81526004016106d990612168565b6109b881611392565b600f5481565b60006001600160e01b031982166380ac58cd60e01b148061114257506001600160e01b03198216635b5e139f60e01b145b806106925750610692826115e6565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111a782610ad4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006111eb82611155565b6112075760405162461bcd60e51b81526004016106d9906122ec565b600061121283610ad4565b9050806001600160a01b0316846001600160a01b0316148061124d5750836001600160a01b031661124284610787565b6001600160a01b0316145b8061125d575061125d8185611058565b949350505050565b826001600160a01b031661127882610ad4565b6001600160a01b03161461129e5760405162461bcd60e51b81526004016106d9906124de565b6001600160a01b0382166112c45760405162461bcd60e51b81526004016106d99061222d565b6112cf8383836115ff565b6112da600082611172565b6001600160a01b03831660009081526003602052604081208054600192906113039084906126f1565b90915550506001600160a01b03821660009081526003602052604081208054600192906113319084906126a6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080600f546113f2611688565b6113fc91906127a1565b90506000611409826116bf565b6114149060016126a6565b600f8054919250600061142683612734565b9190505550611436600f546116bf565b6011836045811061145757634e487b7160e01b600052603260045260246000fd5b0155611463848261171a565b600081815260576020526040902080546001600160a01b03191633179055915050919050565b611494848484611265565b6114a084848484611734565b610e165760405162461bcd60e51b81526004016106d9906120d3565b6060605980546107049061274b565b6060816114f057506040805180820190915260018152600360fc1b6020820152610695565b8160005b811561151a578061150481612786565b91506115139050600a836126be565b91506114f4565b60008167ffffffffffffffff81111561154357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561156d576020820181803683370190505b5090505b841561125d576115826001836126f1565b915061158f600a866127a1565b61159a9060306126a6565b60f81b8183815181106115bd57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506115df600a866126be565b9450611571565b6001600160e01b031981166301ffc9a760e01b14919050565b61160a83838361085d565b6001600160a01b038316611626576116218161184f565b611649565b816001600160a01b0316836001600160a01b031614611649576116498382611893565b6001600160a01b0382166116655761166081611930565b61085d565b826001600160a01b0316826001600160a01b03161461085d5761085d8282611a09565b60004442600f546040516020016116a193929190611f88565b6040516020818303038152906040528051906020012060001c905090565b6000601182604581106116e257634e487b7160e01b600052603260045260246000fd5b015415611713576011826045811061170a57634e487b7160e01b600052603260045260246000fd5b01549050610695565b5080610695565b610ac7828260405180602001604052806000815250611a4d565b6000611748846001600160a01b0316611a80565b1561184457836001600160a01b031663150b7a02611764611151565b8786866040518563ffffffff1660e01b81526004016117869493929190611fb2565b602060405180830381600087803b1580156117a057600080fd5b505af19250505080156117d0575060408051601f3d908101601f191682019092526117cd91810190611e1d565b60015b61182a573d8080156117fe576040519150601f19603f3d011682016040523d82523d6000602084013e611803565b606091505b5080516118225760405162461bcd60e51b81526004016106d9906120d3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061125d565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016118a084610b09565b6118aa91906126f1565b6000838152600760205260409020549091508082146118fd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611942906001906126f1565b6000838152600960205260408120546008805493945090928490811061197857634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106119a757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119ed57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611a1483610b09565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611a578383611a86565b611a646000848484611734565b61085d5760405162461bcd60e51b81526004016106d9906120d3565b3b151590565b6001600160a01b038216611aac5760405162461bcd60e51b81526004016106d990612428565b611ab581611155565b15611ad25760405162461bcd60e51b81526004016106d9906121ae565b611ade600083836115ff565b6001600160a01b0382166000908152600360205260408120805460019290611b079084906126a6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b719061274b565b90600052602060002090601f016020900481019282611b935760008555611bd9565b82601f10611bac57805160ff1916838001178555611bd9565b82800160010185558215611bd9579182015b82811115611bd9578251825591602001919060010190611bbe565b50611be5929150611be9565b5090565b5b80821115611be55760008155600101611bea565b600067ffffffffffffffff80841115611c1957611c196127e1565b604051601f8501601f191681016020018281118282101715611c3d57611c3d6127e1565b604052848152915081838501861015611c5557600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461069557600080fd5b8035801515811461069557600080fd5b600060208284031215611ca6578081fd5b610f2982611c6e565b60008060408385031215611cc1578081fd5b611cca83611c6e565b9150611cd860208401611c6e565b90509250929050565b600080600060608486031215611cf5578081fd5b611cfe84611c6e565b9250611d0c60208501611c6e565b9150604084013590509250925092565b60008060008060808587031215611d31578081fd5b611d3a85611c6e565b9350611d4860208601611c6e565b925060408501359150606085013567ffffffffffffffff811115611d6a578182fd5b8501601f81018713611d7a578182fd5b611d8987823560208401611bfe565b91505092959194509250565b60008060408385031215611da7578182fd5b611db083611c6e565b9150611cd860208401611c85565b60008060408385031215611dd0578182fd5b611dd983611c6e565b946020939093013593505050565b600060208284031215611df8578081fd5b610f2982611c85565b600060208284031215611e12578081fd5b8135610f29816127f7565b600060208284031215611e2e578081fd5b8151610f29816127f7565b600060208284031215611e4a578081fd5b813567ffffffffffffffff811115611e60578182fd5b8201601f81018413611e70578182fd5b61125d84823560208401611bfe565b600060208284031215611e90578081fd5b5035919050565b60008151808452611eaf816020860160208601612708565b601f01601f19169290920160200192915050565b600084516020611ed68285838a01612708565b855191840191611ee98184848a01612708565b8554920191839060028104600180831680611f0557607f831692505b858310811415611f2357634e487b7160e01b88526022600452602488fd5b808015611f375760018114611f4857611f74565b60ff19851688528388019550611f74565b611f518b61269a565b895b85811015611f6c5781548a820152908401908801611f53565b505083880195505b50939b9a5050505050505050505050565b90565b9283526020830191909152604082015260600190565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fe590830184611e97565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120275783518352928401929184019160010161200b565b50909695505050505050565b901515815260200190565b600060208252610f296020830184611e97565b6020808252601f908201527f47656e67616e673a20746f74616c20636f73742069736e2774206d6174636800604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526023908201527f47656e67616e673a2074686520636f6c6c656374696f6e20697320736f6c64206040820152621bdd5d60ea1b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526028908201527f47656e67616e673a2055524920717565727920666f72206e6f6e657869737465604082015267373a103a37b5b2b760c11b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526024908201527f47656e67616e673a206d696e74696e6720686173206e6f742073746172746564604082015263081e595d60e21b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526026908201527f47656e67616e673a20796f752063616e206f6e6c79206d696e74203120617420604082015265612074696d6560d01b606082015260800190565b60208082526026908201527f47656e67616e673a20796f75206861766520746f206d696e74206174206c65616040820152657374206f6e6560d01b606082015260800190565b90815260200190565b60009081526020902090565b600082198211156126b9576126b96127b5565b500190565b6000826126cd576126cd6127cb565b500490565b60008160001904831182151516156126ec576126ec6127b5565b500290565b600082821015612703576127036127b5565b500390565b60005b8381101561272357818101518382015260200161270b565b83811115610e165750506000910152565b600081612743576127436127b5565b506000190190565b60028104600182168061275f57607f821691505b6020821081141561278057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561279a5761279a6127b5565b5060010190565b6000826127b0576127b06127cb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109b857600080fdfea2646970667358221220783e0477e3a36665c0af9311aeced98ad59736e3381f186720a427354586b01964736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b47656e67616e67204e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000747656e67616e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569666462336e757576696b706e6d736c6c766a64346a6272647368777868646472667164746a646e616776366f6a753270753634752f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Gengang NFT
Arg [1] : symbol (string): Gengang
Arg [2] : baseTokenURI (string): ipfs://bafybeifdb3nuuvikpnmsllvjd4jbrdshwxhddrfqdtjdnagv6oju2pu64u/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 47656e67616e67204e4654000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 47656e67616e6700000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f62616679626569666462336e757576696b706e6d736c6c766a
Arg [9] : 64346a6272647368777868646472667164746a646e616776366f6a7532707536
Arg [10] : 34752f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
51580:4687:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45393:224;;;;;;;;;;-1:-1:-1;45393:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53125:73;;;;;;;;;;-1:-1:-1;53125:73:0;;;;;:::i;:::-;;:::i;:::-;;33285:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34844:221::-;;;;;;;;;;-1:-1:-1;34844:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;34367:411::-;;;;;;;;;;-1:-1:-1;34367:411:0;;;;;:::i;:::-;;:::i;51795:29::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46033:113::-;;;;;;;;;;;;;:::i;51992:32::-;;;;;;;;;;;;;:::i;35734:339::-;;;;;;;;;;-1:-1:-1;35734:339:0;;;;;:::i;:::-;;:::i;51846:45::-;;;;;;;;;;-1:-1:-1;51846:45:0;;;;;:::i;:::-;;:::i;45701:256::-;;;;;;;;;;-1:-1:-1;45701:256:0;;;;;:::i;:::-;;:::i;55640:158::-;;;:::i;36144:185::-;;;;;;;;;;-1:-1:-1;36144:185:0;;;;;:::i;:::-;;:::i;52795:80::-;;;;;;;;;;-1:-1:-1;52795:80:0;;;;;:::i;:::-;;:::i;46223:233::-;;;;;;;;;;-1:-1:-1;46223:233:0;;;;;:::i;:::-;;:::i;52691:100::-;;;;;;;;;;-1:-1:-1;52691:100:0;;;;;:::i;:::-;;:::i;52196:26::-;;;;;;;;;;;;;:::i;32979:239::-;;;;;;;;;;-1:-1:-1;32979:239:0;;;;;:::i;:::-;;:::i;32709:208::-;;;;;;;;;;-1:-1:-1;32709:208:0;;;;;:::i;:::-;;:::i;12984:94::-;;;;;;;;;;;;;:::i;52879:116::-;;;;;;;;;;-1:-1:-1;52879:116:0;;;;;:::i;:::-;;:::i;52134:42::-;;;;;;;;;;-1:-1:-1;52134:42:0;;;;;:::i;:::-;;:::i;12333:87::-;;;;;;;;;;;;;:::i;33454:104::-;;;;;;;;;;;;;:::i;53218:631::-;;;;;;:::i;:::-;;:::i;35137:295::-;;;;;;;;;;-1:-1:-1;35137:295:0;;;;;:::i;:::-;;:::i;36400:328::-;;;;;;;;;;-1:-1:-1;36400:328:0;;;;;:::i;:::-;;:::i;51753:37::-;;;;;;;;;;;;;:::i;55264:351::-;;;;;;;;;;-1:-1:-1;55264:351:0;;;;;:::i;:::-;;:::i;54841:385::-;;;;;;;;;;-1:-1:-1;54841:385:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;52080:49::-;;;;;;;;;;-1:-1:-1;52080:49:0;;;;;:::i;:::-;;:::i;51916:29::-;;;;;;;;;;;;;:::i;52999:122::-;;;;;;;;;;-1:-1:-1;52999:122:0;;;;;:::i;:::-;;:::i;35503:164::-;;;;;;;;;;-1:-1:-1;35503:164:0;;;;;:::i;:::-;;:::i;52044:31::-;;;;;;;;;;-1:-1:-1;52044:31:0;;;;;:::i;:::-;;:::i;13233:192::-;;;;;;;;;;-1:-1:-1;13233:192:0;;;;;:::i;:::-;;:::i;51950:37::-;;;;;;;;;;;;;:::i;45393:224::-;45495:4;-1:-1:-1;;;;;;45519:50:0;;-1:-1:-1;;;45519:50:0;;:90;;;45573:36;45597:11;45573:23;:36::i;:::-;45512:97;;45393:224;;;;:::o;53125:73::-;12564:12;:10;:12::i;:::-;-1:-1:-1;;;;;12553:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;12553:23:0;;12545:68;;;;-1:-1:-1;;;12545:68:0;;;;;;;:::i;:::-;;;;;;;;;53177:6:::1;:15:::0;;-1:-1:-1;;53177:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53125:73::o;33285:100::-;33339:13;33372:5;33365:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33285:100;:::o;34844:221::-;34920:7;34948:16;34956:7;34948;:16::i;:::-;34940:73;;;;-1:-1:-1;;;34940:73:0;;;;;;;:::i;:::-;-1:-1:-1;35033:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35033:24:0;;34844:221::o;34367:411::-;34448:13;34464:23;34479:7;34464:14;:23::i;:::-;34448:39;;34512:5;-1:-1:-1;;;;;34506:11:0;:2;-1:-1:-1;;;;;34506:11:0;;;34498:57;;;;-1:-1:-1;;;34498:57:0;;;;;;;:::i;:::-;34606:5;-1:-1:-1;;;;;34590:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;34590:21:0;;:62;;;;34615:37;34632:5;34639:12;:10;:12::i;34615:37::-;34568:168;;;;-1:-1:-1;;;34568:168:0;;;;;;;:::i;:::-;34749:21;34758:2;34762:7;34749:8;:21::i;:::-;34367:411;;;:::o;51795:29::-;;;;:::o;46033:113::-;46121:10;:17;46033:113;:::o;51992:32::-;;;;:::o;35734:339::-;35929:41;35948:12;:10;:12::i;:::-;35962:7;35929:18;:41::i;:::-;35921:103;;;;-1:-1:-1;;;35921:103:0;;;;;;;:::i;:::-;36037:28;36047:4;36053:2;36057:7;36037:9;:28::i;51846:45::-;;;;;;;;;;;;;:::o;45701:256::-;45798:7;45834:23;45851:5;45834:16;:23::i;:::-;45826:5;:31;45818:87;;;;-1:-1:-1;;;45818:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;45923:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;45701:256::o;55640:158::-;12564:12;:10;:12::i;:::-;-1:-1:-1;;;;;12553:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;12553:23:0;;12545:68;;;;-1:-1:-1;;;12545:68:0;;;;;;;:::i;:::-;55693:12:::1;55719:10;-1:-1:-1::0;;;;;55711:24:0::1;55743:21;55711:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55692:77;;;55784:7;55776:16;;;::::0;::::1;;12624:1;55640:158::o:0;36144:185::-;36282:39;36299:4;36305:2;36309:7;36282:39;;;;;;;;;;;;:16;:39::i;52795:80::-;12564:12;:10;:12::i;:::-;-1:-1:-1;;;;;12553:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;12553:23:0;;12545:68;;;;-1:-1:-1;;;12545:68:0;;;;;;;:::i;:::-;52854:4:::1;:15:::0;52795:80::o;46223:233::-;46298:7;46334:30;:28;:30::i;:::-;46326:5;:38;46318:95;;;;-1:-1:-1;;;46318:95:0;;;;;;;:::i;:::-;46431:10;46442:5;46431:17;;;;;;-1:-1:-1;;;46431:17:0;;;;;;;;;;;;;;;;;46424:24;;46223:233;;;:::o;52691:100::-;12564:12;:10;:12::i;:::-;-1:-1:-1;;;;;12553:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;12553:23:0;;12545:68;;;;-1:-1:-1;;;12545:68:0;;;;;;;:::i;:::-;52762:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52691:100:::0;:::o;52196:26::-;;;;;;:::o;32979:239::-;33051:7;33087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33087:16:0;33122:19;33114:73;;;;-1:-1:-1;;;33114:73:0;;;;;;;:::i;32709:208::-;32781:7;-1:-1:-1;;;;;32809:19:0;;32801:74;;;;-1:-1:-1;;;32801:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;32893:16:0;;;;;:9;:16;;;;;;;32709:208::o;12984:94::-;12564:12;:10;:12::i;:::-;-1:-1:-1;;;;;12553:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;12553:23:0;;12545:68;;;;-1:-1:-1;;;12545:68:0;;;;;;;:::i;:::-;13049:21:::1;13067:1;13049:9;:21::i;:::-;12984:94::o:0;52879:116::-;12564:12;:10;:12::i;:::-;-1:-1:-1;;;;;12553:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;12553:23:0;;12545:68;;;;-1:-1:-1;;;12545:68:0;;;;;;;:::i;:::-;52956:13:::1;:33:::0;52879:116::o;52134:42::-;;;;;;;;;;;;-1:-1:-1;;;;;52134:42:0;;:::o;12333:87::-;12406:6;;-1:-1:-1;;;;;12406:6:0;12333:87;:::o;33454:104::-;33510:13;33543:7;33536:14;;;;;:::i;53218:631::-;53299:6;;;;53298:7;53290:56;;;;-1:-1:-1;;;53290:56:0;;;;;;;:::i;:::-;53375:1;53361:11;:15;53353:66;;;;-1:-1:-1;;;53353:66:0;;;;;;;:::i;:::-;53449:13;;53434:11;:28;;53426:80;;;;-1:-1:-1;;;53426:80:0;;;;;;;:::i;:::-;53535:11;53521:10;;:25;;53513:74;;;;-1:-1:-1;;;53513:74:0;;;;;;;:::i;:::-;53612:7;:5;:7::i;:::-;-1:-1:-1;;;;;53598:21:0;:10;-1:-1:-1;;;;;53598:21:0;;53594:119;;53658:11;53651:4;;:18;;;;:::i;:::-;53638:9;:31;;53630:75;;;;-1:-1:-1;;;53630:75:0;;;;;;;:::i;:::-;53752:1;53735:109;53760:11;53755:1;:16;53735:109;;53813:23;53825:10;53813:11;:23::i;:::-;-1:-1:-1;53773:3:0;;;;:::i;:::-;;;;53735:109;;35137:295;35252:12;:10;:12::i;:::-;-1:-1:-1;;;;;35240:24:0;:8;-1:-1:-1;;;;;35240:24:0;;;35232:62;;;;-1:-1:-1;;;35232:62:0;;;;;;;:::i;:::-;35352:8;35307:18;:32;35326:12;:10;:12::i;:::-;-1:-1:-1;;;;;35307:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;35307:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;35307:53:0;;;;;;;;;;;35391:12;:10;:12::i;:::-;-1:-1:-1;;;;;35376:48:0;;35415:8;35376:48;;;;;;:::i;:::-;;;;;;;;35137:295;;:::o;36400:328::-;36575:41;36594:12;:10;:12::i;:::-;36608:7;36575:18;:41::i;:::-;36567:103;;;;-1:-1:-1;;;36567:103:0;;;;;;;:::i;:::-;36681:39;36695:4;36701:2;36705:7;36714:5;36681:13;:39::i;:::-;36400:328;;;;:::o;51753:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55264:351::-;55333:13;55362:12;55370:3;55362:7;:12::i;:::-;55354:64;;;;-1:-1:-1;;;55354:64:0;;;;;;;:::i;:::-;55425:28;55456:10;:8;:10::i;:::-;55425:41;;55511:1;55486:14;55480:28;:32;:129;;;;;;;;;;;;;;;;;55548:14;55564;:3;:12;:14::i;:::-;55580:13;55531:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55480:129;55473:136;55264:351;-1:-1:-1;;;55264:351:0:o;54841:385::-;54899:16;54950:23;54976:17;54986:6;54976:9;:17::i;:::-;54950:43;;55000:25;55042:15;55028:30;;;;;;-1:-1:-1;;;55028:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55028:30:0;;55000:58;;55101:9;55096:103;55116:15;55112:1;:19;55096:103;;;55161:30;55181:6;55189:1;55161:19;:30::i;:::-;55147:8;55156:1;55147:11;;;;;;-1:-1:-1;;;55147:11:0;;;;;;;;;;;;;;;;;;:44;55133:3;;;;:::i;:::-;;;;55096:103;;;-1:-1:-1;55212:8:0;54841:385;-1:-1:-1;;;54841:385:0:o;52080:49::-;;;;;;;;;;;;;:::o;51916:29::-;;;;:::o;52999:122::-;12564:12;:10;:12::i;:::-;-1:-1:-1;;;;;12553:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;12553:23:0;;12545:68;;;;-1:-1:-1;;;12545:68:0;;;;;;;:::i;:::-;53082:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;35503:164::-:0;-1:-1:-1;;;;;35624:25:0;;;35600:4;35624:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35503:164::o;52044:31::-;;;;;;;;;;;;;;;-1:-1:-1;52044:31:0;:::o;13233:192::-;12564:12;:10;:12::i;:::-;-1:-1:-1;;;;;12553:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;12553:23:0;;12545:68;;;;-1:-1:-1;;;12545:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13322:22:0;::::1;13314:73;;;;-1:-1:-1::0;;;13314:73:0::1;;;;;;;:::i;:::-;13398:19;13408:8;13398:9;:19::i;51950:37::-:0;;;;:::o;32340:305::-;32442:4;-1:-1:-1;;;;;;32479:40:0;;-1:-1:-1;;;32479:40:0;;:105;;-1:-1:-1;;;;;;;32536:48:0;;-1:-1:-1;;;32536:48:0;32479:105;:158;;;;32601:36;32625:11;32601:23;:36::i;11121:98::-;11201:10;11121:98;:::o;38238:127::-;38303:4;38327:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38327:16:0;:30;;;38238:127::o;42220:174::-;42295:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42295:29:0;-1:-1:-1;;;;;42295:29:0;;;;;;;;:24;;42349:23;42295:24;42349:14;:23::i;:::-;-1:-1:-1;;;;;42340:46:0;;;;;;;;;;;42220:174;;:::o;38532:348::-;38625:4;38650:16;38658:7;38650;:16::i;:::-;38642:73;;;;-1:-1:-1;;;38642:73:0;;;;;;;:::i;:::-;38726:13;38742:23;38757:7;38742:14;:23::i;:::-;38726:39;;38795:5;-1:-1:-1;;;;;38784:16:0;:7;-1:-1:-1;;;;;38784:16:0;;:51;;;;38828:7;-1:-1:-1;;;;;38804:31:0;:20;38816:7;38804:11;:20::i;:::-;-1:-1:-1;;;;;38804:31:0;;38784:51;:87;;;;38839:32;38856:5;38863:7;38839:16;:32::i;:::-;38776:96;38532:348;-1:-1:-1;;;;38532:348:0:o;41524:578::-;41683:4;-1:-1:-1;;;;;41656:31:0;:23;41671:7;41656:14;:23::i;:::-;-1:-1:-1;;;;;41656:31:0;;41648:85;;;;-1:-1:-1;;;41648:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41752:16:0;;41744:65;;;;-1:-1:-1;;;41744:65:0;;;;;;;:::i;:::-;41822:39;41843:4;41849:2;41853:7;41822:20;:39::i;:::-;41926:29;41943:1;41947:7;41926:8;:29::i;:::-;-1:-1:-1;;;;;41968:15:0;;;;;;:9;:15;;;;;:20;;41987:1;;41968:15;:20;;41987:1;;41968:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41999:13:0;;;;;;:9;:13;;;;;:18;;42016:1;;41999:13;:18;;42016:1;;41999:18;:::i;:::-;;;;-1:-1:-1;;42028:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42028:21:0;-1:-1:-1;;;;;42028:21:0;;;;;;;;;42067:27;;42028:16;;42067:27;;;;;;;41524:578;;;:::o;13433:173::-;13508:6;;;-1:-1:-1;;;;;13525:17:0;;;-1:-1:-1;;;;;;13525:17:0;;;;;;;13558:40;;13508:6;;;13525:17;13508:6;;13558:40;;13489:16;;13558:40;13433:173;;:::o;53873:464::-;53929:7;53975:14;54007:10;;53992:12;:10;:12::i;:::-;:25;;;;:::i;:::-;53975:42;;54024:18;54045:16;54054:6;54045:8;:16::i;:::-;:20;;54064:1;54045:20;:::i;:::-;54094:10;:12;;54024:41;;-1:-1:-1;54094:10:0;:12;;;:::i;:::-;;;;;;54168:20;54177:10;;54168:8;:20::i;:::-;54145:12;54158:6;54145:20;;;;;-1:-1:-1;;;54145:20:0;;;;;;;;;;:43;54208:30;54218:7;54227:10;54208:9;:30::i;:::-;54275:19;;;;:7;:19;;;;;:32;;-1:-1:-1;;;;;;54275:32:0;54297:10;54275:32;;;54283:10;-1:-1:-1;;53873:464:0;;;:::o;37610:315::-;37767:28;37777:4;37783:2;37787:7;37767:9;:28::i;:::-;37814:48;37837:4;37843:2;37847:7;37856:5;37814:22;:48::i;:::-;37806:111;;;;-1:-1:-1;;;37806:111:0;;;;;;;:::i;52561:110::-;52621:13;52652;52645:20;;;;;:::i;8737:723::-;8793:13;9014:10;9010:53;;-1:-1:-1;9041:10:0;;;;;;;;;;;;-1:-1:-1;;;9041:10:0;;;;;;9010:53;9088:5;9073:12;9129:78;9136:9;;9129:78;;9162:8;;;;:::i;:::-;;-1:-1:-1;9185:10:0;;-1:-1:-1;9193:2:0;9185:10;;:::i;:::-;;;9129:78;;;9217:19;9249:6;9239:17;;;;;;-1:-1:-1;;;9239:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9239:17:0;;9217:39;;9267:154;9274:10;;9267:154;;9301:11;9311:1;9301:11;;:::i;:::-;;-1:-1:-1;9370:10:0;9378:2;9370:5;:10;:::i;:::-;9357:24;;:2;:24;:::i;:::-;9344:39;;9327:6;9334;9327:14;;;;;;-1:-1:-1;;;9327:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;9327:56:0;;;;;;;;-1:-1:-1;9398:11:0;9407:2;9398:11;;:::i;:::-;;;9267:154;;24319:157;-1:-1:-1;;;;;;24428:40:0;;-1:-1:-1;;;24428:40:0;24319:157;;;:::o;47069:589::-;47213:45;47240:4;47246:2;47250:7;47213:26;:45::i;:::-;-1:-1:-1;;;;;47275:18:0;;47271:187;;47310:40;47342:7;47310:31;:40::i;:::-;47271:187;;;47380:2;-1:-1:-1;;;;;47372:10:0;:4;-1:-1:-1;;;;;47372:10:0;;47368:90;;47399:47;47432:4;47438:7;47399:32;:47::i;:::-;-1:-1:-1;;;;;47472:16:0;;47468:183;;47505:45;47542:7;47505:36;:45::i;:::-;47468:183;;;47578:4;-1:-1:-1;;;;;47572:10:0;:2;-1:-1:-1;;;;;47572:10:0;;47568:83;;47599:40;47627:2;47631:7;47599:27;:40::i;56060:204::-;56105:7;56192:16;56210:15;56227:10;;56175:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56153:96;;;;;;56135:123;;56121:137;;56060:204;:::o;55861:156::-;55914:7;55932:12;55945:6;55932:20;;;;;-1:-1:-1;;;55932:20:0;;;;;;;;;;;:25;55929:82;;55966:12;55979:6;55966:20;;;;;-1:-1:-1;;;55966:20:0;;;;;;;;;;;55959:27;;;;55929:82;-1:-1:-1;56005:6:0;55998:13;;39222:110;39298:26;39308:2;39312:7;39298:26;;;;;;;;;;;;:9;:26::i;42959:799::-;43114:4;43135:15;:2;-1:-1:-1;;;;;43135:13:0;;:15::i;:::-;43131:620;;;43187:2;-1:-1:-1;;;;;43171:36:0;;43208:12;:10;:12::i;:::-;43222:4;43228:7;43237:5;43171:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43171:72:0;;;;;;;;-1:-1:-1;;43171:72:0;;;;;;;;;;;;:::i;:::-;;;43167:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43413:13:0;;43409:272;;43456:60;;-1:-1:-1;;;43456:60:0;;;;;;;:::i;43409:272::-;43631:6;43625:13;43616:6;43612:2;43608:15;43601:38;43167:529;-1:-1:-1;;;;;;43294:51:0;-1:-1:-1;;;43294:51:0;;-1:-1:-1;43287:58:0;;43131:620;-1:-1:-1;43735:4:0;42959:799;;;;;;:::o;48381:164::-;48485:10;:17;;48458:24;;;;:15;:24;;;;;:44;;;48513:24;;;;;;;;;;;;48381:164::o;49172:988::-;49438:22;49488:1;49463:22;49480:4;49463:16;:22::i;:::-;:26;;;;:::i;:::-;49500:18;49521:26;;;:17;:26;;;;;;49438:51;;-1:-1:-1;49654:28:0;;;49650:328;;-1:-1:-1;;;;;49721:18:0;;49699:19;49721:18;;;:12;:18;;;;;;;;:34;;;;;;;;;49772:30;;;;;;:44;;;49889:30;;:17;:30;;;;;:43;;;49650:328;-1:-1:-1;50074:26:0;;;;:17;:26;;;;;;;;50067:33;;;-1:-1:-1;;;;;50118:18:0;;;;;:12;:18;;;;;:34;;;;;;;50111:41;49172:988::o;50455:1079::-;50733:10;:17;50708:22;;50733:21;;50753:1;;50733:21;:::i;:::-;50765:18;50786:24;;;:15;:24;;;;;;51159:10;:26;;50708:46;;-1:-1:-1;50786:24:0;;50708:46;;51159:26;;;;-1:-1:-1;;;51159:26:0;;;;;;;;;;;;;;;;;51137:48;;51223:11;51198:10;51209;51198:22;;;;;;-1:-1:-1;;;51198:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;51303:28;;;:15;:28;;;;;;;:41;;;51475:24;;;;;51468:31;51510:10;:16;;;;;-1:-1:-1;;;51510:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;50455:1079;;;;:::o;47959:221::-;48044:14;48061:20;48078:2;48061:16;:20::i;:::-;-1:-1:-1;;;;;48092:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;48137:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;47959:221:0:o;39559:321::-;39689:18;39695:2;39699:7;39689:5;:18::i;:::-;39740:54;39771:1;39775:2;39779:7;39788:5;39740:22;:54::i;:::-;39718:154;;;;-1:-1:-1;;;39718:154:0;;;;;;;:::i;14379:387::-;14702:20;14750:8;;;14379:387::o;40216:382::-;-1:-1:-1;;;;;40296:16:0;;40288:61;;;;-1:-1:-1;;;40288:61:0;;;;;;;:::i;:::-;40369:16;40377:7;40369;:16::i;:::-;40368:17;40360:58;;;;-1:-1:-1;;;40360:58:0;;;;;;;:::i;:::-;40431:45;40460:1;40464:2;40468:7;40431:20;:45::i;:::-;-1:-1:-1;;;;;40489:13:0;;;;;;:9;:13;;;;;:18;;40506:1;;40489:13;:18;;40506:1;;40489:18;:::i;:::-;;;;-1:-1:-1;;40518:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40518:21:0;-1:-1:-1;;;;;40518:21:0;;;;;;;;40557:33;;40518:16;;;40557:33;;40518:16;;40557:33;40216:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:259::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:1;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:1:o;4724:1532::-;;4986:6;4980:13;5012:4;5025:51;5069:6;5064:3;5059:2;5051:6;5047:15;5025:51;:::i;:::-;5139:13;;5098:16;;;;5161:55;5139:13;5098:16;5183:15;;;5161:55;:::i;:::-;5307:13;;5238:20;;;5278:3;;5384:1;5369:17;;5405:1;5441:18;;;;5468:2;;5546:4;5536:8;5532:19;5520:31;;5468:2;5609;5599:8;5596:16;5576:18;5573:40;5570:2;;;-1:-1:-1;;;5636:33:1;;5692:4;5689:1;5682:15;5722:4;5643:3;5710:17;5570:2;5753:18;5780:110;;;;5904:1;5899:332;;;;5746:485;;5780:110;-1:-1:-1;;5815:24:1;;5801:39;;5860:20;;;;-1:-1:-1;5780:110:1;;5899:332;5935:39;5967:6;5935:39;:::i;:::-;5996:3;6012:169;6026:8;6023:1;6020:15;6012:169;;;6108:14;;6093:13;;;6086:37;6151:16;;;;6043:10;;6012:169;;;6016:3;;6212:8;6205:5;6201:20;6194:27;;5746:485;-1:-1:-1;6247:3:1;;4956:1300;-1:-1:-1;;;;;;;;;;;4956:1300:1:o;6261:205::-;6461:3;6452:14::o;6471:312::-;6656:19;;;6700:2;6691:12;;6684:28;;;;6737:2;6728:12;;6721:28;6774:2;6765:12;;6646:137::o;6788:203::-;-1:-1:-1;;;;;6952:32:1;;;;6934:51;;6922:2;6907:18;;6889:102::o;6996:490::-;-1:-1:-1;;;;;7265:15:1;;;7247:34;;7317:15;;7312:2;7297:18;;7290:43;7364:2;7349:18;;7342:34;;;7412:3;7407:2;7392:18;;7385:31;;;6996:490;;7433:47;;7460:19;;7452:6;7433:47;:::i;:::-;7425:55;7199:287;-1:-1:-1;;;;;;7199:287:1:o;7491:635::-;7662:2;7714:21;;;7784:13;;7687:18;;;7806:22;;;7491:635;;7662:2;7885:15;;;;7859:2;7844:18;;;7491:635;7931:169;7945:6;7942:1;7939:13;7931:169;;;8006:13;;7994:26;;8075:15;;;;8040:12;;;;7967:1;7960:9;7931:169;;;-1:-1:-1;8117:3:1;;7642:484;-1:-1:-1;;;;;;7642:484:1:o;8131:187::-;8296:14;;8289:22;8271:41;;8259:2;8244:18;;8226:92::o;8323:221::-;;8472:2;8461:9;8454:21;8492:46;8534:2;8523:9;8519:18;8511:6;8492:46;:::i;8549:355::-;8751:2;8733:21;;;8790:2;8770:18;;;8763:30;8829:33;8824:2;8809:18;;8802:61;8895:2;8880:18;;8723:181::o;8909:407::-;9111:2;9093:21;;;9150:2;9130:18;;;9123:30;9189:34;9184:2;9169:18;;9162:62;-1:-1:-1;;;9255:2:1;9240:18;;9233:41;9306:3;9291:19;;9083:233::o;9321:414::-;9523:2;9505:21;;;9562:2;9542:18;;;9535:30;9601:34;9596:2;9581:18;;9574:62;-1:-1:-1;;;9667:2:1;9652:18;;9645:48;9725:3;9710:19;;9495:240::o;9740:399::-;9942:2;9924:21;;;9981:2;9961:18;;;9954:30;10020:34;10015:2;10000:18;;9993:62;-1:-1:-1;;;10086:2:1;10071:18;;10064:33;10129:3;10114:19;;9914:225::o;10144:402::-;10346:2;10328:21;;;10385:2;10365:18;;;10358:30;10424:34;10419:2;10404:18;;10397:62;-1:-1:-1;;;10490:2:1;10475:18;;10468:36;10536:3;10521:19;;10318:228::o;10551:352::-;10753:2;10735:21;;;10792:2;10772:18;;;10765:30;10831;10826:2;10811:18;;10804:58;10894:2;10879:18;;10725:178::o;10908:404::-;11110:2;11092:21;;;11149:2;11129:18;;;11122:30;11188:34;11183:2;11168:18;;11161:62;-1:-1:-1;;;11254:2:1;11239:18;;11232:38;11302:3;11287:19;;11082:230::o;11317:400::-;11519:2;11501:21;;;11558:2;11538:18;;;11531:30;11597:34;11592:2;11577:18;;11570:62;-1:-1:-1;;;11663:2:1;11648:18;;11641:34;11707:3;11692:19;;11491:226::o;11722:349::-;11924:2;11906:21;;;11963:2;11943:18;;;11936:30;12002:27;11997:2;11982:18;;11975:55;12062:2;12047:18;;11896:175::o;12076:400::-;12278:2;12260:21;;;12317:2;12297:18;;;12290:30;12356:34;12351:2;12336:18;;12329:62;-1:-1:-1;;;12422:2:1;12407:18;;12400:34;12466:3;12451:19;;12250:226::o;12481:408::-;12683:2;12665:21;;;12722:2;12702:18;;;12695:30;12761:34;12756:2;12741:18;;12734:62;-1:-1:-1;;;12827:2:1;12812:18;;12805:42;12879:3;12864:19;;12655:234::o;12894:420::-;13096:2;13078:21;;;13135:2;13115:18;;;13108:30;13174:34;13169:2;13154:18;;13147:62;13245:26;13240:2;13225:18;;13218:54;13304:3;13289:19;;13068:246::o;13319:406::-;13521:2;13503:21;;;13560:2;13540:18;;;13533:30;13599:34;13594:2;13579:18;;13572:62;-1:-1:-1;;;13665:2:1;13650:18;;13643:40;13715:3;13700:19;;13493:232::o;13730:405::-;13932:2;13914:21;;;13971:2;13951:18;;;13944:30;14010:34;14005:2;13990:18;;13983:62;-1:-1:-1;;;14076:2:1;14061:18;;14054:39;14125:3;14110:19;;13904:231::o;14140:356::-;14342:2;14324:21;;;14361:18;;;14354:30;14420:34;14415:2;14400:18;;14393:62;14487:2;14472:18;;14314:182::o;14501:408::-;14703:2;14685:21;;;14742:2;14722:18;;;14715:30;14781:34;14776:2;14761:18;;14754:62;-1:-1:-1;;;14847:2:1;14832:18;;14825:42;14899:3;14884:19;;14675:234::o;14914:356::-;15116:2;15098:21;;;15135:18;;;15128:30;15194:34;15189:2;15174:18;;15167:62;15261:2;15246:18;;15088:182::o;15275:405::-;15477:2;15459:21;;;15516:2;15496:18;;;15489:30;15555:34;15550:2;15535:18;;15528:62;-1:-1:-1;;;15621:2:1;15606:18;;15599:39;15670:3;15655:19;;15449:231::o;15685:397::-;15887:2;15869:21;;;15926:2;15906:18;;;15899:30;15965:34;15960:2;15945:18;;15938:62;-1:-1:-1;;;16031:2:1;16016:18;;16009:31;16072:3;16057:19;;15859:223::o;16087:413::-;16289:2;16271:21;;;16328:2;16308:18;;;16301:30;16367:34;16362:2;16347:18;;16340:62;-1:-1:-1;;;16433:2:1;16418:18;;16411:47;16490:3;16475:19;;16261:239::o;16505:408::-;16707:2;16689:21;;;16746:2;16726:18;;;16719:30;16785:34;16780:2;16765:18;;16758:62;-1:-1:-1;;;16851:2:1;16836:18;;16829:42;16903:3;16888:19;;16679:234::o;16918:402::-;17120:2;17102:21;;;17159:2;17139:18;;;17132:30;17198:34;17193:2;17178:18;;17171:62;-1:-1:-1;;;17264:2:1;17249:18;;17242:36;17310:3;17295:19;;17092:228::o;17325:402::-;17527:2;17509:21;;;17566:2;17546:18;;;17539:30;17605:34;17600:2;17585:18;;17578:62;-1:-1:-1;;;17671:2:1;17656:18;;17649:36;17717:3;17702:19;;17499:228::o;17732:177::-;17878:25;;;17866:2;17851:18;;17833:76::o;17914:129::-;;17982:17;;;18032:4;18016:21;;;17972:71::o;18048:128::-;;18119:1;18115:6;18112:1;18109:13;18106:2;;;18125:18;;:::i;:::-;-1:-1:-1;18161:9:1;;18096:80::o;18181:120::-;;18247:1;18237:2;;18252:18;;:::i;:::-;-1:-1:-1;18286:9:1;;18227:74::o;18306:168::-;;18412:1;18408;18404:6;18400:14;18397:1;18394:21;18389:1;18382:9;18375:17;18371:45;18368:2;;;18419:18;;:::i;:::-;-1:-1:-1;18459:9:1;;18358:116::o;18479:125::-;;18547:1;18544;18541:8;18538:2;;;18552:18;;:::i;:::-;-1:-1:-1;18589:9:1;;18528:76::o;18609:258::-;18681:1;18691:113;18705:6;18702:1;18699:13;18691:113;;;18781:11;;;18775:18;18762:11;;;18755:39;18727:2;18720:10;18691:113;;;18822:6;18819:1;18816:13;18813:2;;;-1:-1:-1;;18857:1:1;18839:16;;18832:27;18662:205::o;18872:136::-;;18939:5;18929:2;;18948:18;;:::i;:::-;-1:-1:-1;;;18984:18:1;;18919:89::o;19013:380::-;19098:1;19088:12;;19145:1;19135:12;;;19156:2;;19210:4;19202:6;19198:17;19188:27;;19156:2;19263;19255:6;19252:14;19232:18;19229:38;19226:2;;;19309:10;19304:3;19300:20;19297:1;19290:31;19344:4;19341:1;19334:15;19372:4;19369:1;19362:15;19226:2;;19068:325;;;:::o;19398:135::-;;-1:-1:-1;;19458:17:1;;19455:2;;;19478:18;;:::i;:::-;-1:-1:-1;19525:1:1;19514:13;;19445:88::o;19538:112::-;;19596:1;19586:2;;19601:18;;:::i;:::-;-1:-1:-1;19635:9:1;;19576:74::o;19655:127::-;19716:10;19711:3;19707:20;19704:1;19697:31;19747:4;19744:1;19737:15;19771:4;19768:1;19761:15;19787:127;19848:10;19843:3;19839:20;19836:1;19829:31;19879:4;19876:1;19869:15;19903:4;19900:1;19893:15;19919:127;19980:10;19975:3;19971:20;19968:1;19961:31;20011:4;20008:1;20001:15;20035:4;20032:1;20025:15;20051:133;-1:-1:-1;;;;;;20127:32:1;;20117:43;;20107:2;;20174:1;20171;20164:12
Swarm Source
ipfs://783e0477e3a36665c0af9311aeced98ad59736e3381f186720a427354586b019
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.