More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 52 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 21440466 | 17 days ago | IN | 0 ETH | 0.00095251 | ||||
Claim | 20563600 | 140 days ago | IN | 0 ETH | 0.00032913 | ||||
Claim | 20410366 | 161 days ago | IN | 0 ETH | 0.00015635 | ||||
Claim | 20144857 | 198 days ago | IN | 0 ETH | 0.00020206 | ||||
Claim | 20141319 | 199 days ago | IN | 0 ETH | 0.00058036 | ||||
Claim | 20137540 | 199 days ago | IN | 0 ETH | 0.00030944 | ||||
Claim | 20136557 | 199 days ago | IN | 0 ETH | 0.00023872 | ||||
Claim | 20070484 | 209 days ago | IN | 0 ETH | 0.00107727 | ||||
Claim | 20070480 | 209 days ago | IN | 0 ETH | 0.00102616 | ||||
Claim | 19636971 | 269 days ago | IN | 0 ETH | 0.00097487 | ||||
Claim | 18616201 | 412 days ago | IN | 0 ETH | 0.00258986 | ||||
Claim | 18601968 | 414 days ago | IN | 0 ETH | 0.0017283 | ||||
Claim | 18501384 | 428 days ago | IN | 0 ETH | 0.00098462 | ||||
Claim | 18474745 | 432 days ago | IN | 0 ETH | 0.00124138 | ||||
Claim | 18466524 | 433 days ago | IN | 0 ETH | 0.004087 | ||||
Claim | 18437972 | 437 days ago | IN | 0 ETH | 0.00126328 | ||||
Claim | 18410119 | 441 days ago | IN | 0 ETH | 0.0006695 | ||||
Claim | 18409527 | 441 days ago | IN | 0 ETH | 0.00074781 | ||||
Claim | 18403092 | 442 days ago | IN | 0 ETH | 0.00058396 | ||||
Claim | 18395301 | 443 days ago | IN | 0 ETH | 0.00062093 | ||||
Claim | 18395297 | 443 days ago | IN | 0 ETH | 0.0006694 | ||||
Claim | 18390561 | 444 days ago | IN | 0 ETH | 0.00108484 | ||||
Claim | 18389162 | 444 days ago | IN | 0 ETH | 0.00065027 | ||||
Claim | 18378522 | 446 days ago | IN | 0 ETH | 0.00120066 | ||||
Claim | 18378501 | 446 days ago | IN | 0 ETH | 0.00134228 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
DeltaWolvesCheckinClaim
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-03 */ // SPDX-License-Identifier: LGPL-3.0-or-later // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.9.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; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) { // 32 is the length in bytes of hash, // enforced by the type signature above /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") mstore(0x1c, hash) message := keccak256(0x00, 0x3c) } } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, "\x19\x01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) data := keccak256(ptr, 0x42) } } /** * @dev Returns an Ethereum Signed Data with intended validator, created from a * `validator` and `data` according to the version 0 of EIP-191. * * See {recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x00", validator, data)); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.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/token/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } } // File: contracts/new.sol pragma solidity ^0.8.13; contract DeltaWolvesCheckinClaim is ReentrancyGuard { using ECDSA for bytes32; mapping(string => bool) nonces; event TransferReceived(address _from, uint _amount); event TransferSent(address _from, address _dest, uint _amount); address constant public ERC20ContractAddress = 0x444b4A7bac79C127C999AfADa41b0B0B1166FCfF; address private sourceWallet = 0x24f3f966ca35101Db9BaF125a8cD3dB33b030724; IERC20 token = IERC20(ERC20ContractAddress); constructor() {} function setSourceWallet(address _sourceWallet) public { sourceWallet = _sourceWallet; } function claim(address _to, uint256 _amount, string memory _nonce, bytes memory _signature) public { require(nonces[_nonce] == false,"Claim already executed!"); bytes32 messagehash = keccak256( abi.encodePacked(_to,_amount,_nonce) ); address signer = messagehash.toEthSignedMessageHash().recover( _signature ); require(signer == sourceWallet, "Invalid signature provided!"); nonces[_nonce] = true; token.transferFrom(sourceWallet,_to, _amount); emit TransferSent(sourceWallet, _to, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"TransferReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"address","name":"_dest","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"TransferSent","type":"event"},{"inputs":[],"name":"ERC20ContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"string","name":"_nonce","type":"string"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sourceWallet","type":"address"}],"name":"setSourceWallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040527324f3f966ca35101db9baf125a8cd3db33b030724600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073444b4a7bac79c127c999afada41b0b0b1166fcff600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156100ba57600080fd5b506001600081905550610f2a806100d26000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c80639cb0883d14610046578063d8dbfc1514610064578063df75101214610080575b600080fd5b61004e61009c565b60405161005b91906106df565b60405180910390f35b61007e6004803603810190610079919061073a565b6100b4565b005b61009a60048036038101906100959190610984565b6100f8565b005b73444b4a7bac79c127c999afada41b0b0b1166fcff81565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000151560018360405161010c9190610a94565b908152602001604051809103902060009054906101000a900460ff1615151461016a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161016190610b08565b60405180910390fd5b600084848460405160200161018193929190610b91565b60405160208183030381529060405280519060200120905060006101b6836101a8846103a8565b6103de90919063ffffffff16565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023f90610c16565b60405180910390fd5b600180856040516102599190610a94565b908152602001604051809103902060006101000a81548160ff021916908315150217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1688886040518463ffffffff1660e01b81526004016102ff93929190610c45565b6020604051808303816000875af115801561031e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103429190610cb4565b507ffda3a3e0e1479b43cb1c701f7576187f4c4ad80768d627387e00184302f7d88e600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16878760405161039893929190610c45565b60405180910390a1505050505050565b60007f19457468657265756d205369676e6564204d6573736167653a0a33320000000060005281601c52603c6000209050919050565b60008060006103ed8585610405565b915091506103fa81610456565b819250505092915050565b60008060418351036104465760008060006020860151925060408601519150606086015160001a905061043a878285856105bc565b9450945050505061044f565b60006002915091505b9250929050565b6000600481111561046a57610469610ce1565b5b81600481111561047d5761047c610ce1565b5b03156105b9576001600481111561049757610496610ce1565b5b8160048111156104aa576104a9610ce1565b5b036104ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e190610d5c565b60405180910390fd5b600260048111156104fe576104fd610ce1565b5b81600481111561051157610510610ce1565b5b03610551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054890610dc8565b60405180910390fd5b6003600481111561056557610564610ce1565b5b81600481111561057857610577610ce1565b5b036105b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105af90610e5a565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156105f7576000600391509150610695565b60006001878787876040516000815260200160405260405161061c9493929190610eaf565b6020604051602081039080840390855afa15801561063e573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361068c57600060019250925050610695565b80600092509250505b94509492505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006106c98261069e565b9050919050565b6106d9816106be565b82525050565b60006020820190506106f460008301846106d0565b92915050565b6000604051905090565b600080fd5b600080fd5b610717816106be565b811461072257600080fd5b50565b6000813590506107348161070e565b92915050565b6000602082840312156107505761074f610704565b5b600061075e84828501610725565b91505092915050565b6000819050919050565b61077a81610767565b811461078557600080fd5b50565b60008135905061079781610771565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6107f0826107a7565b810181811067ffffffffffffffff8211171561080f5761080e6107b8565b5b80604052505050565b60006108226106fa565b905061082e82826107e7565b919050565b600067ffffffffffffffff82111561084e5761084d6107b8565b5b610857826107a7565b9050602081019050919050565b82818337600083830152505050565b600061088661088184610833565b610818565b9050828152602081018484840111156108a2576108a16107a2565b5b6108ad848285610864565b509392505050565b600082601f8301126108ca576108c961079d565b5b81356108da848260208601610873565b91505092915050565b600067ffffffffffffffff8211156108fe576108fd6107b8565b5b610907826107a7565b9050602081019050919050565b6000610927610922846108e3565b610818565b905082815260208101848484011115610943576109426107a2565b5b61094e848285610864565b509392505050565b600082601f83011261096b5761096a61079d565b5b813561097b848260208601610914565b91505092915050565b6000806000806080858703121561099e5761099d610704565b5b60006109ac87828801610725565b94505060206109bd87828801610788565b935050604085013567ffffffffffffffff8111156109de576109dd610709565b5b6109ea878288016108b5565b925050606085013567ffffffffffffffff811115610a0b57610a0a610709565b5b610a1787828801610956565b91505092959194509250565b600081519050919050565b600081905092915050565b60005b83811015610a57578082015181840152602081019050610a3c565b60008484015250505050565b6000610a6e82610a23565b610a788185610a2e565b9350610a88818560208601610a39565b80840191505092915050565b6000610aa08284610a63565b915081905092915050565b600082825260208201905092915050565b7f436c61696d20616c726561647920657865637574656421000000000000000000600082015250565b6000610af2601783610aab565b9150610afd82610abc565b602082019050919050565b60006020820190508181036000830152610b2181610ae5565b9050919050565b60008160601b9050919050565b6000610b4082610b28565b9050919050565b6000610b5282610b35565b9050919050565b610b6a610b65826106be565b610b47565b82525050565b6000819050919050565b610b8b610b8682610767565b610b70565b82525050565b6000610b9d8286610b59565b601482019150610bad8285610b7a565b602082019150610bbd8284610a63565b9150819050949350505050565b7f496e76616c6964207369676e61747572652070726f7669646564210000000000600082015250565b6000610c00601b83610aab565b9150610c0b82610bca565b602082019050919050565b60006020820190508181036000830152610c2f81610bf3565b9050919050565b610c3f81610767565b82525050565b6000606082019050610c5a60008301866106d0565b610c6760208301856106d0565b610c746040830184610c36565b949350505050565b60008115159050919050565b610c9181610c7c565b8114610c9c57600080fd5b50565b600081519050610cae81610c88565b92915050565b600060208284031215610cca57610cc9610704565b5b6000610cd884828501610c9f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000610d46601883610aab565b9150610d5182610d10565b602082019050919050565b60006020820190508181036000830152610d7581610d39565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000610db2601f83610aab565b9150610dbd82610d7c565b602082019050919050565b60006020820190508181036000830152610de181610da5565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000610e44602283610aab565b9150610e4f82610de8565b604082019050919050565b60006020820190508181036000830152610e7381610e37565b9050919050565b6000819050919050565b610e8d81610e7a565b82525050565b600060ff82169050919050565b610ea981610e93565b82525050565b6000608082019050610ec46000830187610e84565b610ed16020830186610ea0565b610ede6040830185610e84565b610eeb6060830184610e84565b9594505050505056fea26469706673582212203a65d28f0b9c717aaba1a0b6160269af25c21442f791fb3d3d6ecc526701ddc964736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100415760003560e01c80639cb0883d14610046578063d8dbfc1514610064578063df75101214610080575b600080fd5b61004e61009c565b60405161005b91906106df565b60405180910390f35b61007e6004803603810190610079919061073a565b6100b4565b005b61009a60048036038101906100959190610984565b6100f8565b005b73444b4a7bac79c127c999afada41b0b0b1166fcff81565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000151560018360405161010c9190610a94565b908152602001604051809103902060009054906101000a900460ff1615151461016a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161016190610b08565b60405180910390fd5b600084848460405160200161018193929190610b91565b60405160208183030381529060405280519060200120905060006101b6836101a8846103a8565b6103de90919063ffffffff16565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023f90610c16565b60405180910390fd5b600180856040516102599190610a94565b908152602001604051809103902060006101000a81548160ff021916908315150217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1688886040518463ffffffff1660e01b81526004016102ff93929190610c45565b6020604051808303816000875af115801561031e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103429190610cb4565b507ffda3a3e0e1479b43cb1c701f7576187f4c4ad80768d627387e00184302f7d88e600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16878760405161039893929190610c45565b60405180910390a1505050505050565b60007f19457468657265756d205369676e6564204d6573736167653a0a33320000000060005281601c52603c6000209050919050565b60008060006103ed8585610405565b915091506103fa81610456565b819250505092915050565b60008060418351036104465760008060006020860151925060408601519150606086015160001a905061043a878285856105bc565b9450945050505061044f565b60006002915091505b9250929050565b6000600481111561046a57610469610ce1565b5b81600481111561047d5761047c610ce1565b5b03156105b9576001600481111561049757610496610ce1565b5b8160048111156104aa576104a9610ce1565b5b036104ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e190610d5c565b60405180910390fd5b600260048111156104fe576104fd610ce1565b5b81600481111561051157610510610ce1565b5b03610551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054890610dc8565b60405180910390fd5b6003600481111561056557610564610ce1565b5b81600481111561057857610577610ce1565b5b036105b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105af90610e5a565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156105f7576000600391509150610695565b60006001878787876040516000815260200160405260405161061c9493929190610eaf565b6020604051602081039080840390855afa15801561063e573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361068c57600060019250925050610695565b80600092509250505b94509492505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006106c98261069e565b9050919050565b6106d9816106be565b82525050565b60006020820190506106f460008301846106d0565b92915050565b6000604051905090565b600080fd5b600080fd5b610717816106be565b811461072257600080fd5b50565b6000813590506107348161070e565b92915050565b6000602082840312156107505761074f610704565b5b600061075e84828501610725565b91505092915050565b6000819050919050565b61077a81610767565b811461078557600080fd5b50565b60008135905061079781610771565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6107f0826107a7565b810181811067ffffffffffffffff8211171561080f5761080e6107b8565b5b80604052505050565b60006108226106fa565b905061082e82826107e7565b919050565b600067ffffffffffffffff82111561084e5761084d6107b8565b5b610857826107a7565b9050602081019050919050565b82818337600083830152505050565b600061088661088184610833565b610818565b9050828152602081018484840111156108a2576108a16107a2565b5b6108ad848285610864565b509392505050565b600082601f8301126108ca576108c961079d565b5b81356108da848260208601610873565b91505092915050565b600067ffffffffffffffff8211156108fe576108fd6107b8565b5b610907826107a7565b9050602081019050919050565b6000610927610922846108e3565b610818565b905082815260208101848484011115610943576109426107a2565b5b61094e848285610864565b509392505050565b600082601f83011261096b5761096a61079d565b5b813561097b848260208601610914565b91505092915050565b6000806000806080858703121561099e5761099d610704565b5b60006109ac87828801610725565b94505060206109bd87828801610788565b935050604085013567ffffffffffffffff8111156109de576109dd610709565b5b6109ea878288016108b5565b925050606085013567ffffffffffffffff811115610a0b57610a0a610709565b5b610a1787828801610956565b91505092959194509250565b600081519050919050565b600081905092915050565b60005b83811015610a57578082015181840152602081019050610a3c565b60008484015250505050565b6000610a6e82610a23565b610a788185610a2e565b9350610a88818560208601610a39565b80840191505092915050565b6000610aa08284610a63565b915081905092915050565b600082825260208201905092915050565b7f436c61696d20616c726561647920657865637574656421000000000000000000600082015250565b6000610af2601783610aab565b9150610afd82610abc565b602082019050919050565b60006020820190508181036000830152610b2181610ae5565b9050919050565b60008160601b9050919050565b6000610b4082610b28565b9050919050565b6000610b5282610b35565b9050919050565b610b6a610b65826106be565b610b47565b82525050565b6000819050919050565b610b8b610b8682610767565b610b70565b82525050565b6000610b9d8286610b59565b601482019150610bad8285610b7a565b602082019150610bbd8284610a63565b9150819050949350505050565b7f496e76616c6964207369676e61747572652070726f7669646564210000000000600082015250565b6000610c00601b83610aab565b9150610c0b82610bca565b602082019050919050565b60006020820190508181036000830152610c2f81610bf3565b9050919050565b610c3f81610767565b82525050565b6000606082019050610c5a60008301866106d0565b610c6760208301856106d0565b610c746040830184610c36565b949350505050565b60008115159050919050565b610c9181610c7c565b8114610c9c57600080fd5b50565b600081519050610cae81610c88565b92915050565b600060208284031215610cca57610cc9610704565b5b6000610cd884828501610c9f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000610d46601883610aab565b9150610d5182610d10565b602082019050919050565b60006020820190508181036000830152610d7581610d39565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000610db2601f83610aab565b9150610dbd82610d7c565b602082019050919050565b60006020820190508181036000830152610de181610da5565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000610e44602283610aab565b9150610e4f82610de8565b604082019050919050565b60006020820190508181036000830152610e7381610e37565b9050919050565b6000819050919050565b610e8d81610e7a565b82525050565b600060ff82169050919050565b610ea981610e93565b82525050565b6000608082019050610ec46000830187610e84565b610ed16020830186610ea0565b610ede6040830185610e84565b610eeb6060830184610e84565b9594505050505056fea26469706673582212203a65d28f0b9c717aaba1a0b6160269af25c21442f791fb3d3d6ecc526701ddc964736f6c63430008120033
Deployed Bytecode Sourcemap
51892:1228:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52140:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52390:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52500:617;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52140:89;52187:42;52140:89;:::o;52390:102::-;52471:13;52456:12;;:28;;;;;;;;;;;;;;;;;;52390:102;:::o;52500:617::-;52637:5;52619:23;;:6;52626;52619:14;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:23;;;52611:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52681:19;52745:3;52749:7;52757:6;52728:36;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52703:73;;;;;;52681:95;;52791:14;52808:80;52867:10;52808:36;:11;:34;:36::i;:::-;:44;;:80;;;;:::i;:::-;52791:97;;52919:12;;;;;;;;;;;52909:22;;:6;:22;;;52901:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;52993:4;52976:6;52983;52976:14;;;;;;:::i;:::-;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;53008:5;;;;;;;;;;;:18;;;53027:12;;;;;;;;;;;53040:3;53045:7;53008:45;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53069:40;53082:12;;;;;;;;;;;53096:3;53101:7;53069:40;;;;;;;;:::i;:::-;;;;;;;;52599:518;;52500:617;;;;:::o;27901:405::-;27970:15;28175:34;28169:4;28162:48;28237:4;28231;28224:18;28283:4;28277;28267:21;28256:32;;27901:405;;;:::o;24365:231::-;24443:7;24464:17;24483:18;24505:27;24516:4;24522:9;24505:10;:27::i;:::-;24463:69;;;;24543:18;24555:5;24543:11;:18::i;:::-;24579:9;24572:16;;;;24365:231;;;;:::o;22816:747::-;22897:7;22906:12;22955:2;22935:9;:16;:22;22931:625;;22974:9;22998;23022:7;23279:4;23268:9;23264:20;23258:27;23253:32;;23329:4;23318:9;23314:20;23308:27;23303:32;;23387:4;23376:9;23372:20;23366:27;23363:1;23358:36;23353:41;;23430:25;23441:4;23447:1;23450;23453;23430:10;:25::i;:::-;23423:32;;;;;;;;;22931:625;23504:1;23508:35;23488:56;;;;22816:747;;;;;;:::o;21209:521::-;21287:20;21278:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;21274:449;21324:7;21274:449;21385:29;21376:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;21372:351;;21431:34;;;;;;;;;;:::i;:::-;;;;;;;;21372:351;21496:35;21487:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;21483:240;;21548:41;;;;;;;;;;:::i;:::-;;;;;;;;21483:240;21620:30;21611:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;21607:116;;21667:44;;;;;;;;;;:::i;:::-;;;;;;;;21607:116;21209:521;;:::o;25749:1477::-;25837:7;25846:12;26771:66;26766:1;26758:10;;:79;26754:163;;;26870:1;26874:30;26854:51;;;;;;26754:163;27014:14;27031:24;27041:4;27047:1;27050;27053;27031:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27014:41;;27088:1;27070:20;;:6;:20;;;27066:103;;27123:1;27127:29;27107:50;;;;;;;27066:103;27189:6;27197:20;27181:37;;;;;25749:1477;;;;;;;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;593:75::-;626:6;659:2;653:9;643:19;;593:75;:::o;674:117::-;783:1;780;773:12;797:117;906:1;903;896:12;920:122;993:24;1011:5;993:24;:::i;:::-;986:5;983:35;973:63;;1032:1;1029;1022:12;973:63;920:122;:::o;1048:139::-;1094:5;1132:6;1119:20;1110:29;;1148:33;1175:5;1148:33;:::i;:::-;1048:139;;;;:::o;1193:329::-;1252:6;1301:2;1289:9;1280:7;1276:23;1272:32;1269:119;;;1307:79;;:::i;:::-;1269:119;1427:1;1452:53;1497:7;1488:6;1477:9;1473:22;1452:53;:::i;:::-;1442:63;;1398:117;1193:329;;;;:::o;1528:77::-;1565:7;1594:5;1583:16;;1528:77;;;:::o;1611:122::-;1684:24;1702:5;1684:24;:::i;:::-;1677:5;1674:35;1664:63;;1723:1;1720;1713:12;1664:63;1611:122;:::o;1739:139::-;1785:5;1823:6;1810:20;1801:29;;1839:33;1866:5;1839:33;:::i;:::-;1739:139;;;;:::o;1884:117::-;1993:1;1990;1983:12;2007:117;2116:1;2113;2106:12;2130:102;2171:6;2222:2;2218:7;2213:2;2206:5;2202:14;2198:28;2188:38;;2130:102;;;:::o;2238:180::-;2286:77;2283:1;2276:88;2383:4;2380:1;2373:15;2407:4;2404:1;2397:15;2424:281;2507:27;2529:4;2507:27;:::i;:::-;2499:6;2495:40;2637:6;2625:10;2622:22;2601:18;2589:10;2586:34;2583:62;2580:88;;;2648:18;;:::i;:::-;2580:88;2688:10;2684:2;2677:22;2467:238;2424:281;;:::o;2711:129::-;2745:6;2772:20;;:::i;:::-;2762:30;;2801:33;2829:4;2821:6;2801:33;:::i;:::-;2711:129;;;:::o;2846:308::-;2908:4;2998:18;2990:6;2987:30;2984:56;;;3020:18;;:::i;:::-;2984:56;3058:29;3080:6;3058:29;:::i;:::-;3050:37;;3142:4;3136;3132:15;3124:23;;2846:308;;;:::o;3160:146::-;3257:6;3252:3;3247;3234:30;3298:1;3289:6;3284:3;3280:16;3273:27;3160:146;;;:::o;3312:425::-;3390:5;3415:66;3431:49;3473:6;3431:49;:::i;:::-;3415:66;:::i;:::-;3406:75;;3504:6;3497:5;3490:21;3542:4;3535:5;3531:16;3580:3;3571:6;3566:3;3562:16;3559:25;3556:112;;;3587:79;;:::i;:::-;3556:112;3677:54;3724:6;3719:3;3714;3677:54;:::i;:::-;3396:341;3312:425;;;;;:::o;3757:340::-;3813:5;3862:3;3855:4;3847:6;3843:17;3839:27;3829:122;;3870:79;;:::i;:::-;3829:122;3987:6;3974:20;4012:79;4087:3;4079:6;4072:4;4064:6;4060:17;4012:79;:::i;:::-;4003:88;;3819:278;3757:340;;;;:::o;4103:307::-;4164:4;4254:18;4246:6;4243:30;4240:56;;;4276:18;;:::i;:::-;4240:56;4314:29;4336:6;4314:29;:::i;:::-;4306:37;;4398:4;4392;4388:15;4380:23;;4103:307;;;:::o;4416:423::-;4493:5;4518:65;4534:48;4575:6;4534:48;:::i;:::-;4518:65;:::i;:::-;4509:74;;4606:6;4599:5;4592:21;4644:4;4637:5;4633:16;4682:3;4673:6;4668:3;4664:16;4661:25;4658:112;;;4689:79;;:::i;:::-;4658:112;4779:54;4826:6;4821:3;4816;4779:54;:::i;:::-;4499:340;4416:423;;;;;:::o;4858:338::-;4913:5;4962:3;4955:4;4947:6;4943:17;4939:27;4929:122;;4970:79;;:::i;:::-;4929:122;5087:6;5074:20;5112:78;5186:3;5178:6;5171:4;5163:6;5159:17;5112:78;:::i;:::-;5103:87;;4919:277;4858:338;;;;:::o;5202:1123::-;5307:6;5315;5323;5331;5380:3;5368:9;5359:7;5355:23;5351:33;5348:120;;;5387:79;;:::i;:::-;5348:120;5507:1;5532:53;5577:7;5568:6;5557:9;5553:22;5532:53;:::i;:::-;5522:63;;5478:117;5634:2;5660:53;5705:7;5696:6;5685:9;5681:22;5660:53;:::i;:::-;5650:63;;5605:118;5790:2;5779:9;5775:18;5762:32;5821:18;5813:6;5810:30;5807:117;;;5843:79;;:::i;:::-;5807:117;5948:63;6003:7;5994:6;5983:9;5979:22;5948:63;:::i;:::-;5938:73;;5733:288;6088:2;6077:9;6073:18;6060:32;6119:18;6111:6;6108:30;6105:117;;;6141:79;;:::i;:::-;6105:117;6246:62;6300:7;6291:6;6280:9;6276:22;6246:62;:::i;:::-;6236:72;;6031:287;5202:1123;;;;;;;:::o;6331:99::-;6383:6;6417:5;6411:12;6401:22;;6331:99;;;:::o;6436:148::-;6538:11;6575:3;6560:18;;6436:148;;;;:::o;6590:246::-;6671:1;6681:113;6695:6;6692:1;6689:13;6681:113;;;6780:1;6775:3;6771:11;6765:18;6761:1;6756:3;6752:11;6745:39;6717:2;6714:1;6710:10;6705:15;;6681:113;;;6828:1;6819:6;6814:3;6810:16;6803:27;6652:184;6590:246;;;:::o;6842:390::-;6948:3;6976:39;7009:5;6976:39;:::i;:::-;7031:89;7113:6;7108:3;7031:89;:::i;:::-;7024:96;;7129:65;7187:6;7182:3;7175:4;7168:5;7164:16;7129:65;:::i;:::-;7219:6;7214:3;7210:16;7203:23;;6952:280;6842:390;;;;:::o;7238:275::-;7370:3;7392:95;7483:3;7474:6;7392:95;:::i;:::-;7385:102;;7504:3;7497:10;;7238:275;;;;:::o;7519:169::-;7603:11;7637:6;7632:3;7625:19;7677:4;7672:3;7668:14;7653:29;;7519:169;;;;:::o;7694:173::-;7834:25;7830:1;7822:6;7818:14;7811:49;7694:173;:::o;7873:366::-;8015:3;8036:67;8100:2;8095:3;8036:67;:::i;:::-;8029:74;;8112:93;8201:3;8112:93;:::i;:::-;8230:2;8225:3;8221:12;8214:19;;7873:366;;;:::o;8245:419::-;8411:4;8449:2;8438:9;8434:18;8426:26;;8498:9;8492:4;8488:20;8484:1;8473:9;8469:17;8462:47;8526:131;8652:4;8526:131;:::i;:::-;8518:139;;8245:419;;;:::o;8670:94::-;8703:8;8751:5;8747:2;8743:14;8722:35;;8670:94;;;:::o;8770:::-;8809:7;8838:20;8852:5;8838:20;:::i;:::-;8827:31;;8770:94;;;:::o;8870:100::-;8909:7;8938:26;8958:5;8938:26;:::i;:::-;8927:37;;8870:100;;;:::o;8976:157::-;9081:45;9101:24;9119:5;9101:24;:::i;:::-;9081:45;:::i;:::-;9076:3;9069:58;8976:157;;:::o;9139:79::-;9178:7;9207:5;9196:16;;9139:79;;;:::o;9224:157::-;9329:45;9349:24;9367:5;9349:24;:::i;:::-;9329:45;:::i;:::-;9324:3;9317:58;9224:157;;:::o;9387:557::-;9575:3;9590:75;9661:3;9652:6;9590:75;:::i;:::-;9690:2;9685:3;9681:12;9674:19;;9703:75;9774:3;9765:6;9703:75;:::i;:::-;9803:2;9798:3;9794:12;9787:19;;9823:95;9914:3;9905:6;9823:95;:::i;:::-;9816:102;;9935:3;9928:10;;9387:557;;;;;;:::o;9950:177::-;10090:29;10086:1;10078:6;10074:14;10067:53;9950:177;:::o;10133:366::-;10275:3;10296:67;10360:2;10355:3;10296:67;:::i;:::-;10289:74;;10372:93;10461:3;10372:93;:::i;:::-;10490:2;10485:3;10481:12;10474:19;;10133:366;;;:::o;10505:419::-;10671:4;10709:2;10698:9;10694:18;10686:26;;10758:9;10752:4;10748:20;10744:1;10733:9;10729:17;10722:47;10786:131;10912:4;10786:131;:::i;:::-;10778:139;;10505:419;;;:::o;10930:118::-;11017:24;11035:5;11017:24;:::i;:::-;11012:3;11005:37;10930:118;;:::o;11054:442::-;11203:4;11241:2;11230:9;11226:18;11218:26;;11254:71;11322:1;11311:9;11307:17;11298:6;11254:71;:::i;:::-;11335:72;11403:2;11392:9;11388:18;11379:6;11335:72;:::i;:::-;11417;11485:2;11474:9;11470:18;11461:6;11417:72;:::i;:::-;11054:442;;;;;;:::o;11502:90::-;11536:7;11579:5;11572:13;11565:21;11554:32;;11502:90;;;:::o;11598:116::-;11668:21;11683:5;11668:21;:::i;:::-;11661:5;11658:32;11648:60;;11704:1;11701;11694:12;11648:60;11598:116;:::o;11720:137::-;11774:5;11805:6;11799:13;11790:22;;11821:30;11845:5;11821:30;:::i;:::-;11720:137;;;;:::o;11863:345::-;11930:6;11979:2;11967:9;11958:7;11954:23;11950:32;11947:119;;;11985:79;;:::i;:::-;11947:119;12105:1;12130:61;12183:7;12174:6;12163:9;12159:22;12130:61;:::i;:::-;12120:71;;12076:125;11863:345;;;;:::o;12214:180::-;12262:77;12259:1;12252:88;12359:4;12356:1;12349:15;12383:4;12380:1;12373:15;12400:174;12540:26;12536:1;12528:6;12524:14;12517:50;12400:174;:::o;12580:366::-;12722:3;12743:67;12807:2;12802:3;12743:67;:::i;:::-;12736:74;;12819:93;12908:3;12819:93;:::i;:::-;12937:2;12932:3;12928:12;12921:19;;12580:366;;;:::o;12952:419::-;13118:4;13156:2;13145:9;13141:18;13133:26;;13205:9;13199:4;13195:20;13191:1;13180:9;13176:17;13169:47;13233:131;13359:4;13233:131;:::i;:::-;13225:139;;12952:419;;;:::o;13377:181::-;13517:33;13513:1;13505:6;13501:14;13494:57;13377:181;:::o;13564:366::-;13706:3;13727:67;13791:2;13786:3;13727:67;:::i;:::-;13720:74;;13803:93;13892:3;13803:93;:::i;:::-;13921:2;13916:3;13912:12;13905:19;;13564:366;;;:::o;13936:419::-;14102:4;14140:2;14129:9;14125:18;14117:26;;14189:9;14183:4;14179:20;14175:1;14164:9;14160:17;14153:47;14217:131;14343:4;14217:131;:::i;:::-;14209:139;;13936:419;;;:::o;14361:221::-;14501:34;14497:1;14489:6;14485:14;14478:58;14570:4;14565:2;14557:6;14553:15;14546:29;14361:221;:::o;14588:366::-;14730:3;14751:67;14815:2;14810:3;14751:67;:::i;:::-;14744:74;;14827:93;14916:3;14827:93;:::i;:::-;14945:2;14940:3;14936:12;14929:19;;14588:366;;;:::o;14960:419::-;15126:4;15164:2;15153:9;15149:18;15141:26;;15213:9;15207:4;15203:20;15199:1;15188:9;15184:17;15177:47;15241:131;15367:4;15241:131;:::i;:::-;15233:139;;14960:419;;;:::o;15385:77::-;15422:7;15451:5;15440:16;;15385:77;;;:::o;15468:118::-;15555:24;15573:5;15555:24;:::i;:::-;15550:3;15543:37;15468:118;;:::o;15592:86::-;15627:7;15667:4;15660:5;15656:16;15645:27;;15592:86;;;:::o;15684:112::-;15767:22;15783:5;15767:22;:::i;:::-;15762:3;15755:35;15684:112;;:::o;15802:545::-;15975:4;16013:3;16002:9;15998:19;15990:27;;16027:71;16095:1;16084:9;16080:17;16071:6;16027:71;:::i;:::-;16108:68;16172:2;16161:9;16157:18;16148:6;16108:68;:::i;:::-;16186:72;16254:2;16243:9;16239:18;16230:6;16186:72;:::i;:::-;16268;16336:2;16325:9;16321:18;16312:6;16268:72;:::i;:::-;15802:545;;;;;;;:::o
Swarm Source
ipfs://3a65d28f0b9c717aaba1a0b6160269af25c21442f791fb3d3d6ecc526701ddc9
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.