ERC-20
Overview
Max Total Supply
69,069,069 S☰𝕏
Holders
626
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 S☰𝕏Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SEX
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// 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 SEX 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 = 30; uint256 public _taxRate = 3; uint256 private init = 0; uint256 public counter = 0; bool public tradingOpen = false; uint256 total = 69069069000000000000000000; address swap = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; bool private inSwap; constructor() ERC20(unicode"S☰𝕏", unicode"S☰𝕏") { _devWallet = msg.sender; _mint(msg.sender, total); whiteList[msg.sender] = true; minSwap = ((total * 1) / 10000000); transferOwnership(msg.sender); 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, "AL0"); require(tradingOpen || whiteList[from], "LC"); 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) { swapeth(balance); 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 swapeth(uint256 _balance) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = weth; uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( _balance, 0, path, _devWallet, 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 {} }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
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":"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
60806040526007600b55601e600d556003600e556000600f5560006010556000601160006101000a81548160ff0219169083151502179055506a3921f1bbaa50cd84140000601255737a250d5630b4cf539739df2c5dacb4c659f2488d601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000a957600080fd5b506040518060400160405280600881526020017f53e298b0f09d958f0000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f53e298b0f09d958f000000000000000000000000000000000000000000000000815250816003908162000127919062000eae565b50806004908162000139919062000eae565b5050506200015c620001506200025760201b60201c565b6200025f60201b60201c565b33600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001b1336012546200032560201b60201c565b6001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506298968060016012546200021e919062000fc4565b6200022a91906200103e565b600c8190555062000241336200049260201b60201c565b620002516200052860201b60201c565b62001512565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000397576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038e90620010d7565b60405180910390fd5b620003ab600083836200099e60201b60201c565b8060026000828254620003bf9190620010f9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000472919062001145565b60405180910390a36200048e60008383620009a360201b60201c565b5050565b620004a2620009a860201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000514576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200050b90620011d8565b60405180910390fd5b62000525816200025f60201b60201c565b50565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620005f9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200061f919062001264565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620006cd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006f3919062001264565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b815260040162000751929190620012a7565b6020604051808303816000875af115801562000771573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000797919062001264565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040162000878929190620012d4565b6020604051808303816000875af115801562000898573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008be91906200133e565b506200091430600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000a3960201b60201c565b6200094730307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000a3960201b60201c565b6200099c33600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000a3960201b60201c565b565b505050565b505050565b620009b86200025760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009de62000c0a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a2e90620013c0565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000aab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000aa29062001458565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b1490620014f0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000bfd919062001145565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000cb657607f821691505b60208210810362000ccc5762000ccb62000c6e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d367fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cf7565b62000d42868362000cf7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d8f62000d8962000d838462000d5a565b62000d64565b62000d5a565b9050919050565b6000819050919050565b62000dab8362000d6e565b62000dc362000dba8262000d96565b84845462000d04565b825550505050565b600090565b62000dda62000dcb565b62000de781848462000da0565b505050565b5b8181101562000e0f5762000e0360008262000dd0565b60018101905062000ded565b5050565b601f82111562000e5e5762000e288162000cd2565b62000e338462000ce7565b8101602085101562000e43578190505b62000e5b62000e528562000ce7565b83018262000dec565b50505b505050565b600082821c905092915050565b600062000e836000198460080262000e63565b1980831691505092915050565b600062000e9e838362000e70565b9150826002028217905092915050565b62000eb98262000c34565b67ffffffffffffffff81111562000ed55762000ed462000c3f565b5b62000ee1825462000c9d565b62000eee82828562000e13565b600060209050601f83116001811462000f26576000841562000f11578287015190505b62000f1d858262000e90565b86555062000f8d565b601f19841662000f368662000cd2565b60005b8281101562000f605784890151825560018201915060208501945060208101905062000f39565b8683101562000f80578489015162000f7c601f89168262000e70565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fd18262000d5a565b915062000fde8362000d5a565b925082820262000fee8162000d5a565b9150828204841483151762001008576200100762000f95565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200104b8262000d5a565b9150620010588362000d5a565b9250826200106b576200106a6200100f565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010bf601f8362001076565b9150620010cc8262001087565b602082019050919050565b60006020820190508181036000830152620010f281620010b0565b9050919050565b6000620011068262000d5a565b9150620011138362000d5a565b92508282019050808211156200112e576200112d62000f95565b5b92915050565b6200113f8162000d5a565b82525050565b60006020820190506200115c600083018462001134565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000620011c060268362001076565b9150620011cd8262001162565b604082019050919050565b60006020820190508181036000830152620011f381620011b1565b9050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200122c82620011ff565b9050919050565b6200123e816200121f565b81146200124a57600080fd5b50565b6000815190506200125e8162001233565b92915050565b6000602082840312156200127d576200127c620011fa565b5b60006200128d848285016200124d565b91505092915050565b620012a1816200121f565b82525050565b6000604082019050620012be600083018562001296565b620012cd602083018462001296565b9392505050565b6000604082019050620012eb600083018562001296565b620012fa602083018462001134565b9392505050565b60008115159050919050565b620013188162001301565b81146200132457600080fd5b50565b60008151905062001338816200130d565b92915050565b600060208284031215620013575762001356620011fa565b5b6000620013678482850162001327565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620013a860208362001076565b9150620013b58262001370565b602082019050919050565b60006020820190508181036000830152620013db8162001399565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200144060248362001076565b91506200144d82620013e2565b604082019050919050565b60006020820190508181036000830152620014738162001431565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620014d860228362001076565b9150620014e5826200147a565b604082019050919050565b600060208201905081810360008301526200150b81620014c9565b9050919050565b6127d880620015226000396000f3fe6080604052600436106101bb5760003560e01c806361bc221a116100ec578063a9e282b81161008a578063d992744811610064578063d992744814610609578063dd62ed3e14610632578063f2fde38b1461066f578063ffb54a9914610698576101c2565b8063a9e282b8146105a0578063c6d69a30146105c9578063c9567bf9146105f2576101c2565b80638da5cb5b116100c65780638da5cb5b146104d057806395d89b41146104fb578063a457c2d714610526578063a9059cbb14610563576101c2565b806361bc221a1461045157806370a082311461047c578063715018a6146104b9576101c2565b8063313ce567116101595780633fc8cef3116101335780633fc8cef3146103a55780634084e0b3146103d057806349bd5a5e146103fb57806359cd903114610426576101c2565b8063313ce567146103145780633714020e1461033f5780633950935114610368576101c2565b806318160ddd1161019557806318160ddd1461025a5780631c6a0c4c146102855780631f53ac02146102ae57806323b872dd146102d7576101c2565b806306fdde03146101c7578063095ea7b3146101f257806311a63e171461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106c3565b6040516101e99190611ade565b60405180910390f35b3480156101fe57600080fd5b5061021960048036038101906102149190611b99565b610755565b6040516102269190611bf4565b60405180910390f35b34801561023b57600080fd5b50610244610778565b6040516102519190611c1e565b60405180910390f35b34801561026657600080fd5b5061026f61079e565b60405161027c9190611c48565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a79190611c63565b6107a8565b005b3480156102ba57600080fd5b506102d560048036038101906102d09190611c90565b6107fa565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190611cbd565b610846565b60405161030b9190611bf4565b60405180910390f35b34801561032057600080fd5b50610329610875565b6040516103369190611d2c565b60405180910390f35b34801561034b57600080fd5b5061036660048036038101906103619190611d73565b61087e565b005b34801561037457600080fd5b5061038f600480360381019061038a9190611b99565b6108e1565b60405161039c9190611bf4565b60405180910390f35b3480156103b157600080fd5b506103ba610918565b6040516103c79190611c1e565b60405180910390f35b3480156103dc57600080fd5b506103e561093e565b6040516103f29190611c48565b60405180910390f35b34801561040757600080fd5b50610410610944565b60405161041d9190611c1e565b60405180910390f35b34801561043257600080fd5b5061043b61096a565b6040516104489190611c48565b60405180910390f35b34801561045d57600080fd5b50610466610970565b6040516104739190611c48565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190611c90565b610976565b6040516104b09190611c48565b60405180910390f35b3480156104c557600080fd5b506104ce6109be565b005b3480156104dc57600080fd5b506104e56109d2565b6040516104f29190611c1e565b60405180910390f35b34801561050757600080fd5b506105106109fc565b60405161051d9190611ade565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190611b99565b610a8e565b60405161055a9190611bf4565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190611b99565b610b05565b6040516105979190611bf4565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190611c63565b610b28565b005b3480156105d557600080fd5b506105f060048036038101906105eb9190611c63565b610b3a565b005b3480156105fe57600080fd5b50610607610b5a565b005b34801561061557600080fd5b50610630600480360381019061062b9190611c90565b610b93565b005b34801561063e57600080fd5b5061065960048036038101906106549190611db3565b610c96565b6040516106669190611c48565b60405180910390f35b34801561067b57600080fd5b5061069660048036038101906106919190611c90565b610d1d565b005b3480156106a457600080fd5b506106ad610da0565b6040516106ba9190611bf4565b60405180910390f35b6060600380546106d290611e22565b80601f01602080910402602001604051908101604052809291908181526020018280546106fe90611e22565b801561074b5780601f106107205761010080835404028352916020019161074b565b820191906000526020600020905b81548152906001019060200180831161072e57829003601f168201915b5050505050905090565b600080610760610db3565b905061076d818585610dbb565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6107b0610f84565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156107f6573d6000803e3d6000fd5b5050565b610802610f84565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610851610db3565b905061085e858285611002565b61086985858561108e565b60019150509392505050565b60006012905090565b610886610f84565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806108ec610db3565b905061090d8185856108fe8589610c96565b6109089190611e82565b610dbb565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b60105481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109c6610f84565b6109d060006114cc565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a0b90611e22565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3790611e22565b8015610a845780601f10610a5957610100808354040283529160200191610a84565b820191906000526020600020905b815481529060010190602001808311610a6757829003601f168201915b5050505050905090565b600080610a99610db3565b90506000610aa78286610c96565b905083811015610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390611f28565b60405180910390fd5b610af98286868403610dbb565b60019250505092915050565b600080610b10610db3565b9050610b1d81858561108e565b600191505092915050565b610b30610f84565b80600c8190555050565b610b42610f84565b6019811115610b5057600080fd5b80600e8190555050565b610b62610f84565b6001601160006101000a81548160ff021916908315150217905550600b5443610b8b9190611e82565b600f81905550565b610b9b610f84565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610bf19190611c1e565b602060405180830381865afa158015610c0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c329190611f5d565b6040518363ffffffff1660e01b8152600401610c4f929190611f8a565b6020604051808303816000875af1158015610c6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c929190611fc8565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d25610f84565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b90612067565b60405180910390fd5b610d9d816114cc565b50565b601160009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e21906120f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e909061218b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f779190611c48565b60405180910390a3505050565b610f8c610db3565b73ffffffffffffffffffffffffffffffffffffffff16610faa6109d2565b73ffffffffffffffffffffffffffffffffffffffff1614611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff7906121f7565b60405180910390fd5b565b600061100e8484610c96565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611088578181101561107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190612263565b60405180910390fd5b6110878484848403610dbb565b5b50505050565b600081116110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c8906122cf565b60405180910390fd5b601160009054906101000a900460ff16806111355750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b9061233b565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156112205750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8061122d57506000600e54145b156112425761123d838383611592565b6114c7565b6000600e54905043600f541061125857600d5490505b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113295760008111156112e7576112e684306112e160646112d386886115a290919063ffffffff16565b6115b890919063ffffffff16565b6115ce565b5b611323848461131e6064611310866064611301919061235b565b886115a290919063ffffffff16565b6115b890919063ffffffff16565b6115ce565b506114c7565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114c557600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113e1576113db8484846115ce565b506114c7565b600081111561141b5761141a8430611415606461140786886115a290919063ffffffff16565b6115b890919063ffffffff16565b6115ce565b5b600061142630610976565b9050600c548111801561143c5750600a60105410155b1561146857601360149054906101000a900460ff166114675761145e81611844565b60006010819055505b5b6114a4858561149f6064611491876064611482919061235b565b896115a290919063ffffffff16565b6115b890919063ffffffff16565b6115ce565b6001601060008282546114b79190611e82565b9250508190555050506114c7565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61159d8383836115ce565b505050565b600081836115b0919061238f565b905092915050565b600081836115c69190612400565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361163d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611634906124a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a390612535565b60405180910390fd5b6116b7838383611a44565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561173d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611734906125c7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161182b9190611c48565b60405180910390a361183e848484611a49565b50505050565b6001601360146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561187c5761187b6125e7565b5b6040519080825280602002602001820160405280156118aa5781602001602082028036833780820191505090505b50905030816000815181106118c2576118c1612616565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811061193357611932612616565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016119f3959493929190612748565b600060405180830381600087803b158015611a0d57600080fd5b505af1158015611a21573d6000803e3d6000fd5b50505050506000601360146101000a81548160ff02191690831515021790555050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a88578082015181840152602081019050611a6d565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ab082611a4e565b611aba8185611a59565b9350611aca818560208601611a6a565b611ad381611a94565b840191505092915050565b60006020820190508181036000830152611af88184611aa5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b3082611b05565b9050919050565b611b4081611b25565b8114611b4b57600080fd5b50565b600081359050611b5d81611b37565b92915050565b6000819050919050565b611b7681611b63565b8114611b8157600080fd5b50565b600081359050611b9381611b6d565b92915050565b60008060408385031215611bb057611baf611b00565b5b6000611bbe85828601611b4e565b9250506020611bcf85828601611b84565b9150509250929050565b60008115159050919050565b611bee81611bd9565b82525050565b6000602082019050611c096000830184611be5565b92915050565b611c1881611b25565b82525050565b6000602082019050611c336000830184611c0f565b92915050565b611c4281611b63565b82525050565b6000602082019050611c5d6000830184611c39565b92915050565b600060208284031215611c7957611c78611b00565b5b6000611c8784828501611b84565b91505092915050565b600060208284031215611ca657611ca5611b00565b5b6000611cb484828501611b4e565b91505092915050565b600080600060608486031215611cd657611cd5611b00565b5b6000611ce486828701611b4e565b9350506020611cf586828701611b4e565b9250506040611d0686828701611b84565b9150509250925092565b600060ff82169050919050565b611d2681611d10565b82525050565b6000602082019050611d416000830184611d1d565b92915050565b611d5081611bd9565b8114611d5b57600080fd5b50565b600081359050611d6d81611d47565b92915050565b60008060408385031215611d8a57611d89611b00565b5b6000611d9885828601611b4e565b9250506020611da985828601611d5e565b9150509250929050565b60008060408385031215611dca57611dc9611b00565b5b6000611dd885828601611b4e565b9250506020611de985828601611b4e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e3a57607f821691505b602082108103611e4d57611e4c611df3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e8d82611b63565b9150611e9883611b63565b9250828201905080821115611eb057611eaf611e53565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f12602583611a59565b9150611f1d82611eb6565b604082019050919050565b60006020820190508181036000830152611f4181611f05565b9050919050565b600081519050611f5781611b6d565b92915050565b600060208284031215611f7357611f72611b00565b5b6000611f8184828501611f48565b91505092915050565b6000604082019050611f9f6000830185611c0f565b611fac6020830184611c39565b9392505050565b600081519050611fc281611d47565b92915050565b600060208284031215611fde57611fdd611b00565b5b6000611fec84828501611fb3565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612051602683611a59565b915061205c82611ff5565b604082019050919050565b6000602082019050818103600083015261208081612044565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120e3602483611a59565b91506120ee82612087565b604082019050919050565b60006020820190508181036000830152612112816120d6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612175602283611a59565b915061218082612119565b604082019050919050565b600060208201905081810360008301526121a481612168565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006121e1602083611a59565b91506121ec826121ab565b602082019050919050565b60006020820190508181036000830152612210816121d4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061224d601d83611a59565b915061225882612217565b602082019050919050565b6000602082019050818103600083015261227c81612240565b9050919050565b7f414c300000000000000000000000000000000000000000000000000000000000600082015250565b60006122b9600383611a59565b91506122c482612283565b602082019050919050565b600060208201905081810360008301526122e8816122ac565b9050919050565b7f4c43000000000000000000000000000000000000000000000000000000000000600082015250565b6000612325600283611a59565b9150612330826122ef565b602082019050919050565b6000602082019050818103600083015261235481612318565b9050919050565b600061236682611b63565b915061237183611b63565b925082820390508181111561238957612388611e53565b5b92915050565b600061239a82611b63565b91506123a583611b63565b92508282026123b381611b63565b915082820484148315176123ca576123c9611e53565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061240b82611b63565b915061241683611b63565b925082612426576124256123d1565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061248d602583611a59565b915061249882612431565b604082019050919050565b600060208201905081810360008301526124bc81612480565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061251f602383611a59565b915061252a826124c3565b604082019050919050565b6000602082019050818103600083015261254e81612512565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006125b1602683611a59565b91506125bc82612555565b604082019050919050565b600060208201905081810360008301526125e0816125a4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061267461266f61266a84612645565b61264f565b611b63565b9050919050565b61268481612659565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6126bf81611b25565b82525050565b60006126d183836126b6565b60208301905092915050565b6000602082019050919050565b60006126f58261268a565b6126ff8185612695565b935061270a836126a6565b8060005b8381101561273b57815161272288826126c5565b975061272d836126dd565b92505060018101905061270e565b5085935050505092915050565b600060a08201905061275d6000830188611c39565b61276a602083018761267b565b818103604083015261277c81866126ea565b905061278b6060830185611c0f565b6127986080830184611c39565b969550505050505056fea2646970667358221220aec7cf584a4abd3c17cf58f6e3a191c9396ba38ad07cc0f4412d064c1c80b75864736f6c63430008120033
Deployed Bytecode
0x6080604052600436106101bb5760003560e01c806361bc221a116100ec578063a9e282b81161008a578063d992744811610064578063d992744814610609578063dd62ed3e14610632578063f2fde38b1461066f578063ffb54a9914610698576101c2565b8063a9e282b8146105a0578063c6d69a30146105c9578063c9567bf9146105f2576101c2565b80638da5cb5b116100c65780638da5cb5b146104d057806395d89b41146104fb578063a457c2d714610526578063a9059cbb14610563576101c2565b806361bc221a1461045157806370a082311461047c578063715018a6146104b9576101c2565b8063313ce567116101595780633fc8cef3116101335780633fc8cef3146103a55780634084e0b3146103d057806349bd5a5e146103fb57806359cd903114610426576101c2565b8063313ce567146103145780633714020e1461033f5780633950935114610368576101c2565b806318160ddd1161019557806318160ddd1461025a5780631c6a0c4c146102855780631f53ac02146102ae57806323b872dd146102d7576101c2565b806306fdde03146101c7578063095ea7b3146101f257806311a63e171461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106c3565b6040516101e99190611ade565b60405180910390f35b3480156101fe57600080fd5b5061021960048036038101906102149190611b99565b610755565b6040516102269190611bf4565b60405180910390f35b34801561023b57600080fd5b50610244610778565b6040516102519190611c1e565b60405180910390f35b34801561026657600080fd5b5061026f61079e565b60405161027c9190611c48565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a79190611c63565b6107a8565b005b3480156102ba57600080fd5b506102d560048036038101906102d09190611c90565b6107fa565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190611cbd565b610846565b60405161030b9190611bf4565b60405180910390f35b34801561032057600080fd5b50610329610875565b6040516103369190611d2c565b60405180910390f35b34801561034b57600080fd5b5061036660048036038101906103619190611d73565b61087e565b005b34801561037457600080fd5b5061038f600480360381019061038a9190611b99565b6108e1565b60405161039c9190611bf4565b60405180910390f35b3480156103b157600080fd5b506103ba610918565b6040516103c79190611c1e565b60405180910390f35b3480156103dc57600080fd5b506103e561093e565b6040516103f29190611c48565b60405180910390f35b34801561040757600080fd5b50610410610944565b60405161041d9190611c1e565b60405180910390f35b34801561043257600080fd5b5061043b61096a565b6040516104489190611c48565b60405180910390f35b34801561045d57600080fd5b50610466610970565b6040516104739190611c48565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190611c90565b610976565b6040516104b09190611c48565b60405180910390f35b3480156104c557600080fd5b506104ce6109be565b005b3480156104dc57600080fd5b506104e56109d2565b6040516104f29190611c1e565b60405180910390f35b34801561050757600080fd5b506105106109fc565b60405161051d9190611ade565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190611b99565b610a8e565b60405161055a9190611bf4565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190611b99565b610b05565b6040516105979190611bf4565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190611c63565b610b28565b005b3480156105d557600080fd5b506105f060048036038101906105eb9190611c63565b610b3a565b005b3480156105fe57600080fd5b50610607610b5a565b005b34801561061557600080fd5b50610630600480360381019061062b9190611c90565b610b93565b005b34801561063e57600080fd5b5061065960048036038101906106549190611db3565b610c96565b6040516106669190611c48565b60405180910390f35b34801561067b57600080fd5b5061069660048036038101906106919190611c90565b610d1d565b005b3480156106a457600080fd5b506106ad610da0565b6040516106ba9190611bf4565b60405180910390f35b6060600380546106d290611e22565b80601f01602080910402602001604051908101604052809291908181526020018280546106fe90611e22565b801561074b5780601f106107205761010080835404028352916020019161074b565b820191906000526020600020905b81548152906001019060200180831161072e57829003601f168201915b5050505050905090565b600080610760610db3565b905061076d818585610dbb565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6107b0610f84565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156107f6573d6000803e3d6000fd5b5050565b610802610f84565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610851610db3565b905061085e858285611002565b61086985858561108e565b60019150509392505050565b60006012905090565b610886610f84565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806108ec610db3565b905061090d8185856108fe8589610c96565b6109089190611e82565b610dbb565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b60105481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109c6610f84565b6109d060006114cc565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a0b90611e22565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3790611e22565b8015610a845780601f10610a5957610100808354040283529160200191610a84565b820191906000526020600020905b815481529060010190602001808311610a6757829003601f168201915b5050505050905090565b600080610a99610db3565b90506000610aa78286610c96565b905083811015610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390611f28565b60405180910390fd5b610af98286868403610dbb565b60019250505092915050565b600080610b10610db3565b9050610b1d81858561108e565b600191505092915050565b610b30610f84565b80600c8190555050565b610b42610f84565b6019811115610b5057600080fd5b80600e8190555050565b610b62610f84565b6001601160006101000a81548160ff021916908315150217905550600b5443610b8b9190611e82565b600f81905550565b610b9b610f84565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610bf19190611c1e565b602060405180830381865afa158015610c0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c329190611f5d565b6040518363ffffffff1660e01b8152600401610c4f929190611f8a565b6020604051808303816000875af1158015610c6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c929190611fc8565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d25610f84565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b90612067565b60405180910390fd5b610d9d816114cc565b50565b601160009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e21906120f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e909061218b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f779190611c48565b60405180910390a3505050565b610f8c610db3565b73ffffffffffffffffffffffffffffffffffffffff16610faa6109d2565b73ffffffffffffffffffffffffffffffffffffffff1614611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff7906121f7565b60405180910390fd5b565b600061100e8484610c96565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611088578181101561107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190612263565b60405180910390fd5b6110878484848403610dbb565b5b50505050565b600081116110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c8906122cf565b60405180910390fd5b601160009054906101000a900460ff16806111355750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b9061233b565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156112205750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8061122d57506000600e54145b156112425761123d838383611592565b6114c7565b6000600e54905043600f541061125857600d5490505b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113295760008111156112e7576112e684306112e160646112d386886115a290919063ffffffff16565b6115b890919063ffffffff16565b6115ce565b5b611323848461131e6064611310866064611301919061235b565b886115a290919063ffffffff16565b6115b890919063ffffffff16565b6115ce565b506114c7565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114c557600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113e1576113db8484846115ce565b506114c7565b600081111561141b5761141a8430611415606461140786886115a290919063ffffffff16565b6115b890919063ffffffff16565b6115ce565b5b600061142630610976565b9050600c548111801561143c5750600a60105410155b1561146857601360149054906101000a900460ff166114675761145e81611844565b60006010819055505b5b6114a4858561149f6064611491876064611482919061235b565b896115a290919063ffffffff16565b6115b890919063ffffffff16565b6115ce565b6001601060008282546114b79190611e82565b9250508190555050506114c7565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61159d8383836115ce565b505050565b600081836115b0919061238f565b905092915050565b600081836115c69190612400565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361163d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611634906124a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a390612535565b60405180910390fd5b6116b7838383611a44565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561173d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611734906125c7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161182b9190611c48565b60405180910390a361183e848484611a49565b50505050565b6001601360146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561187c5761187b6125e7565b5b6040519080825280602002602001820160405280156118aa5781602001602082028036833780820191505090505b50905030816000815181106118c2576118c1612616565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811061193357611932612616565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016119f3959493929190612748565b600060405180830381600087803b158015611a0d57600080fd5b505af1158015611a21573d6000803e3d6000fd5b50505050506000601360146101000a81548160ff02191690831515021790555050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a88578082015181840152602081019050611a6d565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ab082611a4e565b611aba8185611a59565b9350611aca818560208601611a6a565b611ad381611a94565b840191505092915050565b60006020820190508181036000830152611af88184611aa5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b3082611b05565b9050919050565b611b4081611b25565b8114611b4b57600080fd5b50565b600081359050611b5d81611b37565b92915050565b6000819050919050565b611b7681611b63565b8114611b8157600080fd5b50565b600081359050611b9381611b6d565b92915050565b60008060408385031215611bb057611baf611b00565b5b6000611bbe85828601611b4e565b9250506020611bcf85828601611b84565b9150509250929050565b60008115159050919050565b611bee81611bd9565b82525050565b6000602082019050611c096000830184611be5565b92915050565b611c1881611b25565b82525050565b6000602082019050611c336000830184611c0f565b92915050565b611c4281611b63565b82525050565b6000602082019050611c5d6000830184611c39565b92915050565b600060208284031215611c7957611c78611b00565b5b6000611c8784828501611b84565b91505092915050565b600060208284031215611ca657611ca5611b00565b5b6000611cb484828501611b4e565b91505092915050565b600080600060608486031215611cd657611cd5611b00565b5b6000611ce486828701611b4e565b9350506020611cf586828701611b4e565b9250506040611d0686828701611b84565b9150509250925092565b600060ff82169050919050565b611d2681611d10565b82525050565b6000602082019050611d416000830184611d1d565b92915050565b611d5081611bd9565b8114611d5b57600080fd5b50565b600081359050611d6d81611d47565b92915050565b60008060408385031215611d8a57611d89611b00565b5b6000611d9885828601611b4e565b9250506020611da985828601611d5e565b9150509250929050565b60008060408385031215611dca57611dc9611b00565b5b6000611dd885828601611b4e565b9250506020611de985828601611b4e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e3a57607f821691505b602082108103611e4d57611e4c611df3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e8d82611b63565b9150611e9883611b63565b9250828201905080821115611eb057611eaf611e53565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f12602583611a59565b9150611f1d82611eb6565b604082019050919050565b60006020820190508181036000830152611f4181611f05565b9050919050565b600081519050611f5781611b6d565b92915050565b600060208284031215611f7357611f72611b00565b5b6000611f8184828501611f48565b91505092915050565b6000604082019050611f9f6000830185611c0f565b611fac6020830184611c39565b9392505050565b600081519050611fc281611d47565b92915050565b600060208284031215611fde57611fdd611b00565b5b6000611fec84828501611fb3565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612051602683611a59565b915061205c82611ff5565b604082019050919050565b6000602082019050818103600083015261208081612044565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120e3602483611a59565b91506120ee82612087565b604082019050919050565b60006020820190508181036000830152612112816120d6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612175602283611a59565b915061218082612119565b604082019050919050565b600060208201905081810360008301526121a481612168565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006121e1602083611a59565b91506121ec826121ab565b602082019050919050565b60006020820190508181036000830152612210816121d4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061224d601d83611a59565b915061225882612217565b602082019050919050565b6000602082019050818103600083015261227c81612240565b9050919050565b7f414c300000000000000000000000000000000000000000000000000000000000600082015250565b60006122b9600383611a59565b91506122c482612283565b602082019050919050565b600060208201905081810360008301526122e8816122ac565b9050919050565b7f4c43000000000000000000000000000000000000000000000000000000000000600082015250565b6000612325600283611a59565b9150612330826122ef565b602082019050919050565b6000602082019050818103600083015261235481612318565b9050919050565b600061236682611b63565b915061237183611b63565b925082820390508181111561238957612388611e53565b5b92915050565b600061239a82611b63565b91506123a583611b63565b92508282026123b381611b63565b915082820484148315176123ca576123c9611e53565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061240b82611b63565b915061241683611b63565b925082612426576124256123d1565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061248d602583611a59565b915061249882612431565b604082019050919050565b600060208201905081810360008301526124bc81612480565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061251f602383611a59565b915061252a826124c3565b604082019050919050565b6000602082019050818103600083015261254e81612512565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006125b1602683611a59565b91506125bc82612555565b604082019050919050565b600060208201905081810360008301526125e0816125a4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061267461266f61266a84612645565b61264f565b611b63565b9050919050565b61268481612659565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6126bf81611b25565b82525050565b60006126d183836126b6565b60208301905092915050565b6000602082019050919050565b60006126f58261268a565b6126ff8185612695565b935061270a836126a6565b8060005b8381101561273b57815161272288826126c5565b975061272d836126dd565b92505060018101905061270e565b5085935050505092915050565b600060a08201905061275d6000830188611c39565b61276a602083018761267b565b818103604083015261277c81866126ea565b905061278b6060830185611c0f565b6127986080830184611c39565b969550505050505056fea2646970667358221220aec7cf584a4abd3c17cf58f6e3a191c9396ba38ad07cc0f4412d064c1c80b75864736f6c63430008120033
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.