ERC-20
Overview
Max Total Supply
983,266,776,054 XBLUE
Holders
63
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 XBLUEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
XBLUE
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-24 */ // 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/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt( uint256 a, Rounding rounding ) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2( uint256 value, Rounding rounding ) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10( uint256 value, Rounding rounding ) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256( uint256 value, Rounding rounding ) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string( abi.encodePacked( value < 0 ? "-" : "", toString(SignedMath.abs(value)) ) ); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString( uint256 value, uint256 length ) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal( string memory a, string memory b ) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/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; } } pragma solidity ^0.8.0; // 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 {} } pragma solidity ^0.8.4; contract XBLUE is ERC20, Ownable { using SafeMath for uint256; mapping(address => bool) private whiteList; ISwapRouter private uniswapV2Router; address public uniswapV2Pair; address public weth; address public _devWallet; uint256 private initEnd = 7; uint256 public minSwap; uint256 private startRate = 20; uint256 public _taxRate = 1; uint256 private init = 0; uint256 public counter = 0; bool public tradingOpen = false; uint256 total = 983266776054000000000000000000; address swap = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; bool private inSwap; constructor(address _devInput) ERC20("XBLUE", "XBLUE") { _devWallet = _devInput; _mint(_devInput, total); whiteList[_devInput] = true; minSwap = ((total * 1) / 100000000); transferOwnership(_devInput); initPair(); } function initPair() internal { uniswapV2Router = ISwapRouter(swap); weth = uniswapV2Router.WETH(); uniswapV2Pair = ISwapFactory(uniswapV2Router.factory()).createPair( address(this), weth ); ERC20(weth).approve(address(uniswapV2Router), type(uint256).max); _approve(address(this), address(uniswapV2Router), type(uint256).max); _approve(address(this), address(this), type(uint256).max); _approve(msg.sender, address(uniswapV2Router), type(uint256).max); } function decimals() public view virtual override returns (uint8) { return 18; } function _transfer( address from, address to, uint256 amount ) internal override { require(amount > 0, "L0"); require(tradingOpen || whiteList[from], "TP"); if ((from != uniswapV2Pair && to != uniswapV2Pair) || _taxRate == 0) { _funTransfer(from, to, amount); return; } uint256 taxRate = _taxRate; if (init >= block.number) { taxRate = startRate; } if (from == uniswapV2Pair) { if (taxRate > 0) { super._transfer( from, address(this), amount.mul(taxRate).div(100) ); } super._transfer(from, to, amount.mul((100 - taxRate)).div(100)); return; } if (to == uniswapV2Pair) { if (whiteList[from]) { super._transfer(from, to, amount); return; } if (taxRate > 0) { super._transfer( from, address(this), amount.mul(taxRate).div(100) ); } uint256 balance = balanceOf(address(this)); if (balance > minSwap && counter >= 10) { if (!inSwap) { swapweth(balance, _devWallet); counter = 0; } } super._transfer(from, to, amount.mul((100 - taxRate)).div(100)); counter += 1; return; } } function _funTransfer( address sender, address recipient, uint256 tAmount ) private { super._transfer(sender, recipient, tAmount); } modifier lockTheSwap() { inSwap = true; _; inSwap = false; } function swapweth(uint256 _balance, address to) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = weth; uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( _balance, 0, path, to, block.timestamp ); } function setTaxRate(uint256 _newTaxRate) public onlyOwner { require(_newTaxRate <= 25); _taxRate = _newTaxRate; } function setDevWallet(address _newW) public onlyOwner { _devWallet = _newW; } function addWhitelist(address _w, bool _set) public onlyOwner { whiteList[_w] = _set; } function setMinSwap(uint256 _minswapThresh) public onlyOwner { minSwap = _minswapThresh; } function openTrading() external onlyOwner { tradingOpen = true; init = block.number + initEnd; } function errorToken(address _token) external onlyOwner { ERC20(_token).transfer( msg.sender, IERC20(_token).balanceOf(address(this)) ); } function withdawOwner(uint256 amount) public onlyOwner { payable(msg.sender).transfer(amount); } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_devInput","type":"address"}],"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":"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":"_devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_w","type":"address"},{"internalType":"bool","name":"_set","type":"bool"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counter","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":[{"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":[],"name":"minSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","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":"address","name":"_newW","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minswapThresh","type":"uint256"}],"name":"setMinSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTaxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","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":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"weth","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
60806040526007600b556014600d556001600e556000600f8190556010556011805460ff191690556c0c691b36d0873aa27846180000601255601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790553480156200006b57600080fd5b5060405162001d1638038062001d168339810160408190526200008e9162000708565b60408051808201825260058082526458424c554560d81b6020808401829052845180860190955291845290830152906003620000cb8382620007de565b506004620000da8282620007de565b505050620000f7620000f16200018860201b60201c565b6200018c565b600a80546001600160a01b0319166001600160a01b03831617905560125462000122908290620001de565b6001600160a01b0381166000908152600660205260409020805460ff191660019081179091556012546305f5e100916200015d9190620008c0565b620001699190620008e0565b600c556200017781620002a5565b6200018162000324565b506200093d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200023a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200024e919062000903565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b620002af62000584565b6001600160a01b038116620003165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000231565b62000321816200018c565b50565b601354600780546001600160a01b0319166001600160a01b039092169182179055604080516315ab88c960e31b8152905163ad5c4648916004808201926020929091908290030181865afa15801562000381573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a7919062000708565b600980546001600160a01b0319166001600160a01b039283161790556007546040805163c45a015560e01b81529051919092169163c45a01559160048083019260209291908290030181865afa15801562000406573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200042c919062000708565b6009546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000708565b600880546001600160a01b0319166001600160a01b0392831617905560095460075460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af11580156200050f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000535919062000919565b50600754620005529030906001600160a01b0316600019620005e0565b620005613080600019620005e0565b6007546200057d9033906001600160a01b0316600019620005e0565b565b505050565b6005546001600160a01b031633146200057d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000231565b6001600160a01b038316620006445760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000231565b6001600160a01b038216620006a75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000231565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000602082840312156200071b57600080fd5b81516001600160a01b03811681146200073357600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200076557607f821691505b6020821081036200078657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200057f57600081815260208120601f850160051c81016020861015620007b55750805b601f850160051c820191505b81811015620007d657828155600101620007c1565b505050505050565b81516001600160401b03811115620007fa57620007fa6200073a565b62000812816200080b845462000750565b846200078c565b602080601f8311600181146200084a5760008415620008315750858301515b600019600386901b1c1916600185901b178555620007d6565b600085815260208120601f198616915b828110156200087b578886015182559484019460019091019084016200085a565b50858210156200089a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620008da57620008da620008aa565b92915050565b600082620008fe57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008da57620008da620008aa565b6000602082840312156200092c57600080fd5b815180151581146200073357600080fd5b6113c9806200094d6000396000f3fe6080604052600436106101bb5760003560e01c806361bc221a116100ec578063a9e282b81161008a578063d992744811610064578063d9927448146104cc578063dd62ed3e146104ec578063f2fde38b1461050c578063ffb54a991461052c57600080fd5b8063a9e282b814610477578063c6d69a3014610497578063c9567bf9146104b757600080fd5b80638da5cb5b116100c65780638da5cb5b1461040457806395d89b4114610422578063a457c2d714610437578063a9059cbb1461045757600080fd5b806361bc221a146103a357806370a08231146103b9578063715018a6146103ef57600080fd5b8063313ce567116101595780633fc8cef3116101335780633fc8cef3146103375780634084e0b31461035757806349bd5a5e1461036d57806359cd90311461038d57600080fd5b8063313ce567146102db5780633714020e146102f7578063395093511461031757600080fd5b806318160ddd1161019557806318160ddd1461025a5780631c6a0c4c146102795780631f53ac021461029b57806323b872dd146102bb57600080fd5b806306fdde03146101c7578063095ea7b3146101f257806311a63e171461022257600080fd5b366101c257005b600080fd5b3480156101d357600080fd5b506101dc610546565b6040516101e991906110ab565b60405180910390f35b3480156101fe57600080fd5b5061021261020d366004611115565b6105d8565b60405190151581526020016101e9565b34801561022e57600080fd5b50600a54610242906001600160a01b031681565b6040516001600160a01b0390911681526020016101e9565b34801561026657600080fd5b506002545b6040519081526020016101e9565b34801561028557600080fd5b5061029961029436600461113f565b6105f2565b005b3480156102a757600080fd5b506102996102b6366004611158565b61062b565b3480156102c757600080fd5b506102126102d6366004611173565b610655565b3480156102e757600080fd5b50604051601281526020016101e9565b34801561030357600080fd5b506102996103123660046111bd565b610679565b34801561032357600080fd5b50610212610332366004611115565b6106ac565b34801561034357600080fd5b50600954610242906001600160a01b031681565b34801561036357600080fd5b5061026b600e5481565b34801561037957600080fd5b50600854610242906001600160a01b031681565b34801561039957600080fd5b5061026b600c5481565b3480156103af57600080fd5b5061026b60105481565b3480156103c557600080fd5b5061026b6103d4366004611158565b6001600160a01b031660009081526020819052604090205490565b3480156103fb57600080fd5b506102996106ce565b34801561041057600080fd5b506005546001600160a01b0316610242565b34801561042e57600080fd5b506101dc6106e2565b34801561044357600080fd5b50610212610452366004611115565b6106f1565b34801561046357600080fd5b50610212610472366004611115565b610771565b34801561048357600080fd5b5061029961049236600461113f565b61077f565b3480156104a357600080fd5b506102996104b236600461113f565b61078c565b3480156104c357600080fd5b506102996107a7565b3480156104d857600080fd5b506102996104e7366004611158565b6107ce565b3480156104f857600080fd5b5061026b6105073660046111f4565b6108b7565b34801561051857600080fd5b50610299610527366004611158565b6108e2565b34801561053857600080fd5b506011546102129060ff1681565b60606003805461055590611227565b80601f016020809104026020016040519081016040528092919081815260200182805461058190611227565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b6000336105e681858561095b565b60019150505b92915050565b6105fa610a7f565b604051339082156108fc029083906000818181858888f19350505050158015610627573d6000803e3d6000fd5b5050565b610633610a7f565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600033610663858285610ad9565b61066e858585610b53565b506001949350505050565b610681610a7f565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000336105e68185856106bf83836108b7565b6106c99190611277565b61095b565b6106d6610a7f565b6106e06000610d88565b565b60606004805461055590611227565b600033816106ff82866108b7565b9050838110156107645760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61066e828686840361095b565b6000336105e6818585610b53565b610787610a7f565b600c55565b610794610a7f565b60198111156107a257600080fd5b600e55565b6107af610a7f565b6011805460ff19166001179055600b546107c99043611277565b600f55565b6107d6610a7f565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610824573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610848919061128a565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610893573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062791906112a3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6108ea610a7f565b6001600160a01b03811661094f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161075b565b61095881610d88565b50565b6001600160a01b0383166109bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161075b565b6001600160a01b038216610a1e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161075b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146106e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075b565b6000610ae584846108b7565b90506000198114610b4d5781811015610b405760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161075b565b610b4d848484840361095b565b50505050565b60008111610b885760405162461bcd60e51b815260206004820152600260248201526104c360f41b604482015260640161075b565b60115460ff1680610bb157506001600160a01b03831660009081526006602052604090205460ff165b610be25760405162461bcd60e51b8152602060048201526002602482015261054560f41b604482015260640161075b565b6008546001600160a01b03848116911614801590610c0e57506008546001600160a01b03838116911614155b80610c195750600e54155b15610c2e57610c29838383610dda565b505050565b600e54600f544311610c3f5750600d545b6008546001600160a01b0390811690851603610c98578015610c7a57610c7a8430610c756064610c6f8787610de5565b90610df8565b610e04565b610b4d8484610c756064610c6f610c9187836112c0565b8890610de5565b6008546001600160a01b0390811690841603610b4d576001600160a01b03841660009081526006602052604090205460ff1615610cda57610b4d848484610e04565b8015610cf457610cf48430610c756064610c6f8787610de5565b30600090815260208190526040902054600c5481118015610d185750600a60105410155b15610d4b57601354600160a01b900460ff16610d4b57600a54610d459082906001600160a01b0316610fa8565b60006010555b610d698585610c756064610c6f610d6288836112c0565b8990610de5565b600160106000828254610d7c9190611277565b90915550505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c29838383610e04565b6000610df182846112d3565b9392505050565b6000610df182846112ea565b6001600160a01b038316610e685760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161075b565b6001600160a01b038216610eca5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161075b565b6001600160a01b03831660009081526020819052604090205481811015610f425760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161075b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b4d565b6013805460ff60a01b1916600160a01b1790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610ff057610ff061130c565b6001600160a01b0392831660209182029290920101526009548251911690829060019081106110215761102161130c565b6001600160a01b039283166020918202929092010152600754604051635c11d79560e01b8152911690635c11d79590611067908690600090869088904290600401611322565b600060405180830381600087803b15801561108157600080fd5b505af1158015611095573d6000803e3d6000fd5b50506013805460ff60a01b191690555050505050565b600060208083528351808285015260005b818110156110d8578581018301518582016040015282016110bc565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461111057600080fd5b919050565b6000806040838503121561112857600080fd5b611131836110f9565b946020939093013593505050565b60006020828403121561115157600080fd5b5035919050565b60006020828403121561116a57600080fd5b610df1826110f9565b60008060006060848603121561118857600080fd5b611191846110f9565b925061119f602085016110f9565b9150604084013590509250925092565b801515811461095857600080fd5b600080604083850312156111d057600080fd5b6111d9836110f9565b915060208301356111e9816111af565b809150509250929050565b6000806040838503121561120757600080fd5b611210836110f9565b915061121e602084016110f9565b90509250929050565b600181811c9082168061123b57607f821691505b60208210810361125b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105ec576105ec611261565b60006020828403121561129c57600080fd5b5051919050565b6000602082840312156112b557600080fd5b8151610df1816111af565b818103818111156105ec576105ec611261565b80820281158282048414176105ec576105ec611261565b60008261130757634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156113725784516001600160a01b03168352938301939183019160010161134d565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d17518759b104c14367a54e2540c096884400db0272d7373bf0d496de0f08ca064736f6c634300081200330000000000000000000000000b2b6b56790e3fdb48a0841af66ce67b1421ed9d
Deployed Bytecode
0x6080604052600436106101bb5760003560e01c806361bc221a116100ec578063a9e282b81161008a578063d992744811610064578063d9927448146104cc578063dd62ed3e146104ec578063f2fde38b1461050c578063ffb54a991461052c57600080fd5b8063a9e282b814610477578063c6d69a3014610497578063c9567bf9146104b757600080fd5b80638da5cb5b116100c65780638da5cb5b1461040457806395d89b4114610422578063a457c2d714610437578063a9059cbb1461045757600080fd5b806361bc221a146103a357806370a08231146103b9578063715018a6146103ef57600080fd5b8063313ce567116101595780633fc8cef3116101335780633fc8cef3146103375780634084e0b31461035757806349bd5a5e1461036d57806359cd90311461038d57600080fd5b8063313ce567146102db5780633714020e146102f7578063395093511461031757600080fd5b806318160ddd1161019557806318160ddd1461025a5780631c6a0c4c146102795780631f53ac021461029b57806323b872dd146102bb57600080fd5b806306fdde03146101c7578063095ea7b3146101f257806311a63e171461022257600080fd5b366101c257005b600080fd5b3480156101d357600080fd5b506101dc610546565b6040516101e991906110ab565b60405180910390f35b3480156101fe57600080fd5b5061021261020d366004611115565b6105d8565b60405190151581526020016101e9565b34801561022e57600080fd5b50600a54610242906001600160a01b031681565b6040516001600160a01b0390911681526020016101e9565b34801561026657600080fd5b506002545b6040519081526020016101e9565b34801561028557600080fd5b5061029961029436600461113f565b6105f2565b005b3480156102a757600080fd5b506102996102b6366004611158565b61062b565b3480156102c757600080fd5b506102126102d6366004611173565b610655565b3480156102e757600080fd5b50604051601281526020016101e9565b34801561030357600080fd5b506102996103123660046111bd565b610679565b34801561032357600080fd5b50610212610332366004611115565b6106ac565b34801561034357600080fd5b50600954610242906001600160a01b031681565b34801561036357600080fd5b5061026b600e5481565b34801561037957600080fd5b50600854610242906001600160a01b031681565b34801561039957600080fd5b5061026b600c5481565b3480156103af57600080fd5b5061026b60105481565b3480156103c557600080fd5b5061026b6103d4366004611158565b6001600160a01b031660009081526020819052604090205490565b3480156103fb57600080fd5b506102996106ce565b34801561041057600080fd5b506005546001600160a01b0316610242565b34801561042e57600080fd5b506101dc6106e2565b34801561044357600080fd5b50610212610452366004611115565b6106f1565b34801561046357600080fd5b50610212610472366004611115565b610771565b34801561048357600080fd5b5061029961049236600461113f565b61077f565b3480156104a357600080fd5b506102996104b236600461113f565b61078c565b3480156104c357600080fd5b506102996107a7565b3480156104d857600080fd5b506102996104e7366004611158565b6107ce565b3480156104f857600080fd5b5061026b6105073660046111f4565b6108b7565b34801561051857600080fd5b50610299610527366004611158565b6108e2565b34801561053857600080fd5b506011546102129060ff1681565b60606003805461055590611227565b80601f016020809104026020016040519081016040528092919081815260200182805461058190611227565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b6000336105e681858561095b565b60019150505b92915050565b6105fa610a7f565b604051339082156108fc029083906000818181858888f19350505050158015610627573d6000803e3d6000fd5b5050565b610633610a7f565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600033610663858285610ad9565b61066e858585610b53565b506001949350505050565b610681610a7f565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000336105e68185856106bf83836108b7565b6106c99190611277565b61095b565b6106d6610a7f565b6106e06000610d88565b565b60606004805461055590611227565b600033816106ff82866108b7565b9050838110156107645760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61066e828686840361095b565b6000336105e6818585610b53565b610787610a7f565b600c55565b610794610a7f565b60198111156107a257600080fd5b600e55565b6107af610a7f565b6011805460ff19166001179055600b546107c99043611277565b600f55565b6107d6610a7f565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610824573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610848919061128a565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610893573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062791906112a3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6108ea610a7f565b6001600160a01b03811661094f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161075b565b61095881610d88565b50565b6001600160a01b0383166109bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161075b565b6001600160a01b038216610a1e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161075b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146106e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075b565b6000610ae584846108b7565b90506000198114610b4d5781811015610b405760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161075b565b610b4d848484840361095b565b50505050565b60008111610b885760405162461bcd60e51b815260206004820152600260248201526104c360f41b604482015260640161075b565b60115460ff1680610bb157506001600160a01b03831660009081526006602052604090205460ff165b610be25760405162461bcd60e51b8152602060048201526002602482015261054560f41b604482015260640161075b565b6008546001600160a01b03848116911614801590610c0e57506008546001600160a01b03838116911614155b80610c195750600e54155b15610c2e57610c29838383610dda565b505050565b600e54600f544311610c3f5750600d545b6008546001600160a01b0390811690851603610c98578015610c7a57610c7a8430610c756064610c6f8787610de5565b90610df8565b610e04565b610b4d8484610c756064610c6f610c9187836112c0565b8890610de5565b6008546001600160a01b0390811690841603610b4d576001600160a01b03841660009081526006602052604090205460ff1615610cda57610b4d848484610e04565b8015610cf457610cf48430610c756064610c6f8787610de5565b30600090815260208190526040902054600c5481118015610d185750600a60105410155b15610d4b57601354600160a01b900460ff16610d4b57600a54610d459082906001600160a01b0316610fa8565b60006010555b610d698585610c756064610c6f610d6288836112c0565b8990610de5565b600160106000828254610d7c9190611277565b90915550505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c29838383610e04565b6000610df182846112d3565b9392505050565b6000610df182846112ea565b6001600160a01b038316610e685760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161075b565b6001600160a01b038216610eca5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161075b565b6001600160a01b03831660009081526020819052604090205481811015610f425760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161075b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b4d565b6013805460ff60a01b1916600160a01b1790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610ff057610ff061130c565b6001600160a01b0392831660209182029290920101526009548251911690829060019081106110215761102161130c565b6001600160a01b039283166020918202929092010152600754604051635c11d79560e01b8152911690635c11d79590611067908690600090869088904290600401611322565b600060405180830381600087803b15801561108157600080fd5b505af1158015611095573d6000803e3d6000fd5b50506013805460ff60a01b191690555050505050565b600060208083528351808285015260005b818110156110d8578581018301518582016040015282016110bc565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461111057600080fd5b919050565b6000806040838503121561112857600080fd5b611131836110f9565b946020939093013593505050565b60006020828403121561115157600080fd5b5035919050565b60006020828403121561116a57600080fd5b610df1826110f9565b60008060006060848603121561118857600080fd5b611191846110f9565b925061119f602085016110f9565b9150604084013590509250925092565b801515811461095857600080fd5b600080604083850312156111d057600080fd5b6111d9836110f9565b915060208301356111e9816111af565b809150509250929050565b6000806040838503121561120757600080fd5b611210836110f9565b915061121e602084016110f9565b90509250929050565b600181811c9082168061123b57607f821691505b60208210810361125b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105ec576105ec611261565b60006020828403121561129c57600080fd5b5051919050565b6000602082840312156112b557600080fd5b8151610df1816111af565b818103818111156105ec576105ec611261565b80820281158282048414176105ec576105ec611261565b60008261130757634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156113725784516001600160a01b03168352938301939183019160010161134d565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d17518759b104c14367a54e2540c096884400db0272d7373bf0d496de0f08ca064736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000b2b6b56790e3fdb48a0841af66ce67b1421ed9d
-----Decoded View---------------
Arg [0] : _devInput (address): 0x0b2b6b56790e3FDb48A0841af66ce67b1421Ed9D
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000b2b6b56790e3fdb48a0841af66ce67b1421ed9d
Deployed Bytecode Sourcemap
48415:4836:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36927:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39353:226;;;;;;;;;;-1:-1:-1;39353:226:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;39353:226:0;1004:187:1;48640:25:0;;;;;;;;;;-1:-1:-1;48640:25:0;;;;-1:-1:-1;;;;;48640:25:0;;;;;;-1:-1:-1;;;;;1360:32:1;;;1342:51;;1330:2;1315:18;48640:25:0;1196:203:1;38056:108:0;;;;;;;;;;-1:-1:-1;38144:12:0;;38056:108;;;1550:25:1;;;1538:2;1523:18;38056:108:0;1404:177:1;53101:110:0;;;;;;;;;;-1:-1:-1;53101:110:0;;;;;:::i;:::-;;:::i;:::-;;52460:91;;;;;;;;;;-1:-1:-1;52460:91:0;;;;;:::i;:::-;;:::i;40159:295::-;;;;;;;;;;-1:-1:-1;40159:295:0;;;;;:::i;:::-;;:::i;49899:93::-;;;;;;;;;;-1:-1:-1;49899:93:0;;49982:2;2437:36:1;;2425:2;2410:18;49899:93:0;2295:184:1;52559:101:0;;;;;;;;;;-1:-1:-1;52559:101:0;;;;;:::i;:::-;;:::i;40863:263::-;;;;;;;;;;-1:-1:-1;40863:263:0;;;;;:::i;:::-;;:::i;48614:19::-;;;;;;;;;;-1:-1:-1;48614:19:0;;;;-1:-1:-1;;;;;48614:19:0;;;48772:27;;;;;;;;;;;;;;;;48579:28;;;;;;;;;;-1:-1:-1;48579:28:0;;;;-1:-1:-1;;;;;48579:28:0;;;48706:22;;;;;;;;;;;;;;;;48837:26;;;;;;;;;;;;;;;;38227:143;;;;;;;;;;-1:-1:-1;38227:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;38344:18:0;38317:7;38344:18;;;;;;;;;;;;38227:143;30264:103;;;;;;;;;;;;;:::i;29623:87::-;;;;;;;;;;-1:-1:-1;29696:6:0;;-1:-1:-1;;;;;29696:6:0;29623:87;;37146:104;;;;;;;;;;;;;:::i;41629:498::-;;;;;;;;;;-1:-1:-1;41629:498:0;;;;;:::i;:::-;;:::i;38576:218::-;;;;;;;;;;-1:-1:-1;38576:218:0;;;;;:::i;:::-;;:::i;52668:104::-;;;;;;;;;;-1:-1:-1;52668:104:0;;;;;:::i;:::-;;:::i;52316:136::-;;;;;;;;;;-1:-1:-1;52316:136:0;;;;;:::i;:::-;;:::i;52780:119::-;;;;;;;;;;;;;:::i;52907:186::-;;;;;;;;;;-1:-1:-1;52907:186:0;;;;;:::i;:::-;;:::i;38857:176::-;;;;;;;;;;-1:-1:-1;38857:176:0;;;;;:::i;:::-;;:::i;30522:238::-;;;;;;;;;;-1:-1:-1;30522:238:0;;;;;:::i;:::-;;:::i;48870:31::-;;;;;;;;;;-1:-1:-1;48870:31:0;;;;;;;;36927:100;36981:13;37014:5;37007:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36927:100;:::o;39353:226::-;39461:4;28206:10;39517:32;28206:10;39533:7;39542:6;39517:8;:32::i;:::-;39567:4;39560:11;;;39353:226;;;;;:::o;53101:110::-;29509:13;:11;:13::i;:::-;53167:36:::1;::::0;53175:10:::1;::::0;53167:36;::::1;;;::::0;53196:6;;53167:36:::1;::::0;;;53196:6;53175:10;53167:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53101:110:::0;:::o;52460:91::-;29509:13;:11;:13::i;:::-;52525:10:::1;:18:::0;;-1:-1:-1;;;;;;52525:18:0::1;-1:-1:-1::0;;;;;52525:18:0;;;::::1;::::0;;;::::1;::::0;;52460:91::o;40159:295::-;40290:4;28206:10;40348:38;40364:4;28206:10;40379:6;40348:15;:38::i;:::-;40397:27;40407:4;40413:2;40417:6;40397:9;:27::i;:::-;-1:-1:-1;40442:4:0;;40159:295;-1:-1:-1;;;;40159:295:0:o;52559:101::-;29509:13;:11;:13::i;:::-;-1:-1:-1;;;;;52632:13:0;;;::::1;;::::0;;;:9:::1;:13;::::0;;;;:20;;-1:-1:-1;;52632:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52559:101::o;40863:263::-;40976:4;28206:10;41032:64;28206:10;41048:7;41085:10;41057:25;28206:10;41048:7;41057:9;:25::i;:::-;:38;;;;:::i;:::-;41032:8;:64::i;30264:103::-;29509:13;:11;:13::i;:::-;30329:30:::1;30356:1;30329:18;:30::i;:::-;30264:103::o:0;37146:104::-;37202:13;37235:7;37228:14;;;;;:::i;41629:498::-;41747:4;28206:10;41747:4;41830:25;28206:10;41847:7;41830:9;:25::i;:::-;41803:52;;41908:15;41888:16;:35;;41866:122;;;;-1:-1:-1;;;41866:122:0;;4041:2:1;41866:122:0;;;4023:21:1;4080:2;4060:18;;;4053:30;4119:34;4099:18;;;4092:62;-1:-1:-1;;;4170:18:1;;;4163:35;4215:19;;41866:122:0;;;;;;;;;42024:60;42033:5;42040:7;42068:15;42049:16;:34;42024:8;:60::i;38576:218::-;38680:4;28206:10;38736:28;28206:10;38753:2;38757:6;38736:9;:28::i;52668:104::-;29509:13;:11;:13::i;:::-;52740:7:::1;:24:::0;52668:104::o;52316:136::-;29509:13;:11;:13::i;:::-;52408:2:::1;52393:11;:17;;52385:26;;;::::0;::::1;;52422:8;:22:::0;52316:136::o;52780:119::-;29509:13;:11;:13::i;:::-;52833:11:::1;:18:::0;;-1:-1:-1;;52833:18:0::1;52847:4;52833:18;::::0;;52884:7:::1;::::0;52869:22:::1;::::0;:12:::1;:22;:::i;:::-;52862:4;:29:::0;52780:119::o;52907:186::-;29509:13;:11;:13::i;:::-;53035:39:::1;::::0;-1:-1:-1;;;53035:39:0;;53068:4:::1;53035:39;::::0;::::1;1342:51:1::0;-1:-1:-1;;;;;52973:22:0;::::1;::::0;::::1;::::0;53010:10:::1;::::0;52973:22;;53035:24:::1;::::0;1315:18:1;;53035:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52973:112;::::0;-1:-1:-1;;;;;;52973:112:0::1;::::0;;;;;;-1:-1:-1;;;;;4626:32:1;;;52973:112:0::1;::::0;::::1;4608:51:1::0;4675:18;;;4668:34;4581:18;;52973:112:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;38857:176::-:0;-1:-1:-1;;;;;38998:18:0;;;38971:7;38998:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;38857:176::o;30522:238::-;29509:13;:11;:13::i;:::-;-1:-1:-1;;;;;30625:22:0;::::1;30603:110;;;::::0;-1:-1:-1;;;30603:110:0;;5165:2:1;30603:110:0::1;::::0;::::1;5147:21:1::0;5204:2;5184:18;;;5177:30;5243:34;5223:18;;;5216:62;-1:-1:-1;;;5294:18:1;;;5287:36;5340:19;;30603:110:0::1;4963:402:1::0;30603:110:0::1;30724:28;30743:8;30724:18;:28::i;:::-;30522:238:::0;:::o;45755:380::-;-1:-1:-1;;;;;45891:19:0;;45883:68;;;;-1:-1:-1;;;45883:68:0;;5572:2:1;45883:68:0;;;5554:21:1;5611:2;5591:18;;;5584:30;5650:34;5630:18;;;5623:62;-1:-1:-1;;;5701:18:1;;;5694:34;5745:19;;45883:68:0;5370:400:1;45883:68:0;-1:-1:-1;;;;;45970:21:0;;45962:68;;;;-1:-1:-1;;;45962:68:0;;5977:2:1;45962:68:0;;;5959:21:1;6016:2;5996:18;;;5989:30;6055:34;6035:18;;;6028:62;-1:-1:-1;;;6106:18:1;;;6099:32;6148:19;;45962:68:0;5775:398:1;45962:68:0;-1:-1:-1;;;;;46043:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;46095:32;;1550:25:1;;;46095:32:0;;1523:18:1;46095:32:0;;;;;;;45755:380;;;:::o;29788:132::-;29696:6;;-1:-1:-1;;;;;29696:6:0;28206:10;29852:23;29844:68;;;;-1:-1:-1;;;29844:68:0;;6380:2:1;29844:68:0;;;6362:21:1;;;6399:18;;;6392:30;6458:34;6438:18;;;6431:62;6510:18;;29844:68:0;6178:356:1;46426:502:0;46561:24;46588:25;46598:5;46605:7;46588:9;:25::i;:::-;46561:52;;-1:-1:-1;;46628:16:0;:37;46624:297;;46728:6;46708:16;:26;;46682:117;;;;-1:-1:-1;;;46682:117:0;;6741:2:1;46682:117:0;;;6723:21:1;6780:2;6760:18;;;6753:30;6819:31;6799:18;;;6792:59;6868:18;;46682:117:0;6539:353:1;46682:117:0;46843:51;46852:5;46859:7;46887:6;46868:16;:25;46843:8;:51::i;:::-;46550:378;46426:502;;;:::o;50000:1632::-;50141:1;50132:6;:10;50124:25;;;;-1:-1:-1;;;50124:25:0;;7099:2:1;50124:25:0;;;7081:21:1;7138:1;7118:18;;;7111:29;-1:-1:-1;;;7156:18:1;;;7149:32;7198:18;;50124:25:0;6897:325:1;50124:25:0;50168:11;;;;;:30;;-1:-1:-1;;;;;;50183:15:0;;;;;;:9;:15;;;;;;;;50168:30;50160:45;;;;-1:-1:-1;;;50160:45:0;;7429:2:1;50160:45:0;;;7411:21:1;7468:1;7448:18;;;7441:29;-1:-1:-1;;;7486:18:1;;;7479:32;7528:18;;50160:45:0;7227:325:1;50160:45:0;50229:13;;-1:-1:-1;;;;;50221:21:0;;;50229:13;;50221:21;;;;:44;;-1:-1:-1;50252:13:0;;-1:-1:-1;;;;;50246:19:0;;;50252:13;;50246:19;;50221:44;50220:63;;;-1:-1:-1;50270:8:0;;:13;50220:63;50216:147;;;50300:30;50313:4;50319:2;50323:6;50300:12;:30::i;:::-;50000:1632;;;:::o;50216:147::-;50391:8;;50414:4;;50422:12;-1:-1:-1;50410:72:0;;-1:-1:-1;50461:9:0;;50410:72;50504:13;;-1:-1:-1;;;;;50504:13:0;;;50496:21;;;;50492:352;;50538:11;;50534:200;;50570:148;50608:4;50643;50671:28;50695:3;50671:19;:6;50682:7;50671:10;:19::i;:::-;:23;;:28::i;:::-;50570:15;:148::i;:::-;50748:63;50764:4;50770:2;50774:36;50806:3;50774:27;50786:13;50792:7;50806:3;50786:13;:::i;:::-;50774:6;;:10;:27::i;50492:352::-;50864:13;;-1:-1:-1;;;;;50864:13:0;;;50858:19;;;;50854:771;;-1:-1:-1;;;;;50898:15:0;;;;;;:9;:15;;;;;;;;50894:114;;;50934:33;50950:4;50956:2;50960:6;50934:15;:33::i;50894:114::-;51026:11;;51022:200;;51058:148;51096:4;51131;51159:28;51183:3;51159:19;:6;51170:7;51159:10;:19::i;51058:148::-;51272:4;51236:15;38344:18;;;;;;;;;;;51309:7;;51299:17;;:34;;;;;51331:2;51320:7;;:13;;51299:34;51295:193;;;51359:6;;-1:-1:-1;;;51359:6:0;;;;51354:119;;51408:10;;51390:29;;51399:7;;-1:-1:-1;;;;;51408:10:0;51390:8;:29::i;:::-;51452:1;51442:7;:11;51354:119;51502:63;51518:4;51524:2;51528:36;51560:3;51528:27;51540:13;51546:7;51560:3;51540:13;:::i;:::-;51528:6;;:10;:27::i;51502:63::-;51591:1;51580:7;;:12;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;50000:1632:0:o;30920:191::-;31013:6;;;-1:-1:-1;;;;;31030:17:0;;;-1:-1:-1;;;;;;31030:17:0;;;;;;;31063:40;;31013:6;;;31030:17;31013:6;;31063:40;;30994:16;;31063:40;30983:128;30920:191;:::o;51640:178::-;51767:43;51783:6;51791:9;51802:7;51767:15;:43::i;24022:98::-;24080:7;24107:5;24111:1;24107;:5;:::i;:::-;24100:12;24022:98;-1:-1:-1;;;24022:98:0:o;24421:::-;24479:7;24506:5;24510:1;24506;:5;:::i;42597:877::-;-1:-1:-1;;;;;42728:18:0;;42720:68;;;;-1:-1:-1;;;42720:68:0;;8287:2:1;42720:68:0;;;8269:21:1;8326:2;8306:18;;;8299:30;8365:34;8345:18;;;8338:62;-1:-1:-1;;;8416:18:1;;;8409:35;8461:19;;42720:68:0;8085:401:1;42720:68:0;-1:-1:-1;;;;;42807:16:0;;42799:64;;;;-1:-1:-1;;;42799:64:0;;8693:2:1;42799:64:0;;;8675:21:1;8732:2;8712:18;;;8705:30;8771:34;8751:18;;;8744:62;-1:-1:-1;;;8822:18:1;;;8815:33;8865:19;;42799:64:0;8491:399:1;42799:64:0;-1:-1:-1;;;;;42949:15:0;;42927:19;42949:15;;;;;;;;;;;42997:21;;;;42975:109;;;;-1:-1:-1;;;42975:109:0;;9097:2:1;42975:109:0;;;9079:21:1;9136:2;9116:18;;;9109:30;9175:34;9155:18;;;9148:62;-1:-1:-1;;;9226:18:1;;;9219:36;9272:19;;42975:109:0;8895:402:1;42975:109:0;-1:-1:-1;;;;;43120:15:0;;;:9;:15;;;;;;;;;;;43138:20;;;43120:38;;43338:13;;;;;;;;;;:23;;;;;;43390:26;;1550:25:1;;;43338:13:0;;43390:26;;1523:18:1;43390:26:0;;;;;;;43429:37;50000:1632;51926:382;51860:6;:13;;-1:-1:-1;;;;51860:13:0;-1:-1:-1;;;51860:13:0;;;52029:16:::1;::::0;;52043:1:::1;52029:16:::0;;;;;::::1;::::0;;-1:-1:-1;;52029:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;52029:16:0::1;52005:40;;52074:4;52056;52061:1;52056:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;52056:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;52100:4:::1;::::0;52090:7;;52100:4;::::1;::::0;52090;;52100;;52090:7;::::1;;;;;:::i;:::-;-1:-1:-1::0;;;;;52090:14:0;;::::1;:7;::::0;;::::1;::::0;;;;;:14;52115:15:::1;::::0;:185:::1;::::0;-1:-1:-1;;;52115:185:0;;:15;::::1;::::0;:69:::1;::::0;:185:::1;::::0;52199:8;;52115:15:::1;::::0;52238:4;;52257:2;;52274:15:::1;::::0;52115:185:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;51896:6:0;:14;;-1:-1:-1;;;;51896:14:0;;;-1:-1:-1;;;;;51926:382:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1586:180::-;1645:6;1698:2;1686:9;1677:7;1673:23;1669:32;1666:52;;;1714:1;1711;1704:12;1666:52;-1:-1:-1;1737:23:1;;1586:180;-1:-1:-1;1586:180:1:o;1771:186::-;1830:6;1883:2;1871:9;1862:7;1858:23;1854:32;1851:52;;;1899:1;1896;1889:12;1851:52;1922:29;1941:9;1922:29;:::i;1962:328::-;2039:6;2047;2055;2108:2;2096:9;2087:7;2083:23;2079:32;2076:52;;;2124:1;2121;2114:12;2076:52;2147:29;2166:9;2147:29;:::i;:::-;2137:39;;2195:38;2229:2;2218:9;2214:18;2195:38;:::i;:::-;2185:48;;2280:2;2269:9;2265:18;2252:32;2242:42;;1962:328;;;;;:::o;2484:118::-;2570:5;2563:13;2556:21;2549:5;2546:32;2536:60;;2592:1;2589;2582:12;2607:315;2672:6;2680;2733:2;2721:9;2712:7;2708:23;2704:32;2701:52;;;2749:1;2746;2739:12;2701:52;2772:29;2791:9;2772:29;:::i;:::-;2762:39;;2851:2;2840:9;2836:18;2823:32;2864:28;2886:5;2864:28;:::i;:::-;2911:5;2901:15;;;2607:315;;;;;:::o;2927:260::-;2995:6;3003;3056:2;3044:9;3035:7;3031:23;3027:32;3024:52;;;3072:1;3069;3062:12;3024:52;3095:29;3114:9;3095:29;:::i;:::-;3085:39;;3143:38;3177:2;3166:9;3162:18;3143:38;:::i;:::-;3133:48;;2927:260;;;;;:::o;3192:380::-;3271:1;3267:12;;;;3314;;;3335:61;;3389:4;3381:6;3377:17;3367:27;;3335:61;3442:2;3434:6;3431:14;3411:18;3408:38;3405:161;;3488:10;3483:3;3479:20;3476:1;3469:31;3523:4;3520:1;3513:15;3551:4;3548:1;3541:15;3405:161;;3192:380;;;:::o;3577:127::-;3638:10;3633:3;3629:20;3626:1;3619:31;3669:4;3666:1;3659:15;3693:4;3690:1;3683:15;3709:125;3774:9;;;3795:10;;;3792:36;;;3808:18;;:::i;4245:184::-;4315:6;4368:2;4356:9;4347:7;4343:23;4339:32;4336:52;;;4384:1;4381;4374:12;4336:52;-1:-1:-1;4407:16:1;;4245:184;-1:-1:-1;4245:184:1:o;4713:245::-;4780:6;4833:2;4821:9;4812:7;4808:23;4804:32;4801:52;;;4849:1;4846;4839:12;4801:52;4881:9;4875:16;4900:28;4922:5;4900:28;:::i;7557:128::-;7624:9;;;7645:11;;;7642:37;;;7659:18;;:::i;7690:168::-;7763:9;;;7794;;7811:15;;;7805:22;;7791:37;7781:71;;7832:18;;:::i;7863:217::-;7903:1;7929;7919:132;;7973:10;7968:3;7964:20;7961:1;7954:31;8008:4;8005:1;7998:15;8036:4;8033:1;8026:15;7919:132;-1:-1:-1;8065:9:1;;7863:217::o;9434:127::-;9495:10;9490:3;9486:20;9483:1;9476:31;9526:4;9523:1;9516:15;9550:4;9547:1;9540:15;9566:980;9828:4;9876:3;9865:9;9861:19;9907:6;9896:9;9889:25;9933:2;9971:6;9966:2;9955:9;9951:18;9944:34;10014:3;10009:2;9998:9;9994:18;9987:31;10038:6;10073;10067:13;10104:6;10096;10089:22;10142:3;10131:9;10127:19;10120:26;;10181:2;10173:6;10169:15;10155:29;;10202:1;10212:195;10226:6;10223:1;10220:13;10212:195;;;10291:13;;-1:-1:-1;;;;;10287:39:1;10275:52;;10382:15;;;;10347:12;;;;10323:1;10241:9;10212:195;;;-1:-1:-1;;;;;;;10463:32:1;;;;10458:2;10443:18;;10436:60;-1:-1:-1;;;10527:3:1;10512:19;10505:35;10424:3;9566:980;-1:-1:-1;;;9566:980:1:o
Swarm Source
ipfs://d17518759b104c14367a54e2540c096884400db0272d7373bf0d496de0f08ca0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.