Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
DeFi
Overview
Max Total Supply
13,000,000 STSW
Holders
576 (0.00%)
Market
Price
$0.01 @ 0.000004 ETH
Onchain Market Cap
$181,938.77
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 6 Decimals)
Balance
1,998 STSWValue
$27.96 ( ~0.00852293254710152 Eth) [0.0154%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
StackswapToken
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-28 */ // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/access/IAccessControl.sol // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/access/AccessControl.sol // OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: contracts/StackswapToken.sol pragma solidity ^0.8.0; contract StackswapToken is Context, Ownable, ERC20, AccessControl { address public deployer = address(0); // Role bytes32 public constant LOGIC_CONTRACT_ROLE = keccak256("UPDATE_BALANCE"); constructor(uint256 initialSupply) ERC20("Stackswap", "STSW") { _mint(msg.sender, initialSupply * 10 ** decimals()); } function mint(address account, uint256 amount) public { require(hasRole(LOGIC_CONTRACT_ROLE, _msgSender()), "Only Allowed Contract"); require(totalSupply() + amount <= 10 ** ( 9 + decimals()), 'Maximum total supply exceeded'); _mint(account, amount); } function burn(address account, uint256 amount) public virtual { require(hasRole(LOGIC_CONTRACT_ROLE, _msgSender()), "Only Allowed Contract"); _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } function decimals() public pure override returns (uint8) { return 6; } ////////////////////////////////////////////////////////////////////////////////////////////////////// function AddAllowedContract(address _target) public onlyOwner{ require(_target != address(0), "null address is not valid"); _setupRole(LOGIC_CONTRACT_ROLE, _target); } function RemoveAllowedContract(address _target) public onlyOwner{ require(_target != address(0), "null address is not valid"); _revokeRole(LOGIC_CONTRACT_ROLE, _target); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"AddAllowedContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOGIC_CONTRACT_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"RemoveAllowedContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200005357600080fd5b506040516200374638038062003746833981810160405281019062000079919062000491565b6040518060400160405280600981526020017f537461636b7377617000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f535453570000000000000000000000000000000000000000000000000000000081525062000105620000f96200017c60201b60201c565b6200018460201b60201c565b81600490805190602001906200011d929190620003ca565b50806005908051906020019062000136929190620003ca565b50505062000175336200014e6200024860201b60201c565b600a6200015c919062000603565b8362000169919062000740565b6200025160201b60201c565b50620008a1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006006905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002bb90620004fb565b60405180910390fd5b620002d860008383620003c060201b60201c565b8060036000828254620002ec91906200054b565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003a091906200051d565b60405180910390a3620003bc60008383620003c560201b60201c565b5050565b505050565b505050565b828054620003d890620007b8565b90600052602060002090601f016020900481019282620003fc576000855562000448565b82601f106200041757805160ff191683800117855562000448565b8280016001018555821562000448579182015b82811115620004475782518255916020019190600101906200042a565b5b5090506200045791906200045b565b5090565b5b80821115620004765760008160009055506001016200045c565b5090565b6000815190506200048b8162000887565b92915050565b600060208284031215620004aa57620004a96200084c565b5b6000620004ba848285016200047a565b91505092915050565b6000620004d2601f836200053a565b9150620004df826200085e565b602082019050919050565b620004f581620007a1565b82525050565b600060208201905081810360008301526200051681620004c3565b9050919050565b6000602082019050620005346000830184620004ea565b92915050565b600082825260208201905092915050565b60006200055882620007a1565b91506200056583620007a1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200059d576200059c620007ee565b5b828201905092915050565b6000808291508390505b6001851115620005fa57808604811115620005d257620005d1620007ee565b5b6001851615620005e25780820291505b8081029050620005f28562000851565b9450620005b2565b94509492505050565b60006200061082620007a1565b91506200061d83620007ab565b92506200064c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000654565b905092915050565b60008262000666576001905062000739565b8162000676576000905062000739565b81600181146200068f57600281146200069a57620006d0565b600191505062000739565b60ff841115620006af57620006ae620007ee565b5b8360020a915084821115620006c957620006c8620007ee565b5b5062000739565b5060208310610133831016604e8410600b84101617156200070a5782820a905083811115620007045762000703620007ee565b5b62000739565b620007198484846001620005a8565b92509050818404811115620007335762000732620007ee565b5b81810290505b9392505050565b60006200074d82620007a1565b91506200075a83620007a1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007965762000795620007ee565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620007d157607f821691505b60208210811415620007e857620007e76200081d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6200089281620007a1565b81146200089e57600080fd5b50565b612e9580620008b16000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a217fddf11610097578063d547741f11610071578063d547741f146104e2578063d5f39488146104fe578063dd62ed3e1461051c578063f2fde38b1461054c576101a9565b8063a217fddf14610464578063a457c2d714610482578063a9059cbb146104b2576101a9565b806391d14854116100d357806391d14854146103de57806395d89b411461040e5780639b1cd4661461042c5780639dc29fac14610448576101a9565b806370a0823114610386578063715018a6146103b65780638da5cb5b146103c0576101a9565b80632f2ff15d1161016657806336568abe1161014057806336568abe14610300578063395093511461031c57806340c10f191461034c5780636c69117e14610368576101a9565b80632f2ff15d146102aa578063313ce567146102c657806335531992146102e4576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063095ea7b3146101fc57806318160ddd1461022c57806323b872dd1461024a578063248a9ca31461027a575b600080fd5b6101c860048036038101906101c39190611e86565b610568565b6040516101d59190612256565b60405180910390f35b6101e66105e2565b6040516101f3919061228c565b60405180910390f35b61021660048036038101906102119190611dd9565b610674565b6040516102239190612256565b60405180910390f35b610234610697565b60405161024191906124ce565b60405180910390f35b610264600480360381019061025f9190611d86565b6106a1565b6040516102719190612256565b60405180910390f35b610294600480360381019061028f9190611e19565b6106d0565b6040516102a19190612271565b60405180910390f35b6102c460048036038101906102bf9190611e46565b6106f0565b005b6102ce610711565b6040516102db91906124e9565b60405180910390f35b6102fe60048036038101906102f99190611d19565b61071a565b005b61031a60048036038101906103159190611e46565b6107bf565b005b61033660048036038101906103319190611dd9565b610842565b6040516103439190612256565b60405180910390f35b61036660048036038101906103619190611dd9565b610879565b005b61037061096b565b60405161037d9190612271565b60405180910390f35b6103a0600480360381019061039b9190611d19565b61098f565b6040516103ad91906124ce565b60405180910390f35b6103be6109d8565b005b6103c86109ec565b6040516103d5919061223b565b60405180910390f35b6103f860048036038101906103f39190611e46565b610a15565b6040516104059190612256565b60405180910390f35b610416610a80565b604051610423919061228c565b60405180910390f35b61044660048036038101906104419190611d19565b610b12565b005b610462600480360381019061045d9190611dd9565b610bb7565b005b61046c610c47565b6040516104799190612271565b60405180910390f35b61049c60048036038101906104979190611dd9565b610c4e565b6040516104a99190612256565b60405180910390f35b6104cc60048036038101906104c79190611dd9565b610cc5565b6040516104d99190612256565b60405180910390f35b6104fc60048036038101906104f79190611e46565b610ce8565b005b610506610d09565b604051610513919061223b565b60405180910390f35b61053660048036038101906105319190611d46565b610d2f565b60405161054391906124ce565b60405180910390f35b61056660048036038101906105619190611d19565b610db6565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105db57506105da82610e3a565b5b9050919050565b6060600480546105f19061286b565b80601f016020809104026020016040519081016040528092919081815260200182805461061d9061286b565b801561066a5780601f1061063f5761010080835404028352916020019161066a565b820191906000526020600020905b81548152906001019060200180831161064d57829003601f168201915b5050505050905090565b60008061067f610ea4565b905061068c818585610eac565b600191505092915050565b6000600354905090565b6000806106ac610ea4565b90506106b9858285611077565b6106c4858585611103565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b6106f9826106d0565b6107028161137e565b61070c8383611392565b505050565b60006006905090565b610722611473565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610792576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107899061240e565b60405180910390fd5b6107bc7fbaac8073dada7b299c030e15b21f7006b7542f5cf8903fb67e841ad05483a197826114f1565b50565b6107c7610ea4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082b9061248e565b60405180910390fd5b61083e82826114ff565b5050565b60008061084d610ea4565b905061086e81858561085f8589610d2f565b610869919061252b565b610eac565b600191505092915050565b6108aa7fbaac8073dada7b299c030e15b21f7006b7542f5cf8903fb67e841ad05483a1976108a5610ea4565b610a15565b6108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e09061238e565b60405180910390fd5b6108f1610711565b60096108fd9190612581565b600a610909919061260b565b81610912610697565b61091c919061252b565b111561095d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109549061244e565b60405180910390fd5b61096782826115e1565b5050565b7fbaac8073dada7b299c030e15b21f7006b7542f5cf8903fb67e841ad05483a19781565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e0611473565b6109ea6000611739565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060058054610a8f9061286b565b80601f0160208091040260200160405190810160405280929190818152602001828054610abb9061286b565b8015610b085780601f10610add57610100808354040283529160200191610b08565b820191906000526020600020905b815481529060010190602001808311610aeb57829003601f168201915b5050505050905090565b610b1a611473565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b819061240e565b60405180910390fd5b610bb47fbaac8073dada7b299c030e15b21f7006b7542f5cf8903fb67e841ad05483a197826114ff565b50565b610be87fbaac8073dada7b299c030e15b21f7006b7542f5cf8903fb67e841ad05483a197610be3610ea4565b610a15565b610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e9061238e565b60405180910390fd5b610c3982610c33610ea4565b83611077565b610c4382826117fd565b5050565b6000801b81565b600080610c59610ea4565b90506000610c678286610d2f565b905083811015610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca39061246e565b60405180910390fd5b610cb98286868403610eac565b60019250505092915050565b600080610cd0610ea4565b9050610cdd818585611103565b600191505092915050565b610cf1826106d0565b610cfa8161137e565b610d0483836114ff565b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610dbe611473565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e259061230e565b60405180910390fd5b610e3781611739565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f139061242e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f839061232e565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161106a91906124ce565b60405180910390a3505050565b60006110838484610d2f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110fd57818110156110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e69061234e565b60405180910390fd5b6110fc8484848403610eac565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a906123ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da906122ce565b60405180910390fd5b6111ee8383836119cd565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c9061236e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161136591906124ce565b60405180910390a36113788484846119d2565b50505050565b61138f8161138a610ea4565b6119d7565b50565b61139c8282610a15565b61146f5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611414610ea4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61147b610ea4565b73ffffffffffffffffffffffffffffffffffffffff166114996109ec565b73ffffffffffffffffffffffffffffffffffffffff16146114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e6906123ae565b60405180910390fd5b565b6114fb8282611392565b5050565b6115098282610a15565b156115dd5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611582610ea4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611651576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611648906124ae565b60405180910390fd5b61165d600083836119cd565b806003600082825461166f919061252b565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161172191906124ce565b60405180910390a3611735600083836119d2565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561186d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611864906123ce565b60405180910390fd5b611879826000836119cd565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f7906122ee565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119b491906124ce565b60405180910390a36119c8836000846119d2565b505050565b505050565b505050565b6119e18282610a15565b611a58576119ee81611a5c565b6119fc8360001c6020611a89565b604051602001611a0d929190612201565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f919061228c565b60405180910390fd5b5050565b6060611a828273ffffffffffffffffffffffffffffffffffffffff16601460ff16611a89565b9050919050565b606060006002836002611a9c9190612729565b611aa6919061252b565b67ffffffffffffffff811115611abf57611abe61292a565b5b6040519080825280601f01601f191660200182016040528015611af15781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611b2957611b286128fb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611b8d57611b8c6128fb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611bcd9190612729565b611bd7919061252b565b90505b6001811115611c77577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611c1957611c186128fb565b5b1a60f81b828281518110611c3057611c2f6128fb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611c7090612841565b9050611bda565b5060008414611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb2906122ae565b60405180910390fd5b8091505092915050565b600081359050611cd481612e03565b92915050565b600081359050611ce981612e1a565b92915050565b600081359050611cfe81612e31565b92915050565b600081359050611d1381612e48565b92915050565b600060208284031215611d2f57611d2e612959565b5b6000611d3d84828501611cc5565b91505092915050565b60008060408385031215611d5d57611d5c612959565b5b6000611d6b85828601611cc5565b9250506020611d7c85828601611cc5565b9150509250929050565b600080600060608486031215611d9f57611d9e612959565b5b6000611dad86828701611cc5565b9350506020611dbe86828701611cc5565b9250506040611dcf86828701611d04565b9150509250925092565b60008060408385031215611df057611def612959565b5b6000611dfe85828601611cc5565b9250506020611e0f85828601611d04565b9150509250929050565b600060208284031215611e2f57611e2e612959565b5b6000611e3d84828501611cda565b91505092915050565b60008060408385031215611e5d57611e5c612959565b5b6000611e6b85828601611cda565b9250506020611e7c85828601611cc5565b9150509250929050565b600060208284031215611e9c57611e9b612959565b5b6000611eaa84828501611cef565b91505092915050565b611ebc81612783565b82525050565b611ecb81612795565b82525050565b611eda816127a1565b82525050565b6000611eeb82612504565b611ef5818561250f565b9350611f0581856020860161280e565b611f0e8161295e565b840191505092915050565b6000611f2482612504565b611f2e8185612520565b9350611f3e81856020860161280e565b80840191505092915050565b6000611f5760208361250f565b9150611f628261297c565b602082019050919050565b6000611f7a60238361250f565b9150611f85826129a5565b604082019050919050565b6000611f9d60228361250f565b9150611fa8826129f4565b604082019050919050565b6000611fc060268361250f565b9150611fcb82612a43565b604082019050919050565b6000611fe360228361250f565b9150611fee82612a92565b604082019050919050565b6000612006601d8361250f565b915061201182612ae1565b602082019050919050565b600061202960268361250f565b915061203482612b0a565b604082019050919050565b600061204c60158361250f565b915061205782612b59565b602082019050919050565b600061206f60208361250f565b915061207a82612b82565b602082019050919050565b600061209260218361250f565b915061209d82612bab565b604082019050919050565b60006120b560258361250f565b91506120c082612bfa565b604082019050919050565b60006120d860198361250f565b91506120e382612c49565b602082019050919050565b60006120fb60248361250f565b915061210682612c72565b604082019050919050565b600061211e601d8361250f565b915061212982612cc1565b602082019050919050565b6000612141601783612520565b915061214c82612cea565b601782019050919050565b600061216460258361250f565b915061216f82612d13565b604082019050919050565b6000612187601183612520565b915061219282612d62565b601182019050919050565b60006121aa602f8361250f565b91506121b582612d8b565b604082019050919050565b60006121cd601f8361250f565b91506121d882612dda565b602082019050919050565b6121ec816127f7565b82525050565b6121fb81612801565b82525050565b600061220c82612134565b91506122188285611f19565b91506122238261217a565b915061222f8284611f19565b91508190509392505050565b60006020820190506122506000830184611eb3565b92915050565b600060208201905061226b6000830184611ec2565b92915050565b60006020820190506122866000830184611ed1565b92915050565b600060208201905081810360008301526122a68184611ee0565b905092915050565b600060208201905081810360008301526122c781611f4a565b9050919050565b600060208201905081810360008301526122e781611f6d565b9050919050565b6000602082019050818103600083015261230781611f90565b9050919050565b6000602082019050818103600083015261232781611fb3565b9050919050565b6000602082019050818103600083015261234781611fd6565b9050919050565b6000602082019050818103600083015261236781611ff9565b9050919050565b600060208201905081810360008301526123878161201c565b9050919050565b600060208201905081810360008301526123a78161203f565b9050919050565b600060208201905081810360008301526123c781612062565b9050919050565b600060208201905081810360008301526123e781612085565b9050919050565b60006020820190508181036000830152612407816120a8565b9050919050565b60006020820190508181036000830152612427816120cb565b9050919050565b60006020820190508181036000830152612447816120ee565b9050919050565b6000602082019050818103600083015261246781612111565b9050919050565b6000602082019050818103600083015261248781612157565b9050919050565b600060208201905081810360008301526124a78161219d565b9050919050565b600060208201905081810360008301526124c7816121c0565b9050919050565b60006020820190506124e360008301846121e3565b92915050565b60006020820190506124fe60008301846121f2565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612536826127f7565b9150612541836127f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156125765761257561289d565b5b828201905092915050565b600061258c82612801565b915061259783612801565b92508260ff038211156125ad576125ac61289d565b5b828201905092915050565b6000808291508390505b6001851115612602578086048111156125de576125dd61289d565b5b60018516156125ed5780820291505b80810290506125fb8561296f565b94506125c2565b94509492505050565b6000612616826127f7565b915061262183612801565b925061264e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612656565b905092915050565b6000826126665760019050612722565b816126745760009050612722565b816001811461268a5760028114612694576126c3565b6001915050612722565b60ff8411156126a6576126a561289d565b5b8360020a9150848211156126bd576126bc61289d565b5b50612722565b5060208310610133831016604e8410600b84101617156126f85782820a9050838111156126f3576126f261289d565b5b612722565b61270584848460016125b8565b9250905081840481111561271c5761271b61289d565b5b81810290505b9392505050565b6000612734826127f7565b915061273f836127f7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127785761277761289d565b5b828202905092915050565b600061278e826127d7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561282c578082015181840152602081019050612811565b8381111561283b576000848401525b50505050565b600061284c826127f7565b915060008214156128605761285f61289d565b5b600182039050919050565b6000600282049050600182168061288357607f821691505b60208210811415612897576128966128cc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920416c6c6f77656420436f6e74726163740000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6e756c6c2061646472657373206973206e6f742076616c696400000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20746f74616c20737570706c79206578636565646564000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612e0c81612783565b8114612e1757600080fd5b50565b612e23816127a1565b8114612e2e57600080fd5b50565b612e3a816127ab565b8114612e4557600080fd5b50565b612e51816127f7565b8114612e5c57600080fd5b5056fea2646970667358221220da85e11487268cda31788bdce8279357827975af6f20ab32513ba5300322920164736f6c634300080700330000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a217fddf11610097578063d547741f11610071578063d547741f146104e2578063d5f39488146104fe578063dd62ed3e1461051c578063f2fde38b1461054c576101a9565b8063a217fddf14610464578063a457c2d714610482578063a9059cbb146104b2576101a9565b806391d14854116100d357806391d14854146103de57806395d89b411461040e5780639b1cd4661461042c5780639dc29fac14610448576101a9565b806370a0823114610386578063715018a6146103b65780638da5cb5b146103c0576101a9565b80632f2ff15d1161016657806336568abe1161014057806336568abe14610300578063395093511461031c57806340c10f191461034c5780636c69117e14610368576101a9565b80632f2ff15d146102aa578063313ce567146102c657806335531992146102e4576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063095ea7b3146101fc57806318160ddd1461022c57806323b872dd1461024a578063248a9ca31461027a575b600080fd5b6101c860048036038101906101c39190611e86565b610568565b6040516101d59190612256565b60405180910390f35b6101e66105e2565b6040516101f3919061228c565b60405180910390f35b61021660048036038101906102119190611dd9565b610674565b6040516102239190612256565b60405180910390f35b610234610697565b60405161024191906124ce565b60405180910390f35b610264600480360381019061025f9190611d86565b6106a1565b6040516102719190612256565b60405180910390f35b610294600480360381019061028f9190611e19565b6106d0565b6040516102a19190612271565b60405180910390f35b6102c460048036038101906102bf9190611e46565b6106f0565b005b6102ce610711565b6040516102db91906124e9565b60405180910390f35b6102fe60048036038101906102f99190611d19565b61071a565b005b61031a60048036038101906103159190611e46565b6107bf565b005b61033660048036038101906103319190611dd9565b610842565b6040516103439190612256565b60405180910390f35b61036660048036038101906103619190611dd9565b610879565b005b61037061096b565b60405161037d9190612271565b60405180910390f35b6103a0600480360381019061039b9190611d19565b61098f565b6040516103ad91906124ce565b60405180910390f35b6103be6109d8565b005b6103c86109ec565b6040516103d5919061223b565b60405180910390f35b6103f860048036038101906103f39190611e46565b610a15565b6040516104059190612256565b60405180910390f35b610416610a80565b604051610423919061228c565b60405180910390f35b61044660048036038101906104419190611d19565b610b12565b005b610462600480360381019061045d9190611dd9565b610bb7565b005b61046c610c47565b6040516104799190612271565b60405180910390f35b61049c60048036038101906104979190611dd9565b610c4e565b6040516104a99190612256565b60405180910390f35b6104cc60048036038101906104c79190611dd9565b610cc5565b6040516104d99190612256565b60405180910390f35b6104fc60048036038101906104f79190611e46565b610ce8565b005b610506610d09565b604051610513919061223b565b60405180910390f35b61053660048036038101906105319190611d46565b610d2f565b60405161054391906124ce565b60405180910390f35b61056660048036038101906105619190611d19565b610db6565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105db57506105da82610e3a565b5b9050919050565b6060600480546105f19061286b565b80601f016020809104026020016040519081016040528092919081815260200182805461061d9061286b565b801561066a5780601f1061063f5761010080835404028352916020019161066a565b820191906000526020600020905b81548152906001019060200180831161064d57829003601f168201915b5050505050905090565b60008061067f610ea4565b905061068c818585610eac565b600191505092915050565b6000600354905090565b6000806106ac610ea4565b90506106b9858285611077565b6106c4858585611103565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b6106f9826106d0565b6107028161137e565b61070c8383611392565b505050565b60006006905090565b610722611473565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610792576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107899061240e565b60405180910390fd5b6107bc7fbaac8073dada7b299c030e15b21f7006b7542f5cf8903fb67e841ad05483a197826114f1565b50565b6107c7610ea4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082b9061248e565b60405180910390fd5b61083e82826114ff565b5050565b60008061084d610ea4565b905061086e81858561085f8589610d2f565b610869919061252b565b610eac565b600191505092915050565b6108aa7fbaac8073dada7b299c030e15b21f7006b7542f5cf8903fb67e841ad05483a1976108a5610ea4565b610a15565b6108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e09061238e565b60405180910390fd5b6108f1610711565b60096108fd9190612581565b600a610909919061260b565b81610912610697565b61091c919061252b565b111561095d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109549061244e565b60405180910390fd5b61096782826115e1565b5050565b7fbaac8073dada7b299c030e15b21f7006b7542f5cf8903fb67e841ad05483a19781565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e0611473565b6109ea6000611739565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060058054610a8f9061286b565b80601f0160208091040260200160405190810160405280929190818152602001828054610abb9061286b565b8015610b085780601f10610add57610100808354040283529160200191610b08565b820191906000526020600020905b815481529060010190602001808311610aeb57829003601f168201915b5050505050905090565b610b1a611473565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b819061240e565b60405180910390fd5b610bb47fbaac8073dada7b299c030e15b21f7006b7542f5cf8903fb67e841ad05483a197826114ff565b50565b610be87fbaac8073dada7b299c030e15b21f7006b7542f5cf8903fb67e841ad05483a197610be3610ea4565b610a15565b610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e9061238e565b60405180910390fd5b610c3982610c33610ea4565b83611077565b610c4382826117fd565b5050565b6000801b81565b600080610c59610ea4565b90506000610c678286610d2f565b905083811015610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca39061246e565b60405180910390fd5b610cb98286868403610eac565b60019250505092915050565b600080610cd0610ea4565b9050610cdd818585611103565b600191505092915050565b610cf1826106d0565b610cfa8161137e565b610d0483836114ff565b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610dbe611473565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e259061230e565b60405180910390fd5b610e3781611739565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f139061242e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f839061232e565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161106a91906124ce565b60405180910390a3505050565b60006110838484610d2f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110fd57818110156110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e69061234e565b60405180910390fd5b6110fc8484848403610eac565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a906123ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da906122ce565b60405180910390fd5b6111ee8383836119cd565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c9061236e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161136591906124ce565b60405180910390a36113788484846119d2565b50505050565b61138f8161138a610ea4565b6119d7565b50565b61139c8282610a15565b61146f5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611414610ea4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61147b610ea4565b73ffffffffffffffffffffffffffffffffffffffff166114996109ec565b73ffffffffffffffffffffffffffffffffffffffff16146114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e6906123ae565b60405180910390fd5b565b6114fb8282611392565b5050565b6115098282610a15565b156115dd5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611582610ea4565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611651576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611648906124ae565b60405180910390fd5b61165d600083836119cd565b806003600082825461166f919061252b565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161172191906124ce565b60405180910390a3611735600083836119d2565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561186d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611864906123ce565b60405180910390fd5b611879826000836119cd565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f7906122ee565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119b491906124ce565b60405180910390a36119c8836000846119d2565b505050565b505050565b505050565b6119e18282610a15565b611a58576119ee81611a5c565b6119fc8360001c6020611a89565b604051602001611a0d929190612201565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f919061228c565b60405180910390fd5b5050565b6060611a828273ffffffffffffffffffffffffffffffffffffffff16601460ff16611a89565b9050919050565b606060006002836002611a9c9190612729565b611aa6919061252b565b67ffffffffffffffff811115611abf57611abe61292a565b5b6040519080825280601f01601f191660200182016040528015611af15781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611b2957611b286128fb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611b8d57611b8c6128fb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611bcd9190612729565b611bd7919061252b565b90505b6001811115611c77577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611c1957611c186128fb565b5b1a60f81b828281518110611c3057611c2f6128fb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611c7090612841565b9050611bda565b5060008414611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb2906122ae565b60405180910390fd5b8091505092915050565b600081359050611cd481612e03565b92915050565b600081359050611ce981612e1a565b92915050565b600081359050611cfe81612e31565b92915050565b600081359050611d1381612e48565b92915050565b600060208284031215611d2f57611d2e612959565b5b6000611d3d84828501611cc5565b91505092915050565b60008060408385031215611d5d57611d5c612959565b5b6000611d6b85828601611cc5565b9250506020611d7c85828601611cc5565b9150509250929050565b600080600060608486031215611d9f57611d9e612959565b5b6000611dad86828701611cc5565b9350506020611dbe86828701611cc5565b9250506040611dcf86828701611d04565b9150509250925092565b60008060408385031215611df057611def612959565b5b6000611dfe85828601611cc5565b9250506020611e0f85828601611d04565b9150509250929050565b600060208284031215611e2f57611e2e612959565b5b6000611e3d84828501611cda565b91505092915050565b60008060408385031215611e5d57611e5c612959565b5b6000611e6b85828601611cda565b9250506020611e7c85828601611cc5565b9150509250929050565b600060208284031215611e9c57611e9b612959565b5b6000611eaa84828501611cef565b91505092915050565b611ebc81612783565b82525050565b611ecb81612795565b82525050565b611eda816127a1565b82525050565b6000611eeb82612504565b611ef5818561250f565b9350611f0581856020860161280e565b611f0e8161295e565b840191505092915050565b6000611f2482612504565b611f2e8185612520565b9350611f3e81856020860161280e565b80840191505092915050565b6000611f5760208361250f565b9150611f628261297c565b602082019050919050565b6000611f7a60238361250f565b9150611f85826129a5565b604082019050919050565b6000611f9d60228361250f565b9150611fa8826129f4565b604082019050919050565b6000611fc060268361250f565b9150611fcb82612a43565b604082019050919050565b6000611fe360228361250f565b9150611fee82612a92565b604082019050919050565b6000612006601d8361250f565b915061201182612ae1565b602082019050919050565b600061202960268361250f565b915061203482612b0a565b604082019050919050565b600061204c60158361250f565b915061205782612b59565b602082019050919050565b600061206f60208361250f565b915061207a82612b82565b602082019050919050565b600061209260218361250f565b915061209d82612bab565b604082019050919050565b60006120b560258361250f565b91506120c082612bfa565b604082019050919050565b60006120d860198361250f565b91506120e382612c49565b602082019050919050565b60006120fb60248361250f565b915061210682612c72565b604082019050919050565b600061211e601d8361250f565b915061212982612cc1565b602082019050919050565b6000612141601783612520565b915061214c82612cea565b601782019050919050565b600061216460258361250f565b915061216f82612d13565b604082019050919050565b6000612187601183612520565b915061219282612d62565b601182019050919050565b60006121aa602f8361250f565b91506121b582612d8b565b604082019050919050565b60006121cd601f8361250f565b91506121d882612dda565b602082019050919050565b6121ec816127f7565b82525050565b6121fb81612801565b82525050565b600061220c82612134565b91506122188285611f19565b91506122238261217a565b915061222f8284611f19565b91508190509392505050565b60006020820190506122506000830184611eb3565b92915050565b600060208201905061226b6000830184611ec2565b92915050565b60006020820190506122866000830184611ed1565b92915050565b600060208201905081810360008301526122a68184611ee0565b905092915050565b600060208201905081810360008301526122c781611f4a565b9050919050565b600060208201905081810360008301526122e781611f6d565b9050919050565b6000602082019050818103600083015261230781611f90565b9050919050565b6000602082019050818103600083015261232781611fb3565b9050919050565b6000602082019050818103600083015261234781611fd6565b9050919050565b6000602082019050818103600083015261236781611ff9565b9050919050565b600060208201905081810360008301526123878161201c565b9050919050565b600060208201905081810360008301526123a78161203f565b9050919050565b600060208201905081810360008301526123c781612062565b9050919050565b600060208201905081810360008301526123e781612085565b9050919050565b60006020820190508181036000830152612407816120a8565b9050919050565b60006020820190508181036000830152612427816120cb565b9050919050565b60006020820190508181036000830152612447816120ee565b9050919050565b6000602082019050818103600083015261246781612111565b9050919050565b6000602082019050818103600083015261248781612157565b9050919050565b600060208201905081810360008301526124a78161219d565b9050919050565b600060208201905081810360008301526124c7816121c0565b9050919050565b60006020820190506124e360008301846121e3565b92915050565b60006020820190506124fe60008301846121f2565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612536826127f7565b9150612541836127f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156125765761257561289d565b5b828201905092915050565b600061258c82612801565b915061259783612801565b92508260ff038211156125ad576125ac61289d565b5b828201905092915050565b6000808291508390505b6001851115612602578086048111156125de576125dd61289d565b5b60018516156125ed5780820291505b80810290506125fb8561296f565b94506125c2565b94509492505050565b6000612616826127f7565b915061262183612801565b925061264e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612656565b905092915050565b6000826126665760019050612722565b816126745760009050612722565b816001811461268a5760028114612694576126c3565b6001915050612722565b60ff8411156126a6576126a561289d565b5b8360020a9150848211156126bd576126bc61289d565b5b50612722565b5060208310610133831016604e8410600b84101617156126f85782820a9050838111156126f3576126f261289d565b5b612722565b61270584848460016125b8565b9250905081840481111561271c5761271b61289d565b5b81810290505b9392505050565b6000612734826127f7565b915061273f836127f7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127785761277761289d565b5b828202905092915050565b600061278e826127d7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561282c578082015181840152602081019050612811565b8381111561283b576000848401525b50505050565b600061284c826127f7565b915060008214156128605761285f61289d565b5b600182039050919050565b6000600282049050600182168061288357607f821691505b60208210811415612897576128966128cc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920416c6c6f77656420436f6e74726163740000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6e756c6c2061646472657373206973206e6f742076616c696400000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20746f74616c20737570706c79206578636565646564000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612e0c81612783565b8114612e1757600080fd5b50565b612e23816127a1565b8114612e2e57600080fd5b50565b612e3a816127ab565b8114612e4557600080fd5b50565b612e51816127f7565b8114612e5c57600080fd5b5056fea2646970667358221220da85e11487268cda31788bdce8279357827975af6f20ab32513ba5300322920164736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 0
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
49049:1509:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26356:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37783:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40134:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38903:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40915:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28179:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28620:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49959:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50163:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29764:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41619:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49408:284;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49186:73;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39074:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22962:103;;;:::i;:::-;;22314:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26652:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38002:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50361:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49700:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25757:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42360:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39407:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29060:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49128:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39663:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23220:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26356:204;26441:4;26480:32;26465:47;;;:11;:47;;;;:87;;;;26516:36;26540:11;26516:23;:36::i;:::-;26465:87;26458:94;;26356:204;;;:::o;37783:100::-;37837:13;37870:5;37863:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37783:100;:::o;40134:201::-;40217:4;40234:13;40250:12;:10;:12::i;:::-;40234:28;;40273:32;40282:5;40289:7;40298:6;40273:8;:32::i;:::-;40323:4;40316:11;;;40134:201;;;;:::o;38903:108::-;38964:7;38991:12;;38984:19;;38903:108;:::o;40915:295::-;41046:4;41063:15;41081:12;:10;:12::i;:::-;41063:30;;41104:38;41120:4;41126:7;41135:6;41104:15;:38::i;:::-;41153:27;41163:4;41169:2;41173:6;41153:9;:27::i;:::-;41198:4;41191:11;;;40915:295;;;;;:::o;28179:131::-;28253:7;28280:6;:12;28287:4;28280:12;;;;;;;;;;;:22;;;28273:29;;28179:131;;;:::o;28620:147::-;28703:18;28716:4;28703:12;:18::i;:::-;26248:16;26259:4;26248:10;:16::i;:::-;28734:25:::1;28745:4;28751:7;28734:10;:25::i;:::-;28620:147:::0;;;:::o;49959:84::-;50009:5;50034:1;50027:8;;49959:84;:::o;50163:190::-;22200:13;:11;:13::i;:::-;50262:1:::1;50243:21;;:7;:21;;;;50235:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;50305:40;49232:27;50337:7;50305:10;:40::i;:::-;50163:190:::0;:::o;29764:218::-;29871:12;:10;:12::i;:::-;29860:23;;:7;:23;;;29852:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;29948:26;29960:4;29966:7;29948:11;:26::i;:::-;29764:218;;:::o;41619:238::-;41707:4;41724:13;41740:12;:10;:12::i;:::-;41724:28;;41763:64;41772:5;41779:7;41816:10;41788:25;41798:5;41805:7;41788:9;:25::i;:::-;:38;;;;:::i;:::-;41763:8;:64::i;:::-;41845:4;41838:11;;;41619:238;;;;:::o;49408:284::-;49481:42;49232:27;49510:12;:10;:12::i;:::-;49481:7;:42::i;:::-;49473:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;49606:10;:8;:10::i;:::-;49602:1;:14;;;;:::i;:::-;49594:2;:23;;;;:::i;:::-;49584:6;49568:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:49;;49560:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;49662:22;49668:7;49677:6;49662:5;:22::i;:::-;49408:284;;:::o;49186:73::-;49232:27;49186:73;:::o;39074:127::-;39148:7;39175:9;:18;39185:7;39175:18;;;;;;;;;;;;;;;;39168:25;;39074:127;;;:::o;22962:103::-;22200:13;:11;:13::i;:::-;23027:30:::1;23054:1;23027:18;:30::i;:::-;22962:103::o:0;22314:87::-;22360:7;22387:6;;;;;;;;;;;22380:13;;22314:87;:::o;26652:147::-;26738:4;26762:6;:12;26769:4;26762:12;;;;;;;;;;;:20;;:29;26783:7;26762:29;;;;;;;;;;;;;;;;;;;;;;;;;26755:36;;26652:147;;;;:::o;38002:104::-;38058:13;38091:7;38084:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38002:104;:::o;50361:194::-;22200:13;:11;:13::i;:::-;50463:1:::1;50444:21;;:7;:21;;;;50436:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;50506:41;49232:27;50539:7;50506:11;:41::i;:::-;50361:194:::0;:::o;49700:247::-;49781:42;49232:27;49810:12;:10;:12::i;:::-;49781:7;:42::i;:::-;49773:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;49860:46;49876:7;49885:12;:10;:12::i;:::-;49899:6;49860:15;:46::i;:::-;49917:22;49923:7;49932:6;49917:5;:22::i;:::-;49700:247;;:::o;25757:49::-;25802:4;25757:49;;;:::o;42360:436::-;42453:4;42470:13;42486:12;:10;:12::i;:::-;42470:28;;42509:24;42536:25;42546:5;42553:7;42536:9;:25::i;:::-;42509:52;;42600:15;42580:16;:35;;42572:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;42693:60;42702:5;42709:7;42737:15;42718:16;:34;42693:8;:60::i;:::-;42784:4;42777:11;;;;42360:436;;;;:::o;39407:193::-;39486:4;39503:13;39519:12;:10;:12::i;:::-;39503:28;;39542;39552:5;39559:2;39563:6;39542:9;:28::i;:::-;39588:4;39581:11;;;39407:193;;;;:::o;29060:149::-;29144:18;29157:4;29144:12;:18::i;:::-;26248:16;26259:4;26248:10;:16::i;:::-;29175:26:::1;29187:4;29193:7;29175:11;:26::i;:::-;29060:149:::0;;;:::o;49128:36::-;;;;;;;;;;;;;:::o;39663:151::-;39752:7;39779:11;:18;39791:5;39779:18;;;;;;;;;;;;;;;:27;39798:7;39779:27;;;;;;;;;;;;;;;;39772:34;;39663:151;;;;:::o;23220:201::-;22200:13;:11;:13::i;:::-;23329:1:::1;23309:22;;:8;:22;;;;23301:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23385:28;23404:8;23385:18;:28::i;:::-;23220:201:::0;:::o;1782:157::-;1867:4;1906:25;1891:40;;;:11;:40;;;;1884:47;;1782:157;;;:::o;20865:98::-;20918:7;20945:10;20938:17;;20865:98;:::o;46387:380::-;46540:1;46523:19;;:5;:19;;;;46515:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46621:1;46602:21;;:7;:21;;;;46594:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46705:6;46675:11;:18;46687:5;46675:18;;;;;;;;;;;;;;;:27;46694:7;46675:27;;;;;;;;;;;;;;;:36;;;;46743:7;46727:32;;46736:5;46727:32;;;46752:6;46727:32;;;;;;:::i;:::-;;;;;;;;46387:380;;;:::o;47058:453::-;47193:24;47220:25;47230:5;47237:7;47220:9;:25::i;:::-;47193:52;;47280:17;47260:16;:37;47256:248;;47342:6;47322:16;:26;;47314:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47426:51;47435:5;47442:7;47470:6;47451:16;:25;47426:8;:51::i;:::-;47256:248;47182:329;47058:453;;;:::o;43266:840::-;43413:1;43397:18;;:4;:18;;;;43389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43490:1;43476:16;;:2;:16;;;;43468:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43545:38;43566:4;43572:2;43576:6;43545:20;:38::i;:::-;43596:19;43618:9;:15;43628:4;43618:15;;;;;;;;;;;;;;;;43596:37;;43667:6;43652:11;:21;;43644:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;43784:6;43770:11;:20;43752:9;:15;43762:4;43752:15;;;;;;;;;;;;;;;:38;;;;43987:6;43970:9;:13;43980:2;43970:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;44037:2;44022:26;;44031:4;44022:26;;;44041:6;44022:26;;;;;;:::i;:::-;;;;;;;;44061:37;44081:4;44087:2;44091:6;44061:19;:37::i;:::-;43378:728;43266:840;;;:::o;27103:105::-;27170:30;27181:4;27187:12;:10;:12::i;:::-;27170:10;:30::i;:::-;27103:105;:::o;31361:238::-;31445:22;31453:4;31459:7;31445;:22::i;:::-;31440:152;;31516:4;31484:6;:12;31491:4;31484:12;;;;;;;;;;;:20;;:29;31505:7;31484:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;31567:12;:10;:12::i;:::-;31540:40;;31558:7;31540:40;;31552:4;31540:40;;;;;;;;;;31440:152;31361:238;;:::o;22479:132::-;22554:12;:10;:12::i;:::-;22543:23;;:7;:5;:7::i;:::-;:23;;;22535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22479:132::o;30689:112::-;30768:25;30779:4;30785:7;30768:10;:25::i;:::-;30689:112;;:::o;31779:239::-;31863:22;31871:4;31877:7;31863;:22::i;:::-;31859:152;;;31934:5;31902:6;:12;31909:4;31902:12;;;;;;;;;;;:20;;:29;31923:7;31902:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;31986:12;:10;:12::i;:::-;31959:40;;31977:7;31959:40;;31971:4;31959:40;;;;;;;;;;31859:152;31779:239;;:::o;44393:548::-;44496:1;44477:21;;:7;:21;;;;44469:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;44547:49;44576:1;44580:7;44589:6;44547:20;:49::i;:::-;44625:6;44609:12;;:22;;;;;;;:::i;:::-;;;;;;;;44802:6;44780:9;:18;44790:7;44780:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;44856:7;44835:37;;44852:1;44835:37;;;44865:6;44835:37;;;;;;:::i;:::-;;;;;;;;44885:48;44913:1;44917:7;44926:6;44885:19;:48::i;:::-;44393:548;;:::o;23581:191::-;23655:16;23674:6;;;;;;;;;;;23655:25;;23700:8;23691:6;;:17;;;;;;;;;;;;;;;;;;23755:8;23724:40;;23745:8;23724:40;;;;;;;;;;;;23644:128;23581:191;:::o;45274:675::-;45377:1;45358:21;;:7;:21;;;;45350:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;45430:49;45451:7;45468:1;45472:6;45430:20;:49::i;:::-;45492:22;45517:9;:18;45527:7;45517:18;;;;;;;;;;;;;;;;45492:43;;45572:6;45554:14;:24;;45546:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;45691:6;45674:14;:23;45653:9;:18;45663:7;45653:18;;;;;;;;;;;;;;;:44;;;;45808:6;45792:12;;:22;;;;;;;;;;;45869:1;45843:37;;45852:7;45843:37;;;45873:6;45843:37;;;;;;:::i;:::-;;;;;;;;45893:48;45913:7;45930:1;45934:6;45893:19;:48::i;:::-;45339:610;45274:675;;:::o;48111:125::-;;;;:::o;48840:124::-;;;;:::o;27498:492::-;27587:22;27595:4;27601:7;27587;:22::i;:::-;27582:401;;27775:28;27795:7;27775:19;:28::i;:::-;27876:38;27904:4;27896:13;;27911:2;27876:19;:38::i;:::-;27680:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27626:345;;;;;;;;;;;:::i;:::-;;;;;;;;27582:401;27498:492;;:::o;16987:151::-;17045:13;17078:52;17106:4;17090:22;;15142:2;17078:52;;:11;:52::i;:::-;17071:59;;16987:151;;;:::o;16383:447::-;16458:13;16484:19;16529:1;16520:6;16516:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;16506:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16484:47;;16542:15;:6;16549:1;16542:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;16568;:6;16575:1;16568:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;16599:9;16624:1;16615:6;16611:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;16599:26;;16594:131;16631:1;16627;:5;16594:131;;;16666:8;16683:3;16675:5;:11;16666:21;;;;;;;:::i;:::-;;;;;16654:6;16661:1;16654:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;16712:1;16702:11;;;;;16634:3;;;;:::i;:::-;;;16594:131;;;;16752:1;16743:5;:10;16735:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;16815:6;16801:21;;;16383:447;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:137::-;342:5;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;297:137;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;440:139;;;;:::o;585:329::-;644:6;693:2;681:9;672:7;668:23;664:32;661:119;;;699:79;;:::i;:::-;661:119;819:1;844:53;889:7;880:6;869:9;865:22;844:53;:::i;:::-;834:63;;790:117;585:329;;;;:::o;920:474::-;988:6;996;1045:2;1033:9;1024:7;1020:23;1016:32;1013:119;;;1051:79;;:::i;:::-;1013:119;1171:1;1196:53;1241:7;1232:6;1221:9;1217:22;1196:53;:::i;:::-;1186:63;;1142:117;1298:2;1324:53;1369:7;1360:6;1349:9;1345:22;1324:53;:::i;:::-;1314:63;;1269:118;920:474;;;;;:::o;1400:619::-;1477:6;1485;1493;1542:2;1530:9;1521:7;1517:23;1513:32;1510:119;;;1548:79;;:::i;:::-;1510:119;1668:1;1693:53;1738:7;1729:6;1718:9;1714:22;1693:53;:::i;:::-;1683:63;;1639:117;1795:2;1821:53;1866:7;1857:6;1846:9;1842:22;1821:53;:::i;:::-;1811:63;;1766:118;1923:2;1949:53;1994:7;1985:6;1974:9;1970:22;1949:53;:::i;:::-;1939:63;;1894:118;1400:619;;;;;:::o;2025:474::-;2093:6;2101;2150:2;2138:9;2129:7;2125:23;2121:32;2118:119;;;2156:79;;:::i;:::-;2118:119;2276:1;2301:53;2346:7;2337:6;2326:9;2322:22;2301:53;:::i;:::-;2291:63;;2247:117;2403:2;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2374:118;2025:474;;;;;:::o;2505:329::-;2564:6;2613:2;2601:9;2592:7;2588:23;2584:32;2581:119;;;2619:79;;:::i;:::-;2581:119;2739:1;2764:53;2809:7;2800:6;2789:9;2785:22;2764:53;:::i;:::-;2754:63;;2710:117;2505:329;;;;:::o;2840:474::-;2908:6;2916;2965:2;2953:9;2944:7;2940:23;2936:32;2933:119;;;2971:79;;:::i;:::-;2933:119;3091:1;3116:53;3161:7;3152:6;3141:9;3137:22;3116:53;:::i;:::-;3106:63;;3062:117;3218:2;3244:53;3289:7;3280:6;3269:9;3265:22;3244:53;:::i;:::-;3234:63;;3189:118;2840:474;;;;;:::o;3320:327::-;3378:6;3427:2;3415:9;3406:7;3402:23;3398:32;3395:119;;;3433:79;;:::i;:::-;3395:119;3553:1;3578:52;3622:7;3613:6;3602:9;3598:22;3578:52;:::i;:::-;3568:62;;3524:116;3320:327;;;;:::o;3653:118::-;3740:24;3758:5;3740:24;:::i;:::-;3735:3;3728:37;3653:118;;:::o;3777:109::-;3858:21;3873:5;3858:21;:::i;:::-;3853:3;3846:34;3777:109;;:::o;3892:118::-;3979:24;3997:5;3979:24;:::i;:::-;3974:3;3967:37;3892:118;;:::o;4016:364::-;4104:3;4132:39;4165:5;4132:39;:::i;:::-;4187:71;4251:6;4246:3;4187:71;:::i;:::-;4180:78;;4267:52;4312:6;4307:3;4300:4;4293:5;4289:16;4267:52;:::i;:::-;4344:29;4366:6;4344:29;:::i;:::-;4339:3;4335:39;4328:46;;4108:272;4016:364;;;;:::o;4386:377::-;4492:3;4520:39;4553:5;4520:39;:::i;:::-;4575:89;4657:6;4652:3;4575:89;:::i;:::-;4568:96;;4673:52;4718:6;4713:3;4706:4;4699:5;4695:16;4673:52;:::i;:::-;4750:6;4745:3;4741:16;4734:23;;4496:267;4386:377;;;;:::o;4769:366::-;4911:3;4932:67;4996:2;4991:3;4932:67;:::i;:::-;4925:74;;5008:93;5097:3;5008:93;:::i;:::-;5126:2;5121:3;5117:12;5110:19;;4769:366;;;:::o;5141:::-;5283:3;5304:67;5368:2;5363:3;5304:67;:::i;:::-;5297:74;;5380:93;5469:3;5380:93;:::i;:::-;5498:2;5493:3;5489:12;5482:19;;5141:366;;;:::o;5513:::-;5655:3;5676:67;5740:2;5735:3;5676:67;:::i;:::-;5669:74;;5752:93;5841:3;5752:93;:::i;:::-;5870:2;5865:3;5861:12;5854:19;;5513:366;;;:::o;5885:::-;6027:3;6048:67;6112:2;6107:3;6048:67;:::i;:::-;6041:74;;6124:93;6213:3;6124:93;:::i;:::-;6242:2;6237:3;6233:12;6226:19;;5885:366;;;:::o;6257:::-;6399:3;6420:67;6484:2;6479:3;6420:67;:::i;:::-;6413:74;;6496:93;6585:3;6496:93;:::i;:::-;6614:2;6609:3;6605:12;6598:19;;6257:366;;;:::o;6629:::-;6771:3;6792:67;6856:2;6851:3;6792:67;:::i;:::-;6785:74;;6868:93;6957:3;6868:93;:::i;:::-;6986:2;6981:3;6977:12;6970:19;;6629:366;;;:::o;7001:::-;7143:3;7164:67;7228:2;7223:3;7164:67;:::i;:::-;7157:74;;7240:93;7329:3;7240:93;:::i;:::-;7358:2;7353:3;7349:12;7342:19;;7001:366;;;:::o;7373:::-;7515:3;7536:67;7600:2;7595:3;7536:67;:::i;:::-;7529:74;;7612:93;7701:3;7612:93;:::i;:::-;7730:2;7725:3;7721:12;7714:19;;7373:366;;;:::o;7745:::-;7887:3;7908:67;7972:2;7967:3;7908:67;:::i;:::-;7901:74;;7984:93;8073:3;7984:93;:::i;:::-;8102:2;8097:3;8093:12;8086:19;;7745:366;;;:::o;8117:::-;8259:3;8280:67;8344:2;8339:3;8280:67;:::i;:::-;8273:74;;8356:93;8445:3;8356:93;:::i;:::-;8474:2;8469:3;8465:12;8458:19;;8117:366;;;:::o;8489:::-;8631:3;8652:67;8716:2;8711:3;8652:67;:::i;:::-;8645:74;;8728:93;8817:3;8728:93;:::i;:::-;8846:2;8841:3;8837:12;8830:19;;8489:366;;;:::o;8861:::-;9003:3;9024:67;9088:2;9083:3;9024:67;:::i;:::-;9017:74;;9100:93;9189:3;9100:93;:::i;:::-;9218:2;9213:3;9209:12;9202:19;;8861:366;;;:::o;9233:::-;9375:3;9396:67;9460:2;9455:3;9396:67;:::i;:::-;9389:74;;9472:93;9561:3;9472:93;:::i;:::-;9590:2;9585:3;9581:12;9574:19;;9233:366;;;:::o;9605:::-;9747:3;9768:67;9832:2;9827:3;9768:67;:::i;:::-;9761:74;;9844:93;9933:3;9844:93;:::i;:::-;9962:2;9957:3;9953:12;9946:19;;9605:366;;;:::o;9977:402::-;10137:3;10158:85;10240:2;10235:3;10158:85;:::i;:::-;10151:92;;10252:93;10341:3;10252:93;:::i;:::-;10370:2;10365:3;10361:12;10354:19;;9977:402;;;:::o;10385:366::-;10527:3;10548:67;10612:2;10607:3;10548:67;:::i;:::-;10541:74;;10624:93;10713:3;10624:93;:::i;:::-;10742:2;10737:3;10733:12;10726:19;;10385:366;;;:::o;10757:402::-;10917:3;10938:85;11020:2;11015:3;10938:85;:::i;:::-;10931:92;;11032:93;11121:3;11032:93;:::i;:::-;11150:2;11145:3;11141:12;11134:19;;10757:402;;;:::o;11165:366::-;11307:3;11328:67;11392:2;11387:3;11328:67;:::i;:::-;11321:74;;11404:93;11493:3;11404:93;:::i;:::-;11522:2;11517:3;11513:12;11506:19;;11165:366;;;:::o;11537:::-;11679:3;11700:67;11764:2;11759:3;11700:67;:::i;:::-;11693:74;;11776:93;11865:3;11776:93;:::i;:::-;11894:2;11889:3;11885:12;11878:19;;11537:366;;;:::o;11909:118::-;11996:24;12014:5;11996:24;:::i;:::-;11991:3;11984:37;11909:118;;:::o;12033:112::-;12116:22;12132:5;12116:22;:::i;:::-;12111:3;12104:35;12033:112;;:::o;12151:967::-;12533:3;12555:148;12699:3;12555:148;:::i;:::-;12548:155;;12720:95;12811:3;12802:6;12720:95;:::i;:::-;12713:102;;12832:148;12976:3;12832:148;:::i;:::-;12825:155;;12997:95;13088:3;13079:6;12997:95;:::i;:::-;12990:102;;13109:3;13102:10;;12151:967;;;;;:::o;13124:222::-;13217:4;13255:2;13244:9;13240:18;13232:26;;13268:71;13336:1;13325:9;13321:17;13312:6;13268:71;:::i;:::-;13124:222;;;;:::o;13352:210::-;13439:4;13477:2;13466:9;13462:18;13454:26;;13490:65;13552:1;13541:9;13537:17;13528:6;13490:65;:::i;:::-;13352:210;;;;:::o;13568:222::-;13661:4;13699:2;13688:9;13684:18;13676:26;;13712:71;13780:1;13769:9;13765:17;13756:6;13712:71;:::i;:::-;13568:222;;;;:::o;13796:313::-;13909:4;13947:2;13936:9;13932:18;13924:26;;13996:9;13990:4;13986:20;13982:1;13971:9;13967:17;13960:47;14024:78;14097:4;14088:6;14024:78;:::i;:::-;14016:86;;13796:313;;;;:::o;14115:419::-;14281:4;14319:2;14308:9;14304:18;14296:26;;14368:9;14362:4;14358:20;14354:1;14343:9;14339:17;14332:47;14396:131;14522:4;14396:131;:::i;:::-;14388:139;;14115:419;;;:::o;14540:::-;14706:4;14744:2;14733:9;14729:18;14721:26;;14793:9;14787:4;14783:20;14779:1;14768:9;14764:17;14757:47;14821:131;14947:4;14821:131;:::i;:::-;14813:139;;14540:419;;;:::o;14965:::-;15131:4;15169:2;15158:9;15154:18;15146:26;;15218:9;15212:4;15208:20;15204:1;15193:9;15189:17;15182:47;15246:131;15372:4;15246:131;:::i;:::-;15238:139;;14965:419;;;:::o;15390:::-;15556:4;15594:2;15583:9;15579:18;15571:26;;15643:9;15637:4;15633:20;15629:1;15618:9;15614:17;15607:47;15671:131;15797:4;15671:131;:::i;:::-;15663:139;;15390:419;;;:::o;15815:::-;15981:4;16019:2;16008:9;16004:18;15996:26;;16068:9;16062:4;16058:20;16054:1;16043:9;16039:17;16032:47;16096:131;16222:4;16096:131;:::i;:::-;16088:139;;15815:419;;;:::o;16240:::-;16406:4;16444:2;16433:9;16429:18;16421:26;;16493:9;16487:4;16483:20;16479:1;16468:9;16464:17;16457:47;16521:131;16647:4;16521:131;:::i;:::-;16513:139;;16240:419;;;:::o;16665:::-;16831:4;16869:2;16858:9;16854:18;16846:26;;16918:9;16912:4;16908:20;16904:1;16893:9;16889:17;16882:47;16946:131;17072:4;16946:131;:::i;:::-;16938:139;;16665:419;;;:::o;17090:::-;17256:4;17294:2;17283:9;17279:18;17271:26;;17343:9;17337:4;17333:20;17329:1;17318:9;17314:17;17307:47;17371:131;17497:4;17371:131;:::i;:::-;17363:139;;17090:419;;;:::o;17515:::-;17681:4;17719:2;17708:9;17704:18;17696:26;;17768:9;17762:4;17758:20;17754:1;17743:9;17739:17;17732:47;17796:131;17922:4;17796:131;:::i;:::-;17788:139;;17515:419;;;:::o;17940:::-;18106:4;18144:2;18133:9;18129:18;18121:26;;18193:9;18187:4;18183:20;18179:1;18168:9;18164:17;18157:47;18221:131;18347:4;18221:131;:::i;:::-;18213:139;;17940:419;;;:::o;18365:::-;18531:4;18569:2;18558:9;18554:18;18546:26;;18618:9;18612:4;18608:20;18604:1;18593:9;18589:17;18582:47;18646:131;18772:4;18646:131;:::i;:::-;18638:139;;18365:419;;;:::o;18790:::-;18956:4;18994:2;18983:9;18979:18;18971:26;;19043:9;19037:4;19033:20;19029:1;19018:9;19014:17;19007:47;19071:131;19197:4;19071:131;:::i;:::-;19063:139;;18790:419;;;:::o;19215:::-;19381:4;19419:2;19408:9;19404:18;19396:26;;19468:9;19462:4;19458:20;19454:1;19443:9;19439:17;19432:47;19496:131;19622:4;19496:131;:::i;:::-;19488:139;;19215:419;;;:::o;19640:::-;19806:4;19844:2;19833:9;19829:18;19821:26;;19893:9;19887:4;19883:20;19879:1;19868:9;19864:17;19857:47;19921:131;20047:4;19921:131;:::i;:::-;19913:139;;19640:419;;;:::o;20065:::-;20231:4;20269:2;20258:9;20254:18;20246:26;;20318:9;20312:4;20308:20;20304:1;20293:9;20289:17;20282:47;20346:131;20472:4;20346:131;:::i;:::-;20338:139;;20065:419;;;:::o;20490:::-;20656:4;20694:2;20683:9;20679:18;20671:26;;20743:9;20737:4;20733:20;20729:1;20718:9;20714:17;20707:47;20771:131;20897:4;20771:131;:::i;:::-;20763:139;;20490:419;;;:::o;20915:::-;21081:4;21119:2;21108:9;21104:18;21096:26;;21168:9;21162:4;21158:20;21154:1;21143:9;21139:17;21132:47;21196:131;21322:4;21196:131;:::i;:::-;21188:139;;20915:419;;;:::o;21340:222::-;21433:4;21471:2;21460:9;21456:18;21448:26;;21484:71;21552:1;21541:9;21537:17;21528:6;21484:71;:::i;:::-;21340:222;;;;:::o;21568:214::-;21657:4;21695:2;21684:9;21680:18;21672:26;;21708:67;21772:1;21761:9;21757:17;21748:6;21708:67;:::i;:::-;21568:214;;;;:::o;21869:99::-;21921:6;21955:5;21949:12;21939:22;;21869:99;;;:::o;21974:169::-;22058:11;22092:6;22087:3;22080:19;22132:4;22127:3;22123:14;22108:29;;21974:169;;;;:::o;22149:148::-;22251:11;22288:3;22273:18;;22149:148;;;;:::o;22303:305::-;22343:3;22362:20;22380:1;22362:20;:::i;:::-;22357:25;;22396:20;22414:1;22396:20;:::i;:::-;22391:25;;22550:1;22482:66;22478:74;22475:1;22472:81;22469:107;;;22556:18;;:::i;:::-;22469:107;22600:1;22597;22593:9;22586:16;;22303:305;;;;:::o;22614:237::-;22652:3;22671:18;22687:1;22671:18;:::i;:::-;22666:23;;22703:18;22719:1;22703:18;:::i;:::-;22698:23;;22793:1;22787:4;22783:12;22780:1;22777:19;22774:45;;;22799:18;;:::i;:::-;22774:45;22843:1;22840;22836:9;22829:16;;22614:237;;;;:::o;22857:848::-;22918:5;22925:4;22949:6;22940:15;;22973:5;22964:14;;22987:712;23008:1;22998:8;22995:15;22987:712;;;23103:4;23098:3;23094:14;23088:4;23085:24;23082:50;;;23112:18;;:::i;:::-;23082:50;23162:1;23152:8;23148:16;23145:451;;;23577:4;23570:5;23566:16;23557:25;;23145:451;23627:4;23621;23617:15;23609:23;;23657:32;23680:8;23657:32;:::i;:::-;23645:44;;22987:712;;;22857:848;;;;;;;:::o;23711:281::-;23769:5;23793:23;23811:4;23793:23;:::i;:::-;23785:31;;23837:25;23853:8;23837:25;:::i;:::-;23825:37;;23881:104;23918:66;23908:8;23902:4;23881:104;:::i;:::-;23872:113;;23711:281;;;;:::o;23998:1073::-;24052:5;24243:8;24233:40;;24264:1;24255:10;;24266:5;;24233:40;24292:4;24282:36;;24309:1;24300:10;;24311:5;;24282:36;24378:4;24426:1;24421:27;;;;24462:1;24457:191;;;;24371:277;;24421:27;24439:1;24430:10;;24441:5;;;24457:191;24502:3;24492:8;24489:17;24486:43;;;24509:18;;:::i;:::-;24486:43;24558:8;24555:1;24551:16;24542:25;;24593:3;24586:5;24583:14;24580:40;;;24600:18;;:::i;:::-;24580:40;24633:5;;;24371:277;;24757:2;24747:8;24744:16;24738:3;24732:4;24729:13;24725:36;24707:2;24697:8;24694:16;24689:2;24683:4;24680:12;24676:35;24660:111;24657:246;;;24813:8;24807:4;24803:19;24794:28;;24848:3;24841:5;24838:14;24835:40;;;24855:18;;:::i;:::-;24835:40;24888:5;;24657:246;24928:42;24966:3;24956:8;24950:4;24947:1;24928:42;:::i;:::-;24913:57;;;;25002:4;24997:3;24993:14;24986:5;24983:25;24980:51;;;25011:18;;:::i;:::-;24980:51;25060:4;25053:5;25049:16;25040:25;;23998:1073;;;;;;:::o;25077:348::-;25117:7;25140:20;25158:1;25140:20;:::i;:::-;25135:25;;25174:20;25192:1;25174:20;:::i;:::-;25169:25;;25362:1;25294:66;25290:74;25287:1;25284:81;25279:1;25272:9;25265:17;25261:105;25258:131;;;25369:18;;:::i;:::-;25258:131;25417:1;25414;25410:9;25399:20;;25077:348;;;;:::o;25431:96::-;25468:7;25497:24;25515:5;25497:24;:::i;:::-;25486:35;;25431:96;;;:::o;25533:90::-;25567:7;25610:5;25603:13;25596:21;25585:32;;25533:90;;;:::o;25629:77::-;25666:7;25695:5;25684:16;;25629:77;;;:::o;25712:149::-;25748:7;25788:66;25781:5;25777:78;25766:89;;25712:149;;;:::o;25867:126::-;25904:7;25944:42;25937:5;25933:54;25922:65;;25867:126;;;:::o;25999:77::-;26036:7;26065:5;26054:16;;25999:77;;;:::o;26082:86::-;26117:7;26157:4;26150:5;26146:16;26135:27;;26082:86;;;:::o;26174:307::-;26242:1;26252:113;26266:6;26263:1;26260:13;26252:113;;;26351:1;26346:3;26342:11;26336:18;26332:1;26327:3;26323:11;26316:39;26288:2;26285:1;26281:10;26276:15;;26252:113;;;26383:6;26380:1;26377:13;26374:101;;;26463:1;26454:6;26449:3;26445:16;26438:27;26374:101;26223:258;26174:307;;;:::o;26487:171::-;26526:3;26549:24;26567:5;26549:24;:::i;:::-;26540:33;;26595:4;26588:5;26585:15;26582:41;;;26603:18;;:::i;:::-;26582:41;26650:1;26643:5;26639:13;26632:20;;26487:171;;;:::o;26664:320::-;26708:6;26745:1;26739:4;26735:12;26725:22;;26792:1;26786:4;26782:12;26813:18;26803:81;;26869:4;26861:6;26857:17;26847:27;;26803:81;26931:2;26923:6;26920:14;26900:18;26897:38;26894:84;;;26950:18;;:::i;:::-;26894:84;26715:269;26664:320;;;:::o;26990:180::-;27038:77;27035:1;27028:88;27135:4;27132:1;27125:15;27159:4;27156:1;27149:15;27176:180;27224:77;27221:1;27214:88;27321:4;27318:1;27311:15;27345:4;27342:1;27335:15;27362:180;27410:77;27407:1;27400:88;27507:4;27504:1;27497:15;27531:4;27528:1;27521:15;27548:180;27596:77;27593:1;27586:88;27693:4;27690:1;27683:15;27717:4;27714:1;27707:15;27857:117;27966:1;27963;27956:12;27980:102;28021:6;28072:2;28068:7;28063:2;28056:5;28052:14;28048:28;28038:38;;27980:102;;;:::o;28088:::-;28130:8;28177:5;28174:1;28170:13;28149:34;;28088:102;;;:::o;28196:182::-;28336:34;28332:1;28324:6;28320:14;28313:58;28196:182;:::o;28384:222::-;28524:34;28520:1;28512:6;28508:14;28501:58;28593:5;28588:2;28580:6;28576:15;28569:30;28384:222;:::o;28612:221::-;28752:34;28748:1;28740:6;28736:14;28729:58;28821:4;28816:2;28808:6;28804:15;28797:29;28612:221;:::o;28839:225::-;28979:34;28975:1;28967:6;28963:14;28956:58;29048:8;29043:2;29035:6;29031:15;29024:33;28839:225;:::o;29070:221::-;29210:34;29206:1;29198:6;29194:14;29187:58;29279:4;29274:2;29266:6;29262:15;29255:29;29070:221;:::o;29297:179::-;29437:31;29433:1;29425:6;29421:14;29414:55;29297:179;:::o;29482:225::-;29622:34;29618:1;29610:6;29606:14;29599:58;29691:8;29686:2;29678:6;29674:15;29667:33;29482:225;:::o;29713:171::-;29853:23;29849:1;29841:6;29837:14;29830:47;29713:171;:::o;29890:182::-;30030:34;30026:1;30018:6;30014:14;30007:58;29890:182;:::o;30078:220::-;30218:34;30214:1;30206:6;30202:14;30195:58;30287:3;30282:2;30274:6;30270:15;30263:28;30078:220;:::o;30304:224::-;30444:34;30440:1;30432:6;30428:14;30421:58;30513:7;30508:2;30500:6;30496:15;30489:32;30304:224;:::o;30534:175::-;30674:27;30670:1;30662:6;30658:14;30651:51;30534:175;:::o;30715:223::-;30855:34;30851:1;30843:6;30839:14;30832:58;30924:6;30919:2;30911:6;30907:15;30900:31;30715:223;:::o;30944:179::-;31084:31;31080:1;31072:6;31068:14;31061:55;30944:179;:::o;31129:173::-;31269:25;31265:1;31257:6;31253:14;31246:49;31129:173;:::o;31308:224::-;31448:34;31444:1;31436:6;31432:14;31425:58;31517:7;31512:2;31504:6;31500:15;31493:32;31308:224;:::o;31538:167::-;31678:19;31674:1;31666:6;31662:14;31655:43;31538:167;:::o;31711:234::-;31851:34;31847:1;31839:6;31835:14;31828:58;31920:17;31915:2;31907:6;31903:15;31896:42;31711:234;:::o;31951:181::-;32091:33;32087:1;32079:6;32075:14;32068:57;31951:181;:::o;32138:122::-;32211:24;32229:5;32211:24;:::i;:::-;32204:5;32201:35;32191:63;;32250:1;32247;32240:12;32191:63;32138:122;:::o;32266:::-;32339:24;32357:5;32339:24;:::i;:::-;32332:5;32329:35;32319:63;;32378:1;32375;32368:12;32319:63;32266:122;:::o;32394:120::-;32466:23;32483:5;32466:23;:::i;:::-;32459:5;32456:34;32446:62;;32504:1;32501;32494:12;32446:62;32394:120;:::o;32520:122::-;32593:24;32611:5;32593:24;:::i;:::-;32586:5;32583:35;32573:63;;32632:1;32629;32622:12;32573:63;32520:122;:::o
Swarm Source
ipfs://da85e11487268cda31788bdce8279357827975af6f20ab32513ba53003229201
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.