More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 9 from a total of 9 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17841240 | 455 days ago | IN | 0 ETH | 0.00089136 | ||||
Approve | 17841237 | 455 days ago | IN | 0 ETH | 0.00072299 | ||||
Approve | 17841231 | 455 days ago | IN | 0 ETH | 0.00069582 | ||||
Renounce Ownersh... | 17841221 | 455 days ago | IN | 0 ETH | 0.00038264 | ||||
Approve | 17841220 | 455 days ago | IN | 0 ETH | 0.00088914 | ||||
Arun | 17841215 | 455 days ago | IN | 0 ETH | 0.01164572 | ||||
Transfer | 17841203 | 455 days ago | IN | 0 ETH | 0.00072714 | ||||
Init Pair | 17841160 | 455 days ago | IN | 0 ETH | 0.03639754 | ||||
0x60806040 | 17841139 | 455 days ago | IN | 0 ETH | 0.03024698 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
17841160 | 455 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
Token
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-04 */ /* * Twitter : https://twitter.com/XDogeeth * Telegram : https://t.me/xdogechatEN */ // File: IPancakePair.sol pragma solidity ^0.8.4; interface IPancakePair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File: ISwapFactory.sol pragma solidity ^0.8.4; interface ISwapFactory { function createPair(address tokenA, address tokenB) external returns (address pair); function getPair(address tokenA, address tokenB) external returns (address pair); } // File: ISwapRouter.sol pragma solidity ^0.8.4; interface ISwapRouter { function factoryV2() external pure returns (address); function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to ) external; function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/access/IAccessControl.sol // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // 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/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/AccessControl.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ```solidity * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ```solidity * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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 v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * 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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => 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 override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override 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 `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` 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. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: TOKEN\AutoBuyToken10.sol pragma solidity ^0.8.4; contract TokenDistributor { constructor (address token) { ERC20(token).approve(msg.sender, uint(~uint256(0))); } } contract Token is ERC20,Ownable,AccessControl { bytes32 private constant MANAGER_ROLE = keccak256("MANAGER_ROLE"); using SafeMath for uint256; ISwapRouter private uniswapV2Router; address public uniswapV2Pair; address public usdt; uint256 public startTradeBlock; address admin; address fundAddr; uint256 public fundCount; mapping(address => bool) private whiteList; TokenDistributor public _tokenDistributor; constructor()ERC20("XDoge", "XDoge") { admin=0x3305EBb71929dCC44d533b180113Ccb8Be9265FA; //admin=msg.sender; fundAddr=0x3305EBb71929dCC44d533b180113Ccb8Be9265FA; uint256 total=1000000000*10**decimals(); _mint(admin, total); _grantRole(DEFAULT_ADMIN_ROLE,admin); _grantRole(MANAGER_ROLE, admin); _grantRole(MANAGER_ROLE, address(this)); whiteList[admin] = true; whiteList[address(this)] = true; transferOwnership(admin); } function initPair(address _token,address _swap)external onlyRole(MANAGER_ROLE){ usdt=_token;//0xc6e88A94dcEA6f032d805D10558aCf67279f7b4E;//usdt test address swap=_swap;//0xD99D1c33F9fC3444f8101754aBC46c52416550D1;//bsc test uniswapV2Router = ISwapRouter(swap); uniswapV2Pair = ISwapFactory(uniswapV2Router.factory()).createPair(address(this), usdt); ERC20(usdt).approve(address(uniswapV2Router), type(uint256).max); _approve(address(this), address(uniswapV2Router),type(uint256).max); _approve(address(this), address(this),type(uint256).max); _approve(admin, address(uniswapV2Router),type(uint256).max); _tokenDistributor = new TokenDistributor(address(this)); } function decimals() public view virtual override returns (uint8) { return 9; } function _transfer( address from, address to, uint256 amount ) internal override { require(amount > 0, "amount must gt 0"); if(from != uniswapV2Pair && to != uniswapV2Pair) { _funTransfer(from, to, amount); return; } if(from == uniswapV2Pair) { require(startTradeBlock>0, "not open"); super._transfer(from, address(this), amount.mul(1).div(100)); fundCount+=amount.mul(1).div(100); super._transfer(from, to, amount.mul(99).div(100)); return; } if(to == uniswapV2Pair) { if(whiteList[from]){ super._transfer(from, to, amount); return; } super._transfer(from, address(this), amount.mul(1).div(100)); fundCount+=amount.mul(1).div(100); swapUsdt(fundCount+amount,fundAddr); fundCount=0; super._transfer(from, to, amount.mul(99).div(100)); return; } } function _funTransfer( address sender, address recipient, uint256 tAmount ) private { super._transfer(sender, recipient, tAmount); } bool private inSwap; modifier lockTheSwap { inSwap = true; _; inSwap = false; } function swapToken(uint256 tokenAmount,address to) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(usdt); path[1] = address(this); uint256 balance = IERC20(usdt).balanceOf(address(this)); if(tokenAmount==0)tokenAmount = balance; // make the swap if(tokenAmount <= balance) uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of CA path, address(to), block.timestamp ); } function swapTokenToDistributor(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(usdt); path[1] = address(this); uint256 balance = IERC20(usdt).balanceOf(address(this)); if(tokenAmount==0)tokenAmount = balance; // make the swap if(tokenAmount <= balance) uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of CA path, address(_tokenDistributor), block.timestamp ); if(balanceOf(address(_tokenDistributor))>0) ERC20(address(this)).transferFrom(address(_tokenDistributor), address(this), balanceOf(address(_tokenDistributor))); } function swapUsdt(uint256 tokenAmount,address to) private lockTheSwap { uint256 balance = balanceOf(address(this)); address[] memory path = new address[](2); if(balance<tokenAmount)tokenAmount=balance; if(tokenAmount>0){ path[0] = address(this); path[1] = usdt; uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp); } } function arun(address[] calldata adrs) public onlyRole(MANAGER_ROLE) { startTradeBlock = block.number; for(uint i=0;i<adrs.length;i++) swapToken((random(5,adrs[i])+1)*10**15+17*10**15,adrs[i]); } function random(uint number,address _addr) private view returns(uint) { return uint(keccak256(abi.encodePacked(block.timestamp,block.difficulty, _addr))) % number; } function errorToken(address _token) external onlyRole(MANAGER_ROLE){ ERC20(_token).transfer(msg.sender, IERC20(_token).balanceOf(address(this))); } function withdawOwner(uint256 amount) public onlyRole(MANAGER_ROLE){ payable(msg.sender).transfer(amount); } receive () external payable { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenDistributor","outputs":[{"internalType":"contract TokenDistributor","name":"","type":"address"}],"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"adrs","type":"address[]"}],"name":"arun","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"errorToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fundCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_swap","type":"address"}],"name":"initPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradeBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usdt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060408051808201825260058082526458446f676560d81b60208084018290528451808601909552918452908301529060036200004f8382620004ff565b5060046200005e8282620004ff565b5050506200007b62000075620001a460201b60201c565b620001a8565b600b8054733305ebb71929dcc44d533b180113ccb8be9265fa6001600160a01b03199182168117909255600c805490911690911790556000620000bc600990565b620000c990600a620006de565b620000d990633b9aca00620006f6565b600b54909150620000f4906001600160a01b031682620001fa565b600b546200010e906000906001600160a01b0316620002c2565b600b5462000136906000805160206200287b833981519152906001600160a01b0316620002c2565b620001516000805160206200287b83398151915230620002c2565b600b80546001600160a01b039081166000908152600e60205260408082208054600160ff199182168117909255308452919092208054909116909117905590546200019d91166200034c565b5062000726565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002565760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200026a919062000710565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b5050565b620002ce8282620003d0565b620002be5760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620003083390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b62000356620003fd565b6001600160a01b038116620003bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200024d565b620003c881620001a8565b50565b505050565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b6005546001600160a01b03163314620004595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200024d565b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200048657607f821691505b602082108103620004a757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003cb57600081815260208120601f850160051c81016020861015620004d65750805b601f850160051c820191505b81811015620004f757828155600101620004e2565b505050505050565b81516001600160401b038111156200051b576200051b6200045b565b62000533816200052c845462000471565b84620004ad565b602080601f8311600181146200056b5760008415620005525750858301515b600019600386901b1c1916600185901b178555620004f7565b600085815260208120601f198616915b828110156200059c578886015182559484019460019091019084016200057b565b5085821015620005bb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000622578160001904821115620006065762000606620005cb565b808516156200061457918102915b93841c9390800290620005e6565b509250929050565b6000826200063b57506001620003f7565b816200064a57506000620003f7565b81600181146200066357600281146200066e576200068e565b6001915050620003f7565b60ff841115620006825762000682620005cb565b50506001821b620003f7565b5060208310610133831016604e8410600b8410161715620006b3575081810a620003f7565b620006bf8383620005e1565b8060001904821115620006d657620006d6620005cb565b029392505050565b6000620006ef60ff8416836200062a565b9392505050565b8082028115828204841417620003f757620003f7620005cb565b80820180821115620003f757620003f7620005cb565b61214580620007366000396000f3fe608060405260043610620001f75760003560e01c80636f6579a3116200010b578063a217fddf11620000a1578063d547741f116200006c578063d547741f14620005c1578063d992744814620005e6578063dd62ed3e146200060b578063f2fde38b146200063057600080fd5b8063a217fddf146200053b578063a457c2d71462000552578063a9059cbb1462000577578063b43d0b30146200059c57600080fd5b80638718b24f11620000e25780638718b24f14620004bc5780638da5cb5b14620004de57806391d1485414620004fe57806395d89b41146200052357600080fd5b80636f6579a3146200044557806370a08231146200046a578063715018a614620004a457600080fd5b80632f2ff15d116200018d5780633950935111620001585780633950935114620003ce5780633f936ff514620003f357806349bd5a5e146200040b578063553193ca146200042d57600080fd5b80632f2ff15d146200032b5780632f48ab7d1462000350578063313ce567146200038b57806336568abe14620003a957600080fd5b806318160ddd11620001ce57806318160ddd146200028a5780631c6a0c4c14620002ab57806323b872dd14620002d2578063248a9ca314620002f757600080fd5b806301ffc9a7146200020457806306fdde03146200023e578063095ea7b3146200026557600080fd5b36620001ff57005b600080fd5b3480156200021157600080fd5b50620002296200022336600462001b0a565b62000655565b60405190151581526020015b60405180910390f35b3480156200024b57600080fd5b50620002566200068d565b60405162000235919062001b5c565b3480156200027257600080fd5b50620002296200028436600462001ba7565b62000727565b3480156200029757600080fd5b506002545b60405190815260200162000235565b348015620002b857600080fd5b50620002d0620002ca36600462001bd6565b62000741565b005b348015620002df57600080fd5b5062000229620002f136600462001bf0565b6200078f565b3480156200030457600080fd5b506200029c6200031636600462001bd6565b60009081526006602052604090206001015490565b3480156200033857600080fd5b50620002d06200034a36600462001c36565b620007b7565b3480156200035d57600080fd5b5060095462000372906001600160a01b031681565b6040516001600160a01b03909116815260200162000235565b3480156200039857600080fd5b506040516009815260200162000235565b348015620003b657600080fd5b50620002d0620003c836600462001c36565b620007e0565b348015620003db57600080fd5b5062000229620003ed36600462001ba7565b62000866565b3480156200040057600080fd5b506200029c600d5481565b3480156200041857600080fd5b5060085462000372906001600160a01b031681565b3480156200043a57600080fd5b506200029c600a5481565b3480156200045257600080fd5b50620002d06200046436600462001c69565b6200088e565b3480156200047757600080fd5b506200029c6200048936600462001c9c565b6001600160a01b031660009081526020819052604090205490565b348015620004b157600080fd5b50620002d062000af4565b348015620004c957600080fd5b50600f5462000372906001600160a01b031681565b348015620004eb57600080fd5b506005546001600160a01b031662000372565b3480156200050b57600080fd5b50620002296200051d36600462001c36565b62000b0c565b3480156200053057600080fd5b506200025662000b37565b3480156200054857600080fd5b506200029c600081565b3480156200055f57600080fd5b50620002296200057136600462001ba7565b62000b48565b3480156200058457600080fd5b50620002296200059636600462001ba7565b62000bc9565b348015620005a957600080fd5b50620002d0620005bb36600462001cbc565b62000bd9565b348015620005ce57600080fd5b50620002d0620005e036600462001c36565b62000cc0565b348015620005f357600080fd5b50620002d06200060536600462001c9c565b62000ce9565b3480156200061857600080fd5b506200029c6200062a36600462001c69565b62000deb565b3480156200063d57600080fd5b50620002d06200064f36600462001c9c565b62000e16565b60006001600160e01b03198216637965db0b60e01b14806200068757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546200069e9062001d36565b80601f0160208091040260200160405190810160405280929190818152602001828054620006cc9062001d36565b80156200071d5780601f10620006f1576101008083540402835291602001916200071d565b820191906000526020600020905b815481529060010190602001808311620006ff57829003601f168201915b5050505050905090565b6000336200073781858562000e95565b5060019392505050565b600080516020620020f08339815191526200075c8162000fbd565b604051339083156108fc029084906000818181858888f193505050501580156200078a573d6000803e3d6000fd5b505050565b6000336200079f85828562000fc9565b620007ac85858562001044565b506001949350505050565b600082815260066020526040902060010154620007d48162000fbd565b6200078a838362001259565b6001600160a01b0381163314620008565760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b620008628282620012e3565b5050565b600033620007378185856200087c838362000deb565b62000888919062001d88565b62000e95565b600080516020620020f0833981519152620008a98162000fbd565b600980546001600160a01b038086166001600160a01b0319928316179092556007805492851692909116821790556040805163c45a015560e01b8152905184929163c45a01559160048083019260209291908290030181865afa15801562000915573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200093b919062001d9e565b6009546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af11580156200098d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009b3919062001d9e565b600880546001600160a01b0319166001600160a01b0392831617905560095460075460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af115801562000a1e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a44919062001dbe565b5060075462000a619030906001600160a01b031660001962000e95565b62000a70303060001962000e95565b600b5460075462000a91916001600160a01b03908116911660001962000e95565b3060405162000aa09062001afc565b6001600160a01b039091168152602001604051809103906000f08015801562000acd573d6000803e3d6000fd5b50600f80546001600160a01b0319166001600160a01b039290921691909117905550505050565b62000afe6200134d565b62000b0a6000620013a9565b565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546200069e9062001d36565b6000338162000b58828662000deb565b90508381101562000bba5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016200084d565b620007ac828686840362000e95565b6000336200073781858562001044565b600080516020620020f083398151915262000bf48162000fbd565b43600a5560005b8281101562000cba5762000ca562000c40600586868581811062000c235762000c2362001de2565b905060200201602081019062000c3a919062001c9c565b620013fb565b62000c4d90600162001d88565b62000c609066038d7ea4c6800062001df8565b62000c7390663c6568f12e800062001d88565b85858481811062000c885762000c8862001de2565b905060200201602081019062000c9f919062001c9c565b62001463565b8062000cb18162001e12565b91505062000bfb565b50505050565b60008281526006602052604090206001015462000cdd8162000fbd565b6200078a8383620012e3565b600080516020620020f083398151915262000d048162000fbd565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90339083906370a0823190602401602060405180830381865afa15801562000d53573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d79919062001e2e565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801562000dc5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200078a919062001dbe565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b62000e206200134d565b6001600160a01b03811662000e875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200084d565b62000e9281620013a9565b50565b6001600160a01b03831662000ef95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200084d565b6001600160a01b03821662000f5c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200084d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b62000e9281336200160c565b600062000fd7848462000deb565b9050600019811462000cba5781811015620010355760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016200084d565b62000cba848484840362000e95565b60008111620010895760405162461bcd60e51b815260206004820152601060248201526f0616d6f756e74206d75737420677420360841b60448201526064016200084d565b6008546001600160a01b03848116911614801590620010b657506008546001600160a01b03838116911614155b15620010c9576200078a83838362001670565b6008546001600160a01b03908116908416036200118a576000600a54116200111f5760405162461bcd60e51b81526020600482015260086024820152673737ba1037b832b760c11b60448201526064016200084d565b6200114583306200113f6064620011388660016200167d565b906200168b565b62001699565b620011586064620011388360016200167d565b600d60008282546200116b919062001d88565b909155506200078a905083836200113f6064620011388660636200167d565b6008546001600160a01b03908116908316036200078a576001600160a01b0383166000908152600e602052604090205460ff1615620011d0576200078a83838362001699565b620011e983306200113f6064620011388660016200167d565b620011fc6064620011388360016200167d565b600d60008282546200120f919062001d88565b9091555050600d546200123b906200122990839062001d88565b600c546001600160a01b031662001844565b6000600d556200078a83836200113f6064620011388660636200167d565b62001265828262000b0c565b620008625760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200129f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b620012ef828262000b0c565b15620008625760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6005546001600160a01b0316331462000b0a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200084d565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000824244846040516020016200143793929190928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b6040516020818303038152906040528051906020012060001c6200145c919062001e5e565b9392505050565b600f805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337505060095482519293506001600160a01b031691839150600090620014ba57620014ba62001de2565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110620014f157620014f162001de2565b6001600160a01b0392831660209182029290920101526009546040516370a0823160e01b815230600482015260009291909116906370a0823190602401602060405180830381865afa1580156200154c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001572919062001e2e565b90508360000362001581578093505b808411620015f957600754604051635c11d79560e01b81526001600160a01b0390911690635c11d79590620015c490879060009087908990429060040162001e8b565b600060405180830381600087803b158015620015df57600080fd5b505af1158015620015f4573d6000803e3d6000fd5b505050505b5050600f805460ff60a01b191690555050565b62001618828262000b0c565b620008625762001628816200192f565b6200163583602062001942565b6040516020016200164892919062001efe565b60408051601f198184030181529082905262461bcd60e51b82526200084d9160040162001b5c565b6200078a83838362001699565b60006200145c828462001df8565b60006200145c828462001f77565b6001600160a01b038316620016ff5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016200084d565b6001600160a01b038216620017635760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016200084d565b6001600160a01b03831660009081526020819052604090205481811015620017dd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016200084d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a362000cba565b600f805460ff60a01b1916600160a01b179055306000908152602081815260408083205481516002808252606082018452919493909290830190803683370190505090508382101562001895578193505b8315620015f9573081600081518110620018b357620018b362001de2565b6001600160a01b039283166020918202929092010152600954825191169082906001908110620018e757620018e762001de2565b6001600160a01b039283166020918202929092010152600754604051635c11d79560e01b8152911690635c11d79590620015c490879060009086908990429060040162001e8b565b6060620006876001600160a01b03831660145b606060006200195383600262001df8565b6200196090600262001d88565b67ffffffffffffffff8111156200197b576200197b62001e75565b6040519080825280601f01601f191660200182016040528015620019a6576020820181803683370190505b509050600360fc1b81600081518110620019c457620019c462001de2565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110620019f657620019f662001de2565b60200101906001600160f81b031916908160001a905350600062001a1c84600262001df8565b62001a2990600162001d88565b90505b600181111562001aab576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811062001a615762001a6162001de2565b1a60f81b82828151811062001a7a5762001a7a62001de2565b60200101906001600160f81b031916908160001a90535060049490941c9362001aa38162001f8e565b905062001a2c565b5083156200145c5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016200084d565b6101478062001fa983390190565b60006020828403121562001b1d57600080fd5b81356001600160e01b0319811681146200145c57600080fd5b60005b8381101562001b5357818101518382015260200162001b39565b50506000910152565b602081526000825180602084015262001b7d81604085016020870162001b36565b601f01601f19169190910160400192915050565b6001600160a01b038116811462000e9257600080fd5b6000806040838503121562001bbb57600080fd5b823562001bc88162001b91565b946020939093013593505050565b60006020828403121562001be957600080fd5b5035919050565b60008060006060848603121562001c0657600080fd5b833562001c138162001b91565b9250602084013562001c258162001b91565b929592945050506040919091013590565b6000806040838503121562001c4a57600080fd5b82359150602083013562001c5e8162001b91565b809150509250929050565b6000806040838503121562001c7d57600080fd5b823562001c8a8162001b91565b9150602083013562001c5e8162001b91565b60006020828403121562001caf57600080fd5b81356200145c8162001b91565b6000806020838503121562001cd057600080fd5b823567ffffffffffffffff8082111562001ce957600080fd5b818501915085601f83011262001cfe57600080fd5b81358181111562001d0e57600080fd5b8660208260051b850101111562001d2457600080fd5b60209290920196919550909350505050565b600181811c9082168062001d4b57607f821691505b60208210810362001d6c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111562000687576200068762001d72565b60006020828403121562001db157600080fd5b81516200145c8162001b91565b60006020828403121562001dd157600080fd5b815180151581146200145c57600080fd5b634e487b7160e01b600052603260045260246000fd5b808202811582820484141762000687576200068762001d72565b60006001820162001e275762001e2762001d72565b5060010190565b60006020828403121562001e4157600080fd5b5051919050565b634e487b7160e01b600052601260045260246000fd5b60008262001e705762001e7062001e48565b500690565b634e487b7160e01b600052604160045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101562001edd5784516001600160a01b03168352938301939183019160010162001eb6565b50506001600160a01b03969096166060850152505050608001529392505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835162001f3881601785016020880162001b36565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835162001f6b81602884016020880162001b36565b01602801949350505050565b60008262001f895762001f8962001e48565b500490565b60008162001fa05762001fa062001d72565b50600019019056fe608060405234801561001057600080fd5b5060405161014738038061014783398101604081905261002f916100a8565b60405163095ea7b360e01b815233600482015260001960248201526001600160a01b0382169063095ea7b3906044016020604051808303816000875af115801561007d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100a191906100d8565b50506100fa565b6000602082840312156100ba57600080fd5b81516001600160a01b03811681146100d157600080fd5b9392505050565b6000602082840312156100ea57600080fd5b815180151581146100d157600080fd5b603f806101086000396000f3fe6080604052600080fdfea2646970667358221220b2f24ff2b7749535b75e3dc541854840a602d91991dcb253792ca7b3466b697964736f6c63430008110033241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08a2646970667358221220c8041a5496ff2b4853c1fd11f98ac833d8daba88aff9b0311421c35a117822e064736f6c63430008110033241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08
Deployed Bytecode
0x608060405260043610620001f75760003560e01c80636f6579a3116200010b578063a217fddf11620000a1578063d547741f116200006c578063d547741f14620005c1578063d992744814620005e6578063dd62ed3e146200060b578063f2fde38b146200063057600080fd5b8063a217fddf146200053b578063a457c2d71462000552578063a9059cbb1462000577578063b43d0b30146200059c57600080fd5b80638718b24f11620000e25780638718b24f14620004bc5780638da5cb5b14620004de57806391d1485414620004fe57806395d89b41146200052357600080fd5b80636f6579a3146200044557806370a08231146200046a578063715018a614620004a457600080fd5b80632f2ff15d116200018d5780633950935111620001585780633950935114620003ce5780633f936ff514620003f357806349bd5a5e146200040b578063553193ca146200042d57600080fd5b80632f2ff15d146200032b5780632f48ab7d1462000350578063313ce567146200038b57806336568abe14620003a957600080fd5b806318160ddd11620001ce57806318160ddd146200028a5780631c6a0c4c14620002ab57806323b872dd14620002d2578063248a9ca314620002f757600080fd5b806301ffc9a7146200020457806306fdde03146200023e578063095ea7b3146200026557600080fd5b36620001ff57005b600080fd5b3480156200021157600080fd5b50620002296200022336600462001b0a565b62000655565b60405190151581526020015b60405180910390f35b3480156200024b57600080fd5b50620002566200068d565b60405162000235919062001b5c565b3480156200027257600080fd5b50620002296200028436600462001ba7565b62000727565b3480156200029757600080fd5b506002545b60405190815260200162000235565b348015620002b857600080fd5b50620002d0620002ca36600462001bd6565b62000741565b005b348015620002df57600080fd5b5062000229620002f136600462001bf0565b6200078f565b3480156200030457600080fd5b506200029c6200031636600462001bd6565b60009081526006602052604090206001015490565b3480156200033857600080fd5b50620002d06200034a36600462001c36565b620007b7565b3480156200035d57600080fd5b5060095462000372906001600160a01b031681565b6040516001600160a01b03909116815260200162000235565b3480156200039857600080fd5b506040516009815260200162000235565b348015620003b657600080fd5b50620002d0620003c836600462001c36565b620007e0565b348015620003db57600080fd5b5062000229620003ed36600462001ba7565b62000866565b3480156200040057600080fd5b506200029c600d5481565b3480156200041857600080fd5b5060085462000372906001600160a01b031681565b3480156200043a57600080fd5b506200029c600a5481565b3480156200045257600080fd5b50620002d06200046436600462001c69565b6200088e565b3480156200047757600080fd5b506200029c6200048936600462001c9c565b6001600160a01b031660009081526020819052604090205490565b348015620004b157600080fd5b50620002d062000af4565b348015620004c957600080fd5b50600f5462000372906001600160a01b031681565b348015620004eb57600080fd5b506005546001600160a01b031662000372565b3480156200050b57600080fd5b50620002296200051d36600462001c36565b62000b0c565b3480156200053057600080fd5b506200025662000b37565b3480156200054857600080fd5b506200029c600081565b3480156200055f57600080fd5b50620002296200057136600462001ba7565b62000b48565b3480156200058457600080fd5b50620002296200059636600462001ba7565b62000bc9565b348015620005a957600080fd5b50620002d0620005bb36600462001cbc565b62000bd9565b348015620005ce57600080fd5b50620002d0620005e036600462001c36565b62000cc0565b348015620005f357600080fd5b50620002d06200060536600462001c9c565b62000ce9565b3480156200061857600080fd5b506200029c6200062a36600462001c69565b62000deb565b3480156200063d57600080fd5b50620002d06200064f36600462001c9c565b62000e16565b60006001600160e01b03198216637965db0b60e01b14806200068757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546200069e9062001d36565b80601f0160208091040260200160405190810160405280929190818152602001828054620006cc9062001d36565b80156200071d5780601f10620006f1576101008083540402835291602001916200071d565b820191906000526020600020905b815481529060010190602001808311620006ff57829003601f168201915b5050505050905090565b6000336200073781858562000e95565b5060019392505050565b600080516020620020f08339815191526200075c8162000fbd565b604051339083156108fc029084906000818181858888f193505050501580156200078a573d6000803e3d6000fd5b505050565b6000336200079f85828562000fc9565b620007ac85858562001044565b506001949350505050565b600082815260066020526040902060010154620007d48162000fbd565b6200078a838362001259565b6001600160a01b0381163314620008565760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b620008628282620012e3565b5050565b600033620007378185856200087c838362000deb565b62000888919062001d88565b62000e95565b600080516020620020f0833981519152620008a98162000fbd565b600980546001600160a01b038086166001600160a01b0319928316179092556007805492851692909116821790556040805163c45a015560e01b8152905184929163c45a01559160048083019260209291908290030181865afa15801562000915573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200093b919062001d9e565b6009546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af11580156200098d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009b3919062001d9e565b600880546001600160a01b0319166001600160a01b0392831617905560095460075460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af115801562000a1e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a44919062001dbe565b5060075462000a619030906001600160a01b031660001962000e95565b62000a70303060001962000e95565b600b5460075462000a91916001600160a01b03908116911660001962000e95565b3060405162000aa09062001afc565b6001600160a01b039091168152602001604051809103906000f08015801562000acd573d6000803e3d6000fd5b50600f80546001600160a01b0319166001600160a01b039290921691909117905550505050565b62000afe6200134d565b62000b0a6000620013a9565b565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546200069e9062001d36565b6000338162000b58828662000deb565b90508381101562000bba5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016200084d565b620007ac828686840362000e95565b6000336200073781858562001044565b600080516020620020f083398151915262000bf48162000fbd565b43600a5560005b8281101562000cba5762000ca562000c40600586868581811062000c235762000c2362001de2565b905060200201602081019062000c3a919062001c9c565b620013fb565b62000c4d90600162001d88565b62000c609066038d7ea4c6800062001df8565b62000c7390663c6568f12e800062001d88565b85858481811062000c885762000c8862001de2565b905060200201602081019062000c9f919062001c9c565b62001463565b8062000cb18162001e12565b91505062000bfb565b50505050565b60008281526006602052604090206001015462000cdd8162000fbd565b6200078a8383620012e3565b600080516020620020f083398151915262000d048162000fbd565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90339083906370a0823190602401602060405180830381865afa15801562000d53573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d79919062001e2e565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801562000dc5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200078a919062001dbe565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b62000e206200134d565b6001600160a01b03811662000e875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200084d565b62000e9281620013a9565b50565b6001600160a01b03831662000ef95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200084d565b6001600160a01b03821662000f5c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200084d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b62000e9281336200160c565b600062000fd7848462000deb565b9050600019811462000cba5781811015620010355760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016200084d565b62000cba848484840362000e95565b60008111620010895760405162461bcd60e51b815260206004820152601060248201526f0616d6f756e74206d75737420677420360841b60448201526064016200084d565b6008546001600160a01b03848116911614801590620010b657506008546001600160a01b03838116911614155b15620010c9576200078a83838362001670565b6008546001600160a01b03908116908416036200118a576000600a54116200111f5760405162461bcd60e51b81526020600482015260086024820152673737ba1037b832b760c11b60448201526064016200084d565b6200114583306200113f6064620011388660016200167d565b906200168b565b62001699565b620011586064620011388360016200167d565b600d60008282546200116b919062001d88565b909155506200078a905083836200113f6064620011388660636200167d565b6008546001600160a01b03908116908316036200078a576001600160a01b0383166000908152600e602052604090205460ff1615620011d0576200078a83838362001699565b620011e983306200113f6064620011388660016200167d565b620011fc6064620011388360016200167d565b600d60008282546200120f919062001d88565b9091555050600d546200123b906200122990839062001d88565b600c546001600160a01b031662001844565b6000600d556200078a83836200113f6064620011388660636200167d565b62001265828262000b0c565b620008625760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200129f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b620012ef828262000b0c565b15620008625760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6005546001600160a01b0316331462000b0a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200084d565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000824244846040516020016200143793929190928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b6040516020818303038152906040528051906020012060001c6200145c919062001e5e565b9392505050565b600f805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337505060095482519293506001600160a01b031691839150600090620014ba57620014ba62001de2565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110620014f157620014f162001de2565b6001600160a01b0392831660209182029290920101526009546040516370a0823160e01b815230600482015260009291909116906370a0823190602401602060405180830381865afa1580156200154c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001572919062001e2e565b90508360000362001581578093505b808411620015f957600754604051635c11d79560e01b81526001600160a01b0390911690635c11d79590620015c490879060009087908990429060040162001e8b565b600060405180830381600087803b158015620015df57600080fd5b505af1158015620015f4573d6000803e3d6000fd5b505050505b5050600f805460ff60a01b191690555050565b62001618828262000b0c565b620008625762001628816200192f565b6200163583602062001942565b6040516020016200164892919062001efe565b60408051601f198184030181529082905262461bcd60e51b82526200084d9160040162001b5c565b6200078a83838362001699565b60006200145c828462001df8565b60006200145c828462001f77565b6001600160a01b038316620016ff5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016200084d565b6001600160a01b038216620017635760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016200084d565b6001600160a01b03831660009081526020819052604090205481811015620017dd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016200084d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a362000cba565b600f805460ff60a01b1916600160a01b179055306000908152602081815260408083205481516002808252606082018452919493909290830190803683370190505090508382101562001895578193505b8315620015f9573081600081518110620018b357620018b362001de2565b6001600160a01b039283166020918202929092010152600954825191169082906001908110620018e757620018e762001de2565b6001600160a01b039283166020918202929092010152600754604051635c11d79560e01b8152911690635c11d79590620015c490879060009086908990429060040162001e8b565b6060620006876001600160a01b03831660145b606060006200195383600262001df8565b6200196090600262001d88565b67ffffffffffffffff8111156200197b576200197b62001e75565b6040519080825280601f01601f191660200182016040528015620019a6576020820181803683370190505b509050600360fc1b81600081518110620019c457620019c462001de2565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110620019f657620019f662001de2565b60200101906001600160f81b031916908160001a905350600062001a1c84600262001df8565b62001a2990600162001d88565b90505b600181111562001aab576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811062001a615762001a6162001de2565b1a60f81b82828151811062001a7a5762001a7a62001de2565b60200101906001600160f81b031916908160001a90535060049490941c9362001aa38162001f8e565b905062001a2c565b5083156200145c5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016200084d565b6101478062001fa983390190565b60006020828403121562001b1d57600080fd5b81356001600160e01b0319811681146200145c57600080fd5b60005b8381101562001b5357818101518382015260200162001b39565b50506000910152565b602081526000825180602084015262001b7d81604085016020870162001b36565b601f01601f19169190910160400192915050565b6001600160a01b038116811462000e9257600080fd5b6000806040838503121562001bbb57600080fd5b823562001bc88162001b91565b946020939093013593505050565b60006020828403121562001be957600080fd5b5035919050565b60008060006060848603121562001c0657600080fd5b833562001c138162001b91565b9250602084013562001c258162001b91565b929592945050506040919091013590565b6000806040838503121562001c4a57600080fd5b82359150602083013562001c5e8162001b91565b809150509250929050565b6000806040838503121562001c7d57600080fd5b823562001c8a8162001b91565b9150602083013562001c5e8162001b91565b60006020828403121562001caf57600080fd5b81356200145c8162001b91565b6000806020838503121562001cd057600080fd5b823567ffffffffffffffff8082111562001ce957600080fd5b818501915085601f83011262001cfe57600080fd5b81358181111562001d0e57600080fd5b8660208260051b850101111562001d2457600080fd5b60209290920196919550909350505050565b600181811c9082168062001d4b57607f821691505b60208210810362001d6c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111562000687576200068762001d72565b60006020828403121562001db157600080fd5b81516200145c8162001b91565b60006020828403121562001dd157600080fd5b815180151581146200145c57600080fd5b634e487b7160e01b600052603260045260246000fd5b808202811582820484141762000687576200068762001d72565b60006001820162001e275762001e2762001d72565b5060010190565b60006020828403121562001e4157600080fd5b5051919050565b634e487b7160e01b600052601260045260246000fd5b60008262001e705762001e7062001e48565b500690565b634e487b7160e01b600052604160045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101562001edd5784516001600160a01b03168352938301939183019160010162001eb6565b50506001600160a01b03969096166060850152505050608001529392505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835162001f3881601785016020880162001b36565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835162001f6b81602884016020880162001b36565b01602801949350505050565b60008262001f895762001f8962001e48565b500490565b60008162001fa05762001fa062001d72565b50600019019056fe608060405234801561001057600080fd5b5060405161014738038061014783398101604081905261002f916100a8565b60405163095ea7b360e01b815233600482015260001960248201526001600160a01b0382169063095ea7b3906044016020604051808303816000875af115801561007d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100a191906100d8565b50506100fa565b6000602082840312156100ba57600080fd5b81516001600160a01b03811681146100d157600080fd5b9392505050565b6000602082840312156100ea57600080fd5b815180151581146100d157600080fd5b603f806101086000396000f3fe6080604052600080fdfea2646970667358221220b2f24ff2b7749535b75e3dc541854840a602d91991dcb253792ca7b3466b697964736f6c63430008110033241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08a2646970667358221220c8041a5496ff2b4853c1fd11f98ac833d8daba88aff9b0311421c35a117822e064736f6c63430008110033
Deployed Bytecode Sourcemap
63026:5934:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37725:204;;;;;;;;;;-1:-1:-1;37725:204:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;37725:204:0;;;;;;;;51815:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54175:201::-;;;;;;;;;;-1:-1:-1;54175:201:0;;;;;:::i;:::-;;:::i;52944:108::-;;;;;;;;;;-1:-1:-1;53032:12:0;;52944:108;;;1755:25:1;;;1743:2;1728:18;52944:108:0;1609:177:1;68792:122:0;;;;;;;;;;-1:-1:-1;68792:122:0;;;;;:::i;:::-;;:::i;:::-;;54956:261;;;;;;;;;;-1:-1:-1;54956:261:0;;;;;:::i;:::-;;:::i;39548:131::-;;;;;;;;;;-1:-1:-1;39548:131:0;;;;;:::i;:::-;39622:7;39649:12;;;:6;:12;;;;;:22;;;;39548:131;39989:147;;;;;;;;;;-1:-1:-1;39989:147:0;;;;;:::i;:::-;;:::i;63261:19::-;;;;;;;;;;-1:-1:-1;63261:19:0;;;;-1:-1:-1;;;;;63261:19:0;;;;;;-1:-1:-1;;;;;3288:32:1;;;3270:51;;3258:2;3243:18;63261:19:0;3124:203:1;64786:92:0;;;;;;;;;;-1:-1:-1;64786:92:0;;64869:1;3474:36:1;;3462:2;3447:18;64786:92:0;3332:184:1;41133:218:0;;;;;;;;;;-1:-1:-1;41133:218:0;;;;;:::i;:::-;;:::i;55626:238::-;;;;;;;;;;-1:-1:-1;55626:238:0;;;;;:::i;:::-;;:::i;63367:24::-;;;;;;;;;;;;;;;;63226:28;;;;;;;;;;-1:-1:-1;63226:28:0;;;;-1:-1:-1;;;;;63226:28:0;;;63287:30;;;;;;;;;;;;;;;;64032:748;;;;;;;;;;-1:-1:-1;64032:748:0;;;;;:::i;:::-;;:::i;53115:127::-;;;;;;;;;;-1:-1:-1;53115:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;53216:18:0;53189:7;53216:18;;;;;;;;;;;;53115:127;45270:103;;;;;;;;;;;;;:::i;63447:41::-;;;;;;;;;;-1:-1:-1;63447:41:0;;;;-1:-1:-1;;;;;63447:41:0;;;44629:87;;;;;;;;;;-1:-1:-1;44702:6:0;;-1:-1:-1;;;;;44702:6:0;44629:87;;38021:147;;;;;;;;;;-1:-1:-1;38021:147:0;;;;;:::i;:::-;;:::i;52034:104::-;;;;;;;;;;;;;:::i;37126:49::-;;;;;;;;;;-1:-1:-1;37126:49:0;37171:4;37126:49;;56367:436;;;;;;;;;;-1:-1:-1;56367:436:0;;;;;:::i;:::-;;:::i;53448:193::-;;;;;;;;;;-1:-1:-1;53448:193:0;;;;;:::i;:::-;;:::i;68194:231::-;;;;;;;;;;-1:-1:-1;68194:231:0;;;;;:::i;:::-;;:::i;40429:149::-;;;;;;;;;;-1:-1:-1;40429:149:0;;;;;:::i;:::-;;:::i;68619:161::-;;;;;;;;;;-1:-1:-1;68619:161:0;;;;;:::i;:::-;;:::i;53704:151::-;;;;;;;;;;-1:-1:-1;53704:151:0;;;;;:::i;:::-;;:::i;45528:201::-;;;;;;;;;;-1:-1:-1;45528:201:0;;;;;:::i;:::-;;:::i;37725:204::-;37810:4;-1:-1:-1;;;;;;37834:47:0;;-1:-1:-1;;;37834:47:0;;:87;;-1:-1:-1;;;;;;;;;;6771:40:0;;;37885:36;37827:94;37725:204;-1:-1:-1;;37725:204:0:o;51815:100::-;51869:13;51902:5;51895:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51815:100;:::o;54175:201::-;54258:4;34887:10;54314:32;34887:10;54330:7;54339:6;54314:8;:32::i;:::-;-1:-1:-1;54364:4:0;;54175:201;-1:-1:-1;;;54175:201:0:o;68792:122::-;-1:-1:-1;;;;;;;;;;;37617:16:0;37628:4;37617:10;:16::i;:::-;68870:36:::1;::::0;68878:10:::1;::::0;68870:36;::::1;;;::::0;68899:6;;68870:36:::1;::::0;;;68899:6;68878:10;68870:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;68792:122:::0;;:::o;54956:261::-;55053:4;34887:10;55111:38;55127:4;34887:10;55142:6;55111:15;:38::i;:::-;55160:27;55170:4;55176:2;55180:6;55160:9;:27::i;:::-;-1:-1:-1;55205:4:0;;54956:261;-1:-1:-1;;;;54956:261:0:o;39989:147::-;39622:7;39649:12;;;:6;:12;;;;;:22;;;37617:16;37628:4;37617:10;:16::i;:::-;40103:25:::1;40114:4;40120:7;40103:10;:25::i;41133:218::-:0;-1:-1:-1;;;;;41229:23:0;;34887:10;41229:23;41221:83;;;;-1:-1:-1;;;41221:83:0;;5606:2:1;41221:83:0;;;5588:21:1;5645:2;5625:18;;;5618:30;5684:34;5664:18;;;5657:62;-1:-1:-1;;;5735:18:1;;;5728:45;5790:19;;41221:83:0;;;;;;;;;41317:26;41329:4;41335:7;41317:11;:26::i;:::-;41133:218;;:::o;55626:238::-;55714:4;34887:10;55770:64;34887:10;55786:7;55823:10;55795:25;34887:10;55786:7;55795:9;:25::i;:::-;:38;;;;:::i;:::-;55770:8;:64::i;64032:748::-;-1:-1:-1;;;;;;;;;;;37617:16:0;37628:4;37617:10;:16::i;:::-;64121:4:::1;:11:::0;;-1:-1:-1;;;;;64121:11:0;;::::1;-1:-1:-1::0;;;;;;64121:11:0;;::::1;;::::0;;;64283:15:::1;:35:::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;64358:25:::1;::::0;;-1:-1:-1;;;64358:25:0;;;;64212:5;;64283:35;64358:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;64283:35;64358:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64411:4;::::0;64345:71:::1;::::0;-1:-1:-1;;;64345:71:0;;64404:4:::1;64345:71;::::0;::::1;6550:34:1::0;-1:-1:-1;;;;;64411:4:0;;::::1;6600:18:1::0;;;6593:43;64345:50:0;::::1;::::0;::::1;::::0;6485:18:1;;64345:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64329:13;:87:::0;;-1:-1:-1;;;;;;64329:87:0::1;-1:-1:-1::0;;;;;64329:87:0;;::::1;;::::0;;64433:4:::1;::::0;64455:15:::1;::::0;64427:64:::1;::::0;-1:-1:-1;;;64427:64:0;;64455:15;;::::1;64427:64;::::0;::::1;6821:51:1::0;-1:-1:-1;;6888:18:1;;;6881:34;64433:4:0;::::1;::::0;64427:19:::1;::::0;6794:18:1;;64427:64:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;64534:15:0::1;::::0;64502:67:::1;::::0;64519:4:::1;::::0;-1:-1:-1;;;;;64534:15:0::1;-1:-1:-1::0;;64502:8:0::1;:67::i;:::-;64580:56;64597:4;64612;-1:-1:-1::0;;64580:8:0::1;:56::i;:::-;64656:5;::::0;64671:15:::1;::::0;64647:59:::1;::::0;-1:-1:-1;;;;;64656:5:0;;::::1;::::0;64671:15:::1;-1:-1:-1::0;;64647:8:0::1;:59::i;:::-;64766:4;64737:35;;;;;:::i;:::-;-1:-1:-1::0;;;;;3288:32:1;;;3270:51;;3258:2;3243:18;64737:35:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;64717:17:0::1;:55:::0;;-1:-1:-1;;;;;;64717:55:0::1;-1:-1:-1::0;;;;;64717:55:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;;64032:748:0:o;45270:103::-;44515:13;:11;:13::i;:::-;45335:30:::1;45362:1;45335:18;:30::i;:::-;45270:103::o:0;38021:147::-;38107:4;38131:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;38131:29:0;;;;;;;;;;;;;;;38021:147::o;52034:104::-;52090:13;52123:7;52116:14;;;;;:::i;56367:436::-;56460:4;34887:10;56460:4;56543:25;34887:10;56560:7;56543:9;:25::i;:::-;56516:52;;56607:15;56587:16;:35;;56579:85;;;;-1:-1:-1;;;56579:85:0;;7410:2:1;56579:85:0;;;7392:21:1;7449:2;7429:18;;;7422:30;7488:34;7468:18;;;7461:62;-1:-1:-1;;;7539:18:1;;;7532:35;7584:19;;56579:85:0;7208:401:1;56579:85:0;56700:60;56709:5;56716:7;56744:15;56725:16;:34;56700:8;:60::i;53448:193::-;53527:4;34887:10;53583:28;34887:10;53600:2;53604:6;53583:9;:28::i;68194:231::-;-1:-1:-1;;;;;;;;;;;37617:16:0;37628:4;37617:10;:16::i;:::-;68292:12:::1;68274:15;:30:::0;68319:6:::1;68315:102;68328:13:::0;;::::1;68315:102;;;68360:57;68371:17;68378:1;68380:4;;68385:1;68380:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;68371:6;:17::i;:::-;:19;::::0;68389:1:::1;68371:19;:::i;:::-;68370:28;::::0;68392:6:::1;68370:28;:::i;:::-;:38;::::0;68399:9:::1;68370:38;:::i;:::-;68409:4;;68414:1;68409:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;68360:9;:57::i;:::-;68342:3:::0;::::1;::::0;::::1;:::i;:::-;;;;68315:102;;;;68194:231:::0;;;:::o;40429:149::-;39622:7;39649:12;;;:6;:12;;;;;:22;;;37617:16;37628:4;37617:10;:16::i;:::-;40544:26:::1;40556:4;40562:7;40544:11;:26::i;68619:161::-:0;-1:-1:-1;;;;;;;;;;;37617:16:0;37628:4;37617:10;:16::i;:::-;68732:39:::1;::::0;-1:-1:-1;;;68732:39:0;;68765:4:::1;68732:39;::::0;::::1;3270:51:1::0;-1:-1:-1;;;;;68697:22:0;::::1;::::0;::::1;::::0;68720:10:::1;::::0;68697:22;;68732:24:::1;::::0;3243:18:1;;68732:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68697:75;::::0;-1:-1:-1;;;;;;68697:75:0::1;::::0;;;;;;-1:-1:-1;;;;;6839:32:1;;;68697:75:0::1;::::0;::::1;6821:51:1::0;6888:18;;;6881:34;6794:18;;68697:75:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;53704:151::-:0;-1:-1:-1;;;;;53820:18:0;;;53793:7;53820:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;53704:151::o;45528:201::-;44515:13;:11;:13::i;:::-;-1:-1:-1;;;;;45617:22:0;::::1;45609:73;;;::::0;-1:-1:-1;;;45609:73:0;;8450:2:1;45609:73:0::1;::::0;::::1;8432:21:1::0;8489:2;8469:18;;;8462:30;8528:34;8508:18;;;8501:62;-1:-1:-1;;;8579:18:1;;;8572:36;8625:19;;45609:73:0::1;8248:402:1::0;45609:73:0::1;45693:28;45712:8;45693:18;:28::i;:::-;45528:201:::0;:::o;60360:346::-;-1:-1:-1;;;;;60462:19:0;;60454:68;;;;-1:-1:-1;;;60454:68:0;;8857:2:1;60454:68:0;;;8839:21:1;8896:2;8876:18;;;8869:30;8935:34;8915:18;;;8908:62;-1:-1:-1;;;8986:18:1;;;8979:34;9030:19;;60454:68:0;8655:400:1;60454:68:0;-1:-1:-1;;;;;60541:21:0;;60533:68;;;;-1:-1:-1;;;60533:68:0;;9262:2:1;60533:68:0;;;9244:21:1;9301:2;9281:18;;;9274:30;9340:34;9320:18;;;9313:62;-1:-1:-1;;;9391:18:1;;;9384:32;9433:19;;60533:68:0;9060:398:1;60533:68:0;-1:-1:-1;;;;;60614:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;60666:32;;1755:25:1;;;60666:32:0;;1728:18:1;60666:32:0;;;;;;;60360:346;;;:::o;38472:105::-;38539:30;38550:4;34887:10;38539;:30::i;60997:419::-;61098:24;61125:25;61135:5;61142:7;61125:9;:25::i;:::-;61098:52;;-1:-1:-1;;61165:16:0;:37;61161:248;;61247:6;61227:16;:26;;61219:68;;;;-1:-1:-1;;;61219:68:0;;9665:2:1;61219:68:0;;;9647:21:1;9704:2;9684:18;;;9677:30;9743:31;9723:18;;;9716:59;9792:18;;61219:68:0;9463:353:1;61219:68:0;61331:51;61340:5;61347:7;61375:6;61356:16;:25;61331:8;:51::i;64889:1085::-;65030:1;65021:6;:10;65013:39;;;;-1:-1:-1;;;65013:39:0;;10023:2:1;65013:39:0;;;10005:21:1;10062:2;10042:18;;;10035:30;-1:-1:-1;;;10081:18:1;;;10074:46;10137:18;;65013:39:0;9821:340:1;65013:39:0;65084:13;;-1:-1:-1;;;;;65076:21:0;;;65084:13;;65076:21;;;;:44;;-1:-1:-1;65107:13:0;;-1:-1:-1;;;;;65101:19:0;;;65107:13;;65101:19;;65076:44;65073:127;;;65137:30;65150:4;65156:2;65160:6;65137:12;:30::i;65073:127::-;65221:13;;-1:-1:-1;;;;;65221:13:0;;;65213:21;;;;65210:300;;65275:1;65259:15;;:17;65251:38;;;;-1:-1:-1;;;65251:38:0;;10368:2:1;65251:38:0;;;10350:21:1;10407:1;10387:18;;;10380:29;-1:-1:-1;;;10425:18:1;;;10418:38;10473:18;;65251:38:0;10166:331:1;65251:38:0;65304:60;65320:4;65334;65341:22;65359:3;65341:13;:6;65352:1;65341:10;:13::i;:::-;:17;;:22::i;:::-;65304:15;:60::i;:::-;65390:22;65408:3;65390:13;:6;65401:1;65390:10;:13::i;:22::-;65379:9;;:33;;;;;;;:::i;:::-;;;;-1:-1:-1;65427:50:0;;-1:-1:-1;65443:4:0;65449:2;65453:23;65472:3;65453:14;:6;65464:2;65453:10;:14::i;65210:300::-;65529:13;;-1:-1:-1;;;;;65529:13:0;;;65523:19;;;;65520:447;;-1:-1:-1;;;;;65562:15:0;;;;;;:9;:15;;;;;;;;65559:112;;;65597:33;65613:4;65619:2;65623:6;65597:15;:33::i;65559:112::-;65685:60;65701:4;65715;65722:22;65740:3;65722:13;:6;65733:1;65722:10;:13::i;65685:60::-;65771:22;65789:3;65771:13;:6;65782:1;65771:10;:13::i;:22::-;65760:9;;:33;;;;;;;:::i;:::-;;;;-1:-1:-1;;65817:9:0;;65808:35;;65817:16;;65827:6;;65817:16;:::i;:::-;65834:8;;-1:-1:-1;;;;;65834:8:0;65808;:35::i;:::-;65868:1;65858:9;:11;65884:50;65900:4;65906:2;65910:23;65929:3;65910:14;:6;65921:2;65910:10;:14::i;42730:238::-;42814:22;42822:4;42828:7;42814;:22::i;:::-;42809:152;;42853:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;42853:29:0;;;;;;;;;:36;;-1:-1:-1;;42853:36:0;42885:4;42853:36;;;42936:12;34887:10;;34807:98;42936:12;-1:-1:-1;;;;;42909:40:0;42927:7;-1:-1:-1;;;;;42909:40:0;42921:4;42909:40;;;;;;;;;;42730:238;;:::o;43148:239::-;43232:22;43240:4;43246:7;43232;:22::i;:::-;43228:152;;;43303:5;43271:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;43271:29:0;;;;;;;;;;:37;;-1:-1:-1;;43271:37:0;;;43328:40;34887:10;;43271:12;;43328:40;;43303:5;43328:40;43148:239;;:::o;44794:132::-;44702:6;;-1:-1:-1;;;;;44702:6:0;34887:10;44858:23;44850:68;;;;-1:-1:-1;;;44850:68:0;;10704:2:1;44850:68:0;;;10686:21:1;;;10723:18;;;10716:30;10782:34;10762:18;;;10755:62;10834:18;;44850:68:0;10502:356:1;45889:191:0;45982:6;;;-1:-1:-1;;;;;45999:17:0;;;-1:-1:-1;;;;;;45999:17:0;;;;;;;46032:40;;45982:6;;;45999:17;45982:6;;46032:40;;45963:16;;46032:40;45952:128;45889:191;:::o;68431:180::-;68495:4;68597:6;68551:15;68567:16;68586:5;68534:58;;;;;;;;;11048:19:1;;;11092:2;11083:12;;11076:28;;;;11142:2;11138:15;-1:-1:-1;;11134:53:1;11129:2;11120:12;;11113:75;11213:2;11204:12;;10863:359;68534:58:0;;;;;;;;;;;;;68524:69;;;;;;68519:75;;:84;;;;:::i;:::-;68512:91;68431:180;-1:-1:-1;;;68431:180:0:o;66286:611::-;66222:6;:13;;-1:-1:-1;;;;66222:13:0;-1:-1:-1;;;66222:13:0;;;66392:16:::1;::::0;;66406:1:::1;66392:16:::0;;;;;::::1;::::0;;-1:-1:-1;;66392:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;66437:4:0::1;::::0;66419:7;;;;-1:-1:-1;;;;;;66437:4:0::1;::::0;66419:7;;-1:-1:-1;66437:4:0::1;::::0;66419:7:::1;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;66419:23:0::1;;;-1:-1:-1::0;;;;;66419:23:0::1;;;::::0;::::1;66471:4;66453;66458:1;66453:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;66453:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;66512:4:::1;::::0;66505:37:::1;::::0;-1:-1:-1;;;66505:37:0;;66536:4:::1;66505:37;::::0;::::1;3270:51:1::0;66487:15:0::1;::::0;66512:4;;;::::1;::::0;66505:22:::1;::::0;3243:18:1;;66505:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66487:55;;66556:11;66569:1;66556:14:::0;66553:39:::1;;66585:7;66571:21;;66553:39;66647:7;66632:11;:22;66629:260;;66665:15;::::0;:224:::1;::::0;-1:-1:-1;;;66665:224:0;;-1:-1:-1;;;;;66665:15:0;;::::1;::::0;:69:::1;::::0;:224:::1;::::0;66749:11;;66665:15:::1;::::0;66818:4;;66845:2;;66863:15:::1;::::0;66665:224:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;66629:260;-1:-1:-1::0;;66258:6:0;:14;;-1:-1:-1;;;;66258:14:0;;;-1:-1:-1;;66286:611:0:o;38867:492::-;38956:22;38964:4;38970:7;38956;:22::i;:::-;38951:401;;39144:28;39164:7;39144:19;:28::i;:::-;39245:38;39273:4;39280:2;39245:19;:38::i;:::-;39049:257;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;39049:257:0;;;;;;;;;;-1:-1:-1;;;38995:345:0;;;;;;;:::i;65980:178::-;66107:43;66123:6;66131:9;66142:7;66107:15;:43::i;30803:98::-;30861:7;30888:5;30892:1;30888;:5;:::i;31202:98::-;31260:7;31287:5;31291:1;31287;:5;:::i;57273:806::-;-1:-1:-1;;;;;57370:18:0;;57362:68;;;;-1:-1:-1;;;57362:68:0;;13737:2:1;57362:68:0;;;13719:21:1;13776:2;13756:18;;;13749:30;13815:34;13795:18;;;13788:62;-1:-1:-1;;;13866:18:1;;;13859:35;13911:19;;57362:68:0;13535:401:1;57362:68:0;-1:-1:-1;;;;;57449:16:0;;57441:64;;;;-1:-1:-1;;;57441:64:0;;14143:2:1;57441:64:0;;;14125:21:1;14182:2;14162:18;;;14155:30;14221:34;14201:18;;;14194:62;-1:-1:-1;;;14272:18:1;;;14265:33;14315:19;;57441:64:0;13941:399:1;57441:64:0;-1:-1:-1;;;;;57591:15:0;;57569:19;57591:15;;;;;;;;;;;57625:21;;;;57617:72;;;;-1:-1:-1;;;57617:72:0;;14547:2:1;57617:72:0;;;14529:21:1;14586:2;14566:18;;;14559:30;14625:34;14605:18;;;14598:62;-1:-1:-1;;;14676:18:1;;;14669:36;14722:19;;57617:72:0;14345:402:1;57617:72:0;-1:-1:-1;;;;;57725:15:0;;;:9;:15;;;;;;;;;;;57743:20;;;57725:38;;57943:13;;;;;;;;;;:23;;;;;;57995:26;;1755:25:1;;;57943:13:0;;57995:26;;1728:18:1;57995:26:0;;;;;;;58034:37;68792:122;67722:464;66222:6;:13;;-1:-1:-1;;;;66222:13:0;-1:-1:-1;;;66222:13:0;;;67839:4:::1;-1:-1:-1::0;53216:18:0;;;;;;;;;;;;67880:16;;67894:1:::1;67880:16:::0;;;;;::::1;::::0;;53216:18;;-1:-1:-1;67880:16:0;;;;::::1;::::0;53216:18;67880:16:::1;::::0;::::1;;::::0;-1:-1:-1;67880:16:0::1;67856:40;;67918:11;67910:7;:19;67907:42;;;67942:7;67930:19;;67907:42;67963:13:::0;;67960:219:::1;;68010:4;67992;67997:1;67992:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;67992:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;68040:4:::1;::::0;68030:7;;68040:4;::::1;::::0;68030;;68040;;68030:7;::::1;;;;;:::i;:::-;-1:-1:-1::0;;;;;68030:14:0;;::::1;:7;::::0;;::::1;::::0;;;;;:14;68059:15:::1;::::0;:108:::1;::::0;-1:-1:-1;;;68059:108:0;;:15;::::1;::::0;:69:::1;::::0;:108:::1;::::0;68129:11;;68059:15:::1;::::0;68143:4;;68148:2;;68151:15:::1;::::0;68059:108:::1;;;:::i;23762:151::-:0;23820:13;23853:52;-1:-1:-1;;;;;23865:22:0;;21637:2;23158:447;23233:13;23259:19;23291:10;23295:6;23291:1;:10;:::i;:::-;:14;;23304:1;23291:14;:::i;:::-;23281:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23281:25:0;;23259:47;;-1:-1:-1;;;23317:6:0;23324:1;23317:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;23317:15:0;;;;;;;;;-1:-1:-1;;;23343:6:0;23350:1;23343:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;23343:15:0;;;;;;;;-1:-1:-1;23374:9:0;23386:10;23390:6;23386:1;:10;:::i;:::-;:14;;23399:1;23386:14;:::i;:::-;23374:26;;23369:131;23406:1;23402;:5;23369:131;;;-1:-1:-1;;;23450:5:0;23458:3;23450:11;23441:21;;;;;;;:::i;:::-;;;;23429:6;23436:1;23429:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;23429:33:0;;;;;;;;-1:-1:-1;23487:1:0;23477:11;;;;;23409:3;;;:::i;:::-;;;23369:131;;;-1:-1:-1;23518:10:0;;23510:55;;;;-1:-1:-1;;;23510:55:0;;15095:2:1;23510:55:0;;;15077:21:1;;;15114:18;;;15107:30;15173:34;15153:18;;;15146:62;15225:18;;23510:55:0;14893:356:1;-1:-1:-1;;;;;;;;:::o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:250;582:1;592:113;606:6;603:1;600:13;592:113;;;682:11;;;676:18;663:11;;;656:39;628:2;621:10;592:113;;;-1:-1:-1;;739:1:1;721:16;;714:27;497:250::o;752:396::-;901:2;890:9;883:21;864:4;933:6;927:13;976:6;971:2;960:9;956:18;949:34;992:79;1064:6;1059:2;1048:9;1044:18;1039:2;1031:6;1027:15;992:79;:::i;:::-;1132:2;1111:15;-1:-1:-1;;1107:29:1;1092:45;;;;1139:2;1088:54;;752:396;-1:-1:-1;;752:396:1:o;1153:131::-;-1:-1:-1;;;;;1228:31:1;;1218:42;;1208:70;;1274:1;1271;1264:12;1289:315;1357:6;1365;1418:2;1406:9;1397:7;1393:23;1389:32;1386:52;;;1434:1;1431;1424:12;1386:52;1473:9;1460:23;1492:31;1517:5;1492:31;:::i;:::-;1542:5;1594:2;1579:18;;;;1566:32;;-1:-1:-1;;;1289:315:1:o;1791:180::-;1850:6;1903:2;1891:9;1882:7;1878:23;1874:32;1871:52;;;1919:1;1916;1909:12;1871:52;-1:-1:-1;1942:23:1;;1791:180;-1:-1:-1;1791:180:1:o;1976:456::-;2053:6;2061;2069;2122:2;2110:9;2101:7;2097:23;2093:32;2090:52;;;2138:1;2135;2128:12;2090:52;2177:9;2164:23;2196:31;2221:5;2196:31;:::i;:::-;2246:5;-1:-1:-1;2303:2:1;2288:18;;2275:32;2316:33;2275:32;2316:33;:::i;:::-;1976:456;;2368:7;;-1:-1:-1;;;2422:2:1;2407:18;;;;2394:32;;1976:456::o;2804:315::-;2872:6;2880;2933:2;2921:9;2912:7;2908:23;2904:32;2901:52;;;2949:1;2946;2939:12;2901:52;2985:9;2972:23;2962:33;;3045:2;3034:9;3030:18;3017:32;3058:31;3083:5;3058:31;:::i;:::-;3108:5;3098:15;;;2804:315;;;;;:::o;3521:388::-;3589:6;3597;3650:2;3638:9;3629:7;3625:23;3621:32;3618:52;;;3666:1;3663;3656:12;3618:52;3705:9;3692:23;3724:31;3749:5;3724:31;:::i;:::-;3774:5;-1:-1:-1;3831:2:1;3816:18;;3803:32;3844:33;3803:32;3844:33;:::i;3914:247::-;3973:6;4026:2;4014:9;4005:7;4001:23;3997:32;3994:52;;;4042:1;4039;4032:12;3994:52;4081:9;4068:23;4100:31;4125:5;4100:31;:::i;4399:615::-;4485:6;4493;4546:2;4534:9;4525:7;4521:23;4517:32;4514:52;;;4562:1;4559;4552:12;4514:52;4602:9;4589:23;4631:18;4672:2;4664:6;4661:14;4658:34;;;4688:1;4685;4678:12;4658:34;4726:6;4715:9;4711:22;4701:32;;4771:7;4764:4;4760:2;4756:13;4752:27;4742:55;;4793:1;4790;4783:12;4742:55;4833:2;4820:16;4859:2;4851:6;4848:14;4845:34;;;4875:1;4872;4865:12;4845:34;4928:7;4923:2;4913:6;4910:1;4906:14;4902:2;4898:23;4894:32;4891:45;4888:65;;;4949:1;4946;4939:12;4888:65;4980:2;4972:11;;;;;5002:6;;-1:-1:-1;4399:615:1;;-1:-1:-1;;;;4399:615:1:o;5019:380::-;5098:1;5094:12;;;;5141;;;5162:61;;5216:4;5208:6;5204:17;5194:27;;5162:61;5269:2;5261:6;5258:14;5238:18;5235:38;5232:161;;5315:10;5310:3;5306:20;5303:1;5296:31;5350:4;5347:1;5340:15;5378:4;5375:1;5368:15;5232:161;;5019:380;;;:::o;5820:127::-;5881:10;5876:3;5872:20;5869:1;5862:31;5912:4;5909:1;5902:15;5936:4;5933:1;5926:15;5952:125;6017:9;;;6038:10;;;6035:36;;;6051:18;;:::i;6082:251::-;6152:6;6205:2;6193:9;6184:7;6180:23;6176:32;6173:52;;;6221:1;6218;6211:12;6173:52;6253:9;6247:16;6272:31;6297:5;6272:31;:::i;6926:277::-;6993:6;7046:2;7034:9;7025:7;7021:23;7017:32;7014:52;;;7062:1;7059;7052:12;7014:52;7094:9;7088:16;7147:5;7140:13;7133:21;7126:5;7123:32;7113:60;;7169:1;7166;7159:12;7614:127;7675:10;7670:3;7666:20;7663:1;7656:31;7706:4;7703:1;7696:15;7730:4;7727:1;7720:15;7746:168;7819:9;;;7850;;7867:15;;;7861:22;;7847:37;7837:71;;7888:18;;:::i;7919:135::-;7958:3;7979:17;;;7976:43;;7999:18;;:::i;:::-;-1:-1:-1;8046:1:1;8035:13;;7919:135::o;8059:184::-;8129:6;8182:2;8170:9;8161:7;8157:23;8153:32;8150:52;;;8198:1;8195;8188:12;8150:52;-1:-1:-1;8221:16:1;;8059:184;-1:-1:-1;8059:184:1:o;11227:127::-;11288:10;11283:3;11279:20;11276:1;11269:31;11319:4;11316:1;11309:15;11343:4;11340:1;11333:15;11359:112;11391:1;11417;11407:35;;11422:18;;:::i;:::-;-1:-1:-1;11456:9:1;;11359:112::o;11476:127::-;11537:10;11532:3;11528:20;11525:1;11518:31;11568:4;11565:1;11558:15;11592:4;11589:1;11582:15;11608:980;11870:4;11918:3;11907:9;11903:19;11949:6;11938:9;11931:25;11975:2;12013:6;12008:2;11997:9;11993:18;11986:34;12056:3;12051:2;12040:9;12036:18;12029:31;12080:6;12115;12109:13;12146:6;12138;12131:22;12184:3;12173:9;12169:19;12162:26;;12223:2;12215:6;12211:15;12197:29;;12244:1;12254:195;12268:6;12265:1;12262:13;12254:195;;;12333:13;;-1:-1:-1;;;;;12329:39:1;12317:52;;12424:15;;;;12389:12;;;;12365:1;12283:9;12254:195;;;-1:-1:-1;;;;;;;12505:32:1;;;;12500:2;12485:18;;12478:60;-1:-1:-1;;;12569:3:1;12554:19;12547:35;12466:3;11608:980;-1:-1:-1;;;11608:980:1:o;12593:812::-;13004:25;12999:3;12992:38;12974:3;13059:6;13053:13;13075:75;13143:6;13138:2;13133:3;13129:12;13122:4;13114:6;13110:17;13075:75;:::i;:::-;-1:-1:-1;;;13209:2:1;13169:16;;;13201:11;;;13194:40;13259:13;;13281:76;13259:13;13343:2;13335:11;;13328:4;13316:17;;13281:76;:::i;:::-;13377:17;13396:2;13373:26;;12593:812;-1:-1:-1;;;;12593:812:1:o;13410:120::-;13450:1;13476;13466:35;;13481:18;;:::i;:::-;-1:-1:-1;13515:9:1;;13410:120::o;14752:136::-;14791:3;14819:5;14809:39;;14828:18;;:::i;:::-;-1:-1:-1;;;14864:18:1;;14752:136::o
Swarm Source
ipfs://c8041a5496ff2b4853c1fd11f98ac833d8daba88aff9b0311421c35a117822e0
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.