ERC-20
Overview
Max Total Supply
1,200,000,000 CTF
Holders
7
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CatFish
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-04-20 */ // SPDX-License-Identifier: MIT // ____ _ _____ _____ ___ ____ _ _ // / ___| / \ |_ _| | ___| |_ _| / ___| | | | | // | | / _ \ | | | |_ | | \___ \ | |_| | // | |___ / ___ \ | | | _| | | ___) | | _ | // \____| /_/ \_\ |_| |_| |___| |____/ |_| |_| // // Website : https://www.catfish.quest // Telegram : https://t.me/catfishtokens // Twitter / X : https://x.com/catfishtokens // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Nonces.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol) pragma solidity ^0.8.20; /** * @dev Provides tracking nonces for addresses. Nonces will only increment. */ abstract contract Nonces { /** * @dev The nonce used for an `account` is not the expected current nonce. */ error InvalidAccountNonce(address account, uint256 currentNonce); mapping(address account => uint256) private _nonces; /** * @dev Returns the next unused nonce for an address. */ function nonces(address owner) public view virtual returns (uint256) { return _nonces[owner]; } /** * @dev Consumes a nonce. * * Returns the current value and increments nonce. */ function _useNonce(address owner) internal virtual returns (uint256) { // For each account, the nonce has an initial value of 0, can only be incremented by one, and cannot be // decremented or reset. This guarantees that the nonce never overflows. unchecked { // It is important to do x++ and not ++x here. return _nonces[owner]++; } } /** * @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`. */ function _useCheckedNonce(address owner, uint256 nonce) internal virtual { uint256 current = _useNonce(owner); if (nonce != current) { revert InvalidAccountNonce(owner, current); } } } // File: @openzeppelin/contracts/interfaces/IERC5267.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol) pragma solidity ^0.8.20; interface IERC5267 { /** * @dev MAY be emitted to signal that the domain could have changed. */ event EIP712DomainChanged(); /** * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712 * signature. */ function eip712Domain() external view returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ); } // File: @openzeppelin/contracts/utils/StorageSlot.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.20; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ```solidity * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(newImplementation.code.length > 0); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } } // File: @openzeppelin/contracts/utils/ShortStrings.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/ShortStrings.sol) pragma solidity ^0.8.20; // | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | // | length | 0x BB | type ShortString is bytes32; /** * @dev This library provides functions to convert short memory strings * into a `ShortString` type that can be used as an immutable variable. * * Strings of arbitrary length can be optimized using this library if * they are short enough (up to 31 bytes) by packing them with their * length (1 byte) in a single EVM word (32 bytes). Additionally, a * fallback mechanism can be used for every other case. * * Usage example: * * ```solidity * contract Named { * using ShortStrings for *; * * ShortString private immutable _name; * string private _nameFallback; * * constructor(string memory contractName) { * _name = contractName.toShortStringWithFallback(_nameFallback); * } * * function name() external view returns (string memory) { * return _name.toStringWithFallback(_nameFallback); * } * } * ``` */ library ShortStrings { // Used as an identifier for strings longer than 31 bytes. bytes32 private constant FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF; error StringTooLong(string str); error InvalidShortString(); /** * @dev Encode a string of at most 31 chars into a `ShortString`. * * This will trigger a `StringTooLong` error is the input string is too long. */ function toShortString(string memory str) internal pure returns (ShortString) { bytes memory bstr = bytes(str); if (bstr.length > 31) { revert StringTooLong(str); } return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length)); } /** * @dev Decode a `ShortString` back to a "normal" string. */ function toString(ShortString sstr) internal pure returns (string memory) { uint256 len = byteLength(sstr); // using `new string(len)` would work locally but is not memory safe. string memory str = new string(32); /// @solidity memory-safe-assembly assembly { mstore(str, len) mstore(add(str, 0x20), sstr) } return str; } /** * @dev Return the length of a `ShortString`. */ function byteLength(ShortString sstr) internal pure returns (uint256) { uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF; if (result > 31) { revert InvalidShortString(); } return result; } /** * @dev Encode a string into a `ShortString`, or write it to storage if it is too long. */ function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) { if (bytes(value).length < 32) { return toShortString(value); } else { StorageSlot.getStringSlot(store).value = value; return ShortString.wrap(FALLBACK_SENTINEL); } } /** * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}. */ function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) { if (ShortString.unwrap(value) != FALLBACK_SENTINEL) { return toString(value); } else { return store; } } /** * @dev Return the length of a string that was encoded to `ShortString` or written to storage using * {setWithFallback}. * * WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of * actual characters as the UTF-8 encoding of a single character can span over multiple bytes. */ function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) { if (ShortString.unwrap(value) != FALLBACK_SENTINEL) { return byteLength(value); } else { return bytes(store).length; } } } // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @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 v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the 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 towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (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 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) 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. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 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. uint256 twos = denominator & (0 - denominator); 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 (unsignedRoundsUp(rounding) && 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 * towards zero. * * 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 + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * 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 + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * 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 + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * 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 + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @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), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(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) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } 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 bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol) pragma solidity ^0.8.20; /** * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing. * * The library provides methods for generating a hash of a message that conforms to the * https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712] * specifications. */ library MessageHashUtils { /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing a bytes32 `messageHash` with * `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method. * * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with * keccak256, although any bytes32 value can be safely used because the final digest will * be re-hashed. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) { /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20) } } /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing an arbitrary `message` with * `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) { return keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message)); } /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x00` (data with intended validator). * * The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended * `validator` address. Then hashing the result. * * See {ECDSA-recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked(hex"19_00", validator, data)); } /** * @dev Returns the keccak256 digest of an EIP-712 typed data (EIP-191 version `0x01`). * * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with * `\x19\x01` and hashing the result. It corresponds to the hash signed by the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712. * * See {ECDSA-recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, hex"19_01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) digest := keccak256(ptr, 0x42) } } } // File: @openzeppelin/contracts/utils/cryptography/EIP712.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.20; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose * encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract * does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to * produce the hash of their typed data using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain * separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the * separator from the immutable values, which is cheaper than accessing a cached version in cold storage. * * @custom:oz-upgrades-unsafe-allow state-variable-immutable */ abstract contract EIP712 is IERC5267 { using ShortStrings for *; bytes32 private constant TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _cachedDomainSeparator; uint256 private immutable _cachedChainId; address private immutable _cachedThis; bytes32 private immutable _hashedName; bytes32 private immutable _hashedVersion; ShortString private immutable _name; ShortString private immutable _version; string private _nameFallback; string private _versionFallback; /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { _name = name.toShortStringWithFallback(_nameFallback); _version = version.toShortStringWithFallback(_versionFallback); _hashedName = keccak256(bytes(name)); _hashedVersion = keccak256(bytes(version)); _cachedChainId = block.chainid; _cachedDomainSeparator = _buildDomainSeparator(); _cachedThis = address(this); } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _cachedThis && block.chainid == _cachedChainId) { return _cachedDomainSeparator; } else { return _buildDomainSeparator(); } } function _buildDomainSeparator() private view returns (bytes32) { return keccak256(abi.encode(TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash); } /** * @dev See {IERC-5267}. */ function eip712Domain() public view virtual returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ) { return ( hex"0f", // 01111 _EIP712Name(), _EIP712Version(), block.chainid, address(this), bytes32(0), new uint256[](0) ); } /** * @dev The name parameter for the EIP712 domain. * * NOTE: By default this function reads _name which is an immutable value. * It only reads from storage if necessary (in case the value is too large to fit in a ShortString). */ // solhint-disable-next-line func-name-mixedcase function _EIP712Name() internal view returns (string memory) { return _name.toStringWithFallback(_nameFallback); } /** * @dev The version parameter for the EIP712 domain. * * NOTE: By default this function reads _version which is an immutable value. * It only reads from storage if necessary (in case the value is too large to fit in a ShortString). */ // solhint-disable-next-line func-name-mixedcase function _EIP712Version() internal view returns (string memory) { return _version.toStringWithFallback(_versionFallback); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.20; /** * @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 } /** * @dev The signature derives the `address(0)`. */ error ECDSAInvalidSignature(); /** * @dev The signature has an invalid length. */ error ECDSAInvalidSignatureLength(uint256 length); /** * @dev The signature has an S value that is in the upper half order. */ error ECDSAInvalidSignatureS(bytes32 s); /** * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not * return address(0) without also returning an error description. Errors are documented using an enum (error type) * and a bytes32 providing additional information about the error. * * If no error is returned, then the address can be used for verification purposes. * * The `ecrecover` EVM precompile 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 {MessageHashUtils-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] */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) { 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, bytes32(signature.length)); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM precompile 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 {MessageHashUtils-toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature); _throwError(error, errorArg); 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] */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) { unchecked { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); // We do not check for an overflow here since the shift operation results in 0 or 1. 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. */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError, bytes32) { // 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, s); } // 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, bytes32(0)); } return (signer, RecoverError.NoError, bytes32(0)); } /** * @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, bytes32 errorArg) = tryRecover(hash, v, r, s); _throwError(error, errorArg); return recovered; } /** * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided. */ function _throwError(RecoverError error, bytes32 errorArg) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert ECDSAInvalidSignature(); } else if (error == RecoverError.InvalidSignatureLength) { revert ECDSAInvalidSignatureLength(uint256(errorArg)); } else if (error == RecoverError.InvalidSignatureS) { revert ECDSAInvalidSignatureS(errorArg); } } } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @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. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ 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]. * * CAUTION: See Security Considerations above. */ 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/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal virtual { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Implementation 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. */ abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces { bytes32 private constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev Permit deadline has expired. */ error ERC2612ExpiredSignature(uint256 deadline); /** * @dev Mismatched signature. */ error ERC2612InvalidSigner(address signer, address owner); /** * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`. * * It's a good idea to use the same `name` that is defined as the ERC20 token name. */ constructor(string memory name) EIP712(name, "1") {} /** * @inheritdoc IERC20Permit */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual { if (block.timestamp > deadline) { revert ERC2612ExpiredSignature(deadline); } bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline)); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSA.recover(hash, v, r, s); if (signer != owner) { revert ERC2612InvalidSigner(signer, owner); } _approve(owner, spender, value); } /** * @inheritdoc IERC20Permit */ function nonces(address owner) public view virtual override(IERC20Permit, Nonces) returns (uint256) { return super.nonces(owner); } /** * @inheritdoc IERC20Permit */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view virtual returns (bytes32) { return _domainSeparatorV4(); } } // File: CatFish.sol // Compatible with OpenZeppelin Contracts ^5.0.0 pragma solidity ^0.8.20; contract CatFish is ERC20, ERC20Permit, Ownable { using SafeMath for uint256; uint256 public amountClaim = 1_000_000 * 10 ** decimals(); uint256 public amountAirdrop; uint256 public taxRate; address public taxWallet; mapping(address => bool) public whitelisteds; mapping(address => bool) public claimeds; event Airdrop(address recipient, uint256 amount); constructor(address _taxWallet) ERC20("CatFish", "CTF") ERC20Permit("CatFish") Ownable(msg.sender) { taxRate = 5; taxWallet = _taxWallet; whitelisteds[msg.sender] = true; whitelisteds[taxWallet] = true; _mint(msg.sender, 1_200_000_000 * 10 ** decimals()); amountAirdrop = 200_000_000 * 10 ** decimals(); } function _transfer(address sender, address recipient, uint256 amount) internal override { if (!whitelisteds[sender] && !whitelisteds[recipient]) { if(claimeds[sender] || claimeds[recipient]) { require(amount >= amountClaim.mul(2)); } uint256 taxAmount = amount.mul(taxRate).div(100); uint256 taxedAmount = amount.sub(taxAmount); super._transfer(sender, taxWallet, taxAmount); super._transfer(sender, recipient, taxedAmount); } else { super._transfer(sender, recipient, amount); } } function whitelist(address _address, bool _whitelisted) external onlyOwner { whitelisteds[_address] = _whitelisted; } function CATchFISH() external { require(!claimeds[msg.sender], "Airdrop already claimed"); require(amountClaim <= amountAirdrop, "Airdrop tokens exhausted"); super._transfer(owner(), msg.sender, amountClaim); amountAirdrop = amountAirdrop.sub(amountClaim); claimeds[msg.sender] = true; emit Airdrop(msg.sender, amountClaim); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_taxWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Airdrop","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CATchFISH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountAirdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimeds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_whitelisted","type":"bool"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisteds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
61016060405261001361040460201b60201c565b600a61001f91906109f3565b620f424061002d9190610a3d565b60095534801561003b575f80fd5b50604051613683380380613683833981810160405281019061005d9190610adc565b336040518060400160405280600781526020017f4361744669736800000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f43617446697368000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f435446000000000000000000000000000000000000000000000000000000000081525081600390816101469190610d38565b5080600490816101569190610d38565b50505061016d60058361040c60201b90919060201c565b610120818152505061018960068261040c60201b90919060201c565b6101408181525050818051906020012060e08181525050808051906020012061010081815250504660a081815250506101c661045960201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250505050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610274575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161026b9190610e16565b60405180910390fd5b610283816104b360201b60201c565b506005600b8190555080600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506103cf336103a961040460201b60201c565b600a6103b591906109f3565b6347868c006103c49190610a3d565b61057660201b60201c565b6103dd61040460201b60201c565b600a6103e991906109f3565b630bebc2006103f89190610a3d565b600a8190555050611041565b5f6012905090565b5f60208351101561042d57610426836105fb60201b60201c565b9050610453565b8261043d8361066060201b60201c565b5f01908161044b9190610d38565b5060ff5f1b90505b92915050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60e051610100514630604051602001610498959493929190610e56565b60405160208183030381529060405280519060200120905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036105e6575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016105dd9190610e16565b60405180910390fd5b6105f75f838361066960201b60201c565b5050565b5f80829050601f8151111561064757826040517f305a27a900000000000000000000000000000000000000000000000000000000815260040161063e9190610f0d565b60405180910390fd5b80518161065390610f5a565b5f1c175f1b915050919050565b5f819050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106b9578060025f8282546106ad9190610fc0565b92505081905550610787565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610742578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161073993929190610ff3565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107ce578060025f8282540392505081905550610818565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516108759190611028565b60405180910390a3505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115610904578086048111156108e0576108df610882565b5b60018516156108ef5780820291505b80810290506108fd856108af565b94506108c4565b94509492505050565b5f8261091c57600190506109d7565b81610929575f90506109d7565b816001811461093f576002811461094957610978565b60019150506109d7565b60ff84111561095b5761095a610882565b5b8360020a91508482111561097257610971610882565b5b506109d7565b5060208310610133831016604e8410600b84101617156109ad5782820a9050838111156109a8576109a7610882565b5b6109d7565b6109ba84848460016108bb565b925090508184048111156109d1576109d0610882565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f6109fd826109de565b9150610a08836109e7565b9250610a357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461090d565b905092915050565b5f610a47826109de565b9150610a52836109de565b9250828202610a60816109de565b91508282048414831517610a7757610a76610882565b5b5092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610aab82610a82565b9050919050565b610abb81610aa1565b8114610ac5575f80fd5b50565b5f81519050610ad681610ab2565b92915050565b5f60208284031215610af157610af0610a7e565b5b5f610afe84828501610ac8565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610b8257607f821691505b602082108103610b9557610b94610b3e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610bf77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610bbc565b610c018683610bbc565b95508019841693508086168417925050509392505050565b5f819050919050565b5f610c3c610c37610c32846109de565b610c19565b6109de565b9050919050565b5f819050919050565b610c5583610c22565b610c69610c6182610c43565b848454610bc8565b825550505050565b5f90565b610c7d610c71565b610c88818484610c4c565b505050565b5b81811015610cab57610ca05f82610c75565b600181019050610c8e565b5050565b601f821115610cf057610cc181610b9b565b610cca84610bad565b81016020851015610cd9578190505b610ced610ce585610bad565b830182610c8d565b50505b505050565b5f82821c905092915050565b5f610d105f1984600802610cf5565b1980831691505092915050565b5f610d288383610d01565b9150826002028217905092915050565b610d4182610b07565b67ffffffffffffffff811115610d5a57610d59610b11565b5b610d648254610b6b565b610d6f828285610caf565b5f60209050601f831160018114610da0575f8415610d8e578287015190505b610d988582610d1d565b865550610dff565b601f198416610dae86610b9b565b5f5b82811015610dd557848901518255600182019150602085019450602081019050610db0565b86831015610df25784890151610dee601f891682610d01565b8355505b6001600288020188555050505b505050505050565b610e1081610aa1565b82525050565b5f602082019050610e295f830184610e07565b92915050565b5f819050919050565b610e4181610e2f565b82525050565b610e50816109de565b82525050565b5f60a082019050610e695f830188610e38565b610e766020830187610e38565b610e836040830186610e38565b610e906060830185610e47565b610e9d6080830184610e07565b9695505050505050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610edf82610b07565b610ee98185610ea7565b9350610ef9818560208601610eb7565b610f0281610ec5565b840191505092915050565b5f6020820190508181035f830152610f258184610ed5565b905092915050565b5f81519050919050565b5f819050602082019050919050565b5f610f518251610e2f565b80915050919050565b5f610f6482610f2d565b82610f6e84610f37565b9050610f7981610f46565b92506020821015610fb957610fb47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83602003600802610bbc565b831692505b5050919050565b5f610fca826109de565b9150610fd5836109de565b9250828201905080821115610fed57610fec610882565b5b92915050565b5f6060820190506110065f830186610e07565b6110136020830185610e47565b6110206040830184610e47565b949350505050565b5f60208201905061103b5f830184610e47565b92915050565b60805160a05160c05160e0516101005161012051610140516125f16110925f395f61125801525f61121d01525f61177b01525f61175a01525f610fd101525f61102701525f61105001526125f15ff3fe608060405234801561000f575f80fd5b5060043610610156575f3560e01c80637ecebe00116100c1578063d505accf1161007a578063d505accf146103c0578063dd62ed3e146103dc578063dd7c4b251461040c578063ef8281e01461043c578063f2fde38b1461045a578063f59c37081461047657610156565b80637ecebe00146102e257806384b0196e146103125780638da5cb5b1461033657806393a604671461035457806395d89b4114610372578063a9059cbb1461039057610156565b8063313ce56711610113578063313ce5671461021e5780633644e5151461023c5780634435eeff1461025a57806370a082311461028a578063715018a6146102ba578063771a3a1d146102c457610156565b806306fdde031461015a578063095ea7b31461017857806318160ddd146101a85780631aa95a8f146101c657806323b872dd146101d05780632dc0562d14610200575b5f80fd5b610162610492565b60405161016f9190611c31565b60405180910390f35b610192600480360381019061018d9190611ce2565b610522565b60405161019f9190611d3a565b60405180910390f35b6101b0610544565b6040516101bd9190611d62565b60405180910390f35b6101ce61054d565b005b6101ea60048036038101906101e59190611d7b565b6106e1565b6040516101f79190611d3a565b60405180910390f35b61020861070f565b6040516102159190611dda565b60405180910390f35b610226610734565b6040516102339190611e0e565b60405180910390f35b61024461073c565b6040516102519190611e3f565b60405180910390f35b610274600480360381019061026f9190611e58565b61074a565b6040516102819190611d3a565b60405180910390f35b6102a4600480360381019061029f9190611e58565b610767565b6040516102b19190611d62565b60405180910390f35b6102c26107ac565b005b6102cc6107bf565b6040516102d99190611d62565b60405180910390f35b6102fc60048036038101906102f79190611e58565b6107c5565b6040516103099190611d62565b60405180910390f35b61031a6107d6565b60405161032d9796959493929190611f74565b60405180910390f35b61033e61087b565b60405161034b9190611dda565b60405180910390f35b61035c6108a3565b6040516103699190611d62565b60405180910390f35b61037a6108a9565b6040516103879190611c31565b60405180910390f35b6103aa60048036038101906103a59190611ce2565b610939565b6040516103b79190611d3a565b60405180910390f35b6103da60048036038101906103d5919061204a565b61095b565b005b6103f660048036038101906103f191906120e7565b610aa0565b6040516104039190611d62565b60405180910390f35b61042660048036038101906104219190611e58565b610b22565b6040516104339190611d3a565b60405180910390f35b610444610b3f565b6040516104519190611d62565b60405180910390f35b610474600480360381019061046f9190611e58565b610b45565b005b610490600480360381019061048b919061214f565b610bc9565b005b6060600380546104a1906121ba565b80601f01602080910402602001604051908101604052809291908181526020018280546104cd906121ba565b80156105185780601f106104ef57610100808354040283529160200191610518565b820191905f5260205f20905b8154815290600101906020018083116104fb57829003601f168201915b5050505050905090565b5f8061052c610c29565b9050610539818585610c30565b600191505092915050565b5f600254905090565b600e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156105d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ce90612234565b60405180910390fd5b600a54600954111561061e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106159061229c565b60405180910390fd5b61063261062961087b565b33600954610c42565b610649600954600a54610d3290919063ffffffff16565b600a819055506001600e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f8c32c568416fcf97be35ce5b27844cfddcd63a67a1a602c3595ba5dac38f303a336009546040516106d79291906122ba565b60405180910390a1565b5f806106eb610c29565b90506106f8858285610d47565b610703858585610dd9565b60019150509392505050565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f610745610fce565b905090565b600e602052805f5260405f205f915054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107b4611084565b6107bd5f61110b565b565b600b5481565b5f6107cf826111ce565b9050919050565b5f6060805f805f60606107e7611214565b6107ef61124f565b46305f801b5f67ffffffffffffffff81111561080e5761080d6122e1565b5b60405190808252806020026020018201604052801561083c5781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b6060600480546108b8906121ba565b80601f01602080910402602001604051908101604052809291908181526020018280546108e4906121ba565b801561092f5780601f106109065761010080835404028352916020019161092f565b820191905f5260205f20905b81548152906001019060200180831161091257829003601f168201915b5050505050905090565b5f80610943610c29565b9050610950818585610dd9565b600191505092915050565b834211156109a057836040517f627913020000000000000000000000000000000000000000000000000000000081526004016109979190611d62565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886109ce8c61128a565b896040516020016109e49695949392919061230e565b6040516020818303038152906040528051906020012090505f610a06826112dd565b90505f610a15828787876112f6565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a8957808a6040517f4b800e46000000000000000000000000000000000000000000000000000000008152600401610a8092919061236d565b60405180910390fd5b610a948a8a8a610c30565b50505050505050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600d602052805f5260405f205f915054906101000a900460ff1681565b60095481565b610b4d611084565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bbd575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610bb49190611dda565b60405180910390fd5b610bc68161110b565b50565b610bd1611084565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f33905090565b610c3d8383836001611324565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cb2575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ca99190611dda565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d22575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d199190611dda565b60405180910390fd5b610d2d8383836114f3565b505050565b5f8183610d3f91906123c1565b905092915050565b5f610d528484610aa0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dd35781811015610dc4578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610dbb939291906123f4565b60405180910390fd5b610dd284848484035f611324565b5b50505050565b600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610e775750600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610fbd57600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610f175750600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610f3e57610f32600260095461170c90919063ffffffff16565b811015610f3d575f80fd5b5b5f610f676064610f59600b548561170c90919063ffffffff16565b61172190919063ffffffff16565b90505f610f7d8284610d3290919063ffffffff16565b9050610fab85600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610c42565b610fb6858583610c42565b5050610fc9565b610fc8838383610c42565b5b505050565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561104957507f000000000000000000000000000000000000000000000000000000000000000046145b15611076577f00000000000000000000000000000000000000000000000000000000000000009050611081565b61107e611736565b90505b90565b61108c610c29565b73ffffffffffffffffffffffffffffffffffffffff166110aa61087b565b73ffffffffffffffffffffffffffffffffffffffff1614611109576110cd610c29565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111009190611dda565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b606061124a60057f00000000000000000000000000000000000000000000000000000000000000006117cb90919063ffffffff16565b905090565b606061128560067f00000000000000000000000000000000000000000000000000000000000000006117cb90919063ffffffff16565b905090565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190600101919050559050919050565b5f6112ef6112e9610fce565b83611878565b9050919050565b5f805f80611306888888886118b8565b925092509250611316828261199f565b829350505050949350505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611394575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161138b9190611dda565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611404575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113fb9190611dda565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156114ed578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114e49190611d62565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611543578060025f8282546115379190612429565b92505081905550611611565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156115cc578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016115c3939291906123f4565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611658578060025f82825403925050819055506116a2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116ff9190611d62565b60405180910390a3505050565b5f8183611719919061245c565b905092915050565b5f818361172e91906124ca565b905092915050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000046306040516020016117b09594939291906124fa565b60405160208183030381529060405280519060200120905090565b606060ff5f1b83146117e7576117e083611b01565b9050611872565b8180546117f3906121ba565b80601f016020809104026020016040519081016040528092919081815260200182805461181f906121ba565b801561186a5780601f106118415761010080835404028352916020019161186a565b820191905f5260205f20905b81548152906001019060200180831161184d57829003601f168201915b505050505090505b92915050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c11156118f4575f600385925092509250611995565b5f6001888888886040515f8152602001604052604051611917949392919061254b565b6020604051602081039080840390855afa158015611937573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611988575f60015f801b93509350935050611995565b805f805f1b935093509350505b9450945094915050565b5f60038111156119b2576119b161258e565b5b8260038111156119c5576119c461258e565b5b0315611afd57600160038111156119df576119de61258e565b5b8260038111156119f2576119f161258e565b5b03611a29576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60026003811115611a3d57611a3c61258e565b5b826003811115611a5057611a4f61258e565b5b03611a9457805f1c6040517ffce698f7000000000000000000000000000000000000000000000000000000008152600401611a8b9190611d62565b60405180910390fd5b600380811115611aa757611aa661258e565b5b826003811115611aba57611ab961258e565b5b03611afc57806040517fd78bce0c000000000000000000000000000000000000000000000000000000008152600401611af39190611e3f565b60405180910390fd5b5b5050565b60605f611b0d83611b73565b90505f602067ffffffffffffffff811115611b2b57611b2a6122e1565b5b6040519080825280601f01601f191660200182016040528015611b5d5781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b5f8060ff835f1c169050601f811115611bb8576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611c0382611bc1565b611c0d8185611bcb565b9350611c1d818560208601611bdb565b611c2681611be9565b840191505092915050565b5f6020820190508181035f830152611c498184611bf9565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c7e82611c55565b9050919050565b611c8e81611c74565b8114611c98575f80fd5b50565b5f81359050611ca981611c85565b92915050565b5f819050919050565b611cc181611caf565b8114611ccb575f80fd5b50565b5f81359050611cdc81611cb8565b92915050565b5f8060408385031215611cf857611cf7611c51565b5b5f611d0585828601611c9b565b9250506020611d1685828601611cce565b9150509250929050565b5f8115159050919050565b611d3481611d20565b82525050565b5f602082019050611d4d5f830184611d2b565b92915050565b611d5c81611caf565b82525050565b5f602082019050611d755f830184611d53565b92915050565b5f805f60608486031215611d9257611d91611c51565b5b5f611d9f86828701611c9b565b9350506020611db086828701611c9b565b9250506040611dc186828701611cce565b9150509250925092565b611dd481611c74565b82525050565b5f602082019050611ded5f830184611dcb565b92915050565b5f60ff82169050919050565b611e0881611df3565b82525050565b5f602082019050611e215f830184611dff565b92915050565b5f819050919050565b611e3981611e27565b82525050565b5f602082019050611e525f830184611e30565b92915050565b5f60208284031215611e6d57611e6c611c51565b5b5f611e7a84828501611c9b565b91505092915050565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b611eb781611e83565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611eef81611caf565b82525050565b5f611f008383611ee6565b60208301905092915050565b5f602082019050919050565b5f611f2282611ebd565b611f2c8185611ec7565b9350611f3783611ed7565b805f5b83811015611f67578151611f4e8882611ef5565b9750611f5983611f0c565b925050600181019050611f3a565b5085935050505092915050565b5f60e082019050611f875f83018a611eae565b8181036020830152611f998189611bf9565b90508181036040830152611fad8188611bf9565b9050611fbc6060830187611d53565b611fc96080830186611dcb565b611fd660a0830185611e30565b81810360c0830152611fe88184611f18565b905098975050505050505050565b611fff81611df3565b8114612009575f80fd5b50565b5f8135905061201a81611ff6565b92915050565b61202981611e27565b8114612033575f80fd5b50565b5f8135905061204481612020565b92915050565b5f805f805f805f60e0888a03121561206557612064611c51565b5b5f6120728a828b01611c9b565b97505060206120838a828b01611c9b565b96505060406120948a828b01611cce565b95505060606120a58a828b01611cce565b94505060806120b68a828b0161200c565b93505060a06120c78a828b01612036565b92505060c06120d88a828b01612036565b91505092959891949750929550565b5f80604083850312156120fd576120fc611c51565b5b5f61210a85828601611c9b565b925050602061211b85828601611c9b565b9150509250929050565b61212e81611d20565b8114612138575f80fd5b50565b5f8135905061214981612125565b92915050565b5f806040838503121561216557612164611c51565b5b5f61217285828601611c9b565b92505060206121838582860161213b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806121d157607f821691505b6020821081036121e4576121e361218d565b5b50919050565b7f41697264726f7020616c726561647920636c61696d65640000000000000000005f82015250565b5f61221e601783611bcb565b9150612229826121ea565b602082019050919050565b5f6020820190508181035f83015261224b81612212565b9050919050565b7f41697264726f7020746f6b656e732065786861757374656400000000000000005f82015250565b5f612286601883611bcb565b915061229182612252565b602082019050919050565b5f6020820190508181035f8301526122b38161227a565b9050919050565b5f6040820190506122cd5f830185611dcb565b6122da6020830184611d53565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60c0820190506123215f830189611e30565b61232e6020830188611dcb565b61233b6040830187611dcb565b6123486060830186611d53565b6123556080830185611d53565b61236260a0830184611d53565b979650505050505050565b5f6040820190506123805f830185611dcb565b61238d6020830184611dcb565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6123cb82611caf565b91506123d683611caf565b92508282039050818111156123ee576123ed612394565b5b92915050565b5f6060820190506124075f830186611dcb565b6124146020830185611d53565b6124216040830184611d53565b949350505050565b5f61243382611caf565b915061243e83611caf565b925082820190508082111561245657612455612394565b5b92915050565b5f61246682611caf565b915061247183611caf565b925082820261247f81611caf565b9150828204841483151761249657612495612394565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6124d482611caf565b91506124df83611caf565b9250826124ef576124ee61249d565b5b828204905092915050565b5f60a08201905061250d5f830188611e30565b61251a6020830187611e30565b6125276040830186611e30565b6125346060830185611d53565b6125416080830184611dcb565b9695505050505050565b5f60808201905061255e5f830187611e30565b61256b6020830186611dff565b6125786040830185611e30565b6125856060830184611e30565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffdfea26469706673582212206ff976008a2ed4f26f924ae824396d51e5a8814cff4709b618173d53557fae5764736f6c634300081900330000000000000000000000000000002fc0c174c03bfa3409b6362f84114900a2
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610156575f3560e01c80637ecebe00116100c1578063d505accf1161007a578063d505accf146103c0578063dd62ed3e146103dc578063dd7c4b251461040c578063ef8281e01461043c578063f2fde38b1461045a578063f59c37081461047657610156565b80637ecebe00146102e257806384b0196e146103125780638da5cb5b1461033657806393a604671461035457806395d89b4114610372578063a9059cbb1461039057610156565b8063313ce56711610113578063313ce5671461021e5780633644e5151461023c5780634435eeff1461025a57806370a082311461028a578063715018a6146102ba578063771a3a1d146102c457610156565b806306fdde031461015a578063095ea7b31461017857806318160ddd146101a85780631aa95a8f146101c657806323b872dd146101d05780632dc0562d14610200575b5f80fd5b610162610492565b60405161016f9190611c31565b60405180910390f35b610192600480360381019061018d9190611ce2565b610522565b60405161019f9190611d3a565b60405180910390f35b6101b0610544565b6040516101bd9190611d62565b60405180910390f35b6101ce61054d565b005b6101ea60048036038101906101e59190611d7b565b6106e1565b6040516101f79190611d3a565b60405180910390f35b61020861070f565b6040516102159190611dda565b60405180910390f35b610226610734565b6040516102339190611e0e565b60405180910390f35b61024461073c565b6040516102519190611e3f565b60405180910390f35b610274600480360381019061026f9190611e58565b61074a565b6040516102819190611d3a565b60405180910390f35b6102a4600480360381019061029f9190611e58565b610767565b6040516102b19190611d62565b60405180910390f35b6102c26107ac565b005b6102cc6107bf565b6040516102d99190611d62565b60405180910390f35b6102fc60048036038101906102f79190611e58565b6107c5565b6040516103099190611d62565b60405180910390f35b61031a6107d6565b60405161032d9796959493929190611f74565b60405180910390f35b61033e61087b565b60405161034b9190611dda565b60405180910390f35b61035c6108a3565b6040516103699190611d62565b60405180910390f35b61037a6108a9565b6040516103879190611c31565b60405180910390f35b6103aa60048036038101906103a59190611ce2565b610939565b6040516103b79190611d3a565b60405180910390f35b6103da60048036038101906103d5919061204a565b61095b565b005b6103f660048036038101906103f191906120e7565b610aa0565b6040516104039190611d62565b60405180910390f35b61042660048036038101906104219190611e58565b610b22565b6040516104339190611d3a565b60405180910390f35b610444610b3f565b6040516104519190611d62565b60405180910390f35b610474600480360381019061046f9190611e58565b610b45565b005b610490600480360381019061048b919061214f565b610bc9565b005b6060600380546104a1906121ba565b80601f01602080910402602001604051908101604052809291908181526020018280546104cd906121ba565b80156105185780601f106104ef57610100808354040283529160200191610518565b820191905f5260205f20905b8154815290600101906020018083116104fb57829003601f168201915b5050505050905090565b5f8061052c610c29565b9050610539818585610c30565b600191505092915050565b5f600254905090565b600e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156105d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ce90612234565b60405180910390fd5b600a54600954111561061e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106159061229c565b60405180910390fd5b61063261062961087b565b33600954610c42565b610649600954600a54610d3290919063ffffffff16565b600a819055506001600e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f8c32c568416fcf97be35ce5b27844cfddcd63a67a1a602c3595ba5dac38f303a336009546040516106d79291906122ba565b60405180910390a1565b5f806106eb610c29565b90506106f8858285610d47565b610703858585610dd9565b60019150509392505050565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f610745610fce565b905090565b600e602052805f5260405f205f915054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107b4611084565b6107bd5f61110b565b565b600b5481565b5f6107cf826111ce565b9050919050565b5f6060805f805f60606107e7611214565b6107ef61124f565b46305f801b5f67ffffffffffffffff81111561080e5761080d6122e1565b5b60405190808252806020026020018201604052801561083c5781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b6060600480546108b8906121ba565b80601f01602080910402602001604051908101604052809291908181526020018280546108e4906121ba565b801561092f5780601f106109065761010080835404028352916020019161092f565b820191905f5260205f20905b81548152906001019060200180831161091257829003601f168201915b5050505050905090565b5f80610943610c29565b9050610950818585610dd9565b600191505092915050565b834211156109a057836040517f627913020000000000000000000000000000000000000000000000000000000081526004016109979190611d62565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886109ce8c61128a565b896040516020016109e49695949392919061230e565b6040516020818303038152906040528051906020012090505f610a06826112dd565b90505f610a15828787876112f6565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a8957808a6040517f4b800e46000000000000000000000000000000000000000000000000000000008152600401610a8092919061236d565b60405180910390fd5b610a948a8a8a610c30565b50505050505050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600d602052805f5260405f205f915054906101000a900460ff1681565b60095481565b610b4d611084565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bbd575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610bb49190611dda565b60405180910390fd5b610bc68161110b565b50565b610bd1611084565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f33905090565b610c3d8383836001611324565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cb2575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ca99190611dda565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d22575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d199190611dda565b60405180910390fd5b610d2d8383836114f3565b505050565b5f8183610d3f91906123c1565b905092915050565b5f610d528484610aa0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dd35781811015610dc4578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610dbb939291906123f4565b60405180910390fd5b610dd284848484035f611324565b5b50505050565b600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610e775750600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610fbd57600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610f175750600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610f3e57610f32600260095461170c90919063ffffffff16565b811015610f3d575f80fd5b5b5f610f676064610f59600b548561170c90919063ffffffff16565b61172190919063ffffffff16565b90505f610f7d8284610d3290919063ffffffff16565b9050610fab85600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610c42565b610fb6858583610c42565b5050610fc9565b610fc8838383610c42565b5b505050565b5f7f000000000000000000000000c323cfbbf2fb45355c9af4830dfe6c83dfcd240573ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561104957507f000000000000000000000000000000000000000000000000000000000000000146145b15611076577f12657e37d056a6efdbe4ff8c1e0429298339845f97fad8d38c4892c33258d6459050611081565b61107e611736565b90505b90565b61108c610c29565b73ffffffffffffffffffffffffffffffffffffffff166110aa61087b565b73ffffffffffffffffffffffffffffffffffffffff1614611109576110cd610c29565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111009190611dda565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b606061124a60057f43617446697368000000000000000000000000000000000000000000000000076117cb90919063ffffffff16565b905090565b606061128560067f31000000000000000000000000000000000000000000000000000000000000016117cb90919063ffffffff16565b905090565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190600101919050559050919050565b5f6112ef6112e9610fce565b83611878565b9050919050565b5f805f80611306888888886118b8565b925092509250611316828261199f565b829350505050949350505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611394575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161138b9190611dda565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611404575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113fb9190611dda565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156114ed578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114e49190611d62565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611543578060025f8282546115379190612429565b92505081905550611611565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156115cc578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016115c3939291906123f4565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611658578060025f82825403925050819055506116a2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116ff9190611d62565b60405180910390a3505050565b5f8183611719919061245c565b905092915050565b5f818361172e91906124ca565b905092915050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f801d0e9cc0f6ae524172758a8e338b59d2f21f7dd342777cf4e4ced172fe00e07fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc646306040516020016117b09594939291906124fa565b60405160208183030381529060405280519060200120905090565b606060ff5f1b83146117e7576117e083611b01565b9050611872565b8180546117f3906121ba565b80601f016020809104026020016040519081016040528092919081815260200182805461181f906121ba565b801561186a5780601f106118415761010080835404028352916020019161186a565b820191905f5260205f20905b81548152906001019060200180831161184d57829003601f168201915b505050505090505b92915050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c11156118f4575f600385925092509250611995565b5f6001888888886040515f8152602001604052604051611917949392919061254b565b6020604051602081039080840390855afa158015611937573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611988575f60015f801b93509350935050611995565b805f805f1b935093509350505b9450945094915050565b5f60038111156119b2576119b161258e565b5b8260038111156119c5576119c461258e565b5b0315611afd57600160038111156119df576119de61258e565b5b8260038111156119f2576119f161258e565b5b03611a29576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60026003811115611a3d57611a3c61258e565b5b826003811115611a5057611a4f61258e565b5b03611a9457805f1c6040517ffce698f7000000000000000000000000000000000000000000000000000000008152600401611a8b9190611d62565b60405180910390fd5b600380811115611aa757611aa661258e565b5b826003811115611aba57611ab961258e565b5b03611afc57806040517fd78bce0c000000000000000000000000000000000000000000000000000000008152600401611af39190611e3f565b60405180910390fd5b5b5050565b60605f611b0d83611b73565b90505f602067ffffffffffffffff811115611b2b57611b2a6122e1565b5b6040519080825280601f01601f191660200182016040528015611b5d5781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b5f8060ff835f1c169050601f811115611bb8576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611c0382611bc1565b611c0d8185611bcb565b9350611c1d818560208601611bdb565b611c2681611be9565b840191505092915050565b5f6020820190508181035f830152611c498184611bf9565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c7e82611c55565b9050919050565b611c8e81611c74565b8114611c98575f80fd5b50565b5f81359050611ca981611c85565b92915050565b5f819050919050565b611cc181611caf565b8114611ccb575f80fd5b50565b5f81359050611cdc81611cb8565b92915050565b5f8060408385031215611cf857611cf7611c51565b5b5f611d0585828601611c9b565b9250506020611d1685828601611cce565b9150509250929050565b5f8115159050919050565b611d3481611d20565b82525050565b5f602082019050611d4d5f830184611d2b565b92915050565b611d5c81611caf565b82525050565b5f602082019050611d755f830184611d53565b92915050565b5f805f60608486031215611d9257611d91611c51565b5b5f611d9f86828701611c9b565b9350506020611db086828701611c9b565b9250506040611dc186828701611cce565b9150509250925092565b611dd481611c74565b82525050565b5f602082019050611ded5f830184611dcb565b92915050565b5f60ff82169050919050565b611e0881611df3565b82525050565b5f602082019050611e215f830184611dff565b92915050565b5f819050919050565b611e3981611e27565b82525050565b5f602082019050611e525f830184611e30565b92915050565b5f60208284031215611e6d57611e6c611c51565b5b5f611e7a84828501611c9b565b91505092915050565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b611eb781611e83565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611eef81611caf565b82525050565b5f611f008383611ee6565b60208301905092915050565b5f602082019050919050565b5f611f2282611ebd565b611f2c8185611ec7565b9350611f3783611ed7565b805f5b83811015611f67578151611f4e8882611ef5565b9750611f5983611f0c565b925050600181019050611f3a565b5085935050505092915050565b5f60e082019050611f875f83018a611eae565b8181036020830152611f998189611bf9565b90508181036040830152611fad8188611bf9565b9050611fbc6060830187611d53565b611fc96080830186611dcb565b611fd660a0830185611e30565b81810360c0830152611fe88184611f18565b905098975050505050505050565b611fff81611df3565b8114612009575f80fd5b50565b5f8135905061201a81611ff6565b92915050565b61202981611e27565b8114612033575f80fd5b50565b5f8135905061204481612020565b92915050565b5f805f805f805f60e0888a03121561206557612064611c51565b5b5f6120728a828b01611c9b565b97505060206120838a828b01611c9b565b96505060406120948a828b01611cce565b95505060606120a58a828b01611cce565b94505060806120b68a828b0161200c565b93505060a06120c78a828b01612036565b92505060c06120d88a828b01612036565b91505092959891949750929550565b5f80604083850312156120fd576120fc611c51565b5b5f61210a85828601611c9b565b925050602061211b85828601611c9b565b9150509250929050565b61212e81611d20565b8114612138575f80fd5b50565b5f8135905061214981612125565b92915050565b5f806040838503121561216557612164611c51565b5b5f61217285828601611c9b565b92505060206121838582860161213b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806121d157607f821691505b6020821081036121e4576121e361218d565b5b50919050565b7f41697264726f7020616c726561647920636c61696d65640000000000000000005f82015250565b5f61221e601783611bcb565b9150612229826121ea565b602082019050919050565b5f6020820190508181035f83015261224b81612212565b9050919050565b7f41697264726f7020746f6b656e732065786861757374656400000000000000005f82015250565b5f612286601883611bcb565b915061229182612252565b602082019050919050565b5f6020820190508181035f8301526122b38161227a565b9050919050565b5f6040820190506122cd5f830185611dcb565b6122da6020830184611d53565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60c0820190506123215f830189611e30565b61232e6020830188611dcb565b61233b6040830187611dcb565b6123486060830186611d53565b6123556080830185611d53565b61236260a0830184611d53565b979650505050505050565b5f6040820190506123805f830185611dcb565b61238d6020830184611dcb565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6123cb82611caf565b91506123d683611caf565b92508282039050818111156123ee576123ed612394565b5b92915050565b5f6060820190506124075f830186611dcb565b6124146020830185611d53565b6124216040830184611d53565b949350505050565b5f61243382611caf565b915061243e83611caf565b925082820190508082111561245657612455612394565b5b92915050565b5f61246682611caf565b915061247183611caf565b925082820261247f81611caf565b9150828204841483151761249657612495612394565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6124d482611caf565b91506124df83611caf565b9250826124ef576124ee61249d565b5b828204905092915050565b5f60a08201905061250d5f830188611e30565b61251a6020830187611e30565b6125276040830186611e30565b6125346060830185611d53565b6125416080830184611dcb565b9695505050505050565b5f60808201905061255e5f830187611e30565b61256b6020830186611dff565b6125786040830185611e30565b6125856060830184611e30565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffdfea26469706673582212206ff976008a2ed4f26f924ae824396d51e5a8814cff4709b618173d53557fae5764736f6c63430008190033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000002fc0c174c03bfa3409b6362f84114900a2
-----Decoded View---------------
Arg [0] : _taxWallet (address): 0x0000002Fc0c174c03Bfa3409b6362F84114900A2
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000002fc0c174c03bfa3409b6362f84114900a2
Deployed Bytecode Sourcemap
89234:1966:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77140:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79433:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78242:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90812:385;;;:::i;:::-;;80201:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89452:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78093:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89001:114;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89534:40;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78404:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70753:103;;;:::i;:::-;;89423:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88743:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47265:580;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;70078:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89388:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77350:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78727:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87989:695;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78972:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89483:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89324:57;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71011:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90673:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77140:91;77185:13;77218:5;77211:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77140:91;:::o;79433:190::-;79506:4;79523:13;79539:12;:10;:12::i;:::-;79523:28;;79562:31;79571:5;79578:7;79587:5;79562:8;:31::i;:::-;79611:4;79604:11;;;79433:190;;;;:::o;78242:99::-;78294:7;78321:12;;78314:19;;78242:99;:::o;90812:385::-;90862:8;:20;90871:10;90862:20;;;;;;;;;;;;;;;;;;;;;;;;;90861:21;90853:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;90944:13;;90929:11;;:28;;90921:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;90997:49;91013:7;:5;:7::i;:::-;91022:10;91034:11;;90997:15;:49::i;:::-;91073:30;91091:11;;91073:13;;:17;;:30;;;;:::i;:::-;91057:13;:46;;;;91137:4;91114:8;:20;91123:10;91114:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;91157:32;91165:10;91177:11;;91157:32;;;;;;;:::i;:::-;;;;;;;;90812:385::o;80201:249::-;80288:4;80305:15;80323:12;:10;:12::i;:::-;80305:30;;80346:37;80362:4;80368:7;80377:5;80346:15;:37::i;:::-;80394:26;80404:4;80410:2;80414:5;80394:9;:26::i;:::-;80438:4;80431:11;;;80201:249;;;;;:::o;89452:24::-;;;;;;;;;;;;;:::o;78093:84::-;78142:5;78167:2;78160:9;;78093:84;:::o;89001:114::-;89060:7;89087:20;:18;:20::i;:::-;89080:27;;89001:114;:::o;89534:40::-;;;;;;;;;;;;;;;;;;;;;;:::o;78404:118::-;78469:7;78496:9;:18;78506:7;78496:18;;;;;;;;;;;;;;;;78489:25;;78404:118;;;:::o;70753:103::-;69964:13;:11;:13::i;:::-;70818:30:::1;70845:1;70818:18;:30::i;:::-;70753:103::o:0;89423:22::-;;;;:::o;88743:145::-;88834:7;88861:19;88874:5;88861:12;:19::i;:::-;88854:26;;88743:145;;;:::o;47265:580::-;47368:13;47396:18;47429:21;47465:15;47495:25;47535:12;47562:27;47670:13;:11;:13::i;:::-;47698:16;:14;:16::i;:::-;47729:13;47765:4;47793:1;47785:10;;47824:1;47810:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47617:220;;;;;;;;;;;;;;;;;;;;;47265:580;;;;;;;:::o;70078:87::-;70124:7;70151:6;;;;;;;;;;;70144:13;;70078:87;:::o;89388:28::-;;;;:::o;77350:95::-;77397:13;77430:7;77423:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77350:95;:::o;78727:182::-;78796:4;78813:13;78829:12;:10;:12::i;:::-;78813:28;;78852:27;78862:5;78869:2;78873:5;78852:9;:27::i;:::-;78897:4;78890:11;;;78727:182;;;;:::o;87989:695::-;88219:8;88201:15;:26;88197:99;;;88275:8;88251:33;;;;;;;;;;;:::i;:::-;;;;;;;;88197:99;88308:18;87309:95;88367:5;88374:7;88383:5;88390:16;88400:5;88390:9;:16::i;:::-;88408:8;88339:78;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;88329:89;;;;;;88308:110;;88431:12;88446:28;88463:10;88446:16;:28::i;:::-;88431:43;;88487:14;88504:28;88518:4;88524:1;88527;88530;88504:13;:28::i;:::-;88487:45;;88557:5;88547:15;;:6;:15;;;88543:90;;88607:6;88615:5;88586:35;;;;;;;;;;;;:::i;:::-;;;;;;;;88543:90;88645:31;88654:5;88661:7;88670:5;88645:8;:31::i;:::-;88186:498;;;87989:695;;;;;;;:::o;78972:142::-;79052:7;79079:11;:18;79091:5;79079:18;;;;;;;;;;;;;;;:27;79098:7;79079:27;;;;;;;;;;;;;;;;79072:34;;78972:142;;;;:::o;89483:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;89324:57::-;;;;:::o;71011:220::-;69964:13;:11;:13::i;:::-;71116:1:::1;71096:22;;:8;:22;;::::0;71092:93:::1;;71170:1;71142:31;;;;;;;;;;;:::i;:::-;;;;;;;;71092:93;71195:28;71214:8;71195:18;:28::i;:::-;71011:220:::0;:::o;90673:131::-;69964:13;:11;:13::i;:::-;90784:12:::1;90759;:22;90772:8;90759:22;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;90673:131:::0;;:::o;68087:98::-;68140:7;68167:10;68160:17;;68087:98;:::o;84268:130::-;84353:37;84362:5;84369:7;84378:5;84385:4;84353:8;:37::i;:::-;84268:130;;;:::o;80835:316::-;80943:1;80927:18;;:4;:18;;;80923:88;;80996:1;80969:30;;;;;;;;;;;:::i;:::-;;;;;;;;80923:88;81039:1;81025:16;;:2;:16;;;81021:88;;81094:1;81065:32;;;;;;;;;;;:::i;:::-;;;;;;;;81021:88;81119:24;81127:4;81133:2;81137:5;81119:7;:24::i;:::-;80835:316;;;:::o;3720:98::-;3778:7;3809:1;3805;:5;;;;:::i;:::-;3798:12;;3720:98;;;;:::o;85984:487::-;86084:24;86111:25;86121:5;86128:7;86111:9;:25::i;:::-;86084:52;;86171:17;86151:16;:37;86147:317;;86228:5;86209:16;:24;86205:132;;;86288:7;86297:16;86315:5;86261:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;86205:132;86380:57;86389:5;86396:7;86424:5;86405:16;:24;86431:5;86380:8;:57::i;:::-;86147:317;86073:398;85984:487;;;:::o;90044:621::-;90148:12;:20;90161:6;90148:20;;;;;;;;;;;;;;;;;;;;;;;;;90147:21;:49;;;;;90173:12;:23;90186:9;90173:23;;;;;;;;;;;;;;;;;;;;;;;;;90172:24;90147:49;90143:515;;;90216:8;:16;90225:6;90216:16;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;;90236:8;:19;90245:9;90236:19;;;;;;;;;;;;;;;;;;;;;;;;;90216:39;90213:116;;;90294:18;90310:1;90294:11;;:15;;:18;;;;:::i;:::-;90284:6;:28;;90276:37;;;;;;90213:116;90343:17;90363:28;90387:3;90363:19;90374:7;;90363:6;:10;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;90343:48;;90406:19;90428:21;90439:9;90428:6;:10;;:21;;;;:::i;:::-;90406:43;;90464:45;90480:6;90488:9;;;;;;;;;;;90499;90464:15;:45::i;:::-;90524:47;90540:6;90548:9;90559:11;90524:15;:47::i;:::-;90198:385;;90143:515;;;90604:42;90620:6;90628:9;90639:6;90604:15;:42::i;:::-;90143:515;90044:621;;;:::o;45932:268::-;45985:7;46026:11;46009:28;;46017:4;46009:28;;;:63;;;;;46058:14;46041:13;:31;46009:63;46005:188;;;46096:22;46089:29;;;;46005:188;46158:23;:21;:23::i;:::-;46151:30;;45932:268;;:::o;70243:166::-;70314:12;:10;:12::i;:::-;70303:23;;:7;:5;:7::i;:::-;:23;;;70299:103;;70377:12;:10;:12::i;:::-;70350:40;;;;;;;;;;;:::i;:::-;;;;;;;;70299:103;70243:166::o;71391:191::-;71465:16;71484:6;;;;;;;;;;;71465:25;;71510:8;71501:6;;:17;;;;;;;;;;;;;;;;;;71565:8;71534:40;;71555:8;71534:40;;;;;;;;;;;;71454:128;71391:191;:::o;7980:109::-;8040:7;8067;:14;8075:5;8067:14;;;;;;;;;;;;;;;;8060:21;;7980:109;;;:::o;48174:128::-;48220:13;48253:41;48280:13;48253:5;:26;;:41;;;;:::i;:::-;48246:48;;48174:128;:::o;48637:137::-;48686:13;48719:47;48749:16;48719:8;:29;;:47;;;;:::i;:::-;48712:54;;48637:137;:::o;8210:402::-;8270:7;8577;:14;8585:5;8577:14;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;8570:23;;8210:402;;;:::o;47031:178::-;47108:7;47135:66;47168:20;:18;:20::i;:::-;47190:10;47135:32;:66::i;:::-;47128:73;;47031:178;;;:::o;55771:264::-;55856:7;55877:17;55896:18;55916:16;55936:25;55947:4;55953:1;55956;55959;55936:10;:25::i;:::-;55876:85;;;;;;55972:28;55984:5;55991:8;55972:11;:28::i;:::-;56018:9;56011:16;;;;;55771:264;;;;;;:::o;85249:443::-;85379:1;85362:19;;:5;:19;;;85358:91;;85434:1;85405:32;;;;;;;;;;;:::i;:::-;;;;;;;;85358:91;85482:1;85463:21;;:7;:21;;;85459:92;;85536:1;85508:31;;;;;;;;;;;:::i;:::-;;;;;;;;85459:92;85591:5;85561:11;:18;85573:5;85561:18;;;;;;;;;;;;;;;:27;85580:7;85561:27;;;;;;;;;;;;;;;:35;;;;85611:9;85607:78;;;85658:7;85642:31;;85651:5;85642:31;;;85667:5;85642:31;;;;;;:::i;:::-;;;;;;;;85607:78;85249:443;;;;:::o;81475:1135::-;81581:1;81565:18;;:4;:18;;;81561:552;;81719:5;81703:12;;:21;;;;;;;:::i;:::-;;;;;;;;81561:552;;;81757:19;81779:9;:15;81789:4;81779:15;;;;;;;;;;;;;;;;81757:37;;81827:5;81813:11;:19;81809:117;;;81885:4;81891:11;81904:5;81860:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;81809:117;82081:5;82067:11;:19;82049:9;:15;82059:4;82049:15;;;;;;;;;;;;;;;:37;;;;81742:371;81561:552;82143:1;82129:16;;:2;:16;;;82125:435;;82311:5;82295:12;;:21;;;;;;;;;;;82125:435;;;82528:5;82511:9;:13;82521:2;82511:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;82125:435;82592:2;82577:25;;82586:4;82577:25;;;82596:5;82577:25;;;;;;:::i;:::-;;;;;;;;81475:1135;;;:::o;4077:98::-;4135:7;4166:1;4162;:5;;;;:::i;:::-;4155:12;;4077:98;;;;:::o;4476:::-;4534:7;4565:1;4561;:5;;;;:::i;:::-;4554:12;;4476:98;;;;:::o;46208:181::-;46263:7;44124:95;46322:11;46335:14;46351:13;46374:4;46300:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46290:91;;;;;;46283:98;;46208:181;:::o;17320:273::-;17414:13;15266:66;17473:17;;17463:5;17444:46;17440:146;;17514:15;17523:5;17514:8;:15::i;:::-;17507:22;;;;17440:146;17569:5;17562:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17320:273;;;;;:::o;41731:410::-;41824:14;41936:4;41930:11;41967:10;41962:3;41955:23;42015:15;42008:4;42003:3;41999:14;41992:39;42068:10;42061:4;42056:3;42052:14;42045:34;42118:4;42113:3;42103:20;42093:30;;41904:230;41731:410;;;;:::o;54076:1556::-;54207:7;54216:12;54230:7;55150:66;55145:1;55137:10;;:79;55133:166;;;55249:1;55253:30;55285:1;55233:54;;;;;;;;55133:166;55396:14;55413:24;55423:4;55429:1;55432;55435;55413:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55396:41;;55470:1;55452:20;;:6;:20;;;55448:115;;55505:1;55509:29;55548:1;55540:10;;55489:62;;;;;;;;;55448:115;55583:6;55591:20;55621:1;55613:10;;55575:49;;;;;;;54076:1556;;;;;;;;;:::o;56173:542::-;56269:20;56260:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;56256:452;56306:7;56256:452;56367:29;56358:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;56354:354;;56420:23;;;;;;;;;;;;;;56354:354;56474:35;56465:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;56461:247;;56569:8;56561:17;;56533:46;;;;;;;;;;;:::i;:::-;;;;;;;;56461:247;56610:30;56601:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;56597:111;;56687:8;56664:32;;;;;;;;;;;:::i;:::-;;;;;;;;56597:111;56173:542;;;:::o;15975:415::-;16034:13;16060:11;16074:16;16085:4;16074:10;:16::i;:::-;16060:30;;16180:17;16211:2;16200:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16180:34;;16305:3;16300;16293:16;16346:4;16339;16334:3;16330:14;16323:28;16379:3;16372:10;;;;15975:415;;;:::o;16467:251::-;16528:7;16548:14;16601:4;16592;16565:33;;:40;16548:57;;16629:2;16620:6;:11;16616:71;;;16655:20;;;;;;;;;;;;;;16616:71;16704:6;16697:13;;;16467:251;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:118::-;4403:24;4421:5;4403:24;:::i;:::-;4398:3;4391:37;4316:118;;:::o;4440:222::-;4533:4;4571:2;4560:9;4556:18;4548:26;;4584:71;4652:1;4641:9;4637:17;4628:6;4584:71;:::i;:::-;4440:222;;;;:::o;4668:86::-;4703:7;4743:4;4736:5;4732:16;4721:27;;4668:86;;;:::o;4760:112::-;4843:22;4859:5;4843:22;:::i;:::-;4838:3;4831:35;4760:112;;:::o;4878:214::-;4967:4;5005:2;4994:9;4990:18;4982:26;;5018:67;5082:1;5071:9;5067:17;5058:6;5018:67;:::i;:::-;4878:214;;;;:::o;5098:77::-;5135:7;5164:5;5153:16;;5098:77;;;:::o;5181:118::-;5268:24;5286:5;5268:24;:::i;:::-;5263:3;5256:37;5181:118;;:::o;5305:222::-;5398:4;5436:2;5425:9;5421:18;5413:26;;5449:71;5517:1;5506:9;5502:17;5493:6;5449:71;:::i;:::-;5305:222;;;;:::o;5533:329::-;5592:6;5641:2;5629:9;5620:7;5616:23;5612:32;5609:119;;;5647:79;;:::i;:::-;5609:119;5767:1;5792:53;5837:7;5828:6;5817:9;5813:22;5792:53;:::i;:::-;5782:63;;5738:117;5533:329;;;;:::o;5868:149::-;5904:7;5944:66;5937:5;5933:78;5922:89;;5868:149;;;:::o;6023:115::-;6108:23;6125:5;6108:23;:::i;:::-;6103:3;6096:36;6023:115;;:::o;6144:114::-;6211:6;6245:5;6239:12;6229:22;;6144:114;;;:::o;6264:184::-;6363:11;6397:6;6392:3;6385:19;6437:4;6432:3;6428:14;6413:29;;6264:184;;;;:::o;6454:132::-;6521:4;6544:3;6536:11;;6574:4;6569:3;6565:14;6557:22;;6454:132;;;:::o;6592:108::-;6669:24;6687:5;6669:24;:::i;:::-;6664:3;6657:37;6592:108;;:::o;6706:179::-;6775:10;6796:46;6838:3;6830:6;6796:46;:::i;:::-;6874:4;6869:3;6865:14;6851:28;;6706:179;;;;:::o;6891:113::-;6961:4;6993;6988:3;6984:14;6976:22;;6891:113;;;:::o;7040:732::-;7159:3;7188:54;7236:5;7188:54;:::i;:::-;7258:86;7337:6;7332:3;7258:86;:::i;:::-;7251:93;;7368:56;7418:5;7368:56;:::i;:::-;7447:7;7478:1;7463:284;7488:6;7485:1;7482:13;7463:284;;;7564:6;7558:13;7591:63;7650:3;7635:13;7591:63;:::i;:::-;7584:70;;7677:60;7730:6;7677:60;:::i;:::-;7667:70;;7523:224;7510:1;7507;7503:9;7498:14;;7463:284;;;7467:14;7763:3;7756:10;;7164:608;;;7040:732;;;;:::o;7778:1215::-;8127:4;8165:3;8154:9;8150:19;8142:27;;8179:69;8245:1;8234:9;8230:17;8221:6;8179:69;:::i;:::-;8295:9;8289:4;8285:20;8280:2;8269:9;8265:18;8258:48;8323:78;8396:4;8387:6;8323:78;:::i;:::-;8315:86;;8448:9;8442:4;8438:20;8433:2;8422:9;8418:18;8411:48;8476:78;8549:4;8540:6;8476:78;:::i;:::-;8468:86;;8564:72;8632:2;8621:9;8617:18;8608:6;8564:72;:::i;:::-;8646:73;8714:3;8703:9;8699:19;8690:6;8646:73;:::i;:::-;8729;8797:3;8786:9;8782:19;8773:6;8729:73;:::i;:::-;8850:9;8844:4;8840:20;8834:3;8823:9;8819:19;8812:49;8878:108;8981:4;8972:6;8878:108;:::i;:::-;8870:116;;7778:1215;;;;;;;;;;:::o;8999:118::-;9070:22;9086:5;9070:22;:::i;:::-;9063:5;9060:33;9050:61;;9107:1;9104;9097:12;9050:61;8999:118;:::o;9123:135::-;9167:5;9205:6;9192:20;9183:29;;9221:31;9246:5;9221:31;:::i;:::-;9123:135;;;;:::o;9264:122::-;9337:24;9355:5;9337:24;:::i;:::-;9330:5;9327:35;9317:63;;9376:1;9373;9366:12;9317:63;9264:122;:::o;9392:139::-;9438:5;9476:6;9463:20;9454:29;;9492:33;9519:5;9492:33;:::i;:::-;9392:139;;;;:::o;9537:1199::-;9648:6;9656;9664;9672;9680;9688;9696;9745:3;9733:9;9724:7;9720:23;9716:33;9713:120;;;9752:79;;:::i;:::-;9713:120;9872:1;9897:53;9942:7;9933:6;9922:9;9918:22;9897:53;:::i;:::-;9887:63;;9843:117;9999:2;10025:53;10070:7;10061:6;10050:9;10046:22;10025:53;:::i;:::-;10015:63;;9970:118;10127:2;10153:53;10198:7;10189:6;10178:9;10174:22;10153:53;:::i;:::-;10143:63;;10098:118;10255:2;10281:53;10326:7;10317:6;10306:9;10302:22;10281:53;:::i;:::-;10271:63;;10226:118;10383:3;10410:51;10453:7;10444:6;10433:9;10429:22;10410:51;:::i;:::-;10400:61;;10354:117;10510:3;10537:53;10582:7;10573:6;10562:9;10558:22;10537:53;:::i;:::-;10527:63;;10481:119;10639:3;10666:53;10711:7;10702:6;10691:9;10687:22;10666:53;:::i;:::-;10656:63;;10610:119;9537:1199;;;;;;;;;;:::o;10742:474::-;10810:6;10818;10867:2;10855:9;10846:7;10842:23;10838:32;10835:119;;;10873:79;;:::i;:::-;10835:119;10993:1;11018:53;11063:7;11054:6;11043:9;11039:22;11018:53;:::i;:::-;11008:63;;10964:117;11120:2;11146:53;11191:7;11182:6;11171:9;11167:22;11146:53;:::i;:::-;11136:63;;11091:118;10742:474;;;;;:::o;11222:116::-;11292:21;11307:5;11292:21;:::i;:::-;11285:5;11282:32;11272:60;;11328:1;11325;11318:12;11272:60;11222:116;:::o;11344:133::-;11387:5;11425:6;11412:20;11403:29;;11441:30;11465:5;11441:30;:::i;:::-;11344:133;;;;:::o;11483:468::-;11548:6;11556;11605:2;11593:9;11584:7;11580:23;11576:32;11573:119;;;11611:79;;:::i;:::-;11573:119;11731:1;11756:53;11801:7;11792:6;11781:9;11777:22;11756:53;:::i;:::-;11746:63;;11702:117;11858:2;11884:50;11926:7;11917:6;11906:9;11902:22;11884:50;:::i;:::-;11874:60;;11829:115;11483:468;;;;;:::o;11957:180::-;12005:77;12002:1;11995:88;12102:4;12099:1;12092:15;12126:4;12123:1;12116:15;12143:320;12187:6;12224:1;12218:4;12214:12;12204:22;;12271:1;12265:4;12261:12;12292:18;12282:81;;12348:4;12340:6;12336:17;12326:27;;12282:81;12410:2;12402:6;12399:14;12379:18;12376:38;12373:84;;12429:18;;:::i;:::-;12373:84;12194:269;12143:320;;;:::o;12469:173::-;12609:25;12605:1;12597:6;12593:14;12586:49;12469:173;:::o;12648:366::-;12790:3;12811:67;12875:2;12870:3;12811:67;:::i;:::-;12804:74;;12887:93;12976:3;12887:93;:::i;:::-;13005:2;13000:3;12996:12;12989:19;;12648:366;;;:::o;13020:419::-;13186:4;13224:2;13213:9;13209:18;13201:26;;13273:9;13267:4;13263:20;13259:1;13248:9;13244:17;13237:47;13301:131;13427:4;13301:131;:::i;:::-;13293:139;;13020:419;;;:::o;13445:174::-;13585:26;13581:1;13573:6;13569:14;13562:50;13445:174;:::o;13625:366::-;13767:3;13788:67;13852:2;13847:3;13788:67;:::i;:::-;13781:74;;13864:93;13953:3;13864:93;:::i;:::-;13982:2;13977:3;13973:12;13966:19;;13625:366;;;:::o;13997:419::-;14163:4;14201:2;14190:9;14186:18;14178:26;;14250:9;14244:4;14240:20;14236:1;14225:9;14221:17;14214:47;14278:131;14404:4;14278:131;:::i;:::-;14270:139;;13997:419;;;:::o;14422:332::-;14543:4;14581:2;14570:9;14566:18;14558:26;;14594:71;14662:1;14651:9;14647:17;14638:6;14594:71;:::i;:::-;14675:72;14743:2;14732:9;14728:18;14719:6;14675:72;:::i;:::-;14422:332;;;;;:::o;14760:180::-;14808:77;14805:1;14798:88;14905:4;14902:1;14895:15;14929:4;14926:1;14919:15;14946:775;15179:4;15217:3;15206:9;15202:19;15194:27;;15231:71;15299:1;15288:9;15284:17;15275:6;15231:71;:::i;:::-;15312:72;15380:2;15369:9;15365:18;15356:6;15312:72;:::i;:::-;15394;15462:2;15451:9;15447:18;15438:6;15394:72;:::i;:::-;15476;15544:2;15533:9;15529:18;15520:6;15476:72;:::i;:::-;15558:73;15626:3;15615:9;15611:19;15602:6;15558:73;:::i;:::-;15641;15709:3;15698:9;15694:19;15685:6;15641:73;:::i;:::-;14946:775;;;;;;;;;:::o;15727:332::-;15848:4;15886:2;15875:9;15871:18;15863:26;;15899:71;15967:1;15956:9;15952:17;15943:6;15899:71;:::i;:::-;15980:72;16048:2;16037:9;16033:18;16024:6;15980:72;:::i;:::-;15727:332;;;;;:::o;16065:180::-;16113:77;16110:1;16103:88;16210:4;16207:1;16200:15;16234:4;16231:1;16224:15;16251:194;16291:4;16311:20;16329:1;16311:20;:::i;:::-;16306:25;;16345:20;16363:1;16345:20;:::i;:::-;16340:25;;16389:1;16386;16382:9;16374:17;;16413:1;16407:4;16404:11;16401:37;;;16418:18;;:::i;:::-;16401:37;16251:194;;;;:::o;16451:442::-;16600:4;16638:2;16627:9;16623:18;16615:26;;16651:71;16719:1;16708:9;16704:17;16695:6;16651:71;:::i;:::-;16732:72;16800:2;16789:9;16785:18;16776:6;16732:72;:::i;:::-;16814;16882:2;16871:9;16867:18;16858:6;16814:72;:::i;:::-;16451:442;;;;;;:::o;16899:191::-;16939:3;16958:20;16976:1;16958:20;:::i;:::-;16953:25;;16992:20;17010:1;16992:20;:::i;:::-;16987:25;;17035:1;17032;17028:9;17021:16;;17056:3;17053:1;17050:10;17047:36;;;17063:18;;:::i;:::-;17047:36;16899:191;;;;:::o;17096:410::-;17136:7;17159:20;17177:1;17159:20;:::i;:::-;17154:25;;17193:20;17211:1;17193:20;:::i;:::-;17188:25;;17248:1;17245;17241:9;17270:30;17288:11;17270:30;:::i;:::-;17259:41;;17449:1;17440:7;17436:15;17433:1;17430:22;17410:1;17403:9;17383:83;17360:139;;17479:18;;:::i;:::-;17360:139;17144:362;17096:410;;;;:::o;17512:180::-;17560:77;17557:1;17550:88;17657:4;17654:1;17647:15;17681:4;17678:1;17671:15;17698:185;17738:1;17755:20;17773:1;17755:20;:::i;:::-;17750:25;;17789:20;17807:1;17789:20;:::i;:::-;17784:25;;17828:1;17818:35;;17833:18;;:::i;:::-;17818:35;17875:1;17872;17868:9;17863:14;;17698:185;;;;:::o;17889:664::-;18094:4;18132:3;18121:9;18117:19;18109:27;;18146:71;18214:1;18203:9;18199:17;18190:6;18146:71;:::i;:::-;18227:72;18295:2;18284:9;18280:18;18271:6;18227:72;:::i;:::-;18309;18377:2;18366:9;18362:18;18353:6;18309:72;:::i;:::-;18391;18459:2;18448:9;18444:18;18435:6;18391:72;:::i;:::-;18473:73;18541:3;18530:9;18526:19;18517:6;18473:73;:::i;:::-;17889:664;;;;;;;;:::o;18559:545::-;18732:4;18770:3;18759:9;18755:19;18747:27;;18784:71;18852:1;18841:9;18837:17;18828:6;18784:71;:::i;:::-;18865:68;18929:2;18918:9;18914:18;18905:6;18865:68;:::i;:::-;18943:72;19011:2;19000:9;18996:18;18987:6;18943:72;:::i;:::-;19025;19093:2;19082:9;19078:18;19069:6;19025:72;:::i;:::-;18559:545;;;;;;;:::o;19110:180::-;19158:77;19155:1;19148:88;19255:4;19252:1;19245:15;19279:4;19276:1;19269:15
Swarm Source
ipfs://6ff976008a2ed4f26f924ae824396d51e5a8814cff4709b618173d53557fae57
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.