Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Multi Chain
Multichain Addresses
0 address found via
Latest 6 from a total of 6 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
Update URI | 18170242 | 77 days 15 hrs ago | IN | 0 ETH | 0.00054639 | ||||
Update URI | 18169698 | 77 days 16 hrs ago | IN | 0 ETH | 0.00080622 | ||||
Update URI | 18169648 | 77 days 17 hrs ago | IN | 0 ETH | 0.00033051 | ||||
Update URI | 18169625 | 77 days 17 hrs ago | IN | 0 ETH | 0.00038262 | ||||
Mint And Distrib... | 18169538 | 77 days 17 hrs ago | IN | 0 ETH | 0.0023912 | ||||
0x60056008 | 18169514 | 77 days 17 hrs ago | IN | Create: KevinWahyu | 0 ETH | 0.01575287 |
Loading...
Loading
Contract Name:
KevinWahyu
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-19 */ // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt( uint256 a, Rounding rounding ) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2( uint256 value, Rounding rounding ) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10( uint256 value, Rounding rounding ) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256( uint256 value, Rounding rounding ) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string( abi.encodePacked( value < 0 ? "-" : "", toString(SignedMath.abs(value)) ) ); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal( string memory a, string memory b ) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts (last updated v4.9.0) (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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(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" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue( target, data, 0, "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" ); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResultFromTarget( target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget( target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget( target, success, returndata, errorMessage ); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert( bytes memory returndata, string memory errorMessage ) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts (last updated v4.9.0) (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`. * * 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; /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved( uint256 tokenId ) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts (last updated v4.9.0) (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: address zero is not a valid owner" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf( uint256 tokenId ) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); 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) { _requireMinted(tokenId); 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 overridden 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 token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved( uint256 tokenId ) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll( address operator, bool approved ) public virtual override { _setApprovalForAll(_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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @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 _ownerOf(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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @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 from incorrect owner" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner" ); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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 { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance( address account, uint256 amount ) internal { _balances[account] += amount; } } // File: contracts/MN1.sol pragma solidity ^0.8.19; contract KevinWahyu is ERC721, Ownable { using Strings for uint256; uint256 private currentSupply; uint256 public maxSupply = 5; string public url = "ipfs://QmNULk6hoppffpBuNPFCVj8zarpKNobNGfPcSaWQ9X4DJB/"; constructor( ) ERC721("Kevin&Wahyu","NFT: Kevin & Wahyu") {} function tokenURI( uint256 tokenId ) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = url; return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString(), ".json") : ""; } function updateURI(string memory newUrl) external onlyOwner { url = newUrl; } function totalSupply() public view returns (uint256) { return currentSupply; } function mintAndDistribute(address[] memory receivers) external onlyOwner { uint256 supply = totalSupply(); require(supply + receivers.length <= maxSupply, "Minting more NFT!"); for (uint256 i = 0; i < receivers.length; i++) { _safeMint(receivers[i], supply + i); } currentSupply = supply + receivers.length; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"mintAndDistribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUrl","type":"string"}],"name":"updateURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"url","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
600560085560e0604052603660808181529062001bc460a039600990620000279082620001bb565b5034801562000034575f80fd5b506040518060400160405280600b81526020016a4b6576696e26576168797560a81b815250604051806040016040528060128152602001714e46543a204b6576696e202620576168797560701b815250815f9081620000949190620001bb565b506001620000a38282620001bb565b505050620000c0620000ba620000c660201b60201c565b620000ca565b62000283565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200014457607f821691505b6020821081036200016357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001b6575f81815260208120601f850160051c81016020861015620001915750805b601f850160051c820191505b81811015620001b2578281556001016200019d565b5050505b505050565b81516001600160401b03811115620001d757620001d76200011b565b620001ef81620001e884546200012f565b8462000169565b602080601f83116001811462000225575f84156200020d5750858301515b5f19600386901b1c1916600185901b178555620001b2565b5f85815260208120601f198616915b82811015620002555788860151825594840194600190910190840162000234565b50858210156200027357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b61193380620002915f395ff3fe608060405234801561000f575f80fd5b5060043610610132575f3560e01c8063715018a6116100b4578063b88d4fde11610079578063b88d4fde14610260578063c30f4a5a14610273578063c87b56dd14610286578063d5abeb0114610299578063e985e9c5146102a2578063f2fde38b146102b5575f80fd5b8063715018a6146102195780637c63d9b2146102215780638da5cb5b1461023457806395d89b4114610245578063a22cb4651461024d575f80fd5b806323b872dd116100fa57806323b872dd146101c557806342842e0e146101d85780635600f04f146101eb5780636352211e146101f357806370a0823114610206575f80fd5b806301ffc9a71461013657806306fdde031461015e578063081812fc14610173578063095ea7b31461019e57806318160ddd146101b3575b5f80fd5b610149610144366004611262565b6102c8565b60405190151581526020015b60405180910390f35b610166610319565b60405161015591906112ca565b6101866101813660046112dc565b6103a8565b6040516001600160a01b039091168152602001610155565b6101b16101ac36600461130e565b6103cd565b005b6007545b604051908152602001610155565b6101b16101d3366004611336565b6104e6565b6101b16101e6366004611336565b610517565b610166610531565b6101866102013660046112dc565b6105bd565b6101b761021436600461136f565b61061c565b6101b16106a0565b6101b161022f3660046113cd565b6106b3565b6006546001600160a01b0316610186565b610166610778565b6101b161025b366004611475565b610787565b6101b161026e366004611503565b610796565b6101b161028136600461157a565b6107ce565b6101666102943660046112dc565b6107e2565b6101b760085481565b6101496102b03660046115bf565b61093a565b6101b16102c336600461136f565b610967565b5f6001600160e01b031982166380ac58cd60e01b14806102f857506001600160e01b03198216635b5e139f60e01b145b8061031357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60605f8054610327906115f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610353906115f0565b801561039e5780601f106103755761010080835404028352916020019161039e565b820191905f5260205f20905b81548152906001019060200180831161038157829003601f168201915b5050505050905090565b5f6103b2826109e0565b505f908152600460205260409020546001600160a01b031690565b5f6103d7826105bd565b9050806001600160a01b0316836001600160a01b0316036104495760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806104655750610465813361093a565b6104d75760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610440565b6104e18383610a3e565b505050565b6104f03382610aab565b61050c5760405162461bcd60e51b815260040161044090611628565b6104e1838383610b09565b6104e183838360405180602001604052805f815250610796565b6009805461053e906115f0565b80601f016020809104026020016040519081016040528092919081815260200182805461056a906115f0565b80156105b55780601f1061058c576101008083540402835291602001916105b5565b820191905f5260205f20905b81548152906001019060200180831161059857829003601f168201915b505050505081565b5f818152600260205260408120546001600160a01b0316806103135760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610440565b5f6001600160a01b0382166106855760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610440565b506001600160a01b03165f9081526003602052604090205490565b6106a8610c6b565b6106b15f610cc5565b565b6106bb610c6b565b5f6106c560075490565b90506008548251826106d79190611689565b11156107195760405162461bcd60e51b81526020600482015260116024820152704d696e74696e67206d6f7265204e46542160781b6044820152606401610440565b5f5b8251811015610764576107528382815181106107395761073961169c565b6020026020010151828461074d9190611689565b610d16565b8061075c816116b0565b91505061071b565b5081516107719082611689565b6007555050565b606060018054610327906115f0565b610792338383610d2f565b5050565b6107a03383610aab565b6107bc5760405162461bcd60e51b815260040161044090611628565b6107c884848484610dfc565b50505050565b6107d6610c6b565b60096107928282611715565b5f818152600260205260409020546060906001600160a01b03166108605760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610440565b5f6009805461086e906115f0565b80601f016020809104026020016040519081016040528092919081815260200182805461089a906115f0565b80156108e55780601f106108bc576101008083540402835291602001916108e5565b820191905f5260205f20905b8154815290600101906020018083116108c857829003601f168201915b505050505090505f8151116109085760405180602001604052805f815250610933565b8061091284610e2f565b6040516020016109239291906117d1565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b61096f610c6b565b6001600160a01b0381166109d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610440565b6109dd81610cc5565b50565b5f818152600260205260409020546001600160a01b03166109dd5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610440565b5f81815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610a72826105bd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f80610ab6836105bd565b9050806001600160a01b0316846001600160a01b03161480610add5750610add818561093a565b80610b015750836001600160a01b0316610af6846103a8565b6001600160a01b0316145b949350505050565b826001600160a01b0316610b1c826105bd565b6001600160a01b031614610b425760405162461bcd60e51b81526004016104409061180f565b6001600160a01b038216610ba45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610440565b826001600160a01b0316610bb7826105bd565b6001600160a01b031614610bdd5760405162461bcd60e51b81526004016104409061180f565b5f81815260046020908152604080832080546001600160a01b03199081169091556001600160a01b038781168086526003855283862080545f1901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b031633146106b15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610440565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610792828260405180602001604052805f815250610ebf565b816001600160a01b0316836001600160a01b031603610d905760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610440565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610e07848484610b09565b610e1384848484610ef1565b6107c85760405162461bcd60e51b815260040161044090611854565b60605f610e3b83610fee565b60010190505f8167ffffffffffffffff811115610e5a57610e5a611388565b6040519080825280601f01601f191660200182016040528015610e84576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084610e8e57509392505050565b610ec983836110c5565b610ed55f848484610ef1565b6104e15760405162461bcd60e51b815260040161044090611854565b5f6001600160a01b0384163b15610fe357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610f349033908990889088906004016118a6565b6020604051808303815f875af1925050508015610f6e575060408051601f3d908101601f19168201909252610f6b918101906118e2565b60015b610fc9573d808015610f9b576040519150601f19603f3d011682016040523d82523d5f602084013e610fa0565b606091505b5080515f03610fc15760405162461bcd60e51b815260040161044090611854565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b01565b506001949350505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061102c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611058576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061107657662386f26fc10000830492506010015b6305f5e100831061108e576305f5e100830492506008015b61271083106110a257612710830492506004015b606483106110b4576064830492506002015b600a83106103135760010192915050565b6001600160a01b03821661111b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610440565b5f818152600260205260409020546001600160a01b03161561117f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610440565b5f818152600260205260409020546001600160a01b0316156111e35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610440565b6001600160a01b0382165f81815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146109dd575f80fd5b5f60208284031215611272575f80fd5b81356109338161124d565b5f5b8381101561129757818101518382015260200161127f565b50505f910152565b5f81518084526112b681602086016020860161127d565b601f01601f19169290920160200192915050565b602081525f610933602083018461129f565b5f602082840312156112ec575f80fd5b5035919050565b80356001600160a01b0381168114611309575f80fd5b919050565b5f806040838503121561131f575f80fd5b611328836112f3565b946020939093013593505050565b5f805f60608486031215611348575f80fd5b611351846112f3565b925061135f602085016112f3565b9150604084013590509250925092565b5f6020828403121561137f575f80fd5b610933826112f3565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff811182821017156113c5576113c5611388565b604052919050565b5f60208083850312156113de575f80fd5b823567ffffffffffffffff808211156113f5575f80fd5b818501915085601f830112611408575f80fd5b81358181111561141a5761141a611388565b8060051b915061142b84830161139c565b8181529183018401918481019088841115611444575f80fd5b938501935b838510156114695761145a856112f3565b82529385019390850190611449565b98975050505050505050565b5f8060408385031215611486575f80fd5b61148f836112f3565b9150602083013580151581146114a3575f80fd5b809150509250929050565b5f67ffffffffffffffff8311156114c7576114c7611388565b6114da601f8401601f191660200161139c565b90508281528383830111156114ed575f80fd5b828260208301375f602084830101529392505050565b5f805f8060808587031215611516575f80fd5b61151f856112f3565b935061152d602086016112f3565b925060408501359150606085013567ffffffffffffffff81111561154f575f80fd5b8501601f8101871361155f575f80fd5b61156e878235602084016114ae565b91505092959194509250565b5f6020828403121561158a575f80fd5b813567ffffffffffffffff8111156115a0575f80fd5b8201601f810184136115b0575f80fd5b610b01848235602084016114ae565b5f80604083850312156115d0575f80fd5b6115d9836112f3565b91506115e7602084016112f3565b90509250929050565b600181811c9082168061160457607f821691505b60208210810361162257634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561031357610313611675565b634e487b7160e01b5f52603260045260245ffd5b5f600182016116c1576116c1611675565b5060010190565b601f8211156104e1575f81815260208120601f850160051c810160208610156116ee5750805b601f850160051c820191505b8181101561170d578281556001016116fa565b505050505050565b815167ffffffffffffffff81111561172f5761172f611388565b6117438161173d84546115f0565b846116c8565b602080601f831160018114611776575f841561175f5750858301515b5f19600386901b1c1916600185901b17855561170d565b5f85815260208120601f198616915b828110156117a457888601518255948401946001909101908401611785565b50858210156117c157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f83516117e281846020880161127d565b8351908301906117f681836020880161127d565b64173539b7b760d91b9101908152600501949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906118d89083018461129f565b9695505050505050565b5f602082840312156118f2575f80fd5b81516109338161124d56fea26469706673582212207cea412120d814f1e7a6bcea7f25a912c405b58e05aafb065b51b384fe7e907a64736f6c63430008150033697066733a2f2f516d4e554c6b36686f707066667042754e504643566a387a6172704b4e6f624e4766506353615751395834444a422f
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610132575f3560e01c8063715018a6116100b4578063b88d4fde11610079578063b88d4fde14610260578063c30f4a5a14610273578063c87b56dd14610286578063d5abeb0114610299578063e985e9c5146102a2578063f2fde38b146102b5575f80fd5b8063715018a6146102195780637c63d9b2146102215780638da5cb5b1461023457806395d89b4114610245578063a22cb4651461024d575f80fd5b806323b872dd116100fa57806323b872dd146101c557806342842e0e146101d85780635600f04f146101eb5780636352211e146101f357806370a0823114610206575f80fd5b806301ffc9a71461013657806306fdde031461015e578063081812fc14610173578063095ea7b31461019e57806318160ddd146101b3575b5f80fd5b610149610144366004611262565b6102c8565b60405190151581526020015b60405180910390f35b610166610319565b60405161015591906112ca565b6101866101813660046112dc565b6103a8565b6040516001600160a01b039091168152602001610155565b6101b16101ac36600461130e565b6103cd565b005b6007545b604051908152602001610155565b6101b16101d3366004611336565b6104e6565b6101b16101e6366004611336565b610517565b610166610531565b6101866102013660046112dc565b6105bd565b6101b761021436600461136f565b61061c565b6101b16106a0565b6101b161022f3660046113cd565b6106b3565b6006546001600160a01b0316610186565b610166610778565b6101b161025b366004611475565b610787565b6101b161026e366004611503565b610796565b6101b161028136600461157a565b6107ce565b6101666102943660046112dc565b6107e2565b6101b760085481565b6101496102b03660046115bf565b61093a565b6101b16102c336600461136f565b610967565b5f6001600160e01b031982166380ac58cd60e01b14806102f857506001600160e01b03198216635b5e139f60e01b145b8061031357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60605f8054610327906115f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610353906115f0565b801561039e5780601f106103755761010080835404028352916020019161039e565b820191905f5260205f20905b81548152906001019060200180831161038157829003601f168201915b5050505050905090565b5f6103b2826109e0565b505f908152600460205260409020546001600160a01b031690565b5f6103d7826105bd565b9050806001600160a01b0316836001600160a01b0316036104495760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806104655750610465813361093a565b6104d75760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610440565b6104e18383610a3e565b505050565b6104f03382610aab565b61050c5760405162461bcd60e51b815260040161044090611628565b6104e1838383610b09565b6104e183838360405180602001604052805f815250610796565b6009805461053e906115f0565b80601f016020809104026020016040519081016040528092919081815260200182805461056a906115f0565b80156105b55780601f1061058c576101008083540402835291602001916105b5565b820191905f5260205f20905b81548152906001019060200180831161059857829003601f168201915b505050505081565b5f818152600260205260408120546001600160a01b0316806103135760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610440565b5f6001600160a01b0382166106855760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610440565b506001600160a01b03165f9081526003602052604090205490565b6106a8610c6b565b6106b15f610cc5565b565b6106bb610c6b565b5f6106c560075490565b90506008548251826106d79190611689565b11156107195760405162461bcd60e51b81526020600482015260116024820152704d696e74696e67206d6f7265204e46542160781b6044820152606401610440565b5f5b8251811015610764576107528382815181106107395761073961169c565b6020026020010151828461074d9190611689565b610d16565b8061075c816116b0565b91505061071b565b5081516107719082611689565b6007555050565b606060018054610327906115f0565b610792338383610d2f565b5050565b6107a03383610aab565b6107bc5760405162461bcd60e51b815260040161044090611628565b6107c884848484610dfc565b50505050565b6107d6610c6b565b60096107928282611715565b5f818152600260205260409020546060906001600160a01b03166108605760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610440565b5f6009805461086e906115f0565b80601f016020809104026020016040519081016040528092919081815260200182805461089a906115f0565b80156108e55780601f106108bc576101008083540402835291602001916108e5565b820191905f5260205f20905b8154815290600101906020018083116108c857829003601f168201915b505050505090505f8151116109085760405180602001604052805f815250610933565b8061091284610e2f565b6040516020016109239291906117d1565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b61096f610c6b565b6001600160a01b0381166109d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610440565b6109dd81610cc5565b50565b5f818152600260205260409020546001600160a01b03166109dd5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610440565b5f81815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610a72826105bd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f80610ab6836105bd565b9050806001600160a01b0316846001600160a01b03161480610add5750610add818561093a565b80610b015750836001600160a01b0316610af6846103a8565b6001600160a01b0316145b949350505050565b826001600160a01b0316610b1c826105bd565b6001600160a01b031614610b425760405162461bcd60e51b81526004016104409061180f565b6001600160a01b038216610ba45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610440565b826001600160a01b0316610bb7826105bd565b6001600160a01b031614610bdd5760405162461bcd60e51b81526004016104409061180f565b5f81815260046020908152604080832080546001600160a01b03199081169091556001600160a01b038781168086526003855283862080545f1901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b031633146106b15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610440565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610792828260405180602001604052805f815250610ebf565b816001600160a01b0316836001600160a01b031603610d905760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610440565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610e07848484610b09565b610e1384848484610ef1565b6107c85760405162461bcd60e51b815260040161044090611854565b60605f610e3b83610fee565b60010190505f8167ffffffffffffffff811115610e5a57610e5a611388565b6040519080825280601f01601f191660200182016040528015610e84576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084610e8e57509392505050565b610ec983836110c5565b610ed55f848484610ef1565b6104e15760405162461bcd60e51b815260040161044090611854565b5f6001600160a01b0384163b15610fe357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610f349033908990889088906004016118a6565b6020604051808303815f875af1925050508015610f6e575060408051601f3d908101601f19168201909252610f6b918101906118e2565b60015b610fc9573d808015610f9b576040519150601f19603f3d011682016040523d82523d5f602084013e610fa0565b606091505b5080515f03610fc15760405162461bcd60e51b815260040161044090611854565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b01565b506001949350505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061102c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611058576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061107657662386f26fc10000830492506010015b6305f5e100831061108e576305f5e100830492506008015b61271083106110a257612710830492506004015b606483106110b4576064830492506002015b600a83106103135760010192915050565b6001600160a01b03821661111b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610440565b5f818152600260205260409020546001600160a01b03161561117f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610440565b5f818152600260205260409020546001600160a01b0316156111e35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610440565b6001600160a01b0382165f81815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146109dd575f80fd5b5f60208284031215611272575f80fd5b81356109338161124d565b5f5b8381101561129757818101518382015260200161127f565b50505f910152565b5f81518084526112b681602086016020860161127d565b601f01601f19169290920160200192915050565b602081525f610933602083018461129f565b5f602082840312156112ec575f80fd5b5035919050565b80356001600160a01b0381168114611309575f80fd5b919050565b5f806040838503121561131f575f80fd5b611328836112f3565b946020939093013593505050565b5f805f60608486031215611348575f80fd5b611351846112f3565b925061135f602085016112f3565b9150604084013590509250925092565b5f6020828403121561137f575f80fd5b610933826112f3565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff811182821017156113c5576113c5611388565b604052919050565b5f60208083850312156113de575f80fd5b823567ffffffffffffffff808211156113f5575f80fd5b818501915085601f830112611408575f80fd5b81358181111561141a5761141a611388565b8060051b915061142b84830161139c565b8181529183018401918481019088841115611444575f80fd5b938501935b838510156114695761145a856112f3565b82529385019390850190611449565b98975050505050505050565b5f8060408385031215611486575f80fd5b61148f836112f3565b9150602083013580151581146114a3575f80fd5b809150509250929050565b5f67ffffffffffffffff8311156114c7576114c7611388565b6114da601f8401601f191660200161139c565b90508281528383830111156114ed575f80fd5b828260208301375f602084830101529392505050565b5f805f8060808587031215611516575f80fd5b61151f856112f3565b935061152d602086016112f3565b925060408501359150606085013567ffffffffffffffff81111561154f575f80fd5b8501601f8101871361155f575f80fd5b61156e878235602084016114ae565b91505092959194509250565b5f6020828403121561158a575f80fd5b813567ffffffffffffffff8111156115a0575f80fd5b8201601f810184136115b0575f80fd5b610b01848235602084016114ae565b5f80604083850312156115d0575f80fd5b6115d9836112f3565b91506115e7602084016112f3565b90509250929050565b600181811c9082168061160457607f821691505b60208210810361162257634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561031357610313611675565b634e487b7160e01b5f52603260045260245ffd5b5f600182016116c1576116c1611675565b5060010190565b601f8211156104e1575f81815260208120601f850160051c810160208610156116ee5750805b601f850160051c820191505b8181101561170d578281556001016116fa565b505050505050565b815167ffffffffffffffff81111561172f5761172f611388565b6117438161173d84546115f0565b846116c8565b602080601f831160018114611776575f841561175f5750858301515b5f19600386901b1c1916600185901b17855561170d565b5f85815260208120601f198616915b828110156117a457888601518255948401946001909101908401611785565b50858210156117c157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f83516117e281846020880161127d565b8351908301906117f681836020880161127d565b64173539b7b760d91b9101908152600501949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906118d89083018461129f565b9695505050505050565b5f602082840312156118f2575f80fd5b81516109338161124d56fea26469706673582212207cea412120d814f1e7a6bcea7f25a912c405b58e05aafb065b51b384fe7e907a64736f6c63430008150033
Deployed Bytecode Sourcemap
59286:1286:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42377:321;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;42377:321:0;;;;;;;;43390:100;;;:::i;:::-;;;;;;;:::i;44965:187::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;44965:187:0;1533:203:1;44483:416:0;;;;;;:::i;:::-;;:::i;:::-;;60096:92;60167:13;;60096:92;;;2324:25:1;;;2312:2;2297:18;60096:92:0;2178:177:1;45731:372:0;;;;;;:::i;:::-;;:::i;46174:185::-;;;;;;:::i;:::-;;:::i;59437:85::-;;;:::i;43084:239::-;;;;;;:::i;:::-;;:::i;42762:260::-;;;;;;:::i;:::-;;:::i;20569:103::-;;;:::i;60196:373::-;;;;;;:::i;:::-;;:::i;19928:87::-;20001:6;;-1:-1:-1;;;;;20001:6:0;19928:87;;43559:104;;;:::i;45224:180::-;;;;;;:::i;:::-;;:::i;46430:359::-;;;;;;:::i;:::-;;:::i;59997:91::-;;;;;;:::i;:::-;;:::i;59613:376::-;;;;;;:::i;:::-;;:::i;59402:28::-;;;;;;45475:189;;;;;;:::i;:::-;;:::i;20827:238::-;;;;;;:::i;:::-;;:::i;42377:321::-;42495:4;-1:-1:-1;;;;;;42532:40:0;;-1:-1:-1;;;42532:40:0;;:105;;-1:-1:-1;;;;;;;42589:48:0;;-1:-1:-1;;;42589:48:0;42532:105;:158;;;-1:-1:-1;;;;;;;;;;34914:40:0;;;42654:36;42512:178;42377:321;-1:-1:-1;;42377:321:0:o;43390:100::-;43444:13;43477:5;43470:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43390:100;:::o;44965:187::-;45057:7;45077:23;45092:7;45077:14;:23::i;:::-;-1:-1:-1;45120:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45120:24:0;;44965:187::o;44483:416::-;44564:13;44580:23;44595:7;44580:14;:23::i;:::-;44564:39;;44628:5;-1:-1:-1;;;;;44622:11:0;:2;-1:-1:-1;;;;;44622:11:0;;44614:57;;;;-1:-1:-1;;;44614:57:0;;6994:2:1;44614:57:0;;;6976:21:1;7033:2;7013:18;;;7006:30;7072:34;7052:18;;;7045:62;-1:-1:-1;;;7123:18:1;;;7116:31;7164:19;;44614:57:0;;;;;;;;;18538:10;-1:-1:-1;;;;;44706:21:0;;;;:62;;-1:-1:-1;44731:37:0;44748:5;18538:10;45475:189;:::i;44731:37::-;44684:173;;;;-1:-1:-1;;;44684:173:0;;7396:2:1;44684:173:0;;;7378:21:1;7435:2;7415:18;;;7408:30;7474:34;7454:18;;;7447:62;7545:31;7525:18;;;7518:59;7594:19;;44684:173:0;7194:425:1;44684:173:0;44870:21;44879:2;44883:7;44870:8;:21::i;:::-;44553:346;44483:416;;:::o;45731:372::-;45940:41;18538:10;45973:7;45940:18;:41::i;:::-;45918:136;;;;-1:-1:-1;;;45918:136:0;;;;;;;:::i;:::-;46067:28;46077:4;46083:2;46087:7;46067:9;:28::i;46174:185::-;46312:39;46329:4;46335:2;46339:7;46312:39;;;;;;;;;;;;:16;:39::i;59437:85::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43084:239::-;43172:7;48227:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48227:16:0;;43236:56;;;;-1:-1:-1;;;43236:56:0;;8240:2:1;43236:56:0;;;8222:21:1;8279:2;8259:18;;;8252:30;-1:-1:-1;;;8298:18:1;;;8291:54;8362:18;;43236:56:0;8038:348:1;42762:260:0;42850:7;-1:-1:-1;;;;;42892:19:0;;42870:110;;;;-1:-1:-1;;;42870:110:0;;8593:2:1;42870:110:0;;;8575:21:1;8632:2;8612:18;;;8605:30;8671:34;8651:18;;;8644:62;-1:-1:-1;;;8722:18:1;;;8715:39;8771:19;;42870:110:0;8391:405:1;42870:110:0;-1:-1:-1;;;;;;42998:16:0;;;;;:9;:16;;;;;;;42762:260::o;20569:103::-;19814:13;:11;:13::i;:::-;20634:30:::1;20661:1;20634:18;:30::i;:::-;20569:103::o:0;60196:373::-;19814:13;:11;:13::i;:::-;60281:14:::1;60298:13;60167::::0;;;60096:92;60298:13:::1;60281:30;;60359:9;;60339;:16;60330:6;:25;;;;:::i;:::-;:38;;60322:68;;;::::0;-1:-1:-1;;;60322:68:0;;9265:2:1;60322:68:0::1;::::0;::::1;9247:21:1::0;9304:2;9284:18;;;9277:30;-1:-1:-1;;;9323:18:1;;;9316:47;9380:18;;60322:68:0::1;9063:341:1::0;60322:68:0::1;60406:9;60401:109;60425:9;:16;60421:1;:20;60401:109;;;60463:35;60473:9;60483:1;60473:12;;;;;;;;:::i;:::-;;;;;;;60496:1;60487:6;:10;;;;:::i;:::-;60463:9;:35::i;:::-;60443:3:::0;::::1;::::0;::::1;:::i;:::-;;;;60401:109;;;-1:-1:-1::0;60545:16:0;;60536:25:::1;::::0;:6;:25:::1;:::i;:::-;60520:13;:41:::0;-1:-1:-1;;60196:373:0:o;43559:104::-;43615:13;43648:7;43641:14;;;;;:::i;45224:180::-;45344:52;18538:10;45377:8;45387;45344:18;:52::i;:::-;45224:180;;:::o;46430:359::-;46618:41;18538:10;46651:7;46618:18;:41::i;:::-;46596:136;;;;-1:-1:-1;;;46596:136:0;;;;;;;:::i;:::-;46743:38;46757:4;46763:2;46767:7;46776:4;46743:13;:38::i;:::-;46430:359;;;;:::o;59997:91::-;19814:13;:11;:13::i;:::-;60068:3:::1;:12;60074:6:::0;60068:3;:12:::1;:::i;59613:376::-:0;48629:4;48227:16;;;:7;:16;;;;;;59702:13;;-1:-1:-1;;;;;48227:16:0;59728:113;;;;-1:-1:-1;;;59728:113:0;;12087:2:1;59728:113:0;;;12069:21:1;12126:2;12106:18;;;12099:30;12165:34;12145:18;;;12138:62;-1:-1:-1;;;12216:18:1;;;12209:45;12271:19;;59728:113:0;11885:411:1;59728:113:0;59852:21;59876:3;59852:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59921:1;59903:7;59897:21;:25;:84;;;;;;;;;;;;;;;;;59939:7;59948:18;:7;:16;:18::i;:::-;59925:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59897:84;59890:91;59613:376;-1:-1:-1;;;59613:376:0:o;45475:189::-;-1:-1:-1;;;;;45621:25:0;;;45597:4;45621:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45475:189::o;20827:238::-;19814:13;:11;:13::i;:::-;-1:-1:-1;;;;;20930:22:0;::::1;20908:110;;;::::0;-1:-1:-1;;;20908:110:0;;13160:2:1;20908:110:0::1;::::0;::::1;13142:21:1::0;13199:2;13179:18;;;13172:30;13238:34;13218:18;;;13211:62;-1:-1:-1;;;13289:18:1;;;13282:36;13335:19;;20908:110:0::1;12958:402:1::0;20908:110:0::1;21029:28;21048:8;21029:18;:28::i;:::-;20827:238:::0;:::o;55086:135::-;48629:4;48227:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48227:16:0;55160:53;;;;-1:-1:-1;;;55160:53:0;;8240:2:1;55160:53:0;;;8222:21:1;8279:2;8259:18;;;8252:30;-1:-1:-1;;;8298:18:1;;;8291:54;8362:18;;55160:53:0;8038:348:1;54365:174:0;54440:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;54440:29:0;-1:-1:-1;;;;;54440:29:0;;;;;;;;:24;;54494:23;54440:24;54494:14;:23::i;:::-;-1:-1:-1;;;;;54485:46:0;;;;;;;;;;;54365:174;;:::o;48859:315::-;48977:4;48994:13;49010:23;49025:7;49010:14;:23::i;:::-;48994:39;;49063:5;-1:-1:-1;;;;;49052:16:0;:7;-1:-1:-1;;;;;49052:16:0;;:65;;;;49085:32;49102:5;49109:7;49085:16;:32::i;:::-;49052:113;;;;49158:7;-1:-1:-1;;;;;49134:31:0;:20;49146:7;49134:11;:20::i;:::-;-1:-1:-1;;;;;49134:31:0;;49052:113;49044:122;48859:315;-1:-1:-1;;;;48859:315:0:o;52909:1337::-;53082:4;-1:-1:-1;;;;;53055:31:0;:23;53070:7;53055:14;:23::i;:::-;-1:-1:-1;;;;;53055:31:0;;53033:118;;;;-1:-1:-1;;;53033:118:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53170:16:0;;53162:65;;;;-1:-1:-1;;;53162:65:0;;13973:2:1;53162:65:0;;;13955:21:1;14012:2;13992:18;;;13985:30;14051:34;14031:18;;;14024:62;-1:-1:-1;;;14102:18:1;;;14095:34;14146:19;;53162:65:0;13771:400:1;53162:65:0;53426:4;-1:-1:-1;;;;;53399:31:0;:23;53414:7;53399:14;:23::i;:::-;-1:-1:-1;;;;;53399:31:0;;53377:118;;;;-1:-1:-1;;;53377:118:0;;;;;;;:::i;:::-;53567:24;;;;:15;:24;;;;;;;;53560:31;;-1:-1:-1;;;;;;53560:31:0;;;;;;-1:-1:-1;;;;;54043:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;54043:20:0;;;54078:13;;;;;;;;;:18;;53560:31;54078:18;;;54118:16;;;:7;:16;;;;;;:21;;;;;;;;;;54157:27;;53583:7;;54157:27;;;44553:346;44483:416;;:::o;20093:132::-;20001:6;;-1:-1:-1;;;;;20001:6:0;18538:10;20157:23;20149:68;;;;-1:-1:-1;;;20149:68:0;;14378:2:1;20149:68:0;;;14360:21:1;;;14397:18;;;14390:30;14456:34;14436:18;;;14429:62;14508:18;;20149:68:0;14176:356:1;21225:191:0;21318:6;;;-1:-1:-1;;;;;21335:17:0;;;-1:-1:-1;;;;;;21335:17:0;;;;;;;21368:40;;21318:6;;;21335:17;21318:6;;21368:40;;21299:16;;21368:40;21288:128;21225:191;:::o;49516:110::-;49592:26;49602:2;49606:7;49592:26;;;;;;;;;;;;:9;:26::i;54682:315::-;54837:8;-1:-1:-1;;;;;54828:17:0;:5;-1:-1:-1;;;;;54828:17:0;;54820:55;;;;-1:-1:-1;;;54820:55:0;;14739:2:1;54820:55:0;;;14721:21:1;14778:2;14758:18;;;14751:30;14817:27;14797:18;;;14790:55;14862:18;;54820:55:0;14537:349:1;54820:55:0;-1:-1:-1;;;;;54886:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;54886:46:0;;;;;;;;;;54948:41;;540::1;;;54948::0;;513:18:1;54948:41:0;;;;;;;54682:315;;;:::o;47670:350::-;47826:28;47836:4;47842:2;47846:7;47826:9;:28::i;:::-;47887:47;47910:4;47916:2;47920:7;47929:4;47887:22;:47::i;:::-;47865:147;;;;-1:-1:-1;;;47865:147:0;;;;;;;:::i;15223:716::-;15279:13;15330:14;15347:17;15358:5;15347:10;:17::i;:::-;15367:1;15347:21;15330:38;;15383:20;15417:6;15406:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15406:18:0;-1:-1:-1;15383:41:0;-1:-1:-1;15548:28:0;;;15564:2;15548:28;15605:288;-1:-1:-1;;15637:5:0;-1:-1:-1;;;15774:2:0;15763:14;;15758:30;15637:5;15745:44;15835:2;15826:11;;;-1:-1:-1;15856:21:0;15605:288;15856:21;-1:-1:-1;15914:6:0;15223:716;-1:-1:-1;;;15223:716:0:o;49853:319::-;49982:18;49988:2;49992:7;49982:5;:18::i;:::-;50033:53;50064:1;50068:2;50072:7;50081:4;50033:22;:53::i;:::-;50011:153;;;;-1:-1:-1;;;50011:153:0;;;;;;;:::i;55785:1034::-;55939:4;-1:-1:-1;;;;;55960:13:0;;23190:19;:23;55956:856;;56013:174;;-1:-1:-1;;;56013:174:0;;-1:-1:-1;;;;;56013:36:0;;;;;:174;;18538:10;;56107:4;;56134:7;;56164:4;;56013:174;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56013:174:0;;;;;;;;-1:-1:-1;;56013:174:0;;;;;;;;;;;;:::i;:::-;;;55992:765;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56370:6;:13;56387:1;56370:18;56366:376;;56413:108;;-1:-1:-1;;;56413:108:0;;;;;;;:::i;56366:376::-;56692:6;56686:13;56677:6;56673:2;56669:15;56662:38;55992:765;-1:-1:-1;;;;;;56251:51:0;-1:-1:-1;;;56251:51:0;;-1:-1:-1;56244:58:0;;55956:856;-1:-1:-1;56796:4:0;55785:1034;;;;;;:::o;11945:948::-;11998:7;;-1:-1:-1;;;12076:17:0;;12072:106;;-1:-1:-1;;;12114:17:0;;;-1:-1:-1;12160:2:0;12150:12;12072:106;12205:8;12196:5;:17;12192:106;;12243:8;12234:17;;;-1:-1:-1;12280:2:0;12270:12;12192:106;12325:8;12316:5;:17;12312:106;;12363:8;12354:17;;;-1:-1:-1;12400:2:0;12390:12;12312:106;12445:7;12436:5;:16;12432:103;;12482:7;12473:16;;;-1:-1:-1;12518:1:0;12508:11;12432:103;12562:7;12553:5;:16;12549:103;;12599:7;12590:16;;;-1:-1:-1;12635:1:0;12625:11;12549:103;12679:7;12670:5;:16;12666:103;;12716:7;12707:16;;;-1:-1:-1;12752:1:0;12742:11;12666:103;12796:7;12787:5;:16;12783:68;;12834:1;12824:11;12879:6;11945:948;-1:-1:-1;;11945:948:0:o;50508:942::-;-1:-1:-1;;;;;50588:16:0;;50580:61;;;;-1:-1:-1;;;50580:61:0;;16392:2:1;50580:61:0;;;16374:21:1;;;16411:18;;;16404:30;16470:34;16450:18;;;16443:62;16522:18;;50580:61:0;16190:356:1;50580:61:0;48629:4;48227:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48227:16:0;48653:31;50652:58;;;;-1:-1:-1;;;50652:58:0;;16753:2:1;50652:58:0;;;16735:21:1;16792:2;16772:18;;;16765:30;16831;16811:18;;;16804:58;16879:18;;50652:58:0;16551:352:1;50652:58:0;48629:4;48227:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48227:16:0;48653:31;50861:58;;;;-1:-1:-1;;;50861:58:0;;16753:2:1;50861:58:0;;;16735:21:1;16792:2;16772:18;;;16765:30;16831;16811:18;;;16804:58;16879:18;;50861:58:0;16551:352:1;50861:58:0;-1:-1:-1;;;;;51268:13:0;;;;;;:9;:13;;;;;;;;:18;;51285:1;51268:18;;;51310:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;51310:21:0;;;;;51349:33;51318:7;;51268:13;;51349:33;;51268:13;;51349:33;45224:180;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;2884:127::-;2945:10;2940:3;2936:20;2933:1;2926:31;2976:4;2973:1;2966:15;3000:4;2997:1;2990:15;3016:275;3087:2;3081:9;3152:2;3133:13;;-1:-1:-1;;3129:27:1;3117:40;;3187:18;3172:34;;3208:22;;;3169:62;3166:88;;;3234:18;;:::i;:::-;3270:2;3263:22;3016:275;;-1:-1:-1;3016:275:1:o;3296:952::-;3380:6;3411:2;3454;3442:9;3433:7;3429:23;3425:32;3422:52;;;3470:1;3467;3460:12;3422:52;3510:9;3497:23;3539:18;3580:2;3572:6;3569:14;3566:34;;;3596:1;3593;3586:12;3566:34;3634:6;3623:9;3619:22;3609:32;;3679:7;3672:4;3668:2;3664:13;3660:27;3650:55;;3701:1;3698;3691:12;3650:55;3737:2;3724:16;3759:2;3755;3752:10;3749:36;;;3765:18;;:::i;:::-;3811:2;3808:1;3804:10;3794:20;;3834:28;3858:2;3854;3850:11;3834:28;:::i;:::-;3896:15;;;3966:11;;;3962:20;;;3927:12;;;;3994:19;;;3991:39;;;4026:1;4023;4016:12;3991:39;4050:11;;;;4070:148;4086:6;4081:3;4078:15;4070:148;;;4152:23;4171:3;4152:23;:::i;:::-;4140:36;;4103:12;;;;4196;;;;4070:148;;;4237:5;3296:952;-1:-1:-1;;;;;;;;3296:952:1:o;4253:347::-;4318:6;4326;4379:2;4367:9;4358:7;4354:23;4350:32;4347:52;;;4395:1;4392;4385:12;4347:52;4418:29;4437:9;4418:29;:::i;:::-;4408:39;;4497:2;4486:9;4482:18;4469:32;4544:5;4537:13;4530:21;4523:5;4520:32;4510:60;;4566:1;4563;4556:12;4510:60;4589:5;4579:15;;;4253:347;;;;;:::o;4605:406::-;4669:5;4703:18;4695:6;4692:30;4689:56;;;4725:18;;:::i;:::-;4763:57;4808:2;4787:15;;-1:-1:-1;;4783:29:1;4814:4;4779:40;4763:57;:::i;:::-;4754:66;;4843:6;4836:5;4829:21;4883:3;4874:6;4869:3;4865:16;4862:25;4859:45;;;4900:1;4897;4890:12;4859:45;4949:6;4944:3;4937:4;4930:5;4926:16;4913:43;5003:1;4996:4;4987:6;4980:5;4976:18;4972:29;4965:40;4605:406;;;;;:::o;5016:666::-;5111:6;5119;5127;5135;5188:3;5176:9;5167:7;5163:23;5159:33;5156:53;;;5205:1;5202;5195:12;5156:53;5228:29;5247:9;5228:29;:::i;:::-;5218:39;;5276:38;5310:2;5299:9;5295:18;5276:38;:::i;:::-;5266:48;;5361:2;5350:9;5346:18;5333:32;5323:42;;5416:2;5405:9;5401:18;5388:32;5443:18;5435:6;5432:30;5429:50;;;5475:1;5472;5465:12;5429:50;5498:22;;5551:4;5543:13;;5539:27;-1:-1:-1;5529:55:1;;5580:1;5577;5570:12;5529:55;5603:73;5668:7;5663:2;5650:16;5645:2;5641;5637:11;5603:73;:::i;:::-;5593:83;;;5016:666;;;;;;;:::o;5687:450::-;5756:6;5809:2;5797:9;5788:7;5784:23;5780:32;5777:52;;;5825:1;5822;5815:12;5777:52;5865:9;5852:23;5898:18;5890:6;5887:30;5884:50;;;5930:1;5927;5920:12;5884:50;5953:22;;6006:4;5998:13;;5994:27;-1:-1:-1;5984:55:1;;6035:1;6032;6025:12;5984:55;6058:73;6123:7;6118:2;6105:16;6100:2;6096;6092:11;6058:73;:::i;6142:260::-;6210:6;6218;6271:2;6259:9;6250:7;6246:23;6242:32;6239:52;;;6287:1;6284;6277:12;6239:52;6310:29;6329:9;6310:29;:::i;:::-;6300:39;;6358:38;6392:2;6381:9;6377:18;6358:38;:::i;:::-;6348:48;;6142:260;;;;;:::o;6407:380::-;6486:1;6482:12;;;;6529;;;6550:61;;6604:4;6596:6;6592:17;6582:27;;6550:61;6657:2;6649:6;6646:14;6626:18;6623:38;6620:161;;6703:10;6698:3;6694:20;6691:1;6684:31;6738:4;6735:1;6728:15;6766:4;6763:1;6756:15;6620:161;;6407:380;;;:::o;7624:409::-;7826:2;7808:21;;;7865:2;7845:18;;;7838:30;7904:34;7899:2;7884:18;;7877:62;-1:-1:-1;;;7970:2:1;7955:18;;7948:43;8023:3;8008:19;;7624:409::o;8801:127::-;8862:10;8857:3;8853:20;8850:1;8843:31;8893:4;8890:1;8883:15;8917:4;8914:1;8907:15;8933:125;8998:9;;;9019:10;;;9016:36;;;9032:18;;:::i;9409:127::-;9470:10;9465:3;9461:20;9458:1;9451:31;9501:4;9498:1;9491:15;9525:4;9522:1;9515:15;9541:135;9580:3;9601:17;;;9598:43;;9621:18;;:::i;:::-;-1:-1:-1;9668:1:1;9657:13;;9541:135::o;9807:545::-;9909:2;9904:3;9901:11;9898:448;;;9945:1;9970:5;9966:2;9959:17;10015:4;10011:2;10001:19;10085:2;10073:10;10069:19;10066:1;10062:27;10056:4;10052:38;10121:4;10109:10;10106:20;10103:47;;;-1:-1:-1;10144:4:1;10103:47;10199:2;10194:3;10190:12;10187:1;10183:20;10177:4;10173:31;10163:41;;10254:82;10272:2;10265:5;10262:13;10254:82;;;10317:17;;;10298:1;10287:13;10254:82;;;10258:3;;;9807:545;;;:::o;10528:1352::-;10654:3;10648:10;10681:18;10673:6;10670:30;10667:56;;;10703:18;;:::i;:::-;10732:97;10822:6;10782:38;10814:4;10808:11;10782:38;:::i;:::-;10776:4;10732:97;:::i;:::-;10884:4;;10948:2;10937:14;;10965:1;10960:663;;;;11667:1;11684:6;11681:89;;;-1:-1:-1;11736:19:1;;;11730:26;11681:89;-1:-1:-1;;10485:1:1;10481:11;;;10477:24;10473:29;10463:40;10509:1;10505:11;;;10460:57;11783:81;;10930:944;;10960:663;9754:1;9747:14;;;9791:4;9778:18;;-1:-1:-1;;10996:20:1;;;11114:236;11128:7;11125:1;11122:14;11114:236;;;11217:19;;;11211:26;11196:42;;11309:27;;;;11277:1;11265:14;;;;11144:19;;11114:236;;;11118:3;11378:6;11369:7;11366:19;11363:201;;;11439:19;;;11433:26;-1:-1:-1;;11522:1:1;11518:14;;;11534:3;11514:24;11510:37;11506:42;11491:58;11476:74;;11363:201;-1:-1:-1;;;;;11610:1:1;11594:14;;;11590:22;11577:36;;-1:-1:-1;10528:1352:1:o;12301:652::-;12570:3;12608:6;12602:13;12624:66;12683:6;12678:3;12671:4;12663:6;12659:17;12624:66;:::i;:::-;12753:13;;12712:16;;;;12775:70;12753:13;12712:16;12822:4;12810:17;;12775:70;:::i;:::-;-1:-1:-1;;;12867:20:1;;12896:22;;;12945:1;12934:13;;12301:652;-1:-1:-1;;;;12301:652:1:o;13365:401::-;13567:2;13549:21;;;13606:2;13586:18;;;13579:30;13645:34;13640:2;13625:18;;13618:62;-1:-1:-1;;;13711:2:1;13696:18;;13689:35;13756:3;13741:19;;13365:401::o;14891:414::-;15093:2;15075:21;;;15132:2;15112:18;;;15105:30;15171:34;15166:2;15151:18;;15144:62;-1:-1:-1;;;15237:2:1;15222:18;;15215:48;15295:3;15280:19;;14891:414::o;15442:489::-;-1:-1:-1;;;;;15711:15:1;;;15693:34;;15763:15;;15758:2;15743:18;;15736:43;15810:2;15795:18;;15788:34;;;15858:3;15853:2;15838:18;;15831:31;;;15636:4;;15879:46;;15905:19;;15897:6;15879:46;:::i;:::-;15871:54;15442:489;-1:-1:-1;;;;;;15442:489:1:o;15936:249::-;16005:6;16058:2;16046:9;16037:7;16033:23;16029:32;16026:52;;;16074:1;16071;16064:12;16026:52;16106:9;16100:16;16125:30;16149:5;16125:30;:::i
Swarm Source
ipfs://7cea412120d814f1e7a6bcea7f25a912c405b58e05aafb065b51b384fe7e907a
Loading...
Loading
Loading...
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.