Overview
TokenID
548
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Veil
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant NOT_ENTERED = 1; uint256 private constant ENTERED = 2; uint256 private _status; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); constructor() { _status = NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be NOT_ENTERED if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail _status = ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } } // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } ////// src/IUniswapV2Router02.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/utils/Pausable.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol) pragma solidity ^0.8.20; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { bool private _paused; /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); /** * @dev The operation failed because the contract is paused. */ error EnforcedPause(); /** * @dev The operation failed because the contract is not paused. */ error ExpectedPause(); /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { if (paused()) { revert EnforcedPause(); } } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { if (!paused()) { revert ExpectedPause(); } } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/access/Ownable2Step.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable2Step.sol) pragma solidity ^0.8.20; /** * @dev Contract module which provides access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is specified at deployment time in the constructor for `Ownable`. This * can later be changed with {transferOwnership} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() public virtual { address sender = _msgSender(); if (pendingOwner() != sender) { revert OwnableUnauthorizedAccount(sender); } _transferOwnership(sender); } } // File: contracts/ERC404.sol pragma solidity ^0.8.0; abstract contract ERC721Receiver { function onERC721Received( address, address, uint256, bytes calldata ) external virtual returns (bytes4) { return ERC721Receiver.onERC721Received.selector; } } /// @notice ERC404 /// A gas-efficient, mixed ERC20 / ERC721 implementation /// with native liquidity and fractionalization. /// /// This is an experimental standard designed to integrate /// with pre-existing ERC20 / ERC721 support as smoothly as /// possible. /// /// @dev In order to support full functionality of ERC20 and ERC721 /// supply assumptions are made that slightly constraint usage. /// Ensure decimals are sufficiently large (standard 18 recommended) /// as ids are effectively encoded in the lowest range of amounts. /// /// NFTs are spent on ERC20 functions in a FILO queue, this is by /// design. /// abstract contract ERC404 is Ownable2Step { // Events event ERC20Transfer( address indexed from, address indexed to, uint256 amount ); event Approval( address indexed owner, address indexed spender, uint256 amount ); event Transfer( address indexed from, address indexed to, uint256 indexed id ); event ERC721Approval( address indexed owner, address indexed spender, uint256 indexed id ); event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); // Errors error NotFound(); error AlreadyExists(); error InvalidRecipient(); error InvalidSender(); error UnsafeRecipient(); error Unauthorized(); error InvalidOwner(); // Metadata /// @dev Token name string public name; /// @dev Token symbol string public symbol; /// @dev Decimals for fractional representation uint8 public immutable decimals; /// @dev Total supply in fractionalized representation uint256 public immutable totalSupply; /// @dev Current mint counter, monotonically increasing to ensure accurate ownership uint256 public minted; // Mappings /// @dev Balance of user in fractional representation mapping(address => uint256) public balanceOf; /// @dev Allowance of user in fractional representation mapping(address => mapping(address => uint256)) public allowance; /// @dev Approval in native representaion mapping(uint256 => address) public getApproved; /// @dev Approval for all in native representation mapping(address => mapping(address => bool)) public isApprovedForAll; /// @dev Owner of id in native representation mapping(uint256 => address) internal _ownerOf; /// @dev Array of owned ids in native representation mapping(address => uint256[]) internal _owned; /// @dev Tracks indices for the _owned mapping mapping(uint256 => uint256) internal _ownedIndex; /// @dev Addresses whitelisted from minting / burning for gas savings (pairs, routers, etc) mapping(address => bool) public whitelist; // Constructor constructor( string memory _name, string memory _symbol, uint8 _decimals, uint256 _totalNativeSupply, address _owner ) Ownable(_owner) { name = _name; symbol = _symbol; decimals = _decimals; totalSupply = _totalNativeSupply * (10 ** decimals); } /// @notice Initialization function to set pairs / etc /// saving gas by avoiding mint / burn on unnecessary targets function setWhitelist(address target, bool state) public onlyOwner { whitelist[target] = state; } /// @notice Function to find owner of a given native token function ownerOf(uint256 id) public view virtual returns (address owner) { owner = _ownerOf[id]; if (owner == address(0)) { revert NotFound(); } } /// @notice tokenURI must be implemented by child contract function tokenURI(uint256 id) public view virtual returns (string memory); /// @notice Function for token approvals /// @dev This function assumes id / native if amount less than or equal to current max id function approve( address spender, uint256 amountOrId ) public virtual returns (bool) { if (amountOrId <= minted && amountOrId > 0) { address owner = _ownerOf[amountOrId]; if (msg.sender != owner && !isApprovedForAll[owner][msg.sender]) { revert Unauthorized(); } getApproved[amountOrId] = spender; emit Approval(owner, spender, amountOrId); } else { allowance[msg.sender][spender] = amountOrId; emit Approval(msg.sender, spender, amountOrId); } return true; } 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"); allowance[owner][spender] = amount; emit Approval(owner, spender, amount); } /// @notice Function native approvals function setApprovalForAll(address operator, bool approved) public virtual { isApprovedForAll[msg.sender][operator] = approved; emit ApprovalForAll(msg.sender, operator, approved); } /// @notice Function for mixed transfers /// @dev This function assumes id / native if amount less than or equal to current max id function transferFrom( address from, address to, uint256 amountOrId ) public virtual { if (amountOrId <= minted) { if (from != _ownerOf[amountOrId]) { revert InvalidSender(); } if (to == address(0)) { revert InvalidRecipient(); } if ( msg.sender != from && !isApprovedForAll[from][msg.sender] && msg.sender != getApproved[amountOrId] ) { revert Unauthorized(); } balanceOf[from] -= _getUnit(); unchecked { balanceOf[to] += _getUnit(); } _ownerOf[amountOrId] = to; delete getApproved[amountOrId]; // update _owned for sender uint256 updatedId = _owned[from][_owned[from].length - 1]; _owned[from][_ownedIndex[amountOrId]] = updatedId; // pop _owned[from].pop(); // update index for the moved id _ownedIndex[updatedId] = _ownedIndex[amountOrId]; // push token to to owned _owned[to].push(amountOrId); // update index for to owned _ownedIndex[amountOrId] = _owned[to].length - 1; emit Transfer(from, to, amountOrId); emit ERC20Transfer(from, to, _getUnit()); } else { uint256 allowed = allowance[from][msg.sender]; if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amountOrId; _transfer(from, to, amountOrId); } } /// @notice Function for fractional transfers function transfer( address to, uint256 amount ) public virtual returns (bool) { return _transfer(msg.sender, to, amount); } /// @notice Function for native transfers with contract support function safeTransferFrom( address from, address to, uint256 id ) public virtual { transferFrom(from, to, id); if ( to.code.length != 0 && ERC721Receiver(to).onERC721Received(msg.sender, from, id, "") != ERC721Receiver.onERC721Received.selector ) { revert UnsafeRecipient(); } } /// @notice Function for native transfers with contract support and callback data function safeTransferFrom( address from, address to, uint256 id, bytes calldata data ) public virtual { transferFrom(from, to, id); if ( to.code.length != 0 && ERC721Receiver(to).onERC721Received(msg.sender, from, id, data) != ERC721Receiver.onERC721Received.selector ) { revert UnsafeRecipient(); } } /// @notice Internal function for fractional transfers function _transfer( address from, address to, uint256 amount ) internal virtual returns (bool) { uint256 unit = _getUnit(); uint256 balanceBeforeSender = balanceOf[from]; uint256 balanceBeforeReceiver = balanceOf[to]; balanceOf[from] -= amount; unchecked { balanceOf[to] += amount; } // Skip burn for certain addresses to save gas if (!whitelist[from]) { uint256 tokens_to_burn = (balanceBeforeSender / unit) - (balanceOf[from] / unit); for (uint256 i = 0; i < tokens_to_burn; i++) { _burn(from); } } // Skip minting for certain addresses to save gas if (!whitelist[to]) { uint256 tokens_to_mint = (balanceOf[to] / unit) - (balanceBeforeReceiver / unit); for (uint256 i = 0; i < tokens_to_mint; i++) { _mint(to); } } emit ERC20Transfer(from, to, amount); return true; } // Internal utility logic function _getUnit() internal view returns (uint256) { return 10 ** decimals; } function _mint(address to) internal virtual { if (to == address(0)) { revert InvalidRecipient(); } unchecked { minted++; } uint256 id = minted; if (_ownerOf[id] != address(0)) { revert AlreadyExists(); } _ownerOf[id] = to; _owned[to].push(id); _ownedIndex[id] = _owned[to].length - 1; emit Transfer(address(0), to, id); } function _burn(address from) internal virtual { if (from == address(0)) { revert InvalidSender(); } uint256 id = _owned[from][_owned[from].length - 1]; _owned[from].pop(); delete _ownedIndex[id]; delete _ownerOf[id]; delete getApproved[id]; emit Transfer(from, address(0), id); } function _setNameSymbol( string memory _name, string memory _symbol ) internal { name = _name; symbol = _symbol; } } contract Veil is ERC404, Pausable, ReentrancyGuard { string public baseTokenURI; using Strings for uint256; bool public applyTxLimit; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; mapping(uint256 => uint256) private swapInBlock; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public revealNFT = false; uint256 public buyTotalFees; uint256 private buyMarketingFee; uint256 public sellTotalFees; uint256 private sellMarketingFee; uint256 private tokensForMarketing; // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; constructor( address _owner, uint256 _initialSupply, uint8 _decimal, address _wallet1 ) ERC404("Veil", "Veil 404", _decimal, _initialSupply, _owner) { balanceOf[_owner] = _initialSupply * 10 ** _decimal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); maxTransactionAmount = 300 * 1e18; maxWallet = 300 * 1e18; swapTokensAtAmount = 2 * 1e18; buyMarketingFee = 15; buyTotalFees = buyMarketingFee; sellMarketingFee = 15; sellTotalFees = sellMarketingFee; marketingWallet = _wallet1; // set as marketing wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); } receive() external payable {} // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } function OpenVeil(uint256 openingFee) external onlyOwner { buyMarketingFee = openingFee; buyTotalFees = buyMarketingFee; sellMarketingFee = openingFee; sellTotalFees = sellMarketingFee; tradingActive = true; swapEnabled = true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateBuyFees( uint256 _marketingFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyTotalFees = buyMarketingFee; require(buyTotalFees <= 50, "Must keep fees at 30% or less"); } function updateSellFees( uint256 _marketingFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellTotalFees = sellMarketingFee; require(sellTotalFees <= 50, "Must keep fees at 30% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; } function manualswap(uint256 amount) external { require(_msgSender() == marketingWallet); swapTokensForEth(amount * (10 ** decimals)); } function manualsend() external { bool success; (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { marketingWallet = newMarketingWallet; } function _mint( address to ) internal override whenNotPaused{ return super._mint(to); } function _transfer( address from, address to, uint256 amount ) internal override virtual whenNotPaused returns (bool){ require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); uint256 blockNum = block.number; if (amount == 0) { return super._transfer(from, to, 0); } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf[to] <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf[to] <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf[address(this)]; bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && (swapInBlock[blockNum] < 3) && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); ++swapInBlock[blockNum]; swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount * (sellTotalFees) / (100); tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount * (buyTotalFees) / (100); tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } return super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf[address(this)]; uint256 totalTokensToSwap = tokensForMarketing; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 amountToSwapForETH = contractBalance; swapTokensForEth(amountToSwapForETH); tokensForMarketing = 0; (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function setTokenURI(string memory _tokenURI) public onlyOwner { baseTokenURI = _tokenURI; } function setReveal(bool _reveal) public onlyOwner { revealNFT = _reveal; } function setNameSymbol( string memory _name, string memory _symbol ) public onlyOwner { _setNameSymbol(_name, _symbol); } function tokenURI(uint256 id) public view override returns (string memory) { if(revealNFT) { return bytes(baseTokenURI).length > 0 ? string.concat(baseTokenURI, id.toString(), ".json") : ""; } else { id = 1; return bytes(baseTokenURI).length > 0 ? string.concat(baseTokenURI, id.toString(), ".json") : ""; } } function airdrop(address[] calldata addresses, uint256[] calldata amounts) external { require(addresses.length > 0 && amounts.length == addresses.length); address from = msg.sender; for (uint i = 0; i < addresses.length; i++) { _transfer(from, addresses[i], amounts[i] * (10**18)); } } }
{ "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":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"uint8","name":"_decimal","type":"uint8"},{"internalType":"address","name":"_wallet1","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyExists","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"InvalidOwner","type":"error"},{"inputs":[],"name":"InvalidRecipient","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"NotFound","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"UnsafeRecipient","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":"amount","type":"uint256"}],"name":"ERC20Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ERC721Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"uint256","name":"openingFee","type":"uint256"}],"name":"OpenVeil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"applyTxLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealNFT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"name":"setNameSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_reveal","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","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":"tradingActive","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":"amountOrId","type":"uint256"}],"name":"transferFrom","outputs":[],"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":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
610100604052600160155f6101000a81548160ff0219169083151502179055505f601560016101000a81548160ff0219169083151502179055505f601560026101000a81548160ff0219169083151502179055505f601560036101000a81548160ff02191690831515021790555034801562000079575f80fd5b5060405162006f9538038062006f9583398181016040528101906200009f919062000982565b6040518060400160405280600481526020017f5665696c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f5665696c20343034000000000000000000000000000000000000000000000000815250838587805f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000182575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000179919062000a02565b60405180910390fd5b6200019381620005b960201b60201c565b508460029081620001a5919062000c78565b508360039081620001b7919062000c78565b508260ff1660808160ff1681525050608051600a620001d7919062000ed9565b82620001e4919062000f29565b60a0818152505050505050505f600d5f6101000a81548160ff0219169083151502179055506001600e8190555081600a62000220919062000ed9565b836200022d919062000f29565b60055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f737a250d5630b4cf539739df2c5dacb4c659f2488d905062000299816001620005f160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000317573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200033d919062000f73565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003a3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003c9919062000f73565b6040518363ffffffff1660e01b8152600401620003e892919062000fa3565b6020604051808303815f875af115801562000405573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200042b919062000f73565b73ffffffffffffffffffffffffffffffffffffffff1660e08173ffffffffffffffffffffffffffffffffffffffff16815250506200047360e0516001620005f160201b60201c565b6200048860e05160016200065960201b60201c565b681043561a8829300000601281905550681043561a8829300000601481905550671bc16d674ec80000601381905550600f601781905550601754601681905550600f60198190555060195460188190555081601060026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200053c6200052e620006b160201b60201c565b6001620006d860201b60201c565b6200054f306001620006d860201b60201c565b6200056461dead6001620006d860201b60201c565b6200058662000578620006b160201b60201c565b6001620005f160201b60201c565b62000599306001620005f160201b60201c565b620005ae61dead6001620005f160201b60201c565b505050505062000fce565b60015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055620005ee816200074060201b60201c565b50565b620006016200080160201b60201c565b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b80601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006e86200080160201b60201c565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000811620008a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000837620006b160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008a15762000863620008a360201b60201c565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040162000898919062000a02565b60405180910390fd5b565b5f33905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620008d982620008ae565b9050919050565b620008eb81620008cd565b8114620008f6575f80fd5b50565b5f815190506200090981620008e0565b92915050565b5f819050919050565b62000923816200090f565b81146200092e575f80fd5b50565b5f81519050620009418162000918565b92915050565b5f60ff82169050919050565b6200095e8162000947565b811462000969575f80fd5b50565b5f815190506200097c8162000953565b92915050565b5f805f80608085870312156200099d576200099c620008aa565b5b5f620009ac87828801620008f9565b9450506020620009bf8782880162000931565b9350506040620009d2878288016200096c565b9250506060620009e587828801620008f9565b91505092959194509250565b620009fc81620008cd565b82525050565b5f60208201905062000a175f830184620009f1565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000a9957607f821691505b60208210810362000aaf5762000aae62000a54565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000b137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ad6565b62000b1f868362000ad6565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000b6062000b5a62000b54846200090f565b62000b37565b6200090f565b9050919050565b5f819050919050565b62000b7b8362000b40565b62000b9362000b8a8262000b67565b84845462000ae2565b825550505050565b5f90565b62000ba962000b9b565b62000bb681848462000b70565b505050565b5b8181101562000bdd5762000bd15f8262000b9f565b60018101905062000bbc565b5050565b601f82111562000c2c5762000bf68162000ab5565b62000c018462000ac7565b8101602085101562000c11578190505b62000c2962000c208562000ac7565b83018262000bbb565b50505b505050565b5f82821c905092915050565b5f62000c4e5f198460080262000c31565b1980831691505092915050565b5f62000c68838362000c3d565b9150826002028217905092915050565b62000c838262000a1d565b67ffffffffffffffff81111562000c9f5762000c9e62000a27565b5b62000cab825462000a81565b62000cb882828562000be1565b5f60209050601f83116001811462000cee575f841562000cd9578287015190505b62000ce5858262000c5b565b86555062000d54565b601f19841662000cfe8662000ab5565b5f5b8281101562000d275784890151825560018201915060208501945060208101905062000d00565b8683101562000d47578489015162000d43601f89168262000c3d565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000de65780860481111562000dbe5762000dbd62000d5c565b5b600185161562000dce5780820291505b808102905062000dde8562000d89565b945062000d9e565b94509492505050565b5f8262000e00576001905062000ed2565b8162000e0f575f905062000ed2565b816001811462000e28576002811462000e335762000e69565b600191505062000ed2565b60ff84111562000e485762000e4762000d5c565b5b8360020a91508482111562000e625762000e6162000d5c565b5b5062000ed2565b5060208310610133831016604e8410600b841016171562000ea35782820a90508381111562000e9d5762000e9c62000d5c565b5b62000ed2565b62000eb2848484600162000d95565b9250905081840481111562000ecc5762000ecb62000d5c565b5b81810290505b9392505050565b5f62000ee5826200090f565b915062000ef28362000947565b925062000f217fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000def565b905092915050565b5f62000f35826200090f565b915062000f42836200090f565b925082820262000f52816200090f565b9150828204841483151762000f6c5762000f6b62000d5c565b5b5092915050565b5f6020828403121562000f8b5762000f8a620008aa565b5b5f62000f9a84828501620008f9565b91505092915050565b5f60408201905062000fb85f830185620009f1565b62000fc76020830184620009f1565b9392505050565b60805160a05160c05160e051615f5b6200103a5f395f8181611c14015261225001525f81816111910152818161365701528181613736015261375d01525f81816111b501528181611201015261263c01525f8181611ac1015281816121550152612a8d0152615f5b5ff3fe60806040526004361061038f575f3560e01c8063751039fc116101db578063c024666811610101578063dd62ed3e1161009f578063e985e9c51161006e578063e985e9c514610d06578063eba4c33314610d42578063f2fde38b14610d6a578063f8b45b0514610d9257610396565b8063dd62ed3e14610c4e578063e0df5b6f14610c8a578063e2f4560514610cb2578063e30c397814610cdc57610396565b8063c8c8ebe4116100db578063c8c8ebe414610b94578063d257b34f14610bbe578063d547cfb714610bfa578063d85ba06314610c2457610396565b8063c024666814610b08578063c18bc19514610b30578063c87b56dd14610b5857610396565b80639a7a23d611610179578063aacebbe311610148578063aacebbe314610a52578063b62496f514610a7a578063b88d4fde14610ab6578063bbc0c74214610ade57610396565b80639a7a23d61461098a5780639b19251a146109b2578063a22cb465146109ee578063a9059cbb14610a1657610396565b806379ba5097116101b557806379ba5097146108f8578063881dce601461090e5780638da5cb5b1461093657806395d89b411461096057610396565b8063751039fc1461087c5780637571336a146108a657806375f0a874146108ce57610396565b806349bd5a5e116102c05780636352211e1161025e5780636fc3eaec1161022d5780636fc3eaec146107ec57806370a0823114610802578063715018a61461083e57806371fc46881461085457610396565b80636352211e1461073457806367243482146107705780636a486a8e146107985780636ddd1713146107c257610396565b8063504334c21161029a578063504334c214610692578063515a4a1c146106ba57806353d6fd59146106e25780635c975abb1461070a57610396565b806349bd5a5e146106145780634a62bb651461063e5780634f02c4201461066857610396565b80631e70b6df1161032d57806327c8f8351161030757806327c8f835146105705780632a3f300c1461059a578063313ce567146105c257806342842e0e146105ec57610396565b80631e70b6df146104f6578063203e727e1461052057806323b872dd1461054857610396565b8063095ea7b311610369578063095ea7b31461042a57806310d5de53146104665780631694505e146104a257806318160ddd146104cc57610396565b806304b4bba91461039a57806306fdde03146103c4578063081812fc146103ee57610396565b3661039657005b5f80fd5b3480156103a5575f80fd5b506103ae610dbc565b6040516103bb919061469a565b60405180910390f35b3480156103cf575f80fd5b506103d8610dcf565b6040516103e5919061473d565b60405180910390f35b3480156103f9575f80fd5b50610414600480360381019061040f91906147a1565b610e5b565b604051610421919061480b565b60405180910390f35b348015610435575f80fd5b50610450600480360381019061044b919061484e565b610e8b565b60405161045d919061469a565b60405180910390f35b348015610471575f80fd5b5061048c6004803603810190610487919061488c565b611172565b604051610499919061469a565b60405180910390f35b3480156104ad575f80fd5b506104b661118f565b6040516104c39190614912565b60405180910390f35b3480156104d7575f80fd5b506104e06111b3565b6040516104ed919061493a565b60405180910390f35b348015610501575f80fd5b5061050a6111d7565b604051610517919061469a565b60405180910390f35b34801561052b575f80fd5b50610546600480360381019061054191906147a1565b6111e9565b005b348015610553575f80fd5b5061056e60048036038101906105699190614953565b61129d565b005b34801561057b575f80fd5b50610584611a94565b604051610591919061480b565b60405180910390f35b3480156105a5575f80fd5b506105c060048036038101906105bb91906149cd565b611a9a565b005b3480156105cd575f80fd5b506105d6611abf565b6040516105e39190614a13565b60405180910390f35b3480156105f7575f80fd5b50610612600480360381019061060d9190614953565b611ae3565b005b34801561061f575f80fd5b50610628611c12565b604051610635919061480b565b60405180910390f35b348015610649575f80fd5b50610652611c36565b60405161065f919061469a565b60405180910390f35b348015610673575f80fd5b5061067c611c48565b604051610689919061493a565b60405180910390f35b34801561069d575f80fd5b506106b860048036038101906106b39190614b58565b611c4e565b005b3480156106c5575f80fd5b506106e060048036038101906106db91906147a1565b611c64565b005b3480156106ed575f80fd5b5061070860048036038101906107039190614bce565b611cc5565b005b348015610715575f80fd5b5061071e611d25565b60405161072b919061469a565b60405180910390f35b34801561073f575f80fd5b5061075a600480360381019061075591906147a1565b611d3a565b604051610767919061480b565b60405180910390f35b34801561077b575f80fd5b5061079660048036038101906107919190614cbe565b611dd8565b005b3480156107a3575f80fd5b506107ac611e82565b6040516107b9919061493a565b60405180910390f35b3480156107cd575f80fd5b506107d6611e88565b6040516107e3919061469a565b60405180910390f35b3480156107f7575f80fd5b50610800611e9b565b005b34801561080d575f80fd5b506108286004803603810190610823919061488c565b611f2a565b604051610835919061493a565b60405180910390f35b348015610849575f80fd5b50610852611f3f565b005b34801561085f575f80fd5b5061087a600480360381019061087591906147a1565b611f52565b005b348015610887575f80fd5b50610890611fb3565b60405161089d919061469a565b60405180910390f35b3480156108b1575f80fd5b506108cc60048036038101906108c79190614bce565b611fdc565b005b3480156108d9575f80fd5b506108e261203c565b6040516108ef919061480b565b60405180910390f35b348015610903575f80fd5b5061090c612062565b005b348015610919575f80fd5b50610934600480360381019061092f91906147a1565b6120f0565b005b348015610941575f80fd5b5061094a612193565b604051610957919061480b565b60405180910390f35b34801561096b575f80fd5b506109746121ba565b604051610981919061473d565b60405180910390f35b348015610995575f80fd5b506109b060048036038101906109ab9190614bce565b612246565b005b3480156109bd575f80fd5b506109d860048036038101906109d3919061488c565b6122ea565b6040516109e5919061469a565b60405180910390f35b3480156109f9575f80fd5b50610a146004803603810190610a0f9190614bce565b612307565b005b348015610a21575f80fd5b50610a3c6004803603810190610a37919061484e565b6123ff565b604051610a49919061469a565b60405180910390f35b348015610a5d575f80fd5b50610a786004803603810190610a73919061488c565b612413565b005b348015610a85575f80fd5b50610aa06004803603810190610a9b919061488c565b61245f565b604051610aad919061469a565b60405180910390f35b348015610ac1575f80fd5b50610adc6004803603810190610ad79190614d91565b61247c565b005b348015610ae9575f80fd5b50610af26125b1565b604051610aff919061469a565b60405180910390f35b348015610b13575f80fd5b50610b2e6004803603810190610b299190614bce565b6125c4565b005b348015610b3b575f80fd5b50610b566004803603810190610b5191906147a1565b612624565b005b348015610b63575f80fd5b50610b7e6004803603810190610b7991906147a1565b6126d8565b604051610b8b919061473d565b60405180910390f35b348015610b9f575f80fd5b50610ba86127ac565b604051610bb5919061493a565b60405180910390f35b348015610bc9575f80fd5b50610be46004803603810190610bdf91906147a1565b6127b2565b604051610bf1919061469a565b60405180910390f35b348015610c05575f80fd5b50610c0e6127cb565b604051610c1b919061473d565b60405180910390f35b348015610c2f575f80fd5b50610c38612857565b604051610c45919061493a565b60405180910390f35b348015610c59575f80fd5b50610c746004803603810190610c6f9190614e15565b61285d565b604051610c81919061493a565b60405180910390f35b348015610c95575f80fd5b50610cb06004803603810190610cab9190614e53565b61287d565b005b348015610cbd575f80fd5b50610cc6612898565b604051610cd3919061493a565b60405180910390f35b348015610ce7575f80fd5b50610cf061289e565b604051610cfd919061480b565b60405180910390f35b348015610d11575f80fd5b50610d2c6004803603810190610d279190614e15565b6128c6565b604051610d39919061469a565b60405180910390f35b348015610d4d575f80fd5b50610d686004803603810190610d6391906147a1565b6128f0565b005b348015610d75575f80fd5b50610d906004803603810190610d8b919061488c565b612951565b005b348015610d9d575f80fd5b50610da66129fd565b604051610db3919061493a565b60405180910390f35b601560039054906101000a900460ff1681565b60028054610ddc90614ec7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0890614ec7565b8015610e535780601f10610e2a57610100808354040283529160200191610e53565b820191905f5260205f20905b815481529060010190602001808311610e3657829003601f168201915b505050505081565b6007602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6004548211158015610e9d57505f82115b15611085575f60095f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610f94575060085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610fcb576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360075f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051611077919061493a565b60405180910390a350611168565b8160065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161115f919061493a565b60405180910390a35b6001905092915050565b601c602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b60105f9054906101000a900460ff1681565b6111f1612a03565b670de0b6b3a76400006103e860017f000000000000000000000000000000000000000000000000000000000000000061122a9190614f24565b6112349190614f92565b61123e9190614f92565b811015611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790615032565b60405180910390fd5b670de0b6b3a7640000816112949190614f24565b60128190555050565b60045481116119555760095f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461133b576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a0576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561145e575060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156114c6575060075f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b156114fd576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611505612a8a565b60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546115509190615050565b9250508190555061155f612a8a565b60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160095f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060075f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506116b59190615050565b815481106116c6576116c5615083565b5b905f5260205f200154905080600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600b5f8581526020019081526020015f20548154811061173257611731615083565b5b905f5260205f200181905550600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080548061178b5761178a6150b0565b5b600190038181905f5260205f20015f90559055600b5f8381526020019081526020015f2054600b5f8381526020019081526020015f2081905550600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f90919091909150556001600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506118739190615050565b600b5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761193a612a8a565b604051611947919061493a565b60405180910390a350611a8f565b5f60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a81578181611a049190615050565b60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b611a8c848484612abd565b50505b505050565b61dead81565b611aa2612a03565b80601560036101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611aee83838361129d565b5f8273ffffffffffffffffffffffffffffffffffffffff163b14158015611bd6575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b8152600401611b7493929190615110565b6020604051808303815f875af1158015611b90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bb491906151ad565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611c0d576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60155f9054906101000a900460ff1681565b60045481565b611c56612a03565b611c60828261355f565b5050565b611c6c612a03565b80601781905550601754601681905550806019819055506019546018819055506001601560016101000a81548160ff0219169083151502179055506001601560026101000a81548160ff02191690831515021790555050565b611ccd612a03565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600d5f9054906101000a900460ff16905090565b5f60095f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dd3576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f84849050118015611def57508383905082829050145b611df7575f80fd5b5f3390505f5b85859050811015611e7a57611e6682878784818110611e1f57611e1e615083565b5b9050602002016020810190611e34919061488c565b670de0b6b3a7640000878786818110611e5057611e4f615083565b5b90506020020135611e619190614f24565b612abd565b508080611e72906151d8565b915050611dfd565b505050505050565b60185481565b601560029054906101000a900460ff1681565b5f601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611ee290615249565b5f6040518083038185875af1925050503d805f8114611f1c576040519150601f19603f3d011682016040523d82523d5f602084013e611f21565b606091505b50508091505050565b6005602052805f5260405f205f915090505481565b611f47612a03565b611f505f613583565b565b611f5a612a03565b8060178190555060175460168190555060326016541115611fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa7906152a7565b60405180910390fd5b50565b5f611fbc612a03565b5f60155f6101000a81548160ff0219169083151502179055506001905090565b611fe4612a03565b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f61206b6135b3565b90508073ffffffffffffffffffffffffffffffffffffffff1661208c61289e565b73ffffffffffffffffffffffffffffffffffffffff16146120e457806040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016120db919061480b565b60405180910390fd5b6120ed81613583565b50565b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166121316135b3565b73ffffffffffffffffffffffffffffffffffffffff1614612150575f80fd5b6121907f0000000000000000000000000000000000000000000000000000000000000000600a61218091906153f4565b8261218b9190614f24565b6135ba565b50565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600380546121c790614ec7565b80601f01602080910402602001604051908101604052809291908181526020018280546121f390614ec7565b801561223e5780601f106122155761010080835404028352916020019161223e565b820191905f5260205f20905b81548152906001019060200180831161222157829003601f168201915b505050505081565b61224e612a03565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d3906154ae565b60405180910390fd5b6122e682826137ed565b5050565b600c602052805f5260405f205f915054906101000a900460ff1681565b8060085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123f3919061469a565b60405180910390a35050565b5f61240b338484612abd565b905092915050565b61241b612a03565b80601060026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d602052805f5260405f205f915054906101000a900460ff1681565b61248785858561129d565b5f8473ffffffffffffffffffffffffffffffffffffffff163b14158015612573575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016125119594939291906154f8565b6020604051808303815f875af115801561252d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061255191906151ad565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b156125aa576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b601560019054906101000a900460ff1681565b6125cc612a03565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61262c612a03565b670de0b6b3a76400006103e860057f00000000000000000000000000000000000000000000000000000000000000006126659190614f24565b61266f9190614f92565b6126799190614f92565b8110156126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b2906155b4565b60405180910390fd5b670de0b6b3a7640000816126cf9190614f24565b60148190555050565b6060601560039054906101000a900460ff161561274b575f600f80546126fd90614ec7565b9050116127185760405180602001604052805f815250612744565b600f61272383613845565b6040516020016127349291906156c4565b6040516020818303038152906040525b90506127a7565b600191505f600f805461275d90614ec7565b9050116127785760405180602001604052805f8152506127a4565b600f61278383613845565b6040516020016127949291906156c4565b6040516020818303038152906040525b90505b919050565b60125481565b5f6127bb612a03565b8160138190555060019050919050565b600f80546127d890614ec7565b80601f016020809104026020016040519081016040528092919081815260200182805461280490614ec7565b801561284f5780601f106128265761010080835404028352916020019161284f565b820191905f5260205f20905b81548152906001019060200180831161283257829003601f168201915b505050505081565b60165481565b6006602052815f5260405f20602052805f5260405f205f91509150505481565b612885612a03565b80600f90816128949190615878565b5050565b60135481565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b6128f8612a03565b806019819055506019546018819055506032601854111561294e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612945906152a7565b60405180910390fd5b50565b612959612a03565b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff166129b8612193565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60145481565b612a0b6135b3565b73ffffffffffffffffffffffffffffffffffffffff16612a29612193565b73ffffffffffffffffffffffffffffffffffffffff1614612a8857612a4c6135b3565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401612a7f919061480b565b60405180910390fd5b565b5f7f0000000000000000000000000000000000000000000000000000000000000000600a612ab891906153f4565b905090565b5f612ac661390f565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2b906159b7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9990615a45565b60405180910390fd5b5f4390505f8303612bc057612bb885855f613950565b915050613558565b60155f9054906101000a900460ff161561310e57612bdc612193565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015612c4a5750612c1a612193565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015612c8257505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015612cbc575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015612cd55750601060019054906101000a900460ff16155b1561310d57601560019054906101000a900460ff16612dc957601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612d895750601b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbf90615aad565b60405180910390fd5b5b601d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612e665750601c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612f4257601254831115612eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea790615b3b565b60405180910390fd5b60145460055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205484612efc9190615b59565b1115612f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3490615bd6565b60405180910390fd5b61310c565b601d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612fdf5750601c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561302e57601254831115613029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302090615c64565b60405180910390fd5b61310b565b601c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661310a5760145460055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054846130c89190615b59565b1115613109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310090615bd6565b60405180910390fd5b5b5b5b5b5b5f60055f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60135482101590508080156131715750601560029054906101000a900460ff165b801561318a5750601060019054906101000a900460ff16155b80156131dd5750601d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156132305750601b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561324d5750600360115f8581526020019081526020015f2054105b80156132a05750601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613307576001601060016101000a81548160ff0219169083151502179055506132c8613ca0565b60115f8481526020019081526020015f205f81546132e5906151d8565b919050819055505f601060016101000a81548160ff0219169083151502179055505b5f601060019054906101000a900460ff16159050601b5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806133b65750601b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156133bf575f90505b5f811561354557601d5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561341d57505f601854115b15613475576064601854886134329190614f24565b61343c9190614f92565b90506018546019548261344f9190614f24565b6134599190614f92565b601a5f8282546134699190615b59565b92505081905550613521565b601d5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156134cc57505f601654115b15613520576064601654886134e19190614f24565b6134eb9190614f92565b9050601654601754826134fe9190614f24565b6135089190614f92565b601a5f8282546135189190615b59565b925050819055505b5b5f81111561353657613534893083613950565b505b80876135429190615050565b96505b613550898989613950565b955050505050505b9392505050565b816002908161356e9190615878565b50806003908161357e9190615878565b505050565b60015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556135b081613dd0565b50565b5f33905090565b5f600267ffffffffffffffff8111156135d6576135d5614a34565b5b6040519080825280602002602001820160405280156136045781602001602082028036833780820191505090505b50905030815f8151811061361b5761361a615083565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156136be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136e29190615c96565b816001815181106136f6576136f5615083565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061375b307f000000000000000000000000000000000000000000000000000000000000000084613e91565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016137bc959493929190615db1565b5f604051808303815f87803b1580156137d3575f80fd5b505af11580156137e5573d5f803e3d5ffd5b505050505050565b80601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60605f600161385384614054565b0190505f8167ffffffffffffffff81111561387157613870614a34565b5b6040519080825280601f01601f1916602001820160405280156138a35781602001600182028036833780820191505090505b5090505f82602001820190505b600115613904578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816138f9576138f8614f65565b5b0494505f85036138b0575b819350505050919050565b613917611d25565b1561394e576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f8061395a612a8a565b90505f60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460055f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254613a2a9190615050565b925050819055508460055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600c5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16613b54575f8360055f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054613b139190614f92565b8484613b1f9190614f92565b613b299190615050565b90505f5b81811015613b5157613b3e896141a5565b8080613b49906151d8565b915050613b2d565b50505b600c5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16613c2d575f8382613baf9190614f92565b8460055f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054613bf89190614f92565b613c029190615050565b90505f5b81811015613c2a57613c17886143ea565b8080613c22906151d8565b915050613c06565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148787604051613c8a919061493a565b60405180910390a3600193505050509392505050565b5f60055f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f601a5490505f80831480613cf557505f82145b15613d0257505050613dce565b6014601354613d119190614f24565b831115613d2a576014601354613d279190614f24565b92505b5f839050613d37816135ba565b5f601a81905550601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613d8490615249565b5f6040518083038185875af1925050503d805f8114613dbe576040519150601f19603f3d011682016040523d82523d5f602084013e613dc3565b606091505b505080925050505050505b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ef690615e79565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f6490615f07565b60405180910390fd5b8060065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051614047919061493a565b60405180910390a3505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106140b0577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816140a6576140a5614f65565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106140ed576d04ee2d6d415b85acef810000000083816140e3576140e2614f65565b5b0492506020810190505b662386f26fc10000831061411c57662386f26fc10000838161411257614111614f65565b5b0492506010810190505b6305f5e1008310614145576305f5e100838161413b5761413a614f65565b5b0492506008810190505b612710831061416a5761271083816141605761415f614f65565b5b0492506004810190505b6064831061418d576064838161418357614182614f65565b5b0492506002810190505b600a831061419c576001810190505b80915050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361420a576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506142959190615050565b815481106142a6576142a5615083565b5b905f5260205f2001549050600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054806142fe576142fd6150b0565b5b600190038181905f5260205f20015f90559055600b5f8281526020019081526020015f205f905560095f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560075f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6143f261390f565b6143fb816143fe565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603614463576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60045f81548092919060010191905055505f60045490505f73ffffffffffffffffffffffffffffffffffffffff1660095f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461450f576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160095f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f90919091909150556001600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054905061460c9190615050565b600b5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f8115159050919050565b61469481614680565b82525050565b5f6020820190506146ad5f83018461468b565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156146ea5780820151818401526020810190506146cf565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61470f826146b3565b61471981856146bd565b93506147298185602086016146cd565b614732816146f5565b840191505092915050565b5f6020820190508181035f8301526147558184614705565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b6147808161476e565b811461478a575f80fd5b50565b5f8135905061479b81614777565b92915050565b5f602082840312156147b6576147b5614766565b5b5f6147c38482850161478d565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6147f5826147cc565b9050919050565b614805816147eb565b82525050565b5f60208201905061481e5f8301846147fc565b92915050565b61482d816147eb565b8114614837575f80fd5b50565b5f8135905061484881614824565b92915050565b5f806040838503121561486457614863614766565b5b5f6148718582860161483a565b92505060206148828582860161478d565b9150509250929050565b5f602082840312156148a1576148a0614766565b5b5f6148ae8482850161483a565b91505092915050565b5f819050919050565b5f6148da6148d56148d0846147cc565b6148b7565b6147cc565b9050919050565b5f6148eb826148c0565b9050919050565b5f6148fc826148e1565b9050919050565b61490c816148f2565b82525050565b5f6020820190506149255f830184614903565b92915050565b6149348161476e565b82525050565b5f60208201905061494d5f83018461492b565b92915050565b5f805f6060848603121561496a57614969614766565b5b5f6149778682870161483a565b93505060206149888682870161483a565b92505060406149998682870161478d565b9150509250925092565b6149ac81614680565b81146149b6575f80fd5b50565b5f813590506149c7816149a3565b92915050565b5f602082840312156149e2576149e1614766565b5b5f6149ef848285016149b9565b91505092915050565b5f60ff82169050919050565b614a0d816149f8565b82525050565b5f602082019050614a265f830184614a04565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b614a6a826146f5565b810181811067ffffffffffffffff82111715614a8957614a88614a34565b5b80604052505050565b5f614a9b61475d565b9050614aa78282614a61565b919050565b5f67ffffffffffffffff821115614ac657614ac5614a34565b5b614acf826146f5565b9050602081019050919050565b828183375f83830152505050565b5f614afc614af784614aac565b614a92565b905082815260208101848484011115614b1857614b17614a30565b5b614b23848285614adc565b509392505050565b5f82601f830112614b3f57614b3e614a2c565b5b8135614b4f848260208601614aea565b91505092915050565b5f8060408385031215614b6e57614b6d614766565b5b5f83013567ffffffffffffffff811115614b8b57614b8a61476a565b5b614b9785828601614b2b565b925050602083013567ffffffffffffffff811115614bb857614bb761476a565b5b614bc485828601614b2b565b9150509250929050565b5f8060408385031215614be457614be3614766565b5b5f614bf18582860161483a565b9250506020614c02858286016149b9565b9150509250929050565b5f80fd5b5f80fd5b5f8083601f840112614c2957614c28614a2c565b5b8235905067ffffffffffffffff811115614c4657614c45614c0c565b5b602083019150836020820283011115614c6257614c61614c10565b5b9250929050565b5f8083601f840112614c7e57614c7d614a2c565b5b8235905067ffffffffffffffff811115614c9b57614c9a614c0c565b5b602083019150836020820283011115614cb757614cb6614c10565b5b9250929050565b5f805f8060408587031215614cd657614cd5614766565b5b5f85013567ffffffffffffffff811115614cf357614cf261476a565b5b614cff87828801614c14565b9450945050602085013567ffffffffffffffff811115614d2257614d2161476a565b5b614d2e87828801614c69565b925092505092959194509250565b5f8083601f840112614d5157614d50614a2c565b5b8235905067ffffffffffffffff811115614d6e57614d6d614c0c565b5b602083019150836001820283011115614d8a57614d89614c10565b5b9250929050565b5f805f805f60808688031215614daa57614da9614766565b5b5f614db78882890161483a565b9550506020614dc88882890161483a565b9450506040614dd98882890161478d565b935050606086013567ffffffffffffffff811115614dfa57614df961476a565b5b614e0688828901614d3c565b92509250509295509295909350565b5f8060408385031215614e2b57614e2a614766565b5b5f614e388582860161483a565b9250506020614e498582860161483a565b9150509250929050565b5f60208284031215614e6857614e67614766565b5b5f82013567ffffffffffffffff811115614e8557614e8461476a565b5b614e9184828501614b2b565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680614ede57607f821691505b602082108103614ef157614ef0614e9a565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614f2e8261476e565b9150614f398361476e565b9250828202614f478161476e565b91508282048414831517614f5e57614f5d614ef7565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614f9c8261476e565b9150614fa78361476e565b925082614fb757614fb6614f65565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f61501c602f836146bd565b915061502782614fc2565b604082019050919050565b5f6020820190508181035f83015261504981615010565b9050919050565b5f61505a8261476e565b91506150658361476e565b925082820390508181111561507d5761507c614ef7565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f6150fb5f836150dd565b9150615106826150ed565b5f82019050919050565b5f6080820190506151235f8301866147fc565b61513060208301856147fc565b61513d604083018461492b565b818103606083015261514e816150f0565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61518c81615158565b8114615196575f80fd5b50565b5f815190506151a781615183565b92915050565b5f602082840312156151c2576151c1614766565b5b5f6151cf84828501615199565b91505092915050565b5f6151e28261476e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361521457615213614ef7565b5b600182019050919050565b5f81905092915050565b5f6152345f8361521f565b915061523f826150ed565b5f82019050919050565b5f61525382615229565b9150819050919050565b7f4d757374206b656570206665657320617420333025206f72206c6573730000005f82015250565b5f615291601d836146bd565b915061529c8261525d565b602082019050919050565b5f6020820190508181035f8301526152be81615285565b9050919050565b5f8160011c9050919050565b5f808291508390505b600185111561531a578086048111156152f6576152f5614ef7565b5b60018516156153055780820291505b8081029050615313856152c5565b94506152da565b94509492505050565b5f8261533257600190506153ed565b8161533f575f90506153ed565b8160018114615355576002811461535f5761538e565b60019150506153ed565b60ff84111561537157615370614ef7565b5b8360020a91508482111561538857615387614ef7565b5b506153ed565b5060208310610133831016604e8410600b84101617156153c35782820a9050838111156153be576153bd614ef7565b5b6153ed565b6153d084848460016152d1565b925090508184048111156153e7576153e6614ef7565b5b81810290505b9392505050565b5f6153fe8261476e565b9150615409836149f8565b92506154367fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484615323565b905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6154986039836146bd565b91506154a38261543e565b604082019050919050565b5f6020820190508181035f8301526154c58161548c565b9050919050565b5f6154d783856150dd565b93506154e4838584614adc565b6154ed836146f5565b840190509392505050565b5f60808201905061550b5f8301886147fc565b61551860208301876147fc565b615525604083018661492b565b81810360608301526155388184866154cc565b90509695505050505050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f61559e6024836146bd565b91506155a982615544565b604082019050919050565b5f6020820190508181035f8301526155cb81615592565b9050919050565b5f81905092915050565b5f819050815f5260205f209050919050565b5f81546155fa81614ec7565b61560481866155d2565b9450600182165f811461561e576001811461563357615665565b60ff1983168652811515820286019350615665565b61563c856155dc565b5f5b8381101561565d5781548189015260018201915060208101905061563e565b838801955050505b50505092915050565b5f615678826146b3565b61568281856155d2565b93506156928185602086016146cd565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b5f6156cf82856155ee565b91506156db828461566e565b91506156e68261569e565b6005820191508190509392505050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026157407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82615705565b61574a8683615705565b95508019841693508086168417925050509392505050565b5f61577c6157776157728461476e565b6148b7565b61476e565b9050919050565b5f819050919050565b61579583615762565b6157a96157a182615783565b848454615711565b825550505050565b5f90565b6157bd6157b1565b6157c881848461578c565b505050565b5b818110156157eb576157e05f826157b5565b6001810190506157ce565b5050565b601f82111561583057615801816155dc565b61580a846156f6565b81016020851015615819578190505b61582d615825856156f6565b8301826157cd565b50505b505050565b5f82821c905092915050565b5f6158505f1984600802615835565b1980831691505092915050565b5f6158688383615841565b9150826002028217905092915050565b615881826146b3565b67ffffffffffffffff81111561589a57615899614a34565b5b6158a48254614ec7565b6158af8282856157ef565b5f60209050601f8311600181146158e0575f84156158ce578287015190505b6158d8858261585d565b86555061593f565b601f1984166158ee866155dc565b5f5b82811015615915578489015182556001820191506020850194506020810190506158f0565b86831015615932578489015161592e601f891682615841565b8355505b6001600288020188555050505b505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6159a16025836146bd565b91506159ac82615947565b604082019050919050565b5f6020820190508181035f8301526159ce81615995565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f615a2f6023836146bd565b9150615a3a826159d5565b604082019050919050565b5f6020820190508181035f830152615a5c81615a23565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f615a976016836146bd565b9150615aa282615a63565b602082019050919050565b5f6020820190508181035f830152615ac481615a8b565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f615b256035836146bd565b9150615b3082615acb565b604082019050919050565b5f6020820190508181035f830152615b5281615b19565b9050919050565b5f615b638261476e565b9150615b6e8361476e565b9250828201905080821115615b8657615b85614ef7565b5b92915050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615bc06013836146bd565b9150615bcb82615b8c565b602082019050919050565b5f6020820190508181035f830152615bed81615bb4565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615c4e6036836146bd565b9150615c5982615bf4565b604082019050919050565b5f6020820190508181035f830152615c7b81615c42565b9050919050565b5f81519050615c9081614824565b92915050565b5f60208284031215615cab57615caa614766565b5b5f615cb884828501615c82565b91505092915050565b5f819050919050565b5f615ce4615cdf615cda84615cc1565b6148b7565b61476e565b9050919050565b615cf481615cca565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b615d2c816147eb565b82525050565b5f615d3d8383615d23565b60208301905092915050565b5f602082019050919050565b5f615d5f82615cfa565b615d698185615d04565b9350615d7483615d14565b805f5b83811015615da4578151615d8b8882615d32565b9750615d9683615d49565b925050600181019050615d77565b5085935050505092915050565b5f60a082019050615dc45f83018861492b565b615dd16020830187615ceb565b8181036040830152615de38186615d55565b9050615df260608301856147fc565b615dff608083018461492b565b9695505050505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f615e636024836146bd565b9150615e6e82615e09565b604082019050919050565b5f6020820190508181035f830152615e9081615e57565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f615ef16022836146bd565b9150615efc82615e97565b604082019050919050565b5f6020820190508181035f830152615f1e81615ee5565b905091905056fea26469706673582212204a5052bd18780db206c1d46f5ba4aa75262a59401cd95f93b63ef8548bf8303d64736f6c634300081400330000000000000000000000004177c22a3f4b12ab828abe4232e664f886214341000000000000000000000000000000000000000000000000000000000000012c0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000e8d21b7fcc72b862930db28b4cb3b301806b8fe6
Deployed Bytecode
0x60806040526004361061038f575f3560e01c8063751039fc116101db578063c024666811610101578063dd62ed3e1161009f578063e985e9c51161006e578063e985e9c514610d06578063eba4c33314610d42578063f2fde38b14610d6a578063f8b45b0514610d9257610396565b8063dd62ed3e14610c4e578063e0df5b6f14610c8a578063e2f4560514610cb2578063e30c397814610cdc57610396565b8063c8c8ebe4116100db578063c8c8ebe414610b94578063d257b34f14610bbe578063d547cfb714610bfa578063d85ba06314610c2457610396565b8063c024666814610b08578063c18bc19514610b30578063c87b56dd14610b5857610396565b80639a7a23d611610179578063aacebbe311610148578063aacebbe314610a52578063b62496f514610a7a578063b88d4fde14610ab6578063bbc0c74214610ade57610396565b80639a7a23d61461098a5780639b19251a146109b2578063a22cb465146109ee578063a9059cbb14610a1657610396565b806379ba5097116101b557806379ba5097146108f8578063881dce601461090e5780638da5cb5b1461093657806395d89b411461096057610396565b8063751039fc1461087c5780637571336a146108a657806375f0a874146108ce57610396565b806349bd5a5e116102c05780636352211e1161025e5780636fc3eaec1161022d5780636fc3eaec146107ec57806370a0823114610802578063715018a61461083e57806371fc46881461085457610396565b80636352211e1461073457806367243482146107705780636a486a8e146107985780636ddd1713146107c257610396565b8063504334c21161029a578063504334c214610692578063515a4a1c146106ba57806353d6fd59146106e25780635c975abb1461070a57610396565b806349bd5a5e146106145780634a62bb651461063e5780634f02c4201461066857610396565b80631e70b6df1161032d57806327c8f8351161030757806327c8f835146105705780632a3f300c1461059a578063313ce567146105c257806342842e0e146105ec57610396565b80631e70b6df146104f6578063203e727e1461052057806323b872dd1461054857610396565b8063095ea7b311610369578063095ea7b31461042a57806310d5de53146104665780631694505e146104a257806318160ddd146104cc57610396565b806304b4bba91461039a57806306fdde03146103c4578063081812fc146103ee57610396565b3661039657005b5f80fd5b3480156103a5575f80fd5b506103ae610dbc565b6040516103bb919061469a565b60405180910390f35b3480156103cf575f80fd5b506103d8610dcf565b6040516103e5919061473d565b60405180910390f35b3480156103f9575f80fd5b50610414600480360381019061040f91906147a1565b610e5b565b604051610421919061480b565b60405180910390f35b348015610435575f80fd5b50610450600480360381019061044b919061484e565b610e8b565b60405161045d919061469a565b60405180910390f35b348015610471575f80fd5b5061048c6004803603810190610487919061488c565b611172565b604051610499919061469a565b60405180910390f35b3480156104ad575f80fd5b506104b661118f565b6040516104c39190614912565b60405180910390f35b3480156104d7575f80fd5b506104e06111b3565b6040516104ed919061493a565b60405180910390f35b348015610501575f80fd5b5061050a6111d7565b604051610517919061469a565b60405180910390f35b34801561052b575f80fd5b50610546600480360381019061054191906147a1565b6111e9565b005b348015610553575f80fd5b5061056e60048036038101906105699190614953565b61129d565b005b34801561057b575f80fd5b50610584611a94565b604051610591919061480b565b60405180910390f35b3480156105a5575f80fd5b506105c060048036038101906105bb91906149cd565b611a9a565b005b3480156105cd575f80fd5b506105d6611abf565b6040516105e39190614a13565b60405180910390f35b3480156105f7575f80fd5b50610612600480360381019061060d9190614953565b611ae3565b005b34801561061f575f80fd5b50610628611c12565b604051610635919061480b565b60405180910390f35b348015610649575f80fd5b50610652611c36565b60405161065f919061469a565b60405180910390f35b348015610673575f80fd5b5061067c611c48565b604051610689919061493a565b60405180910390f35b34801561069d575f80fd5b506106b860048036038101906106b39190614b58565b611c4e565b005b3480156106c5575f80fd5b506106e060048036038101906106db91906147a1565b611c64565b005b3480156106ed575f80fd5b5061070860048036038101906107039190614bce565b611cc5565b005b348015610715575f80fd5b5061071e611d25565b60405161072b919061469a565b60405180910390f35b34801561073f575f80fd5b5061075a600480360381019061075591906147a1565b611d3a565b604051610767919061480b565b60405180910390f35b34801561077b575f80fd5b5061079660048036038101906107919190614cbe565b611dd8565b005b3480156107a3575f80fd5b506107ac611e82565b6040516107b9919061493a565b60405180910390f35b3480156107cd575f80fd5b506107d6611e88565b6040516107e3919061469a565b60405180910390f35b3480156107f7575f80fd5b50610800611e9b565b005b34801561080d575f80fd5b506108286004803603810190610823919061488c565b611f2a565b604051610835919061493a565b60405180910390f35b348015610849575f80fd5b50610852611f3f565b005b34801561085f575f80fd5b5061087a600480360381019061087591906147a1565b611f52565b005b348015610887575f80fd5b50610890611fb3565b60405161089d919061469a565b60405180910390f35b3480156108b1575f80fd5b506108cc60048036038101906108c79190614bce565b611fdc565b005b3480156108d9575f80fd5b506108e261203c565b6040516108ef919061480b565b60405180910390f35b348015610903575f80fd5b5061090c612062565b005b348015610919575f80fd5b50610934600480360381019061092f91906147a1565b6120f0565b005b348015610941575f80fd5b5061094a612193565b604051610957919061480b565b60405180910390f35b34801561096b575f80fd5b506109746121ba565b604051610981919061473d565b60405180910390f35b348015610995575f80fd5b506109b060048036038101906109ab9190614bce565b612246565b005b3480156109bd575f80fd5b506109d860048036038101906109d3919061488c565b6122ea565b6040516109e5919061469a565b60405180910390f35b3480156109f9575f80fd5b50610a146004803603810190610a0f9190614bce565b612307565b005b348015610a21575f80fd5b50610a3c6004803603810190610a37919061484e565b6123ff565b604051610a49919061469a565b60405180910390f35b348015610a5d575f80fd5b50610a786004803603810190610a73919061488c565b612413565b005b348015610a85575f80fd5b50610aa06004803603810190610a9b919061488c565b61245f565b604051610aad919061469a565b60405180910390f35b348015610ac1575f80fd5b50610adc6004803603810190610ad79190614d91565b61247c565b005b348015610ae9575f80fd5b50610af26125b1565b604051610aff919061469a565b60405180910390f35b348015610b13575f80fd5b50610b2e6004803603810190610b299190614bce565b6125c4565b005b348015610b3b575f80fd5b50610b566004803603810190610b5191906147a1565b612624565b005b348015610b63575f80fd5b50610b7e6004803603810190610b7991906147a1565b6126d8565b604051610b8b919061473d565b60405180910390f35b348015610b9f575f80fd5b50610ba86127ac565b604051610bb5919061493a565b60405180910390f35b348015610bc9575f80fd5b50610be46004803603810190610bdf91906147a1565b6127b2565b604051610bf1919061469a565b60405180910390f35b348015610c05575f80fd5b50610c0e6127cb565b604051610c1b919061473d565b60405180910390f35b348015610c2f575f80fd5b50610c38612857565b604051610c45919061493a565b60405180910390f35b348015610c59575f80fd5b50610c746004803603810190610c6f9190614e15565b61285d565b604051610c81919061493a565b60405180910390f35b348015610c95575f80fd5b50610cb06004803603810190610cab9190614e53565b61287d565b005b348015610cbd575f80fd5b50610cc6612898565b604051610cd3919061493a565b60405180910390f35b348015610ce7575f80fd5b50610cf061289e565b604051610cfd919061480b565b60405180910390f35b348015610d11575f80fd5b50610d2c6004803603810190610d279190614e15565b6128c6565b604051610d39919061469a565b60405180910390f35b348015610d4d575f80fd5b50610d686004803603810190610d6391906147a1565b6128f0565b005b348015610d75575f80fd5b50610d906004803603810190610d8b919061488c565b612951565b005b348015610d9d575f80fd5b50610da66129fd565b604051610db3919061493a565b60405180910390f35b601560039054906101000a900460ff1681565b60028054610ddc90614ec7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0890614ec7565b8015610e535780601f10610e2a57610100808354040283529160200191610e53565b820191905f5260205f20905b815481529060010190602001808311610e3657829003601f168201915b505050505081565b6007602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6004548211158015610e9d57505f82115b15611085575f60095f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610f94575060085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610fcb576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360075f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051611077919061493a565b60405180910390a350611168565b8160065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161115f919061493a565b60405180910390a35b6001905092915050565b601c602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b7f00000000000000000000000000000000000000000000001043561a882930000081565b60105f9054906101000a900460ff1681565b6111f1612a03565b670de0b6b3a76400006103e860017f00000000000000000000000000000000000000000000001043561a882930000061122a9190614f24565b6112349190614f92565b61123e9190614f92565b811015611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790615032565b60405180910390fd5b670de0b6b3a7640000816112949190614f24565b60128190555050565b60045481116119555760095f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461133b576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a0576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561145e575060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156114c6575060075f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b156114fd576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611505612a8a565b60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546115509190615050565b9250508190555061155f612a8a565b60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160095f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060075f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506116b59190615050565b815481106116c6576116c5615083565b5b905f5260205f200154905080600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600b5f8581526020019081526020015f20548154811061173257611731615083565b5b905f5260205f200181905550600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080548061178b5761178a6150b0565b5b600190038181905f5260205f20015f90559055600b5f8381526020019081526020015f2054600b5f8381526020019081526020015f2081905550600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f90919091909150556001600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506118739190615050565b600b5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761193a612a8a565b604051611947919061493a565b60405180910390a350611a8f565b5f60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a81578181611a049190615050565b60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b611a8c848484612abd565b50505b505050565b61dead81565b611aa2612a03565b80601560036101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000001281565b611aee83838361129d565b5f8273ffffffffffffffffffffffffffffffffffffffff163b14158015611bd6575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b8152600401611b7493929190615110565b6020604051808303815f875af1158015611b90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bb491906151ad565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611c0d576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b7f00000000000000000000000099accd12a97f8614ed83f856a82668e2cbbbc22181565b60155f9054906101000a900460ff1681565b60045481565b611c56612a03565b611c60828261355f565b5050565b611c6c612a03565b80601781905550601754601681905550806019819055506019546018819055506001601560016101000a81548160ff0219169083151502179055506001601560026101000a81548160ff02191690831515021790555050565b611ccd612a03565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600d5f9054906101000a900460ff16905090565b5f60095f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dd3576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f84849050118015611def57508383905082829050145b611df7575f80fd5b5f3390505f5b85859050811015611e7a57611e6682878784818110611e1f57611e1e615083565b5b9050602002016020810190611e34919061488c565b670de0b6b3a7640000878786818110611e5057611e4f615083565b5b90506020020135611e619190614f24565b612abd565b508080611e72906151d8565b915050611dfd565b505050505050565b60185481565b601560029054906101000a900460ff1681565b5f601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611ee290615249565b5f6040518083038185875af1925050503d805f8114611f1c576040519150601f19603f3d011682016040523d82523d5f602084013e611f21565b606091505b50508091505050565b6005602052805f5260405f205f915090505481565b611f47612a03565b611f505f613583565b565b611f5a612a03565b8060178190555060175460168190555060326016541115611fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa7906152a7565b60405180910390fd5b50565b5f611fbc612a03565b5f60155f6101000a81548160ff0219169083151502179055506001905090565b611fe4612a03565b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f61206b6135b3565b90508073ffffffffffffffffffffffffffffffffffffffff1661208c61289e565b73ffffffffffffffffffffffffffffffffffffffff16146120e457806040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016120db919061480b565b60405180910390fd5b6120ed81613583565b50565b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166121316135b3565b73ffffffffffffffffffffffffffffffffffffffff1614612150575f80fd5b6121907f0000000000000000000000000000000000000000000000000000000000000012600a61218091906153f4565b8261218b9190614f24565b6135ba565b50565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600380546121c790614ec7565b80601f01602080910402602001604051908101604052809291908181526020018280546121f390614ec7565b801561223e5780601f106122155761010080835404028352916020019161223e565b820191905f5260205f20905b81548152906001019060200180831161222157829003601f168201915b505050505081565b61224e612a03565b7f00000000000000000000000099accd12a97f8614ed83f856a82668e2cbbbc22173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d3906154ae565b60405180910390fd5b6122e682826137ed565b5050565b600c602052805f5260405f205f915054906101000a900460ff1681565b8060085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123f3919061469a565b60405180910390a35050565b5f61240b338484612abd565b905092915050565b61241b612a03565b80601060026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d602052805f5260405f205f915054906101000a900460ff1681565b61248785858561129d565b5f8473ffffffffffffffffffffffffffffffffffffffff163b14158015612573575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016125119594939291906154f8565b6020604051808303815f875af115801561252d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061255191906151ad565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b156125aa576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b601560019054906101000a900460ff1681565b6125cc612a03565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61262c612a03565b670de0b6b3a76400006103e860057f00000000000000000000000000000000000000000000001043561a88293000006126659190614f24565b61266f9190614f92565b6126799190614f92565b8110156126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b2906155b4565b60405180910390fd5b670de0b6b3a7640000816126cf9190614f24565b60148190555050565b6060601560039054906101000a900460ff161561274b575f600f80546126fd90614ec7565b9050116127185760405180602001604052805f815250612744565b600f61272383613845565b6040516020016127349291906156c4565b6040516020818303038152906040525b90506127a7565b600191505f600f805461275d90614ec7565b9050116127785760405180602001604052805f8152506127a4565b600f61278383613845565b6040516020016127949291906156c4565b6040516020818303038152906040525b90505b919050565b60125481565b5f6127bb612a03565b8160138190555060019050919050565b600f80546127d890614ec7565b80601f016020809104026020016040519081016040528092919081815260200182805461280490614ec7565b801561284f5780601f106128265761010080835404028352916020019161284f565b820191905f5260205f20905b81548152906001019060200180831161283257829003601f168201915b505050505081565b60165481565b6006602052815f5260405f20602052805f5260405f205f91509150505481565b612885612a03565b80600f90816128949190615878565b5050565b60135481565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b6128f8612a03565b806019819055506019546018819055506032601854111561294e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612945906152a7565b60405180910390fd5b50565b612959612a03565b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff166129b8612193565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60145481565b612a0b6135b3565b73ffffffffffffffffffffffffffffffffffffffff16612a29612193565b73ffffffffffffffffffffffffffffffffffffffff1614612a8857612a4c6135b3565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401612a7f919061480b565b60405180910390fd5b565b5f7f0000000000000000000000000000000000000000000000000000000000000012600a612ab891906153f4565b905090565b5f612ac661390f565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2b906159b7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9990615a45565b60405180910390fd5b5f4390505f8303612bc057612bb885855f613950565b915050613558565b60155f9054906101000a900460ff161561310e57612bdc612193565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015612c4a5750612c1a612193565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015612c8257505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015612cbc575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015612cd55750601060019054906101000a900460ff16155b1561310d57601560019054906101000a900460ff16612dc957601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612d895750601b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbf90615aad565b60405180910390fd5b5b601d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612e665750601c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612f4257601254831115612eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea790615b3b565b60405180910390fd5b60145460055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205484612efc9190615b59565b1115612f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3490615bd6565b60405180910390fd5b61310c565b601d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612fdf5750601c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561302e57601254831115613029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302090615c64565b60405180910390fd5b61310b565b601c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661310a5760145460055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054846130c89190615b59565b1115613109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310090615bd6565b60405180910390fd5b5b5b5b5b5b5f60055f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60135482101590508080156131715750601560029054906101000a900460ff165b801561318a5750601060019054906101000a900460ff16155b80156131dd5750601d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156132305750601b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561324d5750600360115f8581526020019081526020015f2054105b80156132a05750601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613307576001601060016101000a81548160ff0219169083151502179055506132c8613ca0565b60115f8481526020019081526020015f205f81546132e5906151d8565b919050819055505f601060016101000a81548160ff0219169083151502179055505b5f601060019054906101000a900460ff16159050601b5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806133b65750601b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156133bf575f90505b5f811561354557601d5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561341d57505f601854115b15613475576064601854886134329190614f24565b61343c9190614f92565b90506018546019548261344f9190614f24565b6134599190614f92565b601a5f8282546134699190615b59565b92505081905550613521565b601d5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156134cc57505f601654115b15613520576064601654886134e19190614f24565b6134eb9190614f92565b9050601654601754826134fe9190614f24565b6135089190614f92565b601a5f8282546135189190615b59565b925050819055505b5b5f81111561353657613534893083613950565b505b80876135429190615050565b96505b613550898989613950565b955050505050505b9392505050565b816002908161356e9190615878565b50806003908161357e9190615878565b505050565b60015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556135b081613dd0565b50565b5f33905090565b5f600267ffffffffffffffff8111156135d6576135d5614a34565b5b6040519080825280602002602001820160405280156136045781602001602082028036833780820191505090505b50905030815f8151811061361b5761361a615083565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156136be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136e29190615c96565b816001815181106136f6576136f5615083565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061375b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84613e91565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016137bc959493929190615db1565b5f604051808303815f87803b1580156137d3575f80fd5b505af11580156137e5573d5f803e3d5ffd5b505050505050565b80601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60605f600161385384614054565b0190505f8167ffffffffffffffff81111561387157613870614a34565b5b6040519080825280601f01601f1916602001820160405280156138a35781602001600182028036833780820191505090505b5090505f82602001820190505b600115613904578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816138f9576138f8614f65565b5b0494505f85036138b0575b819350505050919050565b613917611d25565b1561394e576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f8061395a612a8a565b90505f60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460055f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254613a2a9190615050565b925050819055508460055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600c5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16613b54575f8360055f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054613b139190614f92565b8484613b1f9190614f92565b613b299190615050565b90505f5b81811015613b5157613b3e896141a5565b8080613b49906151d8565b915050613b2d565b50505b600c5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16613c2d575f8382613baf9190614f92565b8460055f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054613bf89190614f92565b613c029190615050565b90505f5b81811015613c2a57613c17886143ea565b8080613c22906151d8565b915050613c06565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148787604051613c8a919061493a565b60405180910390a3600193505050509392505050565b5f60055f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f601a5490505f80831480613cf557505f82145b15613d0257505050613dce565b6014601354613d119190614f24565b831115613d2a576014601354613d279190614f24565b92505b5f839050613d37816135ba565b5f601a81905550601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613d8490615249565b5f6040518083038185875af1925050503d805f8114613dbe576040519150601f19603f3d011682016040523d82523d5f602084013e613dc3565b606091505b505080925050505050505b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ef690615e79565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f6490615f07565b60405180910390fd5b8060065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051614047919061493a565b60405180910390a3505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106140b0577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816140a6576140a5614f65565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106140ed576d04ee2d6d415b85acef810000000083816140e3576140e2614f65565b5b0492506020810190505b662386f26fc10000831061411c57662386f26fc10000838161411257614111614f65565b5b0492506010810190505b6305f5e1008310614145576305f5e100838161413b5761413a614f65565b5b0492506008810190505b612710831061416a5761271083816141605761415f614f65565b5b0492506004810190505b6064831061418d576064838161418357614182614f65565b5b0492506002810190505b600a831061419c576001810190505b80915050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361420a576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506142959190615050565b815481106142a6576142a5615083565b5b905f5260205f2001549050600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054806142fe576142fd6150b0565b5b600190038181905f5260205f20015f90559055600b5f8281526020019081526020015f205f905560095f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560075f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6143f261390f565b6143fb816143fe565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603614463576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60045f81548092919060010191905055505f60045490505f73ffffffffffffffffffffffffffffffffffffffff1660095f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461450f576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160095f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f90919091909150556001600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054905061460c9190615050565b600b5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f8115159050919050565b61469481614680565b82525050565b5f6020820190506146ad5f83018461468b565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156146ea5780820151818401526020810190506146cf565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61470f826146b3565b61471981856146bd565b93506147298185602086016146cd565b614732816146f5565b840191505092915050565b5f6020820190508181035f8301526147558184614705565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b6147808161476e565b811461478a575f80fd5b50565b5f8135905061479b81614777565b92915050565b5f602082840312156147b6576147b5614766565b5b5f6147c38482850161478d565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6147f5826147cc565b9050919050565b614805816147eb565b82525050565b5f60208201905061481e5f8301846147fc565b92915050565b61482d816147eb565b8114614837575f80fd5b50565b5f8135905061484881614824565b92915050565b5f806040838503121561486457614863614766565b5b5f6148718582860161483a565b92505060206148828582860161478d565b9150509250929050565b5f602082840312156148a1576148a0614766565b5b5f6148ae8482850161483a565b91505092915050565b5f819050919050565b5f6148da6148d56148d0846147cc565b6148b7565b6147cc565b9050919050565b5f6148eb826148c0565b9050919050565b5f6148fc826148e1565b9050919050565b61490c816148f2565b82525050565b5f6020820190506149255f830184614903565b92915050565b6149348161476e565b82525050565b5f60208201905061494d5f83018461492b565b92915050565b5f805f6060848603121561496a57614969614766565b5b5f6149778682870161483a565b93505060206149888682870161483a565b92505060406149998682870161478d565b9150509250925092565b6149ac81614680565b81146149b6575f80fd5b50565b5f813590506149c7816149a3565b92915050565b5f602082840312156149e2576149e1614766565b5b5f6149ef848285016149b9565b91505092915050565b5f60ff82169050919050565b614a0d816149f8565b82525050565b5f602082019050614a265f830184614a04565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b614a6a826146f5565b810181811067ffffffffffffffff82111715614a8957614a88614a34565b5b80604052505050565b5f614a9b61475d565b9050614aa78282614a61565b919050565b5f67ffffffffffffffff821115614ac657614ac5614a34565b5b614acf826146f5565b9050602081019050919050565b828183375f83830152505050565b5f614afc614af784614aac565b614a92565b905082815260208101848484011115614b1857614b17614a30565b5b614b23848285614adc565b509392505050565b5f82601f830112614b3f57614b3e614a2c565b5b8135614b4f848260208601614aea565b91505092915050565b5f8060408385031215614b6e57614b6d614766565b5b5f83013567ffffffffffffffff811115614b8b57614b8a61476a565b5b614b9785828601614b2b565b925050602083013567ffffffffffffffff811115614bb857614bb761476a565b5b614bc485828601614b2b565b9150509250929050565b5f8060408385031215614be457614be3614766565b5b5f614bf18582860161483a565b9250506020614c02858286016149b9565b9150509250929050565b5f80fd5b5f80fd5b5f8083601f840112614c2957614c28614a2c565b5b8235905067ffffffffffffffff811115614c4657614c45614c0c565b5b602083019150836020820283011115614c6257614c61614c10565b5b9250929050565b5f8083601f840112614c7e57614c7d614a2c565b5b8235905067ffffffffffffffff811115614c9b57614c9a614c0c565b5b602083019150836020820283011115614cb757614cb6614c10565b5b9250929050565b5f805f8060408587031215614cd657614cd5614766565b5b5f85013567ffffffffffffffff811115614cf357614cf261476a565b5b614cff87828801614c14565b9450945050602085013567ffffffffffffffff811115614d2257614d2161476a565b5b614d2e87828801614c69565b925092505092959194509250565b5f8083601f840112614d5157614d50614a2c565b5b8235905067ffffffffffffffff811115614d6e57614d6d614c0c565b5b602083019150836001820283011115614d8a57614d89614c10565b5b9250929050565b5f805f805f60808688031215614daa57614da9614766565b5b5f614db78882890161483a565b9550506020614dc88882890161483a565b9450506040614dd98882890161478d565b935050606086013567ffffffffffffffff811115614dfa57614df961476a565b5b614e0688828901614d3c565b92509250509295509295909350565b5f8060408385031215614e2b57614e2a614766565b5b5f614e388582860161483a565b9250506020614e498582860161483a565b9150509250929050565b5f60208284031215614e6857614e67614766565b5b5f82013567ffffffffffffffff811115614e8557614e8461476a565b5b614e9184828501614b2b565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680614ede57607f821691505b602082108103614ef157614ef0614e9a565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614f2e8261476e565b9150614f398361476e565b9250828202614f478161476e565b91508282048414831517614f5e57614f5d614ef7565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614f9c8261476e565b9150614fa78361476e565b925082614fb757614fb6614f65565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f61501c602f836146bd565b915061502782614fc2565b604082019050919050565b5f6020820190508181035f83015261504981615010565b9050919050565b5f61505a8261476e565b91506150658361476e565b925082820390508181111561507d5761507c614ef7565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f6150fb5f836150dd565b9150615106826150ed565b5f82019050919050565b5f6080820190506151235f8301866147fc565b61513060208301856147fc565b61513d604083018461492b565b818103606083015261514e816150f0565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61518c81615158565b8114615196575f80fd5b50565b5f815190506151a781615183565b92915050565b5f602082840312156151c2576151c1614766565b5b5f6151cf84828501615199565b91505092915050565b5f6151e28261476e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361521457615213614ef7565b5b600182019050919050565b5f81905092915050565b5f6152345f8361521f565b915061523f826150ed565b5f82019050919050565b5f61525382615229565b9150819050919050565b7f4d757374206b656570206665657320617420333025206f72206c6573730000005f82015250565b5f615291601d836146bd565b915061529c8261525d565b602082019050919050565b5f6020820190508181035f8301526152be81615285565b9050919050565b5f8160011c9050919050565b5f808291508390505b600185111561531a578086048111156152f6576152f5614ef7565b5b60018516156153055780820291505b8081029050615313856152c5565b94506152da565b94509492505050565b5f8261533257600190506153ed565b8161533f575f90506153ed565b8160018114615355576002811461535f5761538e565b60019150506153ed565b60ff84111561537157615370614ef7565b5b8360020a91508482111561538857615387614ef7565b5b506153ed565b5060208310610133831016604e8410600b84101617156153c35782820a9050838111156153be576153bd614ef7565b5b6153ed565b6153d084848460016152d1565b925090508184048111156153e7576153e6614ef7565b5b81810290505b9392505050565b5f6153fe8261476e565b9150615409836149f8565b92506154367fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484615323565b905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6154986039836146bd565b91506154a38261543e565b604082019050919050565b5f6020820190508181035f8301526154c58161548c565b9050919050565b5f6154d783856150dd565b93506154e4838584614adc565b6154ed836146f5565b840190509392505050565b5f60808201905061550b5f8301886147fc565b61551860208301876147fc565b615525604083018661492b565b81810360608301526155388184866154cc565b90509695505050505050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f61559e6024836146bd565b91506155a982615544565b604082019050919050565b5f6020820190508181035f8301526155cb81615592565b9050919050565b5f81905092915050565b5f819050815f5260205f209050919050565b5f81546155fa81614ec7565b61560481866155d2565b9450600182165f811461561e576001811461563357615665565b60ff1983168652811515820286019350615665565b61563c856155dc565b5f5b8381101561565d5781548189015260018201915060208101905061563e565b838801955050505b50505092915050565b5f615678826146b3565b61568281856155d2565b93506156928185602086016146cd565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b5f6156cf82856155ee565b91506156db828461566e565b91506156e68261569e565b6005820191508190509392505050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026157407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82615705565b61574a8683615705565b95508019841693508086168417925050509392505050565b5f61577c6157776157728461476e565b6148b7565b61476e565b9050919050565b5f819050919050565b61579583615762565b6157a96157a182615783565b848454615711565b825550505050565b5f90565b6157bd6157b1565b6157c881848461578c565b505050565b5b818110156157eb576157e05f826157b5565b6001810190506157ce565b5050565b601f82111561583057615801816155dc565b61580a846156f6565b81016020851015615819578190505b61582d615825856156f6565b8301826157cd565b50505b505050565b5f82821c905092915050565b5f6158505f1984600802615835565b1980831691505092915050565b5f6158688383615841565b9150826002028217905092915050565b615881826146b3565b67ffffffffffffffff81111561589a57615899614a34565b5b6158a48254614ec7565b6158af8282856157ef565b5f60209050601f8311600181146158e0575f84156158ce578287015190505b6158d8858261585d565b86555061593f565b601f1984166158ee866155dc565b5f5b82811015615915578489015182556001820191506020850194506020810190506158f0565b86831015615932578489015161592e601f891682615841565b8355505b6001600288020188555050505b505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6159a16025836146bd565b91506159ac82615947565b604082019050919050565b5f6020820190508181035f8301526159ce81615995565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f615a2f6023836146bd565b9150615a3a826159d5565b604082019050919050565b5f6020820190508181035f830152615a5c81615a23565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f615a976016836146bd565b9150615aa282615a63565b602082019050919050565b5f6020820190508181035f830152615ac481615a8b565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f615b256035836146bd565b9150615b3082615acb565b604082019050919050565b5f6020820190508181035f830152615b5281615b19565b9050919050565b5f615b638261476e565b9150615b6e8361476e565b9250828201905080821115615b8657615b85614ef7565b5b92915050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615bc06013836146bd565b9150615bcb82615b8c565b602082019050919050565b5f6020820190508181035f830152615bed81615bb4565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615c4e6036836146bd565b9150615c5982615bf4565b604082019050919050565b5f6020820190508181035f830152615c7b81615c42565b9050919050565b5f81519050615c9081614824565b92915050565b5f60208284031215615cab57615caa614766565b5b5f615cb884828501615c82565b91505092915050565b5f819050919050565b5f615ce4615cdf615cda84615cc1565b6148b7565b61476e565b9050919050565b615cf481615cca565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b615d2c816147eb565b82525050565b5f615d3d8383615d23565b60208301905092915050565b5f602082019050919050565b5f615d5f82615cfa565b615d698185615d04565b9350615d7483615d14565b805f5b83811015615da4578151615d8b8882615d32565b9750615d9683615d49565b925050600181019050615d77565b5085935050505092915050565b5f60a082019050615dc45f83018861492b565b615dd16020830187615ceb565b8181036040830152615de38186615d55565b9050615df260608301856147fc565b615dff608083018461492b565b9695505050505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f615e636024836146bd565b9150615e6e82615e09565b604082019050919050565b5f6020820190508181035f830152615e9081615e57565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f615ef16022836146bd565b9150615efc82615e97565b604082019050919050565b5f6020820190508181035f830152615f1e81615ee5565b905091905056fea26469706673582212204a5052bd18780db206c1d46f5ba4aa75262a59401cd95f93b63ef8548bf8303d64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004177c22a3f4b12ab828abe4232e664f886214341000000000000000000000000000000000000000000000000000000000000012c0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000e8d21b7fcc72b862930db28b4cb3b301806b8fe6
-----Decoded View---------------
Arg [0] : _owner (address): 0x4177C22a3f4B12ab828AbE4232E664f886214341
Arg [1] : _initialSupply (uint256): 300
Arg [2] : _decimal (uint8): 18
Arg [3] : _wallet1 (address): 0xE8D21B7Fcc72B862930DB28b4cb3b301806b8fe6
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000004177c22a3f4b12ab828abe4232e664f886214341
Arg [1] : 000000000000000000000000000000000000000000000000000000000000012c
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000e8d21b7fcc72b862930db28b4cb3b301806b8fe6
Loading...
Loading
Loading...
Loading
[ 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.