Overview
Max Total Supply
94,600,000 STND
Holders
1,467 (0.00%)
Market
Price
$0.01 @ 0.000005 ETH (+2.61%)
Onchain Market Cap
$1,218,378.00
Circulating Supply Market Cap
$1,171,398.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.712091420836466005 STNDValue
$0.01 ( ~3.98550415004365E-06 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Standard
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol"; import './UsingLiquidityProtectionService.sol'; /** * @dev {ERC20} token, including: * * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * - a pauser role that allows to stop all token transfers * - the liquidity protection * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. * * The contract will mint 100M with 1 decimals tokens on deploy as a total supply. */ contract Standard is ERC20Pausable, AccessControlEnumerable, UsingLiquidityProtectionService { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); constructor() ERC20("Standard", "STND") { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); _setupRole(BURNER_ROLE, _msgSender()); _mint(msg.sender, 100000000 * 1e18); } function _beforeTokenTransfer(address _from, address _to, uint _amount) internal override { super._beforeTokenTransfer(_from, _to, _amount); LPS_beforeTokenTransfer(_from, _to, _amount); } function LPS_isAdmin() internal view override returns(bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } function liquidityProtectionService() internal pure override returns(address) { return 0xaabAe39230233d4FaFf04111EF08665880BD6dFb; // Replace with the correct address. } // Expose balanceOf(). function LPS_balanceOf(address _holder) internal view override returns(uint) { return balanceOf(_holder); } // Expose internal transfer function. function LPS_transfer(address _from, address _to, uint _value) internal override { _transfer(_from, _to, _value); } // All the following overrides are optional, if you want to modify default behavior. // How the protection gets disabled. function protectionChecker() internal view override returns(bool) { return ProtectionSwitch_timestamp(1620086399); // Switch off protection on Monday, May 3, 2021 11:59:59 PM. // return ProtectionSwitch_block(13000000); // Switch off protection on block 13000000. //return ProtectionSwitch_manual(); // Switch off protection by calling disableProtection(); from owner. Default. } // This token will be pooled in pair with: function counterToken() internal pure override returns(address) { return 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; // WETH } // Disable/Enable FirstBlockTrap function FirstBlockTrap_skip() internal pure override returns(bool) { return false; } // Disable/Enable absolute amount of tokens bought trap. // Per address per LiquidityAmountTrap_blocks. function LiquidityAmountTrap_skip() internal pure override returns(bool) { return false; } function LiquidityAmountTrap_blocks() internal pure override returns(uint8) { return 4; } function LiquidityAmountTrap_amount() internal pure override returns(uint128) { return 20000 * 1e18; // Only valid for tokens with 18 decimals. } // Disable/Enable percent of remaining liquidity bought trap. // Per address per block. function LiquidityPercentTrap_skip() internal pure override returns(bool) { return false; } function LiquidityPercentTrap_blocks() internal pure override returns(uint8) { return 6; } function LiquidityPercentTrap_percent() internal pure override returns(uint64) { return HUNDRED_PERCENT / 20; // 5% } // Disable/Enable number of trades trap. // Per block. function LiquidityActivityTrap_skip() internal pure override returns(bool) { return false; } function LiquidityActivityTrap_blocks() internal pure override returns(uint8) { return 3; } function LiquidityActivityTrap_count() internal pure override returns(uint8) { return 8; } /** * @dev Pauses all token transfers. * * See {ERC20Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() external { require(hasRole(PAUSER_ROLE, _msgSender()), "Standard: must have pauser role to pause"); _pause(); } /** * @dev Unpauses all token transfers. * * See {ERC20Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() external { require(hasRole(PAUSER_ROLE, _msgSender()), "Standard: must have pauser role to unpause"); _unpause(); } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. * * Requirements: * * - the caller must have the `BURNER_ROLE`. */ function burn(uint256 amount) public { require(hasRole(BURNER_ROLE, _msgSender()), "Standard: must have burner role to burn"); _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. * - the caller must have the `BURNER_ROLE`. */ function burnFrom(address account, uint256 amount) public { require(hasRole(BURNER_ROLE, _msgSender()), "Standard: must have burner role to burn"); uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./AccessControl.sol"; import "../utils/structs/EnumerableSet.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable { function getRoleMember(bytes32 role, uint256 index) external view returns (address); function getRoleMemberCount(bytes32 role) external view returns (uint256); } /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping (bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {grantRole} to track enumerable memberships */ function grantRole(bytes32 role, address account) public virtual override { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override { super.renounceRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {_setupRole} to track enumerable memberships */ function _setupRole(bytes32 role, address account) internal virtual override { super._setupRole(role, account); _roleMembers[role].add(account); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import './ILiquidityProtectionService.sol'; abstract contract UsingLiquidityProtectionService { bool private protected = true; uint64 internal constant HUNDRED_PERCENT = 1e18; function liquidityProtectionService() internal pure virtual returns(address); function LPS_isAdmin() internal view virtual returns(bool); function LPS_balanceOf(address _holder) internal view virtual returns(uint); function LPS_transfer(address _from, address _to, uint _value) internal virtual; function counterToken() internal pure virtual returns(address) { return 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; // WETH } function protectionChecker() internal view virtual returns(bool) { return ProtectionSwitch_manual(); } function FirstBlockTrap_skip() internal pure virtual returns(bool) { return false; } function LiquidityAmountTrap_skip() internal pure virtual returns(bool) { return false; } function LiquidityAmountTrap_blocks() internal pure virtual returns(uint8) { return 5; } function LiquidityAmountTrap_amount() internal pure virtual returns(uint128) { return 5000 * 1e18; // Only valid for tokens with 18 decimals. } function LiquidityPercentTrap_skip() internal pure virtual returns(bool) { return false; } function LiquidityPercentTrap_blocks() internal pure virtual returns(uint8) { return 50; } function LiquidityPercentTrap_percent() internal pure virtual returns(uint64) { return HUNDRED_PERCENT / 1000; // 0.1% } function LiquidityActivityTrap_skip() internal pure virtual returns(bool) { return false; } function LiquidityActivityTrap_blocks() internal pure virtual returns(uint8) { return 30; } function LiquidityActivityTrap_count() internal pure virtual returns(uint8) { return 15; } function lps() private pure returns(ILiquidityProtectionService) { return ILiquidityProtectionService(liquidityProtectionService()); } function LPS_beforeTokenTransfer(address _from, address _to, uint _amount) internal { if (protectionChecker()) { if (!protected) { return; } require(FirstBlockTrap_skip() || lps().FirstBlockTrap_preValidateTransfer( _from, _to, _amount, counterToken()), 'FirstBlockTrap: blocked'); require(LiquidityAmountTrap_skip() || lps().LiquidityAmountTrap_preValidateTransfer( _from, _to, _amount, counterToken(), LiquidityAmountTrap_blocks(), LiquidityAmountTrap_amount()), 'LiquidityAmountTrap: blocked'); require(LiquidityPercentTrap_skip() || lps().LiquidityPercentTrap_preValidateTransfer( _from, _to, _amount, counterToken(), LiquidityPercentTrap_blocks(), LiquidityPercentTrap_percent()), 'LiquidityPercentTrap: blocked'); require(LiquidityActivityTrap_skip() || lps().LiquidityActivityTrap_preValidateTransfer( _from, _to, _amount, counterToken(), LiquidityActivityTrap_blocks(), LiquidityActivityTrap_count()), 'LiquidityActivityTrap: blocked'); } } function revokeBlocked(address[] calldata _holders, address _revokeTo) external { require(LPS_isAdmin(), 'UsingLiquidityProtectionService: not admin'); require(protectionChecker(), 'UsingLiquidityProtectionService: protection removed'); protected = false; for (uint i = 0; i < _holders.length; i++) { address holder = _holders[i]; if (lps().isBlocked(counterToken(), _holders[i])) { LPS_transfer(holder, _revokeTo, LPS_balanceOf(holder)); } } protected = true; } function disableProtection() external { require(LPS_isAdmin(), 'UsingLiquidityProtectionService: not admin'); protected = false; } function isProtected() public view returns(bool) { return protected; } function ProtectionSwitch_manual() internal view returns(bool) { return protected; } function ProtectionSwitch_timestamp(uint _timestamp) internal view returns(bool) { return not(passed(_timestamp)); } function ProtectionSwitch_block(uint _block) internal view returns(bool) { return not(blockPassed(_block)); } function blockPassed(uint _block) internal view returns(bool) { return _block < block.number; } function passed(uint _timestamp) internal view returns(bool) { return _timestamp < block.timestamp; } function not(bool _condition) internal pure returns(bool) { return !_condition; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @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 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 {_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 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 override returns (bool) { return _roles[role].members[account]; } /** * @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 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. */ function grantRole(bytes32 role, address account) public virtual override { require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to grant"); _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. */ function revokeRole(bytes32 role, address account) public virtual override { require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to revoke"); _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 granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ 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. * * [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}. * ==== */ 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 { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
// SPDX-License-Identifier: MIT 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "../../utils/Context.sol"; /** * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 { 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 defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All three 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 * overloaded; * * 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 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, 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: * * - `to` 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; _balances[account] += amount; emit Transfer(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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(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 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 to 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 { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface ILiquidityProtectionService { event Blocked(address pool, address trader, string trap); function getLiquidityPool(address tokenA, address tokenB) external view returns(address); function LiquidityAmountTrap_preValidateTransfer( address from, address to, uint amount, address counterToken, uint8 trapBlocks, uint128 trapAmount) external returns(bool passed); function FirstBlockTrap_preValidateTransfer( address from, address to, uint amount, address counterToken) external returns(bool passed); function LiquidityPercentTrap_preValidateTransfer( address from, address to, uint amount, address counterToken, uint8 trapBlocks, uint64 trapPercent) external returns(bool passed); function LiquidityActivityTrap_preValidateTransfer( address from, address to, uint amount, address counterToken, uint8 trapBlocks, uint8 trapCount) external returns(bool passed); function isBlocked(address counterToken, address who) external view returns(bool); }
{ "optimizer": { "enabled": true, "runs": 999999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableProtection","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"isProtected","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_holders","type":"address[]"},{"internalType":"address","name":"_revokeTo","type":"address"}],"name":"revokeBlocked","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526008805460ff191660011790553480156200001e57600080fd5b50604080518082018252600881526714dd185b99185c9960c21b60208083019182528351808501909452600484526314d5139160e21b9084015281519192916200006b9160039162000931565b5080516200008190600490602084019062000931565b50506005805460ff19169055506200009b6000336200013c565b620000c77f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200013c565b620000f37f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336200013c565b6200011f7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848336200013c565b62000136336a52b7d2dcc80cd2e40000006200017f565b62000a95565b6200015382826200027660201b6200104b1760201c565b60008281526007602090815260409091206200017a9183906200105962000286821b17901c565b505050565b6001600160a01b038216620001db5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001e960008383620002a6565b8060026000828254620001fd919062000a00565b90915550506001600160a01b038216600090815260208190526040812080548392906200022c90849062000a00565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b620002828282620002cb565b5050565b60006200029d836001600160a01b0384166200036f565b90505b92915050565b620002be838383620003c160201b6200107b1760201c565b6200017a83838362000441565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff16620002825760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200032b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054620003b857508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620002a0565b506000620002a0565b620003d98383836200017a60201b620007161760201c565b60055460ff16156200017a5760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b6064820152608401620001d2565b6200044b620008f0565b156200017a5760085460ff166200046157505050565b604080516327c4328760e11b81526001600160a01b038581166004830152841660248201526044810183905273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26064820152905173aabae39230233d4faff04111ef08665880bd6dfb91634f88650e9160848083019260209291908290030181600087803b158015620004e757600080fd5b505af1158015620004fc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005229190620009d7565b620005705760405162461bcd60e51b815260206004820152601760248201527f4669727374426c6f636b547261703a20626c6f636b65640000000000000000006044820152606401620001d2565b60408051631dd31b9b60e21b81526001600160a01b0385811660048084019190915290851660248301526044820184905273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26064830152608482015269043c33c193756480000060a4820152905173aabae39230233d4faff04111ef08665880bd6dfb9163774c6e6c9160c48083019260209291908290030181600087803b1580156200061057600080fd5b505af115801562000625573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200064b9190620009d7565b620006995760405162461bcd60e51b815260206004820152601c60248201527f4c6971756964697479416d6f756e74547261703a20626c6f636b6564000000006044820152606401620001d2565b73aabae39230233d4faff04111ef08665880bd6dfb6355a8363184848473c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26006620006d762000906565b6040516001600160e01b031960e089901b1681526001600160a01b039687166004820152948616602486015260448501939093529316606483015260ff90921660848201526001600160401b0390911660a482015260c401602060405180830381600087803b1580156200074a57600080fd5b505af11580156200075f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007859190620009d7565b620007d35760405162461bcd60e51b815260206004820152601d60248201527f4c697175696469747950657263656e74547261703a20626c6f636b65640000006044820152606401620001d2565b6040805163e4ec61bb60e01b81526001600160a01b038581166004830152841660248201526044810183905273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2606482015260036084820152600860a4820152905173aabae39230233d4faff04111ef08665880bd6dfb9163e4ec61bb9160c48083019260209291908290030181600087803b1580156200086757600080fd5b505af11580156200087c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008a29190620009d7565b6200017a5760405162461bcd60e51b815260206004820152601e60248201527f4c69717569646974794163746976697479547261703a20626c6f636b656400006044820152606401620001d2565b6000620009016360908e7f6200091d565b905090565b6000620009016014670de0b6b3a764000062000a25565b6000620002a06200092d83421190565b1590565b8280546200093f9062000a58565b90600052602060002090601f016020900481019282620009635760008555620009ae565b82601f106200097e57805160ff1916838001178555620009ae565b82800160010185558215620009ae579182015b82811115620009ae57825182559160200191906001019062000991565b50620009bc929150620009c0565b5090565b5b80821115620009bc5760008155600101620009c1565b600060208284031215620009e9578081fd5b81518015158114620009f9578182fd5b9392505050565b6000821982111562000a2057634e487b7160e01b81526011600452602481fd5b500190565b60006001600160401b038381168062000a4c57634e487b7160e01b83526012600452602483fd5b92169190910492915050565b600181811c9082168062000a6d57607f821691505b6020821081141562000a8f57634e487b7160e01b600052602260045260246000fd5b50919050565b612a508062000aa56000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c80635c975abb1161010f578063a217fddf116100a2578063d539139311610071578063d539139314610457578063d547741f1461047e578063dd62ed3e14610491578063e63ab1e9146104d757600080fd5b8063a217fddf14610416578063a457c2d71461041e578063a9059cbb14610431578063ca15c8731461044457600080fd5b80638456cb59116100de5780638456cb59146103885780639010d07c1461039057806391d14854146103c857806395d89b411461040e57600080fd5b80635c975abb1461032157806370a082311461032c57806375ee83891461036257806379cc67901461037557600080fd5b80632f2ff15d116101875780633f4ba83a116101565780633f4ba83a146102f3578063421dd7c7146102fb57806342966c68146103035780635300f82b1461031657600080fd5b80632f2ff15d146102a9578063313ce567146102be57806336568abe146102cd57806339509351146102e057600080fd5b806318160ddd116101c357806318160ddd1461023a57806323b872dd1461024c578063248a9ca31461025f578063282c51f31461028257600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063095ea7b314610227575b600080fd5b6101fd6101f8366004612832565b6104fe565b60405190151581526020015b60405180910390f35b61021a61055a565b6040516102099190612872565b6101fd61023536600461270f565b6105ec565b6002545b604051908152602001610209565b6101fd61025a3660046126d4565b610602565b61023e61026d3660046127d7565b60009081526006602052604090206001015490565b61023e7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6102bc6102b73660046127ef565b6106f4565b005b60405160128152602001610209565b6102bc6102db3660046127ef565b61071b565b6101fd6102ee36600461270f565b61073d565b6102bc610781565b6102bc610841565b6102bc6103113660046127d7565b6108ff565b60085460ff166101fd565b60055460ff166101fd565b61023e61033a366004612688565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6102bc610370366004612738565b6109c2565b6102bc61038336600461270f565b610ceb565b6102bc610e57565b6103a361039e366004612811565b610f15565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610209565b6101fd6103d63660046127ef565b600091825260066020908152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b61021a610f34565b61023e600081565b6101fd61042c36600461270f565b610f43565b6101fd61043f36600461270f565b61101d565b61023e6104523660046127d7565b61102a565b61023e7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102bc61048c3660046127ef565b611041565b61023e61049f3660046126a2565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b61023e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f5a05180f00000000000000000000000000000000000000000000000000000000148061055457506105548261110e565b92915050565b6060600380546105699061295e565b80601f01602080910402602001604051908101604052809291908181526020018280546105959061295e565b80156105e25780601f106105b7576101008083540402835291602001916105e2565b820191906000526020600020905b8154815290600101906020018083116105c557829003601f168201915b5050505050905090565b60006105f93384846111a5565b50600192915050565b600061060f848484611359565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054828110156106d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6106e985336106e48685612947565b6111a5565b506001949350505050565b6106fe8282611621565b60008281526007602052604090206107169082611059565b505050565b61072582826116ca565b60008281526007602052604090206107169082611779565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916105f99185906106e49086906128e3565b6107ab7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336103d6565b610837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5374616e646172643a206d75737420686176652070617573657220726f6c652060448201527f746f20756e70617573650000000000000000000000000000000000000000000060648201526084016106cc565b61083f61179b565b565b61084961187c565b6108d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5573696e674c697175696469747950726f74656374696f6e536572766963653a60448201527f206e6f742061646d696e0000000000000000000000000000000000000000000060648201526084016106cc565b600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b6109297f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848336103d6565b6109b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f5374616e646172643a206d7573742068617665206275726e657220726f6c652060448201527f746f206275726e0000000000000000000000000000000000000000000000000060648201526084016106cc565b6109bf338261188d565b50565b6109ca61187c565b610a56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5573696e674c697175696469747950726f74656374696f6e536572766963653a60448201527f206e6f742061646d696e0000000000000000000000000000000000000000000060648201526084016106cc565b610a5e611a87565b610aea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f5573696e674c697175696469747950726f74656374696f6e536572766963653a60448201527f2070726f74656374696f6e2072656d6f7665640000000000000000000000000060648201526084016106cc565b600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905560005b82811015610cba576000848483818110610b58577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610b6d9190612688565b905073aabae39230233d4faff04111ef08665880bd6dfb6386c58d3e73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2878786818110610bd7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610bec9190612688565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff92831660048201529116602482015260440160206040518083038186803b158015610c5757600080fd5b505afa158015610c6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8f91906127b7565b15610ca757610ca78184610ca284611a96565b611ac1565b5080610cb2816129b2565b915050610b15565b5050600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b610d157f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848336103d6565b610da1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f5374616e646172643a206d7573742068617665206275726e657220726f6c652060448201527f746f206275726e0000000000000000000000000000000000000000000000000060648201526084016106cc565b6000610dad833361049f565b905081811015610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016106cc565b610e4d83336106e48585612947565b610716838361188d565b610e817f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336103d6565b610f0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f5374616e646172643a206d75737420686176652070617573657220726f6c652060448201527f746f20706175736500000000000000000000000000000000000000000000000060648201526084016106cc565b61083f611acc565b6000828152600760205260408120610f2d9083611b8c565b9392505050565b6060600480546105699061295e565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015611004576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016106cc565b61101333856106e48685612947565b5060019392505050565b60006105f9338484611359565b600081815260076020526040812061055490611b98565b6107258282611ba2565b6110558282611c49565b5050565b6000610f2d8373ffffffffffffffffffffffffffffffffffffffff8416611d3d565b60055460ff1615610716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e7366657220776860448201527f696c65207061757365640000000000000000000000000000000000000000000060648201526084016106cc565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061055457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610554565b73ffffffffffffffffffffffffffffffffffffffff8316611247576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106cc565b73ffffffffffffffffffffffffffffffffffffffff82166112ea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016106cc565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166113fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106cc565b73ffffffffffffffffffffffffffffffffffffffff821661149f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106cc565b6114aa838383611d8c565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015611560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016106cc565b61156a8282612947565b73ffffffffffffffffffffffffffffffffffffffff80861660009081526020819052604080822093909355908516815290812080548492906115ad9084906128e3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161161391815260200190565b60405180910390a350505050565b60008281526006602052604090206001015461163e905b336103d6565b61104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201527f2061646d696e20746f206772616e74000000000000000000000000000000000060648201526084016106cc565b73ffffffffffffffffffffffffffffffffffffffff8116331461176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016106cc565b6110558282611da2565b6000610f2d8373ffffffffffffffffffffffffffffffffffffffff8416611e5d565b60055460ff16611807576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016106cc565b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b600061188881336103d6565b905090565b73ffffffffffffffffffffffffffffffffffffffff8216611930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016106cc565b61193c82600083611d8c565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054818110156119f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016106cc565b6119fc8282612947565b73ffffffffffffffffffffffffffffffffffffffff841660009081526020819052604081209190915560028054849290611a37908490612947565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161134c565b60006118886360908e7f611fc5565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260208190526040812054610554565b610716838383611359565b60055460ff1615611b39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016106cc565b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118523390565b6000610f2d8383611fd7565b6000610554825490565b600082815260066020526040902060010154611bbd90611638565b61176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201527f2061646d696e20746f207265766f6b650000000000000000000000000000000060648201526084016106cc565b600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1661105557600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611cdf3390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054611d8457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610554565b506000610554565b611d9783838361107b565b6107168383836120b9565b600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff161561105557600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015611fbb576000611e81600183612947565b8554909150600090611e9590600190612947565b90506000866000018281548110611ed5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110611f1f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260209091200155611f368360016128e3565b60008281526001890160205260409020558654879080611f7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610554565b6000915050610554565b6000610554611fd383421190565b1590565b8154600090821061206a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60448201527f647300000000000000000000000000000000000000000000000000000000000060648201526084016106cc565b8260000182815481106120a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b6120c1611a87565b156107165760085460ff166120d557505050565b604080517f4f88650e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152841660248201526044810183905273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26064820152905173aabae39230233d4faff04111ef08665880bd6dfb91634f88650e9160848083019260209291908290030181600087803b15801561218057600080fd5b505af1158015612194573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121b891906127b7565b61221e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4669727374426c6f636b547261703a20626c6f636b656400000000000000000060448201526064016106cc565b604080517f774c6e6c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048084019190915290851660248301526044820184905273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26064830152608482015269043c33c193756480000060a4820152905173aabae39230233d4faff04111ef08665880bd6dfb9163774c6e6c9160c48083019260209291908290030181600087803b1580156122e357600080fd5b505af11580156122f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061231b91906127b7565b612381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4c6971756964697479416d6f756e74547261703a20626c6f636b65640000000060448201526064016106cc565b73aabae39230233d4faff04111ef08665880bd6dfb6355a8363184848473c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260066123bd61264a565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e089901b16815273ffffffffffffffffffffffffffffffffffffffff9687166004820152948616602486015260448501939093529316606483015260ff909216608482015267ffffffffffffffff90911660a482015260c401602060405180830381600087803b15801561245557600080fd5b505af1158015612469573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061248d91906127b7565b6124f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4c697175696469747950657263656e74547261703a20626c6f636b656400000060448201526064016106cc565b604080517fe4ec61bb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152841660248201526044810183905273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2606482015260036084820152600860a4820152905173aabae39230233d4faff04111ef08665880bd6dfb9163e4ec61bb9160c48083019260209291908290030181600087803b1580156125ac57600080fd5b505af11580156125c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125e491906127b7565b610716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f4c69717569646974794163746976697479547261703a20626c6f636b6564000060448201526064016106cc565b60006118886014670de0b6b3a76400006128fb565b803573ffffffffffffffffffffffffffffffffffffffff8116811461268357600080fd5b919050565b600060208284031215612699578081fd5b610f2d8261265f565b600080604083850312156126b4578081fd5b6126bd8361265f565b91506126cb6020840161265f565b90509250929050565b6000806000606084860312156126e8578081fd5b6126f18461265f565b92506126ff6020850161265f565b9150604084013590509250925092565b60008060408385031215612721578182fd5b61272a8361265f565b946020939093013593505050565b60008060006040848603121561274c578283fd5b833567ffffffffffffffff80821115612763578485fd5b818601915086601f830112612776578485fd5b813581811115612784578586fd5b8760208260051b8501011115612798578586fd5b6020928301955093506127ae918601905061265f565b90509250925092565b6000602082840312156127c8578081fd5b81518015158114610f2d578182fd5b6000602082840312156127e8578081fd5b5035919050565b60008060408385031215612801578182fd5b823591506126cb6020840161265f565b60008060408385031215612823578182fd5b50508035926020909101359150565b600060208284031215612843578081fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114610f2d578182fd5b6000602080835283518082850152825b8181101561289e57858101830151858201604001528201612882565b818111156128af5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600082198211156128f6576128f66129eb565b500190565b600067ffffffffffffffff8084168061293b577f4e487b710000000000000000000000000000000000000000000000000000000083526012600452602483fd5b92169190910492915050565b600082821015612959576129596129eb565b500390565b600181811c9082168061297257607f821691505b602082108114156129ac577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129e4576129e46129eb565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea264697066735822122055da883aba0cd1204084cfe59a5e161791f8c6b7c7d0aeeb56853b7b5392b71264736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c80635c975abb1161010f578063a217fddf116100a2578063d539139311610071578063d539139314610457578063d547741f1461047e578063dd62ed3e14610491578063e63ab1e9146104d757600080fd5b8063a217fddf14610416578063a457c2d71461041e578063a9059cbb14610431578063ca15c8731461044457600080fd5b80638456cb59116100de5780638456cb59146103885780639010d07c1461039057806391d14854146103c857806395d89b411461040e57600080fd5b80635c975abb1461032157806370a082311461032c57806375ee83891461036257806379cc67901461037557600080fd5b80632f2ff15d116101875780633f4ba83a116101565780633f4ba83a146102f3578063421dd7c7146102fb57806342966c68146103035780635300f82b1461031657600080fd5b80632f2ff15d146102a9578063313ce567146102be57806336568abe146102cd57806339509351146102e057600080fd5b806318160ddd116101c357806318160ddd1461023a57806323b872dd1461024c578063248a9ca31461025f578063282c51f31461028257600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063095ea7b314610227575b600080fd5b6101fd6101f8366004612832565b6104fe565b60405190151581526020015b60405180910390f35b61021a61055a565b6040516102099190612872565b6101fd61023536600461270f565b6105ec565b6002545b604051908152602001610209565b6101fd61025a3660046126d4565b610602565b61023e61026d3660046127d7565b60009081526006602052604090206001015490565b61023e7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6102bc6102b73660046127ef565b6106f4565b005b60405160128152602001610209565b6102bc6102db3660046127ef565b61071b565b6101fd6102ee36600461270f565b61073d565b6102bc610781565b6102bc610841565b6102bc6103113660046127d7565b6108ff565b60085460ff166101fd565b60055460ff166101fd565b61023e61033a366004612688565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6102bc610370366004612738565b6109c2565b6102bc61038336600461270f565b610ceb565b6102bc610e57565b6103a361039e366004612811565b610f15565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610209565b6101fd6103d63660046127ef565b600091825260066020908152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b61021a610f34565b61023e600081565b6101fd61042c36600461270f565b610f43565b6101fd61043f36600461270f565b61101d565b61023e6104523660046127d7565b61102a565b61023e7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102bc61048c3660046127ef565b611041565b61023e61049f3660046126a2565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b61023e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f5a05180f00000000000000000000000000000000000000000000000000000000148061055457506105548261110e565b92915050565b6060600380546105699061295e565b80601f01602080910402602001604051908101604052809291908181526020018280546105959061295e565b80156105e25780601f106105b7576101008083540402835291602001916105e2565b820191906000526020600020905b8154815290600101906020018083116105c557829003601f168201915b5050505050905090565b60006105f93384846111a5565b50600192915050565b600061060f848484611359565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054828110156106d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6106e985336106e48685612947565b6111a5565b506001949350505050565b6106fe8282611621565b60008281526007602052604090206107169082611059565b505050565b61072582826116ca565b60008281526007602052604090206107169082611779565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916105f99185906106e49086906128e3565b6107ab7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336103d6565b610837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5374616e646172643a206d75737420686176652070617573657220726f6c652060448201527f746f20756e70617573650000000000000000000000000000000000000000000060648201526084016106cc565b61083f61179b565b565b61084961187c565b6108d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5573696e674c697175696469747950726f74656374696f6e536572766963653a60448201527f206e6f742061646d696e0000000000000000000000000000000000000000000060648201526084016106cc565b600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b6109297f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848336103d6565b6109b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f5374616e646172643a206d7573742068617665206275726e657220726f6c652060448201527f746f206275726e0000000000000000000000000000000000000000000000000060648201526084016106cc565b6109bf338261188d565b50565b6109ca61187c565b610a56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5573696e674c697175696469747950726f74656374696f6e536572766963653a60448201527f206e6f742061646d696e0000000000000000000000000000000000000000000060648201526084016106cc565b610a5e611a87565b610aea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f5573696e674c697175696469747950726f74656374696f6e536572766963653a60448201527f2070726f74656374696f6e2072656d6f7665640000000000000000000000000060648201526084016106cc565b600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905560005b82811015610cba576000848483818110610b58577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610b6d9190612688565b905073aabae39230233d4faff04111ef08665880bd6dfb6386c58d3e73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2878786818110610bd7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610bec9190612688565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff92831660048201529116602482015260440160206040518083038186803b158015610c5757600080fd5b505afa158015610c6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8f91906127b7565b15610ca757610ca78184610ca284611a96565b611ac1565b5080610cb2816129b2565b915050610b15565b5050600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b610d157f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848336103d6565b610da1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f5374616e646172643a206d7573742068617665206275726e657220726f6c652060448201527f746f206275726e0000000000000000000000000000000000000000000000000060648201526084016106cc565b6000610dad833361049f565b905081811015610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016106cc565b610e4d83336106e48585612947565b610716838361188d565b610e817f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336103d6565b610f0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f5374616e646172643a206d75737420686176652070617573657220726f6c652060448201527f746f20706175736500000000000000000000000000000000000000000000000060648201526084016106cc565b61083f611acc565b6000828152600760205260408120610f2d9083611b8c565b9392505050565b6060600480546105699061295e565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015611004576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016106cc565b61101333856106e48685612947565b5060019392505050565b60006105f9338484611359565b600081815260076020526040812061055490611b98565b6107258282611ba2565b6110558282611c49565b5050565b6000610f2d8373ffffffffffffffffffffffffffffffffffffffff8416611d3d565b60055460ff1615610716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e7366657220776860448201527f696c65207061757365640000000000000000000000000000000000000000000060648201526084016106cc565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061055457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610554565b73ffffffffffffffffffffffffffffffffffffffff8316611247576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106cc565b73ffffffffffffffffffffffffffffffffffffffff82166112ea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016106cc565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166113fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106cc565b73ffffffffffffffffffffffffffffffffffffffff821661149f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106cc565b6114aa838383611d8c565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015611560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016106cc565b61156a8282612947565b73ffffffffffffffffffffffffffffffffffffffff80861660009081526020819052604080822093909355908516815290812080548492906115ad9084906128e3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161161391815260200190565b60405180910390a350505050565b60008281526006602052604090206001015461163e905b336103d6565b61104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201527f2061646d696e20746f206772616e74000000000000000000000000000000000060648201526084016106cc565b73ffffffffffffffffffffffffffffffffffffffff8116331461176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016106cc565b6110558282611da2565b6000610f2d8373ffffffffffffffffffffffffffffffffffffffff8416611e5d565b60055460ff16611807576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016106cc565b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b600061188881336103d6565b905090565b73ffffffffffffffffffffffffffffffffffffffff8216611930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016106cc565b61193c82600083611d8c565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054818110156119f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016106cc565b6119fc8282612947565b73ffffffffffffffffffffffffffffffffffffffff841660009081526020819052604081209190915560028054849290611a37908490612947565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161134c565b60006118886360908e7f611fc5565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260208190526040812054610554565b610716838383611359565b60055460ff1615611b39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016106cc565b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118523390565b6000610f2d8383611fd7565b6000610554825490565b600082815260066020526040902060010154611bbd90611638565b61176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201527f2061646d696e20746f207265766f6b650000000000000000000000000000000060648201526084016106cc565b600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1661105557600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611cdf3390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054611d8457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610554565b506000610554565b611d9783838361107b565b6107168383836120b9565b600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff161561105557600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015611fbb576000611e81600183612947565b8554909150600090611e9590600190612947565b90506000866000018281548110611ed5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110611f1f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260209091200155611f368360016128e3565b60008281526001890160205260409020558654879080611f7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610554565b6000915050610554565b6000610554611fd383421190565b1590565b8154600090821061206a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60448201527f647300000000000000000000000000000000000000000000000000000000000060648201526084016106cc565b8260000182815481106120a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b6120c1611a87565b156107165760085460ff166120d557505050565b604080517f4f88650e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152841660248201526044810183905273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26064820152905173aabae39230233d4faff04111ef08665880bd6dfb91634f88650e9160848083019260209291908290030181600087803b15801561218057600080fd5b505af1158015612194573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121b891906127b7565b61221e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4669727374426c6f636b547261703a20626c6f636b656400000000000000000060448201526064016106cc565b604080517f774c6e6c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048084019190915290851660248301526044820184905273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26064830152608482015269043c33c193756480000060a4820152905173aabae39230233d4faff04111ef08665880bd6dfb9163774c6e6c9160c48083019260209291908290030181600087803b1580156122e357600080fd5b505af11580156122f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061231b91906127b7565b612381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4c6971756964697479416d6f756e74547261703a20626c6f636b65640000000060448201526064016106cc565b73aabae39230233d4faff04111ef08665880bd6dfb6355a8363184848473c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260066123bd61264a565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e089901b16815273ffffffffffffffffffffffffffffffffffffffff9687166004820152948616602486015260448501939093529316606483015260ff909216608482015267ffffffffffffffff90911660a482015260c401602060405180830381600087803b15801561245557600080fd5b505af1158015612469573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061248d91906127b7565b6124f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4c697175696469747950657263656e74547261703a20626c6f636b656400000060448201526064016106cc565b604080517fe4ec61bb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152841660248201526044810183905273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2606482015260036084820152600860a4820152905173aabae39230233d4faff04111ef08665880bd6dfb9163e4ec61bb9160c48083019260209291908290030181600087803b1580156125ac57600080fd5b505af11580156125c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125e491906127b7565b610716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f4c69717569646974794163746976697479547261703a20626c6f636b6564000060448201526064016106cc565b60006118886014670de0b6b3a76400006128fb565b803573ffffffffffffffffffffffffffffffffffffffff8116811461268357600080fd5b919050565b600060208284031215612699578081fd5b610f2d8261265f565b600080604083850312156126b4578081fd5b6126bd8361265f565b91506126cb6020840161265f565b90509250929050565b6000806000606084860312156126e8578081fd5b6126f18461265f565b92506126ff6020850161265f565b9150604084013590509250925092565b60008060408385031215612721578182fd5b61272a8361265f565b946020939093013593505050565b60008060006040848603121561274c578283fd5b833567ffffffffffffffff80821115612763578485fd5b818601915086601f830112612776578485fd5b813581811115612784578586fd5b8760208260051b8501011115612798578586fd5b6020928301955093506127ae918601905061265f565b90509250925092565b6000602082840312156127c8578081fd5b81518015158114610f2d578182fd5b6000602082840312156127e8578081fd5b5035919050565b60008060408385031215612801578182fd5b823591506126cb6020840161265f565b60008060408385031215612823578182fd5b50508035926020909101359150565b600060208284031215612843578081fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114610f2d578182fd5b6000602080835283518082850152825b8181101561289e57858101830151858201604001528201612882565b818111156128af5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600082198211156128f6576128f66129eb565b500190565b600067ffffffffffffffff8084168061293b577f4e487b710000000000000000000000000000000000000000000000000000000083526012600452602483fd5b92169190910492915050565b600082821015612959576129596129eb565b500390565b600181811c9082168061297257607f821691505b602082108114156129ac577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129e4576129e46129eb565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea264697066735822122055da883aba0cd1204084cfe59a5e161791f8c6b7c7d0aeeb56853b7b5392b71264736f6c63430008040033
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.