Token DAMX ROBOT
Overview ERC-721
Total Supply:
757 DAMX ROBOT
Holders:
4 addresses
Transfers:
-
Contract:
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DamxRobot
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-16 */ // SPDX-License-Identifier: MIT // 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/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.8.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/[email protected] // 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/token/ERC721/extensions/[email protected] // 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/utils/[email protected] // OpenZeppelin Contracts (last updated v4.8.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 * ==== * * [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://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return 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/utils/[email protected] // 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/utils/math/[email protected] // OpenZeppelin Contracts (last updated v4.8.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) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 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 10, 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 * 8) < value ? 1 : 0); } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.8.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 `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); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // 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/[email protected] // OpenZeppelin Contracts (last updated v4.8.2) (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 @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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/security/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File contracts/DamxRobot.sol pragma solidity ^0.8.18; interface IVester { function bonusRewards(address _account) external view returns (uint256); function setBonusRewards(address _account, uint256 _amount) external; } contract DamxRobot is ERC721Enumerable, Ownable, ReentrancyGuard { /// @notice Collection of NFT details to describe each NFT struct NFTDetails { uint256 power; } /// @notice Use the NFT tokenId to read NFT details mapping(uint256 => NFTDetails) public nftDetailsById; address public saleContract; string public baseURI; constructor(address _saleContract) ERC721("DAMX ROBOT", "DAMX ROBOT") { saleContract = _saleContract; } /* ========== Public view functions ========== */ function getTokenPower(uint256 tokenId) external view returns (uint256) { NFTDetails memory currentNFTDetails = nftDetailsById[tokenId]; return currentNFTDetails.power; } function _baseURI() internal view override returns (string memory) { return baseURI; } // @dev sets base URI function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } /** * @dev Throws if called by any account other than the saleContract. */ modifier onlySaleContract() { require(saleContract == _msgSender(), "DamxNFT: caller is not the saleContract"); _; } function mint(uint256 _power, address _to) external onlySaleContract returns (uint256) { uint256 id = totalSupply() + 1; nftDetailsById[id] = NFTDetails(_power); _mint(_to, id); return id; } } contract RobotSale is Ownable, ReentrancyGuard { uint256 public constant MAX_SUPPLY = 5000; // max supply uint256 public MAX_PER_TXN = 5; // max purchase per txn // State variables address public dmxVester; address public esDMX; DamxRobot public damxRobot; uint256 public robotPrice = 500_000000_000000_000000; // 500 FTM uint256 public robotPower = 5000; // 5000 power uint256 public esDMXBonus = 3164e18; // 3164 esDMX uint256 public totalVolume; uint256 public totalPower; uint256 public totalBonus; uint256 public stepEsDMX = 9900; // 0.99 uint256 public stepPrice = 10100; // 1.01 uint256 public stepPower = 9900; // 0.99 uint256 public step = 100; // bool public saleIsActive = false; // determines whether sales is active bool public whitelistSaleIsActive = false; // determines whether whitelist sales is active mapping(address => bool) public whitelist; event AssetMinted(address account, uint256 tokenId, uint256 power, uint256 bonus); constructor(address _esDMX, address _dmxVester) { damxRobot = new DamxRobot(address(this)); esDMX = _esDMX; dmxVester = _dmxVester; damxRobot.transferOwnership(msg.sender); } // get current price and power function getCurrentPP() public view returns (uint256 _robotPrice, uint256 _robotPower, uint256 _esDMXBonus) { _robotPrice = robotPrice; _robotPower = robotPower; _esDMXBonus = esDMXBonus; uint256 _totalSupply = damxRobot.totalSupply(); uint256 modulus = damxRobot.totalSupply() % step; if (modulus == 0 && _totalSupply != 0) { _robotPrice = (robotPrice * stepPrice) / 10000; _robotPower = (robotPower * stepPower) / 10000; _esDMXBonus = (esDMXBonus * stepEsDMX) / 10000; } } /* ========== External public sales functions ========== */ // @dev mints meerkat for the general public function mintDamxRobot(uint256 numberOfTokens) external payable nonReentrant returns (uint256 _totalPrice,uint256 _totalPower,uint256 _totalBonus) { require(saleIsActive || whitelistSaleIsActive, 'Sale Is Not Active'); if (whitelistSaleIsActive) { require(whitelist[msg.sender], 'Not whitelisted'); } require(numberOfTokens <= MAX_PER_TXN, 'Exceed Purchase'); require(numberOfTokens >= 1, 'Invalid amount'); require(damxRobot.totalSupply() + numberOfTokens <= MAX_SUPPLY); for (uint i = 0; i < numberOfTokens; i++) { (robotPrice, robotPower, esDMXBonus) = this.getCurrentPP(); _totalPrice = _totalPrice + robotPrice; uint256 id = damxRobot.mint(robotPower,msg.sender); emit AssetMinted(msg.sender, id, robotPower, esDMXBonus); IERC20(esDMX).transfer(msg.sender, esDMXBonus); IVester vester = IVester(dmxVester); vester.setBonusRewards(msg.sender, vester.bonusRewards(msg.sender) + esDMXBonus); _totalPower += robotPower; _totalBonus += esDMXBonus; } require(_totalPrice == msg.value, "Invalid payment amount"); totalVolume += _totalPrice; totalBonus += _totalBonus; totalPower += _totalPower; } function estimateAmount(uint256 numberOfTokens) external view returns (uint256 _totalPrice, uint256 _totalPower, uint256 _totalBonus) { uint256 _price = robotPrice; uint256 _power = robotPower; uint256 _bonus = esDMXBonus; uint256 _totalSupply = damxRobot.totalSupply(); for (uint i = 0; i < numberOfTokens; i++) { if (_totalSupply < MAX_SUPPLY) { if (_totalSupply % step == 0 && _totalSupply != 0) { _price = (_price * stepPrice) / 10000; _power = (_power * stepPower) / 10000; _bonus = (_bonus * stepEsDMX) / 10000; } _totalPrice += _price; _totalPower += _power; _totalBonus += _bonus; _totalSupply = _totalSupply + 1; } else { break; } } } // @dev withdraw funds function withdraw() external onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } // @dev withdraw funds function withdrawERC20(address token) external onlyOwner { uint balance = IERC20(token).balanceOf(address(this)); IERC20(token).transfer(msg.sender, balance); } // @dev flips the state for sales function flipSaleState() external onlyOwner { saleIsActive = !saleIsActive; } // @dev set insurance fund contract address function setMaxPerTxn(uint256 _max) public onlyOwner { MAX_PER_TXN = _max; } // @dev set esDMX contract address function setEsDMX(address _esDMX) public onlyOwner { esDMX = _esDMX; } // @dev set dmxVester contract address function setVester(address _dmxVester) public onlyOwner { dmxVester = _dmxVester; } // @dev sets sale info (price + power) function setSaleInfo(uint256 _price, uint256 _power, uint256 _esDMXBonus) external onlyOwner { robotPrice = _price; robotPower = _power; esDMXBonus = _esDMXBonus; } // @dev set increate Price And Power function setIncreaseInfo(uint256 _stepPrice, uint256 _stepPower, uint256 _step, uint256 _stepEsDMX) public onlyOwner { stepPrice = _stepPrice; stepPower = _stepPower; step = _step; stepEsDMX = _stepEsDMX; } function setWhitelist(address[] memory addrs, bool value) external onlyOwner { for (uint256 i = 0; i < addrs.length; i++) { whitelist[addrs[i]] = value; } } function flipWhitelistSaleState() external onlyOwner { whitelistSaleIsActive = !whitelistSaleIsActive; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_saleContract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenPower","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_power","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nftDetailsById","outputs":[{"internalType":"uint256","name":"power","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001f9838038062001f98833981016040819052620000349162000123565b604080518082018252600a8082526911105356081493d093d560b21b6020808401829052845180860190955291845290830152906000620000768382620001fa565b506001620000858282620001fa565b505050620000a26200009c620000cd60201b60201c565b620000d1565b6001600b55600d80546001600160a01b0319166001600160a01b0392909216919091179055620002c6565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000602082840312156200013657600080fd5b81516001600160a01b03811681146200014e57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200018057607f821691505b602082108103620001a157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001f557600081815260208120601f850160051c81016020861015620001d05750805b601f850160051c820191505b81811015620001f157828155600101620001dc565b5050505b505050565b81516001600160401b0381111562000216576200021662000155565b6200022e816200022784546200016b565b84620001a7565b602080601f8311600181146200026657600084156200024d5750858301515b600019600386901b1c1916600185901b178555620001f1565b600085815260208120601f198616915b82811015620002975788860151825594840194600190910190840162000276565b5085821015620002b65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611cc280620002d66000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de578063a22cb46511610097578063daf6ca3011610071578063daf6ca3014610332578063df82eb8b14610345578063e985e9c514610365578063f2fde38b146103a157600080fd5b8063a22cb465146102f9578063b88d4fde1461030c578063c87b56dd1461031f57600080fd5b806370a0823114610281578063715018a61461029457806387c5d8321461029c5780638da5cb5b146102cd57806394bf804d146102de57806395d89b41146102f157600080fd5b80632f745c59116101305780632f745c591461021a57806342842e0e1461022d5780634f6ccce71461024057806355f804b3146102535780636352211e146102665780636c0360eb1461027957600080fd5b806301ffc9a71461017857806306fdde03146101a0578063081812fc146101b5578063095ea7b3146101e057806318160ddd146101f557806323b872dd14610207575b600080fd5b61018b610186366004611656565b6103b4565b60405190151581526020015b60405180910390f35b6101a86103df565b60405161019791906116c3565b6101c86101c33660046116d6565b610471565b6040516001600160a01b039091168152602001610197565b6101f36101ee36600461170b565b610498565b005b6008545b604051908152602001610197565b6101f3610215366004611735565b6105b2565b6101f961022836600461170b565b6105e3565b6101f361023b366004611735565b610679565b6101f961024e3660046116d6565b610694565b6101f36102613660046117fd565b610727565b6101c86102743660046116d6565b61073f565b6101a861079f565b6101f961028f366004611846565b61082d565b6101f36108b3565b6101f96102aa3660046116d6565b6000908152600c6020908152604091829020825191820190925290549081905290565b600a546001600160a01b03166101c8565b6101f96102ec366004611861565b6108c7565b6101a861097d565b6101f361030736600461188d565b61098c565b6101f361031a3660046118c9565b610997565b6101a861032d3660046116d6565b6109cf565b600d546101c8906001600160a01b031681565b6101f96103533660046116d6565b600c6020526000908152604090205481565b61018b610373366004611945565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101f36103af366004611846565b610a35565b60006001600160e01b0319821663780e9d6360e01b14806103d957506103d982610aae565b92915050565b6060600080546103ee9061196f565b80601f016020809104026020016040519081016040528092919081815260200182805461041a9061196f565b80156104675780601f1061043c57610100808354040283529160200191610467565b820191906000526020600020905b81548152906001019060200180831161044a57829003601f168201915b5050505050905090565b600061047c82610afe565b506000908152600460205260409020546001600160a01b031690565b60006104a38261073f565b9050806001600160a01b0316836001600160a01b0316036105155760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061053157506105318133610373565b6105a35760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161050c565b6105ad8383610b5d565b505050565b6105bc3382610bcb565b6105d85760405162461bcd60e51b815260040161050c906119a9565b6105ad838383610c4a565b60006105ee8361082d565b82106106505760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161050c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6105ad83838360405180602001604052806000815250610997565b600061069f60085490565b82106107025760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161050c565b60088281548110610715576107156119f6565b90600052602060002001549050919050565b61072f610dbb565b600e61073b8282611a5a565b5050565b6000818152600260205260408120546001600160a01b0316806103d95760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161050c565b600e80546107ac9061196f565b80601f01602080910402602001604051908101604052809291908181526020018280546107d89061196f565b80156108255780601f106107fa57610100808354040283529160200191610825565b820191906000526020600020905b81548152906001019060200180831161080857829003601f168201915b505050505081565b60006001600160a01b0382166108975760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161050c565b506001600160a01b031660009081526003602052604090205490565b6108bb610dbb565b6108c56000610e15565b565b600d546000906001600160a01b031633146109345760405162461bcd60e51b815260206004820152602760248201527f44616d784e46543a2063616c6c6572206973206e6f74207468652073616c65436044820152661bdb9d1c9858dd60ca1b606482015260840161050c565b600061093f60085490565b61094a906001611b30565b60408051602080820183528782526000848152600c909152919091209051905590506109768382610e67565b9392505050565b6060600180546103ee9061196f565b61073b338383611000565b6109a13383610bcb565b6109bd5760405162461bcd60e51b815260040161050c906119a9565b6109c9848484846110ce565b50505050565b60606109da82610afe565b60006109e4611101565b90506000815111610a045760405180602001604052806000815250610976565b80610a0e84611110565b604051602001610a1f929190611b43565b6040516020818303038152906040529392505050565b610a3d610dbb565b6001600160a01b038116610aa25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161050c565b610aab81610e15565b50565b60006001600160e01b031982166380ac58cd60e01b1480610adf57506001600160e01b03198216635b5e139f60e01b145b806103d957506301ffc9a760e01b6001600160e01b03198316146103d9565b6000818152600260205260409020546001600160a01b0316610aab5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161050c565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b928261073f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610bd78361073f565b9050806001600160a01b0316846001600160a01b03161480610c1e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610c425750836001600160a01b0316610c3784610471565b6001600160a01b0316145b949350505050565b826001600160a01b0316610c5d8261073f565b6001600160a01b031614610c835760405162461bcd60e51b815260040161050c90611b72565b6001600160a01b038216610ce55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161050c565b610cf283838360016111a3565b826001600160a01b0316610d058261073f565b6001600160a01b031614610d2b5760405162461bcd60e51b815260040161050c90611b72565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b031633146108c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161050c565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610ebd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161050c565b6000818152600260205260409020546001600160a01b031615610f225760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161050c565b610f306000838360016111a3565b6000818152600260205260409020546001600160a01b031615610f955760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161050c565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b0316036110615760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161050c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6110d9848484610c4a565b6110e5848484846112d7565b6109c95760405162461bcd60e51b815260040161050c90611bb7565b6060600e80546103ee9061196f565b6060600061111d836113d8565b600101905060008167ffffffffffffffff81111561113d5761113d611771565b6040519080825280601f01601f191660200182016040528015611167576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461117157509392505050565b60018111156112125760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b606482015260840161050c565b816001600160a01b03851661126e5761126981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611291565b836001600160a01b0316856001600160a01b0316146112915761129185826114b0565b6001600160a01b0384166112ad576112a88161154d565b6112d0565b846001600160a01b0316846001600160a01b0316146112d0576112d084826115fc565b5050505050565b60006001600160a01b0384163b156113cd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061131b903390899088908890600401611c09565b6020604051808303816000875af1925050508015611356575060408051601f3d908101601f1916820190925261135391810190611c46565b60015b6113b3573d808015611384576040519150601f19603f3d011682016040523d82523d6000602084013e611389565b606091505b5080516000036113ab5760405162461bcd60e51b815260040161050c90611bb7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c42565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106114175772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611443576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061146157662386f26fc10000830492506010015b6305f5e1008310611479576305f5e100830492506008015b612710831061148d57612710830492506004015b6064831061149f576064830492506002015b600a83106103d95760010192915050565b600060016114bd8461082d565b6114c79190611c63565b60008381526007602052604090205490915080821461151a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061155f90600190611c63565b60008381526009602052604081205460088054939450909284908110611587576115876119f6565b9060005260206000200154905080600883815481106115a8576115a86119f6565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806115e0576115e0611c76565b6001900381819060005260206000200160009055905550505050565b60006116078361082d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981168114610aab57600080fd5b60006020828403121561166857600080fd5b813561097681611640565b60005b8381101561168e578181015183820152602001611676565b50506000910152565b600081518084526116af816020860160208601611673565b601f01601f19169290920160200192915050565b6020815260006109766020830184611697565b6000602082840312156116e857600080fd5b5035919050565b80356001600160a01b038116811461170657600080fd5b919050565b6000806040838503121561171e57600080fd5b611727836116ef565b946020939093013593505050565b60008060006060848603121561174a57600080fd5b611753846116ef565b9250611761602085016116ef565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156117a2576117a2611771565b604051601f8501601f19908116603f011681019082821181831017156117ca576117ca611771565b816040528093508581528686860111156117e357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561180f57600080fd5b813567ffffffffffffffff81111561182657600080fd5b8201601f8101841361183757600080fd5b610c4284823560208401611787565b60006020828403121561185857600080fd5b610976826116ef565b6000806040838503121561187457600080fd5b82359150611884602084016116ef565b90509250929050565b600080604083850312156118a057600080fd5b6118a9836116ef565b9150602083013580151581146118be57600080fd5b809150509250929050565b600080600080608085870312156118df57600080fd5b6118e8856116ef565b93506118f6602086016116ef565b925060408501359150606085013567ffffffffffffffff81111561191957600080fd5b8501601f8101871361192a57600080fd5b61193987823560208401611787565b91505092959194509250565b6000806040838503121561195857600080fd5b611961836116ef565b9150611884602084016116ef565b600181811c9082168061198357607f821691505b6020821081036119a357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b601f8211156105ad57600081815260208120601f850160051c81016020861015611a335750805b601f850160051c820191505b81811015611a5257828155600101611a3f565b505050505050565b815167ffffffffffffffff811115611a7457611a74611771565b611a8881611a82845461196f565b84611a0c565b602080601f831160018114611abd5760008415611aa55750858301515b600019600386901b1c1916600185901b178555611a52565b600085815260208120601f198616915b82811015611aec57888601518255948401946001909101908401611acd565b5085821015611b0a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808201808211156103d9576103d9611b1a565b60008351611b55818460208801611673565b835190830190611b69818360208801611673565b01949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c3c90830184611697565b9695505050505050565b600060208284031215611c5857600080fd5b815161097681611640565b818103818111156103d9576103d9611b1a565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220ff3439c267825e7eae9cf07e312cc17ed82495a3886871eb35a11729563f023864736f6c634300081200330000000000000000000000004f0bc73a98018248fd364c5811b5331e0d05ad44
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004f0bc73a98018248fd364c5811b5331e0d05ad44
-----Decoded View---------------
Arg [0] : _saleContract (address): 0x4f0bc73a98018248fd364c5811b5331e0d05ad44
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004f0bc73a98018248fd364c5811b5331e0d05ad44
Deployed ByteCode Sourcemap
68916:1472:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54182:224;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;54182:224:0;;;;;;;;36797:100;;;:::i;:::-;;;;;;;:::i;38309:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;38309:171:0;1533:203:1;37827:416:0;;;;;;:::i;:::-;;:::i;:::-;;54822:113;54910:10;:17;54822:113;;;2324:25:1;;;2312:2;2297:18;54822:113:0;2178:177:1;39009:335:0;;;;;;:::i;:::-;;:::i;54490:256::-;;;;;;:::i;:::-;;:::i;39415:185::-;;;;;;:::i;:::-;;:::i;55012:233::-;;;;;;:::i;:::-;;:::i;69810:100::-;;;;;;:::i;:::-;;:::i;36507:223::-;;;;;;:::i;:::-;;:::i;69262:21::-;;;:::i;36238:207::-;;;;;;:::i;:::-;;:::i;64893:103::-;;;:::i;69474:193::-;;;;;;:::i;:::-;69537:7;69595:23;;;:14;:23;;;;;;;;;69557:61;;;;;;;;;;;;;;;69474:193;64245:87;64318:6;;-1:-1:-1;;;;;64318:6:0;64245:87;;70154:231;;;;;;:::i;:::-;;:::i;36966:104::-;;;:::i;38552:155::-;;;;;;:::i;:::-;;:::i;39671:322::-;;;;;;:::i;:::-;;:::i;37141:281::-;;;;;;:::i;:::-;;:::i;69226:27::-;;;;;-1:-1:-1;;;;;69226:27:0;;;69167:52;;;;;;:::i;:::-;;;;;;;;;;;;;;38778:164;;;;;;:::i;:::-;-1:-1:-1;;;;;38899:25:0;;;38875:4;38899:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38778:164;65151:201;;;;;;:::i;:::-;;:::i;54182:224::-;54284:4;-1:-1:-1;;;;;;54308:50:0;;-1:-1:-1;;;54308:50:0;;:90;;;54362:36;54386:11;54362:23;:36::i;:::-;54301:97;54182:224;-1:-1:-1;;54182:224:0:o;36797:100::-;36851:13;36884:5;36877:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36797:100;:::o;38309:171::-;38385:7;38405:23;38420:7;38405:14;:23::i;:::-;-1:-1:-1;38448:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38448:24:0;;38309:171::o;37827:416::-;37908:13;37924:23;37939:7;37924:14;:23::i;:::-;37908:39;;37972:5;-1:-1:-1;;;;;37966:11:0;:2;-1:-1:-1;;;;;37966:11:0;;37958:57;;;;-1:-1:-1;;;37958:57:0;;6244:2:1;37958:57:0;;;6226:21:1;6283:2;6263:18;;;6256:30;6322:34;6302:18;;;6295:62;-1:-1:-1;;;6373:18:1;;;6366:31;6414:19;;37958:57:0;;;;;;;;;18074:10;-1:-1:-1;;;;;38050:21:0;;;;:62;;-1:-1:-1;38075:37:0;38092:5;18074:10;38778:164;:::i;38075:37::-;38028:173;;;;-1:-1:-1;;;38028:173:0;;6646:2:1;38028:173:0;;;6628:21:1;6685:2;6665:18;;;6658:30;6724:34;6704:18;;;6697:62;6795:31;6775:18;;;6768:59;6844:19;;38028:173:0;6444:425:1;38028:173:0;38214:21;38223:2;38227:7;38214:8;:21::i;:::-;37897:346;37827:416;;:::o;39009:335::-;39204:41;18074:10;39237:7;39204:18;:41::i;:::-;39196:99;;;;-1:-1:-1;;;39196:99:0;;;;;;;:::i;:::-;39308:28;39318:4;39324:2;39328:7;39308:9;:28::i;54490:256::-;54587:7;54623:23;54640:5;54623:16;:23::i;:::-;54615:5;:31;54607:87;;;;-1:-1:-1;;;54607:87:0;;7490:2:1;54607:87:0;;;7472:21:1;7529:2;7509:18;;;7502:30;7568:34;7548:18;;;7541:62;-1:-1:-1;;;7619:18:1;;;7612:41;7670:19;;54607:87:0;7288:407:1;54607:87:0;-1:-1:-1;;;;;;54712:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;54490:256::o;39415:185::-;39553:39;39570:4;39576:2;39580:7;39553:39;;;;;;;;;;;;:16;:39::i;55012:233::-;55087:7;55123:30;54910:10;:17;;54822:113;55123:30;55115:5;:38;55107:95;;;;-1:-1:-1;;;55107:95:0;;7902:2:1;55107:95:0;;;7884:21:1;7941:2;7921:18;;;7914:30;7980:34;7960:18;;;7953:62;-1:-1:-1;;;8031:18:1;;;8024:42;8083:19;;55107:95:0;7700:408:1;55107:95:0;55220:10;55231:5;55220:17;;;;;;;;:::i;:::-;;;;;;;;;55213:24;;55012:233;;;:::o;69810:100::-;64131:13;:11;:13::i;:::-;69884:7:::1;:18;69894:8:::0;69884:7;:18:::1;:::i;:::-;;69810:100:::0;:::o;36507:223::-;36579:7;41394:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41394:16:0;;36643:56;;;;-1:-1:-1;;;36643:56:0;;10651:2:1;36643:56:0;;;10633:21:1;10690:2;10670:18;;;10663:30;-1:-1:-1;;;10709:18:1;;;10702:54;10773:18;;36643:56:0;10449:348:1;69262:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36238:207::-;36310:7;-1:-1:-1;;;;;36338:19:0;;36330:73;;;;-1:-1:-1;;;36330:73:0;;11004:2:1;36330:73:0;;;10986:21:1;11043:2;11023:18;;;11016:30;11082:34;11062:18;;;11055:62;-1:-1:-1;;;11133:18:1;;;11126:39;11182:19;;36330:73:0;10802:405:1;36330:73:0;-1:-1:-1;;;;;;36421:16:0;;;;;:9;:16;;;;;;;36238:207::o;64893:103::-;64131:13;:11;:13::i;:::-;64958:30:::1;64985:1;64958:18;:30::i;:::-;64893:103::o:0;70154:231::-;70056:12;;70232:7;;-1:-1:-1;;;;;70056:12:0;18074:10;70056:28;70048:80;;;;-1:-1:-1;;;70048:80:0;;11414:2:1;70048:80:0;;;11396:21:1;11453:2;11433:18;;;11426:30;11492:34;11472:18;;;11465:62;-1:-1:-1;;;11543:18:1;;;11536:37;11590:19;;70048:80:0;11212:403:1;70048:80:0;70252:10:::1;70265:13;54910:10:::0;:17;;54822:113;70265:13:::1;:17;::::0;70281:1:::1;70265:17;:::i;:::-;70314:18;::::0;;::::1;::::0;;::::1;::::0;;;;;-1:-1:-1;70293:18:0;;;:14:::1;:18:::0;;;;;;;:39;;;;70252:30;-1:-1:-1;70343:14:0::1;70349:3:::0;70252:30;70343:5:::1;:14::i;:::-;70375:2:::0;70154:231;-1:-1:-1;;;70154:231:0:o;36966:104::-;37022:13;37055:7;37048:14;;;;;:::i;38552:155::-;38647:52;18074:10;38680:8;38690;38647:18;:52::i;39671:322::-;39845:41;18074:10;39878:7;39845:18;:41::i;:::-;39837:99;;;;-1:-1:-1;;;39837:99:0;;;;;;;:::i;:::-;39947:38;39961:4;39967:2;39971:7;39980:4;39947:13;:38::i;:::-;39671:322;;;;:::o;37141:281::-;37214:13;37240:23;37255:7;37240:14;:23::i;:::-;37276:21;37300:10;:8;:10::i;:::-;37276:34;;37352:1;37334:7;37328:21;:25;:86;;;;;;;;;;;;;;;;;37380:7;37389:18;:7;:16;:18::i;:::-;37363:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37321:93;37141:281;-1:-1:-1;;;37141:281:0:o;65151:201::-;64131:13;:11;:13::i;:::-;-1:-1:-1;;;;;65240:22:0;::::1;65232:73;;;::::0;-1:-1:-1;;;65232:73:0;;12585:2:1;65232:73:0::1;::::0;::::1;12567:21:1::0;12624:2;12604:18;;;12597:30;12663:34;12643:18;;;12636:62;-1:-1:-1;;;12714:18:1;;;12707:36;12760:19;;65232:73:0::1;12383:402:1::0;65232:73:0::1;65316:28;65335:8;65316:18;:28::i;:::-;65151:201:::0;:::o;35869:305::-;35971:4;-1:-1:-1;;;;;;36008:40:0;;-1:-1:-1;;;36008:40:0;;:105;;-1:-1:-1;;;;;;;36065:48:0;;-1:-1:-1;;;36065:48:0;36008:105;:158;;;-1:-1:-1;;;;;;;;;;34401:40:0;;;36130:36;34292:157;48128:135;41796:4;41394:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41394:16:0;48202:53;;;;-1:-1:-1;;;48202:53:0;;10651:2:1;48202:53:0;;;10633:21:1;10690:2;10670:18;;;10663:30;-1:-1:-1;;;10709:18:1;;;10702:54;10773:18;;48202:53:0;10449:348:1;47407:174:0;47482:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;47482:29:0;-1:-1:-1;;;;;47482:29:0;;;;;;;;:24;;47536:23;47482:24;47536:14;:23::i;:::-;-1:-1:-1;;;;;47527:46:0;;;;;;;;;;;47407:174;;:::o;42026:264::-;42119:4;42136:13;42152:23;42167:7;42152:14;:23::i;:::-;42136:39;;42205:5;-1:-1:-1;;;;;42194:16:0;:7;-1:-1:-1;;;;;42194:16:0;;:52;;;-1:-1:-1;;;;;;38899:25:0;;;38875:4;38899:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;42214:32;42194:87;;;;42274:7;-1:-1:-1;;;;;42250:31:0;:20;42262:7;42250:11;:20::i;:::-;-1:-1:-1;;;;;42250:31:0;;42194:87;42186:96;42026:264;-1:-1:-1;;;;42026:264:0:o;46025:1263::-;46184:4;-1:-1:-1;;;;;46157:31:0;:23;46172:7;46157:14;:23::i;:::-;-1:-1:-1;;;;;46157:31:0;;46149:81;;;;-1:-1:-1;;;46149:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46249:16:0;;46241:65;;;;-1:-1:-1;;;46241:65:0;;13398:2:1;46241:65:0;;;13380:21:1;13437:2;13417:18;;;13410:30;13476:34;13456:18;;;13449:62;-1:-1:-1;;;13527:18:1;;;13520:34;13571:19;;46241:65:0;13196:400:1;46241:65:0;46319:42;46340:4;46346:2;46350:7;46359:1;46319:20;:42::i;:::-;46491:4;-1:-1:-1;;;;;46464:31:0;:23;46479:7;46464:14;:23::i;:::-;-1:-1:-1;;;;;46464:31:0;;46456:81;;;;-1:-1:-1;;;46456:81:0;;;;;;;:::i;:::-;46609:24;;;;:15;:24;;;;;;;;46602:31;;-1:-1:-1;;;;;;46602:31:0;;;;;;-1:-1:-1;;;;;47085:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;47085:20:0;;;47120:13;;;;;;;;;:18;;46602:31;47120:18;;;47160:16;;;:7;:16;;;;;;:21;;;;;;;;;;47199:27;;46625:7;;47199:27;;;37897:346;37827:416;;:::o;64410:132::-;64318:6;;-1:-1:-1;;;;;64318:6:0;18074:10;64474:23;64466:68;;;;-1:-1:-1;;;64466:68:0;;13803:2:1;64466:68:0;;;13785:21:1;;;13822:18;;;13815:30;13881:34;13861:18;;;13854:62;13933:18;;64466:68:0;13601:356:1;65512:191:0;65605:6;;;-1:-1:-1;;;;;65622:17:0;;;-1:-1:-1;;;;;;65622:17:0;;;;;;;65655:40;;65605:6;;;65622:17;65605:6;;65655:40;;65586:16;;65655:40;65575:128;65512:191;:::o;43624:942::-;-1:-1:-1;;;;;43704:16:0;;43696:61;;;;-1:-1:-1;;;43696:61:0;;14164:2:1;43696:61:0;;;14146:21:1;;;14183:18;;;14176:30;14242:34;14222:18;;;14215:62;14294:18;;43696:61:0;13962:356:1;43696:61:0;41796:4;41394:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41394:16:0;41820:31;43768:58;;;;-1:-1:-1;;;43768:58:0;;14525:2:1;43768:58:0;;;14507:21:1;14564:2;14544:18;;;14537:30;14603;14583:18;;;14576:58;14651:18;;43768:58:0;14323:352:1;43768:58:0;43839:48;43868:1;43872:2;43876:7;43885:1;43839:20;:48::i;:::-;41796:4;41394:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41394:16:0;41820:31;43977:58;;;;-1:-1:-1;;;43977:58:0;;14525:2:1;43977:58:0;;;14507:21:1;14564:2;14544:18;;;14537:30;14603;14583:18;;;14576:58;14651:18;;43977:58:0;14323:352:1;43977:58:0;-1:-1:-1;;;;;44384:13:0;;;;;;:9;:13;;;;;;;;:18;;44401:1;44384:18;;;44426:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44426:21:0;;;;;44465:33;44434:7;;44384:13;;44465:33;;44384:13;;44465:33;69884:18:::1;69810:100:::0;:::o;47724:315::-;47879:8;-1:-1:-1;;;;;47870:17:0;:5;-1:-1:-1;;;;;47870:17:0;;47862:55;;;;-1:-1:-1;;;47862:55:0;;14882:2:1;47862:55:0;;;14864:21:1;14921:2;14901:18;;;14894:30;14960:27;14940:18;;;14933:55;15005:18;;47862:55:0;14680:349:1;47862:55:0;-1:-1:-1;;;;;47928:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;47928:46:0;;;;;;;;;;47990:41;;540::1;;;47990::0;;513:18:1;47990:41:0;;;;;;;47724:315;;;:::o;40874:313::-;41030:28;41040:4;41046:2;41050:7;41030:9;:28::i;:::-;41077:47;41100:4;41106:2;41110:7;41119:4;41077:22;:47::i;:::-;41069:110;;;;-1:-1:-1;;;41069:110:0;;;;;;;:::i;69675:100::-;69727:13;69760:7;69753:14;;;;;:::i;31527:716::-;31583:13;31634:14;31651:17;31662:5;31651:10;:17::i;:::-;31671:1;31651:21;31634:38;;31687:20;31721:6;31710:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31710:18:0;-1:-1:-1;31687:41:0;-1:-1:-1;31852:28:0;;;31868:2;31852:28;31909:288;-1:-1:-1;;31941:5:0;-1:-1:-1;;;32078:2:0;32067:14;;32062:30;31941:5;32049:44;32139:2;32130:11;;;-1:-1:-1;32160:21:0;31909:288;32160:21;-1:-1:-1;32218:6:0;31527:716;-1:-1:-1;;;31527:716:0:o;55319:915::-;55586:1;55574:9;:13;55570:222;;;55717:63;;-1:-1:-1;;;55717:63:0;;15787:2:1;55717:63:0;;;15769:21:1;15826:2;15806:18;;;15799:30;15865:34;15845:18;;;15838:62;-1:-1:-1;;;15916:18:1;;;15909:51;15977:19;;55717:63:0;15585:417:1;55570:222:0;55822:12;-1:-1:-1;;;;;55851:18:0;;55847:187;;55886:40;55918:7;57061:10;:17;;57034:24;;;;:15;:24;;;;;:44;;;57089:24;;;;;;;;;;;;56957:164;55886:40;55847:187;;;55956:2;-1:-1:-1;;;;;55948:10:0;:4;-1:-1:-1;;;;;55948:10:0;;55944:90;;55975:47;56008:4;56014:7;55975:32;:47::i;:::-;-1:-1:-1;;;;;56048:16:0;;56044:183;;56081:45;56118:7;56081:36;:45::i;:::-;56044:183;;;56154:4;-1:-1:-1;;;;;56148:10:0;:2;-1:-1:-1;;;;;56148:10:0;;56144:83;;56175:40;56203:2;56207:7;56175:27;:40::i;:::-;55485:749;55319:915;;;;:::o;48827:853::-;48981:4;-1:-1:-1;;;;;49002:13:0;;9407:19;:23;48998:675;;49038:71;;-1:-1:-1;;;49038:71:0;;-1:-1:-1;;;;;49038:36:0;;;;;:71;;18074:10;;49089:4;;49095:7;;49104:4;;49038:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49038:71:0;;;;;;;;-1:-1:-1;;49038:71:0;;;;;;;;;;;;:::i;:::-;;;49034:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49279:6;:13;49296:1;49279:18;49275:328;;49322:60;;-1:-1:-1;;;49322:60:0;;;;;;;:::i;49275:328::-;49553:6;49547:13;49538:6;49534:2;49530:15;49523:38;49034:584;-1:-1:-1;;;;;;49160:51:0;-1:-1:-1;;;49160:51:0;;-1:-1:-1;49153:58:0;;48998:675;-1:-1:-1;49657:4:0;48827:853;;;;;;:::o;28387:922::-;28440:7;;-1:-1:-1;;;28518:15:0;;28514:102;;-1:-1:-1;;;28554:15:0;;;-1:-1:-1;28598:2:0;28588:12;28514:102;28643:6;28634:5;:15;28630:102;;28679:6;28670:15;;;-1:-1:-1;28714:2:0;28704:12;28630:102;28759:6;28750:5;:15;28746:102;;28795:6;28786:15;;;-1:-1:-1;28830:2:0;28820:12;28746:102;28875:5;28866;:14;28862:99;;28910:5;28901:14;;;-1:-1:-1;28944:1:0;28934:11;28862:99;28988:5;28979;:14;28975:99;;29023:5;29014:14;;;-1:-1:-1;29057:1:0;29047:11;28975:99;29101:5;29092;:14;29088:99;;29136:5;29127:14;;;-1:-1:-1;29170:1:0;29160:11;29088:99;29214:5;29205;:14;29201:66;;29250:1;29240:11;29295:6;28387:922;-1:-1:-1;;28387:922:0:o;57748:988::-;58014:22;58064:1;58039:22;58056:4;58039:16;:22::i;:::-;:26;;;;:::i;:::-;58076:18;58097:26;;;:17;:26;;;;;;58014:51;;-1:-1:-1;58230:28:0;;;58226:328;;-1:-1:-1;;;;;58297:18:0;;58275:19;58297:18;;;:12;:18;;;;;;;;:34;;;;;;;;;58348:30;;;;;;:44;;;58465:30;;:17;:30;;;;;:43;;;58226:328;-1:-1:-1;58650:26:0;;;;:17;:26;;;;;;;;58643:33;;;-1:-1:-1;;;;;58694:18:0;;;;;:12;:18;;;;;:34;;;;;;;58687:41;57748:988::o;59031:1079::-;59309:10;:17;59284:22;;59309:21;;59329:1;;59309:21;:::i;:::-;59341:18;59362:24;;;:15;:24;;;;;;59735:10;:26;;59284:46;;-1:-1:-1;59362:24:0;;59284:46;;59735:26;;;;;;:::i;:::-;;;;;;;;;59713:48;;59799:11;59774:10;59785;59774:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;59879:28;;;:15;:28;;;;;;;:41;;;60051:24;;;;;60044:31;60086:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;59102:1008;;;59031:1079;:::o;56535:221::-;56620:14;56637:20;56654:2;56637:16;:20::i;:::-;-1:-1:-1;;;;;56668:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;56713:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;56535:221:0: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:127::-;2754:10;2749:3;2745:20;2742:1;2735:31;2785:4;2782:1;2775:15;2809:4;2806:1;2799:15;2825:632;2890:5;2920:18;2961:2;2953:6;2950:14;2947:40;;;2967:18;;:::i;:::-;3042:2;3036:9;3010:2;3096:15;;-1:-1:-1;;3092:24:1;;;3118:2;3088:33;3084:42;3072:55;;;3142:18;;;3162:22;;;3139:46;3136:72;;;3188:18;;:::i;:::-;3228:10;3224:2;3217:22;3257:6;3248:15;;3287:6;3279;3272:22;3327:3;3318:6;3313:3;3309:16;3306:25;3303:45;;;3344:1;3341;3334:12;3303:45;3394:6;3389:3;3382:4;3374:6;3370:17;3357:44;3449:1;3442:4;3433:6;3425;3421:19;3417:30;3410:41;;;;2825:632;;;;;:::o;3462:451::-;3531:6;3584:2;3572:9;3563:7;3559:23;3555:32;3552:52;;;3600:1;3597;3590:12;3552:52;3640:9;3627:23;3673:18;3665:6;3662:30;3659:50;;;3705:1;3702;3695:12;3659:50;3728:22;;3781:4;3773:13;;3769:27;-1:-1:-1;3759:55:1;;3810:1;3807;3800:12;3759:55;3833:74;3899:7;3894:2;3881:16;3876:2;3872;3868:11;3833:74;:::i;3918:186::-;3977:6;4030:2;4018:9;4009:7;4005:23;4001:32;3998:52;;;4046:1;4043;4036:12;3998:52;4069:29;4088:9;4069:29;:::i;4109:254::-;4177:6;4185;4238:2;4226:9;4217:7;4213:23;4209:32;4206:52;;;4254:1;4251;4244:12;4206:52;4290:9;4277:23;4267:33;;4319:38;4353:2;4342:9;4338:18;4319:38;:::i;:::-;4309:48;;4109:254;;;;;:::o;4368:347::-;4433:6;4441;4494:2;4482:9;4473:7;4469:23;4465:32;4462:52;;;4510:1;4507;4500:12;4462:52;4533:29;4552:9;4533:29;:::i;:::-;4523:39;;4612:2;4601:9;4597:18;4584:32;4659:5;4652:13;4645:21;4638:5;4635:32;4625:60;;4681:1;4678;4671:12;4625:60;4704:5;4694:15;;;4368:347;;;;;:::o;4720:667::-;4815:6;4823;4831;4839;4892:3;4880:9;4871:7;4867:23;4863:33;4860:53;;;4909:1;4906;4899:12;4860:53;4932:29;4951:9;4932:29;:::i;:::-;4922:39;;4980:38;5014:2;5003:9;4999:18;4980:38;:::i;:::-;4970:48;;5065:2;5054:9;5050:18;5037:32;5027:42;;5120:2;5109:9;5105:18;5092:32;5147:18;5139:6;5136:30;5133:50;;;5179:1;5176;5169:12;5133:50;5202:22;;5255:4;5247:13;;5243:27;-1:-1:-1;5233:55:1;;5284:1;5281;5274:12;5233:55;5307:74;5373:7;5368:2;5355:16;5350:2;5346;5342:11;5307:74;:::i;:::-;5297:84;;;4720:667;;;;;;;:::o;5392:260::-;5460:6;5468;5521:2;5509:9;5500:7;5496:23;5492:32;5489:52;;;5537:1;5534;5527:12;5489:52;5560:29;5579:9;5560:29;:::i;:::-;5550:39;;5608:38;5642:2;5631:9;5627:18;5608:38;:::i;5657:380::-;5736:1;5732:12;;;;5779;;;5800:61;;5854:4;5846:6;5842:17;5832:27;;5800:61;5907:2;5899:6;5896:14;5876:18;5873:38;5870:161;;5953:10;5948:3;5944:20;5941:1;5934:31;5988:4;5985:1;5978:15;6016:4;6013:1;6006:15;5870:161;;5657:380;;;:::o;6874:409::-;7076:2;7058:21;;;7115:2;7095:18;;;7088:30;7154:34;7149:2;7134:18;;7127:62;-1:-1:-1;;;7220:2:1;7205:18;;7198:43;7273:3;7258:19;;6874:409::o;8113:127::-;8174:10;8169:3;8165:20;8162:1;8155:31;8205:4;8202:1;8195:15;8229:4;8226:1;8219:15;8371:545;8473:2;8468:3;8465:11;8462:448;;;8509:1;8534:5;8530:2;8523:17;8579:4;8575:2;8565:19;8649:2;8637:10;8633:19;8630:1;8626:27;8620:4;8616:38;8685:4;8673:10;8670:20;8667:47;;;-1:-1:-1;8708:4:1;8667:47;8763:2;8758:3;8754:12;8751:1;8747:20;8741:4;8737:31;8727:41;;8818:82;8836:2;8829:5;8826:13;8818:82;;;8881:17;;;8862:1;8851:13;8818:82;;;8822:3;;;8371:545;;;:::o;9092:1352::-;9218:3;9212:10;9245:18;9237:6;9234:30;9231:56;;;9267:18;;:::i;:::-;9296:97;9386:6;9346:38;9378:4;9372:11;9346:38;:::i;:::-;9340:4;9296:97;:::i;:::-;9448:4;;9512:2;9501:14;;9529:1;9524:663;;;;10231:1;10248:6;10245:89;;;-1:-1:-1;10300:19:1;;;10294:26;10245:89;-1:-1:-1;;9049:1:1;9045:11;;;9041:24;9037:29;9027:40;9073:1;9069:11;;;9024:57;10347:81;;9494:944;;9524:663;8318:1;8311:14;;;8355:4;8342:18;;-1:-1:-1;;9560:20:1;;;9678:236;9692:7;9689:1;9686:14;9678:236;;;9781:19;;;9775:26;9760:42;;9873:27;;;;9841:1;9829:14;;;;9708:19;;9678:236;;;9682:3;9942:6;9933:7;9930:19;9927:201;;;10003:19;;;9997:26;-1:-1:-1;;10086:1:1;10082:14;;;10098:3;10078:24;10074:37;10070:42;10055:58;10040:74;;9927:201;-1:-1:-1;;;;;10174:1:1;10158:14;;;10154:22;10141:36;;-1:-1:-1;9092:1352:1:o;11620:127::-;11681:10;11676:3;11672:20;11669:1;11662:31;11712:4;11709:1;11702:15;11736:4;11733:1;11726:15;11752:125;11817:9;;;11838:10;;;11835:36;;;11851:18;;:::i;11882:496::-;12061:3;12099:6;12093:13;12115:66;12174:6;12169:3;12162:4;12154:6;12150:17;12115:66;:::i;:::-;12244:13;;12203:16;;;;12266:70;12244:13;12203:16;12313:4;12301:17;;12266:70;:::i;:::-;12352:20;;11882:496;-1:-1:-1;;;;11882:496:1:o;12790:401::-;12992:2;12974:21;;;13031:2;13011:18;;;13004:30;13070:34;13065:2;13050:18;;13043:62;-1:-1:-1;;;13136:2:1;13121:18;;13114:35;13181:3;13166:19;;12790:401::o;15034:414::-;15236:2;15218:21;;;15275:2;15255:18;;;15248:30;15314:34;15309:2;15294:18;;15287:62;-1:-1:-1;;;15380:2:1;15365:18;;15358:48;15438:3;15423:19;;15034:414::o;16007:489::-;-1:-1:-1;;;;;16276:15:1;;;16258:34;;16328:15;;16323:2;16308:18;;16301:43;16375:2;16360:18;;16353:34;;;16423:3;16418:2;16403:18;;16396:31;;;16201:4;;16444:46;;16470:19;;16462:6;16444:46;:::i;:::-;16436:54;16007:489;-1:-1:-1;;;;;;16007:489:1:o;16501:249::-;16570:6;16623:2;16611:9;16602:7;16598:23;16594:32;16591:52;;;16639:1;16636;16629:12;16591:52;16671:9;16665:16;16690:30;16714:5;16690:30;:::i;16755:128::-;16822:9;;;16843:11;;;16840:37;;;16857:18;;:::i;16888:127::-;16949:10;16944:3;16940:20;16937:1;16930:31;16980:4;16977:1;16970:15;17004:4;17001:1;16994:15
Swarm Source
ipfs://ff3439c267825e7eae9cf07e312cc17ed82495a3886871eb35a11729563f0238