More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 15,876 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 50752331 | 14 hrs ago | IN | 0 ETH | 0.00000555 | ||||
Approve | 50711793 | 27 hrs ago | IN | 0 ETH | 0.00000701 | ||||
Approve | 50674619 | 38 hrs ago | IN | 0 ETH | 0.00000624 | ||||
Approve | 50657458 | 43 hrs ago | IN | 0 ETH | 0.00001132 | ||||
Approve | 50636958 | 2 days ago | IN | 0 ETH | 0.00000533 | ||||
Approve | 50610904 | 2 days ago | IN | 0 ETH | 0.00000657 | ||||
Approve | 50609631 | 2 days ago | IN | 0 ETH | 0.00000685 | ||||
Approve | 50487517 | 3 days ago | IN | 0 ETH | 0.00000462 | ||||
Approve | 50452992 | 4 days ago | IN | 0 ETH | 0.00000477 | ||||
Permit | 50413018 | 4 days ago | IN | 0 ETH | 0.0000091 | ||||
Approve | 50288300 | 6 days ago | IN | 0 ETH | 0.00000471 | ||||
Approve | 50184938 | 7 days ago | IN | 0 ETH | 0.00000476 | ||||
Approve | 50106027 | 8 days ago | IN | 0 ETH | 0.00000522 | ||||
Approve | 50083301 | 8 days ago | IN | 0 ETH | 0.00000471 | ||||
Approve | 50073453 | 9 days ago | IN | 0 ETH | 0.00000508 | ||||
Approve | 50029248 | 9 days ago | IN | 0 ETH | 0.00000822 | ||||
Approve | 50016116 | 9 days ago | IN | 0 ETH | 0.00000511 | ||||
Approve | 49946788 | 10 days ago | IN | 0 ETH | 0.00000755 | ||||
Approve | 49853752 | 11 days ago | IN | 0 ETH | 0.00000615 | ||||
Approve | 49824337 | 12 days ago | IN | 0 ETH | 0.00001019 | ||||
Approve | 49680804 | 14 days ago | IN | 0 ETH | 0.00000619 | ||||
Approve | 49612559 | 15 days ago | IN | 0 ETH | 0.00000539 | ||||
Approve | 49534035 | 16 days ago | IN | 0 ETH | 0.00000511 | ||||
Approve | 49523992 | 16 days ago | IN | 0 ETH | 0.00000504 | ||||
Approve | 49516793 | 16 days ago | IN | 0 ETH | 0.00000505 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
10810674 | 486 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract contains unverified libraries: BridgeLogic, ConfiguratorLogic, EModeLogic, FlashLoanLogic, LiquidationLogic, PoolLogic
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
GhoToken
Compiler Version
v0.8.12+commit.f00d7308
ZkSolc Version
v1.3.13
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {EnumerableSet} from '@openzeppelin/contracts/utils/structs/EnumerableSet.sol'; import {AccessControl} from '@openzeppelin/contracts/access/AccessControl.sol'; import {ERC20} from './ERC20.sol'; import {IGhoToken} from './interfaces/IGhoToken.sol'; /** * @title GHO Token * @author Aave */ contract GhoToken is ERC20, AccessControl, IGhoToken { using EnumerableSet for EnumerableSet.AddressSet; mapping(address => Facilitator) internal _facilitators; EnumerableSet.AddressSet internal _facilitatorsList; /// @inheritdoc IGhoToken bytes32 public constant FACILITATOR_MANAGER_ROLE = keccak256('FACILITATOR_MANAGER_ROLE'); /// @inheritdoc IGhoToken bytes32 public constant BUCKET_MANAGER_ROLE = keccak256('BUCKET_MANAGER_ROLE'); /** * @dev Constructor * @param admin This is the initial holder of the default admin role */ constructor(address admin) ERC20('ONEZ Stablecoin', 'ONEZ', 18) { _setupRole(DEFAULT_ADMIN_ROLE, admin); } /// @inheritdoc IGhoToken function mint(address account, uint256 amount) external { require(amount > 0, 'INVALID_MINT_AMOUNT'); Facilitator storage f = _facilitators[msg.sender]; uint256 currentBucketLevel = f.bucketLevel; uint256 newBucketLevel = currentBucketLevel + amount; require(f.bucketCapacity >= newBucketLevel, 'FACILITATOR_BUCKET_CAPACITY_EXCEEDED'); f.bucketLevel = uint128(newBucketLevel); _mint(account, amount); emit FacilitatorBucketLevelUpdated(msg.sender, currentBucketLevel, newBucketLevel); } /// @inheritdoc IGhoToken function burn(uint256 amount) external { require(amount > 0, 'INVALID_BURN_AMOUNT'); Facilitator storage f = _facilitators[msg.sender]; uint256 currentBucketLevel = f.bucketLevel; uint256 newBucketLevel = currentBucketLevel - amount; f.bucketLevel = uint128(newBucketLevel); _burn(msg.sender, amount); emit FacilitatorBucketLevelUpdated(msg.sender, currentBucketLevel, newBucketLevel); } /// @inheritdoc IGhoToken function addFacilitator( address facilitatorAddress, string calldata facilitatorLabel, uint128 bucketCapacity ) external onlyRole(FACILITATOR_MANAGER_ROLE) { Facilitator storage facilitator = _facilitators[facilitatorAddress]; require(bytes(facilitator.label).length == 0, 'FACILITATOR_ALREADY_EXISTS'); require(bytes(facilitatorLabel).length > 0, 'INVALID_LABEL'); facilitator.label = facilitatorLabel; facilitator.bucketCapacity = bucketCapacity; _facilitatorsList.add(facilitatorAddress); emit FacilitatorAdded( facilitatorAddress, keccak256(abi.encodePacked(facilitatorLabel)), bucketCapacity ); } /// @inheritdoc IGhoToken function removeFacilitator( address facilitatorAddress ) external onlyRole(FACILITATOR_MANAGER_ROLE) { require( bytes(_facilitators[facilitatorAddress].label).length > 0, 'FACILITATOR_DOES_NOT_EXIST' ); require( _facilitators[facilitatorAddress].bucketLevel == 0, 'FACILITATOR_BUCKET_LEVEL_NOT_ZERO' ); delete _facilitators[facilitatorAddress]; _facilitatorsList.remove(facilitatorAddress); emit FacilitatorRemoved(facilitatorAddress); } /// @inheritdoc IGhoToken function setFacilitatorBucketCapacity( address facilitator, uint128 newCapacity ) external onlyRole(BUCKET_MANAGER_ROLE) { require(bytes(_facilitators[facilitator].label).length > 0, 'FACILITATOR_DOES_NOT_EXIST'); uint256 oldCapacity = _facilitators[facilitator].bucketCapacity; _facilitators[facilitator].bucketCapacity = newCapacity; emit FacilitatorBucketCapacityUpdated(facilitator, oldCapacity, newCapacity); } /// @inheritdoc IGhoToken function getFacilitator(address facilitator) external view returns (Facilitator memory) { return _facilitators[facilitator]; } /// @inheritdoc IGhoToken function getFacilitatorBucket(address facilitator) external view returns (uint256, uint256) { return (_facilitators[facilitator].bucketCapacity, _facilitators[facilitator].bucketLevel); } /// @inheritdoc IGhoToken function getFacilitatorsList() external view returns (address[] memory) { return _facilitatorsList.values(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. 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. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ 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; if (lastIndex != toDeleteIndex) { 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] = valueIndex; // Replace lastValue's index to valueIndex } // 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) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // 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); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // 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)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // 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 in 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)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT-only pragma solidity ^0.8.0; import {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol'; /** * @title ERC20 * @notice Gas Efficient ERC20 + EIP-2612 implementation * @dev Modified version of Solmate ERC20 (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC20.sol), * implementing the basic IERC20 */ abstract contract ERC20 is IERC20 { /*/////////////////////////////////////////////////////////////// METADATA STORAGE //////////////////////////////////////////////////////////////*/ string public name; string public symbol; uint8 public immutable decimals; /*/////////////////////////////////////////////////////////////// ERC20 STORAGE //////////////////////////////////////////////////////////////*/ uint256 public totalSupply; mapping(address => uint256) public balanceOf; mapping(address => mapping(address => uint256)) public allowance; /*/////////////////////////////////////////////////////////////// EIP-2612 STORAGE //////////////////////////////////////////////////////////////*/ bytes32 public constant PERMIT_TYPEHASH = keccak256('Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)'); uint256 internal immutable INITIAL_CHAIN_ID; bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR; mapping(address => uint256) public nonces; /*/////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor(string memory _name, string memory _symbol, uint8 _decimals) { name = _name; symbol = _symbol; decimals = _decimals; INITIAL_CHAIN_ID = block.chainid; INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator(); } /*/////////////////////////////////////////////////////////////// ERC20 LOGIC //////////////////////////////////////////////////////////////*/ function approve(address spender, uint256 amount) public virtual returns (bool) { allowance[msg.sender][spender] = amount; emit Approval(msg.sender, spender, amount); return true; } function transfer(address to, uint256 amount) public virtual returns (bool) { balanceOf[msg.sender] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(msg.sender, to, amount); return true; } function transferFrom(address from, address to, uint256 amount) public virtual returns (bool) { uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals. if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount; balanceOf[from] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(from, to, amount); return true; } /*/////////////////////////////////////////////////////////////// EIP-2612 LOGIC //////////////////////////////////////////////////////////////*/ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual { require(deadline >= block.timestamp, 'PERMIT_DEADLINE_EXPIRED'); // Unchecked because the only math done is incrementing // the owner's nonce which cannot realistically overflow. unchecked { bytes32 digest = keccak256( abi.encodePacked( '\x19\x01', DOMAIN_SEPARATOR(), keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline)) ) ); address recoveredAddress = ecrecover(digest, v, r, s); require(recoveredAddress != address(0) && recoveredAddress == owner, 'INVALID_SIGNER'); allowance[recoveredAddress][spender] = value; } emit Approval(owner, spender, value); } function DOMAIN_SEPARATOR() public view virtual returns (bytes32) { return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator(); } function computeDomainSeparator() internal view virtual returns (bytes32) { return keccak256( abi.encode( keccak256( 'EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)' ), keccak256(bytes(name)), keccak256('1'), block.chainid, address(this) ) ); } /*/////////////////////////////////////////////////////////////// INTERNAL MINT/BURN LOGIC //////////////////////////////////////////////////////////////*/ function _mint(address to, uint256 amount) internal virtual { totalSupply += amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(address(0), to, amount); } function _burn(address from, uint256 amount) internal virtual { balanceOf[from] -= amount; // Cannot underflow because a user's balance // will never be larger than the total supply. unchecked { totalSupply -= amount; } emit Transfer(from, address(0), amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import {IAccessControl} from '@openzeppelin/contracts/access/IAccessControl.sol'; /** * @title IGhoToken * @author Aave */ interface IGhoToken is IERC20, IAccessControl { struct Facilitator { uint128 bucketCapacity; uint128 bucketLevel; string label; } /** * @dev Emitted when a new facilitator is added * @param facilitatorAddress The address of the new facilitator * @param label A hashed human readable identifier for the facilitator * @param bucketCapacity The initial capacity of the facilitator's bucket */ event FacilitatorAdded( address indexed facilitatorAddress, bytes32 indexed label, uint256 bucketCapacity ); /** * @dev Emitted when a facilitator is removed * @param facilitatorAddress The address of the removed facilitator */ event FacilitatorRemoved(address indexed facilitatorAddress); /** * @dev Emitted when the bucket capacity of a facilitator is updated * @param facilitatorAddress The address of the facilitator whose bucket capacity is being changed * @param oldCapacity The old capacity of the bucket * @param newCapacity The new capacity of the bucket */ event FacilitatorBucketCapacityUpdated( address indexed facilitatorAddress, uint256 oldCapacity, uint256 newCapacity ); /** * @dev Emitted when the bucket level changed * @param facilitatorAddress The address of the facilitator whose bucket level is being changed * @param oldLevel The old level of the bucket * @param newLevel The new level of the bucket */ event FacilitatorBucketLevelUpdated( address indexed facilitatorAddress, uint256 oldLevel, uint256 newLevel ); /** * @notice Returns the identifier of the Facilitator Manager Role * @return The bytes32 id hash of the FacilitatorManager role */ function FACILITATOR_MANAGER_ROLE() external pure returns (bytes32); /** * @notice Returns the identifier of the Bucket Manager Role * @return The bytes32 id hash of the BucketManager role */ function BUCKET_MANAGER_ROLE() external pure returns (bytes32); /** * @notice Mints the requested amount of tokens to the account address. * @dev Only facilitators with enough bucket capacity available can mint. * @dev The bucket level is increased upon minting. * @param account The address receiving the GHO tokens * @param amount The amount to mint */ function mint(address account, uint256 amount) external; /** * @notice Burns the requested amount of tokens from the account address. * @dev Only active facilitators (bucket level > 0) can burn. * @dev The bucket level is decreased upon burning. * @param amount The amount to burn */ function burn(uint256 amount) external; /** * @notice Add the facilitator passed with the parameters to the facilitators list. * @dev Only accounts with `FACILITATOR_MANAGER_ROLE` role can call this function * @param facilitatorAddress The address of the facilitator to add * @param facilitatorLabel A human readable identifier for the facilitator * @param bucketCapacity The upward limit of GHO can be minted by the facilitator */ function addFacilitator( address facilitatorAddress, string calldata facilitatorLabel, uint128 bucketCapacity ) external; /** * @notice Remove the facilitator from the facilitators list. * @dev Only accounts with `FACILITATOR_MANAGER_ROLE` role can call this function * @param facilitatorAddress The address of the facilitator to remove */ function removeFacilitator(address facilitatorAddress) external; /** * @notice Set the bucket capacity of the facilitator. * @dev Only accounts with `BUCKET_MANAGER_ROLE` role can call this function * @param facilitator The address of the facilitator * @param newCapacity The new capacity of the bucket */ function setFacilitatorBucketCapacity(address facilitator, uint128 newCapacity) external; /** * @notice Returns the facilitator data * @param facilitator The address of the facilitator * @return The facilitator configuration */ function getFacilitator(address facilitator) external view returns (Facilitator memory); /** * @notice Returns the bucket configuration of the facilitator * @param facilitator The address of the facilitator * @return The capacity of the facilitator's bucket * @return The level of the facilitator's bucket */ function getFacilitatorBucket(address facilitator) external view returns (uint256, uint256); /** * @notice Returns the list of the addresses of the active facilitator * @return The list of the facilitators addresses */ function getFacilitatorsList() external view returns (address[] memory); }
{ "compilerPath": "/Users/esmeevankant/Library/Caches/hardhat-nodejs/compilers-v2/zksolc/zksolc-v1.3.13", "experimental": {}, "libraries": { "@zerolendxyz/core-v3/contracts/protocol/libraries/logic/BorrowLogic.sol": { "BorrowLogic": "0x75D018f04f9cb37936530F7e3A909474565A2467" }, "@zerolendxyz/core-v3/contracts/protocol/libraries/logic/BridgeLogic.sol": { "BridgeLogic": "0x7041eb5797C8bcE2b67ff38c95a47040B2D61036" }, "@zerolendxyz/core-v3/contracts/protocol/libraries/logic/ConfiguratorLogic.sol": { "ConfiguratorLogic": "0x55fA0fC04500D04ea7fAe122ae4603b937D8E5A2" }, "@zerolendxyz/core-v3/contracts/protocol/libraries/logic/EModeLogic.sol": { "EModeLogic": "0x78B93fBb35C97b32C7381C81Fa3A620b3fB7787B" }, "@zerolendxyz/core-v3/contracts/protocol/libraries/logic/FlashLoanLogic.sol": { "FlashLoanLogic": "0xC2ec0e44a0F8262757f569942bE474e70411a85c" }, "@zerolendxyz/core-v3/contracts/protocol/libraries/logic/LiquidationLogic.sol": { "LiquidationLogic": "0x153EEc41B78caBC639b77D0a2e83e43BaAAB6859" }, "@zerolendxyz/core-v3/contracts/protocol/libraries/logic/PoolLogic.sol": { "PoolLogic": "0x07c9C19a4823f7F89eE63cb0d89AEF55F4D61f71" }, "@zerolendxyz/core-v3/contracts/protocol/libraries/logic/SupplyLogic.sol": { "SupplyLogic": "0xCf58E8e67F2BcDd977e61bB6FDC1B0EEd6E1939d" } }, "optimizer": { "enabled": true, "mode": "3" } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"facilitatorAddress","type":"address"},{"indexed":true,"internalType":"bytes32","name":"label","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"bucketCapacity","type":"uint256"}],"name":"FacilitatorAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"facilitatorAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldCapacity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newCapacity","type":"uint256"}],"name":"FacilitatorBucketCapacityUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"facilitatorAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldLevel","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newLevel","type":"uint256"}],"name":"FacilitatorBucketLevelUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"facilitatorAddress","type":"address"}],"name":"FacilitatorRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BUCKET_MANAGER_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":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FACILITATOR_MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"facilitatorAddress","type":"address"},{"internalType":"string","name":"facilitatorLabel","type":"string"},{"internalType":"uint128","name":"bucketCapacity","type":"uint128"}],"name":"addFacilitator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"facilitator","type":"address"}],"name":"getFacilitator","outputs":[{"components":[{"internalType":"uint128","name":"bucketCapacity","type":"uint128"},{"internalType":"uint128","name":"bucketLevel","type":"uint128"},{"internalType":"string","name":"label","type":"string"}],"internalType":"struct IGhoToken.Facilitator","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"facilitator","type":"address"}],"name":"getFacilitatorBucket","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFacilitatorsList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"facilitatorAddress","type":"address"}],"name":"removeFacilitator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"facilitator","type":"address"},{"internalType":"uint128","name":"newCapacity","type":"uint128"}],"name":"setFacilitatorBucketCapacity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010005c91e4275784c425271a90e50992437fb6384f14b29dbf8711ace8c2d7c00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000b76f765a785eca438e1d95f594490088afaf9acc
Deployed Bytecode
0x00030000000000020001000000000002000200000001035500000060011002700000054c0010019d000100000000001f0000000101200190000000360000c13d0000008001000039000000400010043f0000000001000031000000040110008c0000008d0000413d0000000201000367000000000101043b000000e001100270000005540210009c000000480000213d0000056a0210009c0000008f0000a13d0000056b0210009c000000d50000213d000005710210009c000001330000213d000005740210009c000001c60000613d000005750110009c0000008d0000c13d0000000001000416000000000101004b0000008d0000c13d000000040100008a00000000011000310000054f02000041000000000301004b000000000300001900000000030240190000054f01100197000000000401004b000000000200a0190000054f0110009c00000000010300190000000001026019000000000101004b0000008d0000c13d000000400100043d000005840200004100000000002104350000054c020000410000054c0310009c000000000102801900000040011002100000057f011001c70000152c0001042e000000e001000039000000400010043f0000000001000416000000000101004b0000008d0000c13d0000000001000031000000ff02100039000000200300008a000000000232016f0000054d032000410000054e0330009c000000610000213d000005520100004100000000001004350000004101000039000000040010043f00000553010000410000152d00010430000005550210009c000000b80000a13d000005560210009c000000e70000213d0000055c0210009c000001510000213d0000055f0210009c000001d20000613d000005600110009c0000008d0000c13d0000000001000416000000000101004b0000008d0000c13d0000000001000031152b05e40000040f152b0bed0000040f0000000101000039000000400200043d00000000001204350000054c010000410000054c0320009c000000000102401900000040011002100000057f011001c70000152c0001042e000000400020043f0000001f0210018f000000020300036700000005041002720000006f0000613d00000000050000190000000506500210000000000763034f000000000707043b000000e00660003900000000007604350000000105500039000000000645004b000000670000413d000000000502004b0000007e0000613d0000000504400210000000000343034f0000000302200210000000e004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000054f02000041000000200310008c000000000300001900000000030240190000054f01100197000000000401004b000000000200a0190000054f0110009c00000000010300190000000001026019000000000101004b0000008d0000c13d000000e00100043d000005500210009c000000f90000a13d00000000010000190000152d00010430000005760210009c0000010a0000a13d000005770210009c000001610000213d0000057a0210009c000001eb0000613d0000057b0110009c0000008d0000c13d0000000001000416000000000101004b0000008d0000c13d000000040100008a00000000011000310000054f02000041000000000301004b000000000300001900000000030240190000054f01100197000000000401004b000000000200a0190000054f0110009c00000000010300190000000001026019000000000101004b0000008d0000c13d152b14fe0000040f0000000002010019000000400100043d000100000001001d152b05fb0000040f000000010400002900000000014100490000054c020000410000054c0310009c00000000010280190000054c0340009c000000000204401900000040022002100000006001100210000000000121019f0000152c0001042e000005610210009c0000011f0000a13d000005620210009c000001820000213d000005650210009c000002060000613d000005660110009c0000008d0000c13d0000000001000416000000000101004b0000008d0000c13d0000000001000031152b06260000040f000100000002001d152b074d0000040f0000000102000029152b06640000040f000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d00000000001204350000054c010000410000054c0320009c000000000102401900000040011002100000057f011001c70000152c0001042e0000056c0210009c000001920000213d0000056f0210009c000002120000613d000005700110009c0000008d0000c13d0000000001000416000000000101004b0000008d0000c13d0000000001000031152b05e40000040f152b0f8d0000040f0000054c01000041000000400200043d0000054c0320009c000000000102401900000040011002100000152c0001042e000005570210009c000001b00000213d0000055a0210009c0000021e0000613d0000055b0110009c0000008d0000c13d0000000001000416000000000101004b0000008d0000c13d0000000001000031152b070f0000040f152b0ccf0000040f0000054c01000041000000400200043d0000054c0320009c000000000102401900000040011002100000152c0001042e152b03290000040f000000800100043d00000140000004430000016000100443000000a00100043d00000020020000390000018000200443000001a0001004430000004001000039000000c00300043d000001c000100443000001e00030044300000100002004430000000301000039000001200010044300000551010000410000152c0001042e0000057c0210009c000002ed0000613d0000057d0210009c000002330000613d0000057e0110009c0000008d0000c13d0000000001000416000000000101004b0000008d0000c13d0000000001000031152b05e40000040f152b0bb10000040f0000000101000039000000400200043d00000000001204350000054c010000410000054c0320009c000000000102401900000040011002100000057f011001c70000152c0001042e000005670210009c000002fe0000613d000005680210009c000002540000613d000005690110009c0000008d0000c13d0000000001000416000000000101004b0000008d0000c13d0000000001000031152b063d0000040f152b06880000040f000000400200043d00000000001204350000054c010000410000054c0320009c000000000102401900000040011002100000057f011001c70000152c0001042e000005720210009c000002620000613d000005730110009c0000008d0000c13d0000000001000416000000000101004b0000008d0000c13d000000040100008a00000000011000310000054f02000041000000000301004b000000000300001900000000030240190000054f01100197000000000401004b000000000200a0190000054f0110009c00000000010300190000000001026019000000000101004b0000008d0000c13d152b0ecb0000040f000000400200043d00000000001204350000054c010000410000054c0320009c000000000102401900000040011002100000057f011001c70000152c0001042e0000055d0210009c000002860000613d0000055e0110009c0000008d0000c13d0000000001000416000000000101004b0000008d0000c13d0000000001000031152b06d10000040f152b13920000040f0000054c01000041000000400200043d0000054c0320009c000000000102401900000040011002100000152c0001042e000005780210009c000002960000613d000005790110009c0000008d0000c13d0000000001000416000000000101004b0000008d0000c13d000000040100008a00000000011000310000054f02000041000000200310008c000000000300001900000000030240190000054f01100197000000000401004b000000000200a0190000054f0110009c00000000010300190000000001026019000000000101004b0000008d0000c13d00000004010000390000000201100367000000000101043b152b075e0000040f000000400200043d00000000001204350000054c010000410000054c0320009c000000000102401900000040011002100000057f011001c70000152c0001042e000005630210009c000002a50000613d000005640110009c0000008d0000c13d0000000001000416000000000101004b0000008d0000c13d0000000001000031152b063d0000040f152b12230000040f0000054c01000041000000400200043d0000054c0320009c000000000102401900000040011002100000152c0001042e0000056d0210009c000002c60000613d0000056e0110009c0000008d0000c13d0000000001000416000000000101004b0000008d0000c13d000000040100008a00000000011000310000054f02000041000000000301004b000000000300001900000000030240190000054f01100197000000000401004b000000000200a0190000054f0110009c00000000010300190000000001026019000000000101004b0000008d0000c13d000000400100043d000005820200004100000000002104350000054c020000410000054c0310009c000000000102801900000040011002100000057f011001c70000152c0001042e000005580210009c000002e10000613d000005590110009c0000008d0000c13d0000000001000416000000000101004b0000008d0000c13d0000000001000031152b07340000040f000100000002001d152b06520000040f0000000102000029152b06640000040f000000000101041a000000400200043d00000000001204350000054c010000410000054c0320009c000000000102401900000040011002100000057f011001c70000152c0001042e0000000001000416000000000101004b0000008d0000c13d0000000001000031152b06260000040f152b07710000040f0000054c01000041000000400200043d0000054c0320009c000000000102401900000040011002100000152c0001042e0000000001000416000000000101004b0000008d0000c13d000000040100008a00000000011000310000054f02000041000000000301004b000000000300001900000000030240190000054f01100197000000000401004b000000000200a0190000054f0110009c00000000010300190000000001026019000000000101004b0000008d0000c13d000000400100043d00000000000104350000054c020000410000054c0310009c000000000102801900000040011002100000057f011001c70000152c0001042e0000000001000416000000000101004b0000008d0000c13d000000040100008a00000000011000310000054f02000041000000000301004b000000000300001900000000030240190000054f01100197000000000401004b000000000200a0190000054f0110009c00000000010300190000000001026019000000000101004b0000008d0000c13d0000000201000039000000000101041a000000400200043d00000000001204350000054c010000410000054c0320009c000000000102401900000040011002100000057f011001c70000152c0001042e0000000001000416000000000101004b0000008d0000c13d0000000001000031152b069b0000040f152b10ab0000040f0000054c01000041000000400200043d0000054c0320009c000000000102401900000040011002100000152c0001042e0000000001000416000000000101004b0000008d0000c13d0000000001000031152b06260000040f152b0a270000040f0000054c01000041000000400200043d0000054c0320009c000000000102401900000040011002100000152c0001042e0000000001000416000000000101004b0000008d0000c13d0000000001000031152b063d0000040f152b145b0000040f0000000002010019000000400100043d000100000001001d152b06ea0000040f000000010400002900000000014100490000054c020000410000054c0310009c00000000010280190000054c0340009c000000000204401900000040022002100000006001100210000000000121019f0000152c0001042e0000000001000416000000000101004b0000008d0000c13d000000040100008a00000000011000310000054f02000041000000000301004b000000000300001900000000030240190000054f01100197000000000401004b000000000200a0190000054f0110009c00000000010300190000000001026019000000000101004b0000008d0000c13d152b05440000040f0000000002010019000000400100043d000100000001001d152b05cc0000040f000000010400002900000000014100490000054c020000410000054c0310009c00000000010280190000054c0340009c000000000204401900000040022002100000006001100210000000000121019f0000152c0001042e0000000001000416000000000101004b0000008d0000c13d0000000001000031152b063d0000040f152b06750000040f000000400200043d00000000001204350000054c010000410000054c0320009c000000000102401900000040011002100000057f011001c70000152c0001042e0000000001000416000000000101004b0000008d0000c13d000000040100008a00000000011000310000054f02000041000000000301004b000000000300001900000000030240190000054f01100197000000000401004b000000000200a0190000054f0110009c00000000010300190000000001026019000000000101004b0000008d0000c13d000000400100043d000100000001001d0000058301000041000000000010043900000000010004120000000400100443000000240000044300008005010000390000004402000039152b03180000040f000000ff0110018f000000010300002900000000001304350000054c010000410000054c0230009c000000000103401900000040011002100000057f011001c70000152c0001042e0000000001000416000000000101004b0000008d0000c13d0000000001000031152b063d0000040f152b14d90000040f000000400300043d0000002004300039000000000024043500000000001304350000054c010000410000054c0230009c0000000001034019000000400110021000000580011001c70000152c0001042e0000000001000416000000000101004b0000008d0000c13d0000000001000031152b060b0000040f152b0c3a0000040f0000000101000039000000400200043d00000000001204350000054c010000410000054c0320009c000000000102401900000040011002100000057f011001c70000152c0001042e0000000001000416000000000101004b0000008d0000c13d000000040100008a00000000011000310000054f02000041000000000301004b000000000300001900000000030240190000054f01100197000000000401004b000000000200a0190000054f0110009c00000000010300190000000001026019000000000101004b0000008d0000c13d152b05800000040f0000000002010019000000400100043d000100000001001d152b05cc0000040f000000010400002900000000014100490000054c020000410000054c0310009c00000000010280190000054c0340009c000000000204401900000040022002100000006001100210000000000121019f0000152c0001042e0000000001000416000000000101004b0000008d0000c13d000000040100008a00000000011000310000054f02000041000000200310008c000000000300001900000000030240190000054f01100197000000000401004b000000000200a0190000054f0110009c00000000010300190000000001026019000000000101004b0000008d0000c13d00000004010000390000000201100367000000000101043b152b10290000040f0000054c01000041000000400200043d0000054c0320009c000000000102401900000040011002100000152c0001042e0000000001000416000000000101004b0000008d0000c13d0000000001000031152b06260000040f152b08d50000040f0000054c01000041000000400200043d0000054c0320009c000000000102401900000040011002100000152c0001042e0000000001000416000000000101004b0000008d0000c13d0000000001000031152b051b0000040f0000058501100197000005860210009c00000000020000190000000102006039000005870110009c00000000010000190000000101006039000000000121019f000000010110018f000000800010043f00000588010000410000152c0001042e0000000001000416000000000101004b0000008d0000c13d000000040100008a00000000011000310000054f02000041000000000301004b000000000300001900000000030240190000054f01100197000000000401004b000000000200a0190000054f0110009c00000000010300190000000001026019000000000101004b0000008d0000c13d000000400100043d000005810200004100000000002104350000054c020000410000054c0310009c000000000102801900000040011002100000057f011001c70000152c0001042e00000000030100190000054c0100004100000000040004140000054c0540009c0000000001044019000000c0011002100000006002200210000000000112001900000589011000410000000002030019152b15260000040f0000000102200190000003270000613d000000000101043b000000000001042d00000000010000190000152d000104300007000000000002000400000001001d000000400400043d0000058a0140009c0000050f0000813d0000004001400039000000400010043f0000000f0100003900000000071404360000058b010000410000000000170435000000400600043d0000058c0160009c0000050f0000213d0000004001600039000000400010043f000000040100003900000000021604360000058d01000041000300000002001d000000000012043500000000050404330000058e0150009c0000050f0000213d000000000100041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000005150000c13d000500000004001d000000200130008c000700000006001d000600000005001d000003710000413d000100000003001d000200000007001d00000000000004350000054c0100004100000000020004140000054c0320009c0000000001024019000000c0011002100000058f011001c70000801002000039152b15260000040f00000001022001900000050d0000613d00000006050000290000001f025000390000000502200270000000200350008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000007060000290000000207000029000003710000813d000000000002041b0000000102200039000000000312004b0000036d0000413d0000001f0150008c0000039e0000a13d00000000000004350000054c0100004100000000020004140000054c0320009c0000000001024019000000c0011002100000058f011001c70000801002000039152b15260000040f00000001022001900000050d0000613d000000200200008a000000060800002900000000032801700000002002000039000000000101043b00000007060000290000000507000029000003900000613d0000002002000039000000000400001900000000057200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000003880000413d000000000383004b0000039b0000813d0000000303800210000000f80330018f000000010400008a000000000334022f000000000343013f00000000027200190000000002020433000000000232016f000000000021041b000000010180021000000001011001bf000003a90000013d000000000105004b0000000001000019000003a90000613d0000000301500210000000010200008a000000000112022f000000000121013f0000000002070433000000000112016f0000000102500210000000000121019f000000000010041b00000000050604330000058e0150009c0000050f0000213d0000000104000039000000000104041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000005150000c13d000000200130008c000600000004001d000500000005001d000003db0000413d000200000003001d00000000004004350000054c0100004100000000020004140000054c0320009c0000000001024019000000c0011002100000058f011001c70000801002000039152b15260000040f00000001022001900000050d0000613d00000005050000290000001f025000390000000502200270000000200350008c0000000002004019000000000301043b00000002010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000604000029000003db0000813d000000000002041b0000000102200039000000000312004b000003d70000413d000000200150008c000004080000413d00000000004004350000054c0100004100000000020004140000054c0320009c0000000001024019000000c0011002100000058f011001c70000801002000039152b15260000040f00000001022001900000050d0000613d000000200200008a000000050700002900000000032701700000002002000039000000000101043b0000000706000029000003f90000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000003f10000413d000000000373004b000004040000813d0000000303700210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b000000010170021000000001011001bf0000000604000029000004140000013d000000000105004b0000000001000019000004140000613d0000000301500210000000010200008a000000000112022f000000000121013f00000003020000290000000002020433000000000112016f0000000102500210000000000121019f000000000014041b0000001201000039000000800010043f000005900100004100000000001004390000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000591011001c70000800b02000039152b15260000040f00000001022001900000050d0000613d000000000101043b000000a00010043f000000000100041a000000010210019000000001031002700000007f0430018f000000000603001900000000060460190000001f0360008c00000000030000190000000103002039000000000331013f0000000103300190000005150000c13d000000400400043d0000000005640436000000000202004b000004540000613d000500000006001d000600000005001d000700000004001d00000000000004350000054c0100004100000000020004140000054c0320009c0000000001024019000000c0011002100000058f011001c70000801002000039152b15260000040f00000001022001900000050d0000613d0000000506000029000000000206004b00000000020000190000000605000029000004510000613d000000000101043b00000000020000190000000003520019000000000401041a000000000043043500000001011000390000002002200039000000000362004b0000044a0000413d00000000015200190000000704000029000004580000013d000001000200008a000000000121016f0000000000150435000000400140003900000000014100490000001f01100039000000200200008a000000000221016f0000000001420019000000000221004b000000000200001900000001020040390000058e0310009c0000050f0000213d00000001022001900000050f0000c13d000000400010043f0000054c010000410000054c0250009c00000000020100190000000002054019000000400220021000000000030404330000054c0430009c00000000030180190000006003300210000000000223019f00000000030004140000054c0430009c0000000001034019000000c001100210000000000121019f00000592011001c70000801002000039152b15260000040f00000001022001900000050d0000613d000000000101043b000600000001001d000000400100043d000700000001001d000005900100004100000000001004390000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000591011001c70000800b02000039152b15260000040f00000001022001900000050d0000613d00000007050000290000002002500039000000000101043b0000059303000041000000000032043500000000030004100000055003300197000000a004500039000000000034043500000080035000390000000000130435000000600150003900000594030000410000000000310435000000400150003900000006030000290000000000310435000000a0010000390000000000150435000005950150009c0000050f0000213d000000c001500039000000400010043f0000054c010000410000054c0320009c0000000002018019000000400220021000000000030504330000054c0430009c00000000030180190000006003300210000000000223019f00000000030004140000054c0430009c0000000001034019000000c001100210000000000121019f00000592011001c70000801002000039152b15260000040f00000001022001900000050d0000613d000000000101043b000000c00010043f00000000000004350000000601000039000600000001001d000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f00000001022001900000050d0000613d000000000101043b00000004020000290000055002200197000700000002001d0000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f00000001022001900000050d0000613d000000000101043b000000000101041a000000ff011001900000050c0000c13d00000000000004350000000601000029000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f00000001022001900000050d0000613d000000000101043b00000007020000290000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f00000001022001900000050d0000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b000000400100043d0000054c0200004100000000030004140000054c0430009c00000000030280190000054c0410009c00000000010280190000004001100210000000c002300210000000000112019f00000592011001c70000800d0200003900000004030000390000059704000041000000000700041100000000050000190000000706000029152b15210000040f00000001012001900000050d0000613d000000000001042d00000000010000190000152d00010430000005520100004100000000001004350000004101000039000000040010043f00000553010000410000152d00010430000005520100004100000000001004350000002201000039000000040010043f00000553010000410000152d00010430000000040110008a0000054f020000410000001f0310008c000000000300001900000000030220190000054f01100197000000000401004b00000000020080190000054f0110009c00000000010300190000000001026019000000000101004b0000052f0000613d00000004010000390000000201100367000000000101043b0000058502100197000000000221004b0000052f0000c13d000000000001042d00000000010000190000152d000104300000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b000000000200001900000001020040390000058e0310009c0000053e0000213d00000001022001900000053e0000c13d000000400010043f000000000001042d000005520100004100000000001004350000004101000039000000040010043f00000553010000410000152d00010430000000000400041a000000010540019000000001014002700000007f0210018f000000000201c0190000001f0120008c00000000010000190000000101002039000000010110018f000000000115004b000005740000c13d000000400100043d0000000003210436000000000505004b000005620000613d0000000000000435000000000402004b0000000004000019000005600000613d000005980500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000624004b000005590000413d0000000002430019000005660000013d000001000200008a000000000224016f0000000000230435000000400210003900000000021200490000001f02200039000000200300008a000000000332016f0000000002130019000000000332004b000000000300001900000001030040390000058e0420009c0000057a0000213d00000001033001900000057a0000c13d000000400020043f000000000001042d000005520100004100000000001004350000002201000039000000040010043f00000553010000410000152d00010430000005520100004100000000001004350000004101000039000000040010043f00000553010000410000152d000104300000000105000039000000000405041a000000010640019000000001014002700000007f0210018f000000000201c0190000001f0120008c00000000010000190000000101002039000000010110018f000000000116004b000005b10000c13d000000400100043d0000000003210436000000000606004b0000059f0000613d0000000000500435000000000402004b00000000040000190000059d0000613d000005990500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000624004b000005960000413d0000000002430019000005a30000013d000001000200008a000000000224016f0000000000230435000000400210003900000000021200490000001f02200039000000200300008a000000000332016f0000000002130019000000000332004b000000000300001900000001030040390000058e0420009c000005b70000213d0000000103300190000005b70000c13d000000400020043f000000000001042d000005520100004100000000001004350000002201000039000000040010043f00000553010000410000152d00010430000005520100004100000000001004350000004101000039000000040010043f00000553010000410000152d00010430000000000403004b000005cb0000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000534004b000005c00000413d000000000134004b000005cb0000a13d00000000012300190000000000010435000000000001042d00000020030000390000000004310436000000000302043300000000003404350000004001100039000000000403004b000005df0000613d000000000400001900000000051400190000002004400039000000000624001900000000060604330000000000650435000000000534004b000005d40000413d000000000234004b000005df0000a13d000000000213001900000000000204350000001f02300039000000200300008a000000000232016f0000000001120019000000000001042d000000040110008a0000054f020000410000003f0310008c000000000300001900000000030220190000054f01100197000000000401004b00000000020080190000054f0110009c00000000010300190000000001026019000000000101004b000005f90000613d00000002020003670000000401200370000000000101043b000005500310009c000005f90000213d0000002402200370000000000202043b000000000001042d00000000010000190000152d0001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000403004b0000060a0000613d000000000400001900000020022000390000000005020433000005500550019700000000015104360000000104400039000000000534004b000006030000413d000000000001042d000000040110008a0000054f020000410000005f0310008c000000000300001900000000030220190000054f01100197000000000401004b00000000020080190000054f0110009c00000000010300190000000001026019000000000101004b000006240000613d00000002030003670000000401300370000000000101043b000005500210009c000006240000213d0000002402300370000000000202043b000005500420009c000006240000213d0000004403300370000000000303043b000000000001042d00000000010000190000152d00010430000000040110008a0000054f020000410000003f0310008c000000000300001900000000030220190000054f01100197000000000401004b00000000020080190000054f0110009c00000000010300190000000001026019000000000101004b0000063b0000613d00000002010003670000002402100370000000000202043b000005500320009c0000063b0000213d0000000401100370000000000101043b000000000001042d00000000010000190000152d00010430000000040110008a0000054f020000410000001f0310008c000000000300001900000000030220190000054f01100197000000000401004b00000000020080190000054f0110009c00000000010300190000000001026019000000000101004b000006500000613d00000004010000390000000201100367000000000101043b000005500210009c000006500000213d000000000001042d00000000010000190000152d00010430000005500110019700000000001004350000000401000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000006620000613d000000000101043b000000000001042d00000000010000190000152d0001043000000550022001970000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000006730000613d000000000101043b000000000001042d00000000010000190000152d00010430000005500110019700000000001004350000000301000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000006860000613d000000000101043b000000000101041a000000000001042d00000000010000190000152d00010430000005500110019700000000001004350000000501000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000006990000613d000000000101043b000000000101041a000000000001042d00000000010000190000152d00010430000000040210008a0000054f030000410000005f0420008c000000000400001900000000040320190000054f02200197000000000502004b00000000030080190000054f0220009c00000000020400190000000002036019000000000202004b000006cf0000613d00000002040003670000000402400370000000000502043b000005500250009c000006cf0000213d0000002402400370000000000202043b0000058e0320009c000006cf0000213d00000023032000390000054f06000041000000000713004b000000000700001900000000070680190000054f081001970000054f03300197000000000983004b0000000006008019000000000383013f0000054f0330009c00000000030700190000000003066019000000000303004b000006cf0000c13d0000000403200039000000000334034f000000000303043b0000058e0630009c000006cf0000213d00000024022000390000000006320019000000000116004b000006cf0000213d0000004401400370000000000401043b0000059a0140009c000006cf0000213d0000000001050019000000000001042d00000000010000190000152d00010430000000040110008a0000054f020000410000003f0310008c000000000300001900000000030220190000054f01100197000000000401004b00000000020080190000054f0110009c00000000010300190000000001026019000000000101004b000006e80000613d00000002020003670000000401200370000000000101043b000005500310009c000006e80000213d0000002402200370000000000202043b0000059a0320009c000006e80000213d000000000001042d00000000010000190000152d000104300000002003000039000000000331043600000000540204340000059a04400197000000000043043500000000030504330000059a033001970000004004100039000000000034043500000040022000390000000003020433000000600210003900000060040000390000000000420435000000800410003900000000020304330000000000240435000000a001100039000000000402004b0000070a0000613d000000000400001900000000051400190000002004400039000000000634001900000000060604330000000000650435000000000524004b000006ff0000413d000000000324004b0000070a0000a13d000000000312001900000000000304350000001f02200039000000200300008a000000000232016f0000000001120019000000000001042d000000040110008a0000054f02000041000000df0310008c000000000300001900000000030220190000054f01100197000000000401004b00000000020080190000054f0110009c00000000010300190000000001026019000000000101004b000007320000613d00000002070003670000000401700370000000000101043b000005500210009c000007320000213d0000002402700370000000000202043b000005500320009c000007320000213d0000008403700370000000000503043b000000ff0350008c000007320000213d0000004403700370000000000303043b0000006404700370000000000404043b000000a406700370000000000606043b000000c407700370000000000707043b000000000001042d00000000010000190000152d00010430000000040110008a0000054f020000410000003f0310008c000000000300001900000000030220190000054f01100197000000000401004b00000000020080190000054f0110009c00000000010300190000000001026019000000000101004b0000074b0000613d00000002020003670000000401200370000000000101043b000005500310009c0000074b0000213d0000002402200370000000000202043b000005500320009c0000074b0000213d000000000001042d00000000010000190000152d0001043000000000001004350000000601000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f00000001022001900000075c0000613d000000000101043b000000000001042d00000000010000190000152d0001043000000000001004350000000601000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f00000001022001900000076f0000613d000000000101043b0000000101100039000000000101041a000000000001042d00000000010000190000152d000104300005000000000002000300000002001d000400000001001d00000000001004350000000601000039000500000001001d000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000008000000613d000000000101043b0000000101100039000000000101041a000100000001001d00000000001004350000000501000029000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000008000000613d0000000002000411000000000101043b000200000002001d00000550022001970000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000008000000613d000000000101043b000000000101041a000000ff01100190000008020000613d000000040100002900000000001004350000000501000029000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000008000000613d000000000101043b00000003020000290000055002200197000300000002001d0000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000008000000613d000000000101043b000000000101041a000000ff01100190000007ff0000c13d000000040100002900000000001004350000000501000029000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000008000000613d000000000101043b00000003020000290000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000008000000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b000000400100043d0000054c0200004100000000030004140000054c0430009c00000000030280190000054c0410009c00000000010280190000004001100210000000c002300210000000000112019f00000592011001c70000800d0200003900000004030000390000059704000041000000040500002900000003060000290000000207000029152b15210000040f0000000101200190000008000000613d000000000001042d00000000010000190000152d00010430000000400100043d00000000060100190000059b0110009c0000080c0000413d000005520100004100000000001004350000004101000039000000040010043f00000553010000410000152d0001043000000000020600190000006001200039000000400010043f0000002a01000039000000000812043600000000010000310000000201100367000000000200001900000005032002100000000004380019000000000331034f000000000303043b00000000003404350000000102200039000000020320008c000008140000413d00000000070600190000000001070433000000000101004b000008270000613d00000000010804330000059c011001970000059d011001c700000000001804350000000001070433000000020110008c0000082d0000813d000005520100004100000000001004350000003201000039000000040010043f00000553010000410000152d00010430000000210170003900000000020104330000059c022001970000059e022001c700000000002104350000002901000039000000020400002900000000020400190000000003070433000000000313004b000008270000a13d0000000f0320018f0000000303300210000000f80330015f0000059f04000041000000000334022f000000000481001900000000050404330000059c05500197000000f803300210000000000335019f00000000003404350000000404200270000000010110008a000000010310008c000008340000213d000000400900043d000000100120008c000008b40000813d000005a30190009c000008060000213d00000000020900190000008001200039000000400010043f0000004201000039000000000112043600000000020000310000000202200367000000000300001900000005043002100000000005410019000000000442034f000000000404043b00000000004504350000000103300039000000030430008c000008540000413d0000000002090433000000000202004b0000000007060019000008270000613d00000000020104330000059c022001970000059d022001c700000000002104350000000002090433000000020220008c000008270000413d000000210290003900000000030204330000059c033001970000059e033001c700000000003204350000004102000039000000010500002900000000030500190000000004090433000000000424004b000008270000a13d0000000f0430018f0000000304400210000000f80440015f0000059f05000041000000000445022f000000000512001900000000060504330000059c06600197000000f804400210000000000446019f00000000004504350000000405300270000000010220008a000000010420008c0000086e0000213d000000100130008c00000000010000190000000101004039000200000007001d000300000008001d000400000009001d152b0a9b0000040f000000400400043d000500000004001d0000002001400039000005a402000041000000000021043500000002010000290000000003010433000200000003001d00000037024000390000000301000029152b05bd0000040f000000050100002900000002020000290000000001120019000005a5020000410000003703100039000000000023043500000048021000390000000401000029152b08c40000040f00000005030000290000000002310049000000200120008a00000000001304350000000001030019152b05310000040f000005a101000041000000400200043d000400000002001d000000000012043500000004012000390000000502000029152b05cc0000040f000000040400002900000000014100490000054c020000410000054c0310009c00000000010280190000054c0340009c000000000204401900000040022002100000006001100210000000000121019f0000152d000104300000004401900039000005a0020000410000000000210435000005a1010000410000000000190435000000240190003900000020020000390000000000210435000000040190003900000000002104350000054c010000410000054c0290009c00000000010940190000004001100210000005a2011001c70000152d0001043000000000030100190000000004030433000000000104004b0000000001240019000008d40000613d000000000500001900000000062500190000002005500039000000000735001900000000070704330000000000760435000000000645004b000008ca0000413d000000000245004b000008d40000a13d0000000000010435000000000001042d0005000000000002000300000002001d000400000001001d00000000001004350000000601000039000500000001001d000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000009630000613d000000000101043b0000000101100039000000000101041a000100000001001d00000000001004350000000501000029000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000009630000613d0000000002000411000000000101043b000200000002001d00000550022001970000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000009630000613d000000000101043b000000000101041a000000ff01100190000009650000613d000000040100002900000000001004350000000501000029000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000009630000613d000000000101043b00000003020000290000055002200197000300000002001d0000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000009630000613d000000000101043b000000000101041a000000ff01100190000009620000613d000000040100002900000000001004350000000501000029000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000009630000613d000000000101043b00000003020000290000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000009630000613d000000000101043b000000000201041a000001000300008a000000000232016f000000000021041b000000400100043d0000054c0200004100000000030004140000054c0430009c00000000030280190000054c0410009c00000000010280190000004001100210000000c002300210000000000112019f00000592011001c70000800d020000390000000403000039000005a604000041000000040500002900000003060000290000000207000029152b15210000040f0000000101200190000009630000613d000000000001042d00000000010000190000152d00010430000000400100043d00000000060100190000059b0110009c0000096f0000413d000005520100004100000000001004350000004101000039000000040010043f00000553010000410000152d0001043000000000020600190000006001200039000000400010043f0000002a01000039000000000812043600000000010000310000000201100367000000000200001900000005032002100000000004380019000000000331034f000000000303043b00000000003404350000000102200039000000020320008c000009770000413d00000000070600190000000001070433000000000101004b0000098a0000613d00000000010804330000059c011001970000059d011001c700000000001804350000000001070433000000020110008c000009900000813d000005520100004100000000001004350000003201000039000000040010043f00000553010000410000152d00010430000000210170003900000000020104330000059c022001970000059e022001c700000000002104350000002901000039000000020400002900000000020400190000000003070433000000000313004b0000098a0000a13d0000000f0320018f0000000303300210000000f80330015f0000059f04000041000000000334022f000000000481001900000000050404330000059c05500197000000f803300210000000000335019f00000000003404350000000404200270000000010110008a000000010310008c000009970000213d000000400900043d000000100120008c00000a170000813d000005a30190009c000009690000213d00000000020900190000008001200039000000400010043f0000004201000039000000000112043600000000020000310000000202200367000000000300001900000005043002100000000005410019000000000442034f000000000404043b00000000004504350000000103300039000000030430008c000009b70000413d0000000002090433000000000202004b00000000070600190000098a0000613d00000000020104330000059c022001970000059d022001c700000000002104350000000002090433000000020220008c0000098a0000413d000000210290003900000000030204330000059c033001970000059e033001c700000000003204350000004102000039000000010500002900000000030500190000000004090433000000000424004b0000098a0000a13d0000000f0430018f0000000304400210000000f80440015f0000059f05000041000000000445022f000000000512001900000000060504330000059c06600197000000f804400210000000000446019f00000000004504350000000405300270000000010220008a000000010420008c000009d10000213d000000100130008c00000000010000190000000101004039000200000007001d000300000008001d000400000009001d152b0a9b0000040f000000400400043d000500000004001d0000002001400039000005a402000041000000000021043500000002010000290000000003010433000200000003001d00000037024000390000000301000029152b05bd0000040f000000050100002900000002020000290000000001120019000005a5020000410000003703100039000000000023043500000048021000390000000401000029152b08c40000040f00000005030000290000000002310049000000200120008a00000000001304350000000001030019152b05310000040f000005a101000041000000400200043d000400000002001d000000000012043500000004012000390000000502000029152b05cc0000040f000000040400002900000000014100490000054c020000410000054c0310009c00000000010280190000054c0340009c000000000204401900000040022002100000006001100210000000000121019f0000152d000104300000004401900039000005a0020000410000000000210435000005a1010000410000000000190435000000240190003900000020020000390000000000210435000000040190003900000000002104350000054c010000410000054c0290009c00000000010940190000004001100210000005a2011001c70000152d00010430000300000000000200000550032001970000000002000411000300000002001d000000000223004b00000a860000c13d000200000001001d00000000001004350000000601000039000100000001001d000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000a840000613d000000000101043b00000003020000290000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000a840000613d000000000101043b000000000101041a000000ff0110019000000a830000613d000000020100002900000000001004350000000101000029000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000a840000613d000000000101043b00000003020000290000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000a840000613d000000000101043b000000000201041a000001000300008a000000000232016f000000000021041b000000400100043d0000054c0200004100000000030004140000054c0430009c00000000030280190000054c0410009c00000000010280190000004001100210000000c002300210000000000112019f00000592011001c70000800d020000390000000403000039000005a604000041000000020500002900000003060000290000000007060019152b15210000040f000000010120019000000a840000613d000000000001042d00000000010000190000152d00010430000000400100043d0000006402100039000005a70300004100000000003204350000004402100039000005a803000041000000000032043500000024021000390000002f030000390000000000320435000005a10200004100000000002104350000000402100039000000200300003900000000003204350000054c020000410000054c0310009c00000000010280190000004001100210000005a9011001c70000152d00010430000000000101004b00000a9e0000613d000000000001042d000000400100043d0000004402100039000005a0030000410000000000320435000005a1020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000054c020000410000054c0310009c00000000010280190000004001100210000005a2011001c70000152d000104300000000002010019000000400100043d0000059b0310009c00000aee0000813d0000006003100039000000400030043f0000002a03000039000000000331043600000000040000310000000204400367000000000500001900000005065002100000000007630019000000000664034f000000000606043b00000000006704350000000105500039000000020650008c00000aba0000413d0000000004010433000000000404004b00000ae80000613d00000000040304330000059c044001970000059d044001c700000000004304350000000004010433000000020440008c00000ae80000413d000000210410003900000000050404330000059c055001970000059e055001c70000000000540435000000290400003900000000050200190000000002010433000000000242004b00000ae80000a13d0000000f0250018f0000000302200210000000f80220015f0000059f06000041000000000226022f000000000634001900000000070604330000059c07700197000000f802200210000000000227019f00000000002604350000000402500270000000010440008a000000010640008c00000ad20000213d000000100250008c00000af40000813d000000000001042d000005520100004100000000001004350000003201000039000000040010043f00000553010000410000152d00010430000005520100004100000000001004350000004101000039000000040010043f00000553010000410000152d00010430000000400100043d0000004402100039000005a0030000410000000000320435000005a1020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000054c020000410000054c0310009c00000000010280190000004001100210000005a2011001c70000152d00010430000000400100043d000005aa0210009c00000b440000813d0000008002100039000000400020043f0000004202000039000000000221043600000000030000310000000203300367000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000030540008c00000b0f0000413d0000000003010433000000000303004b00000b3e0000613d00000000030204330000059c033001970000059d033001c700000000003204350000000003010433000000020330008c00000b3e0000413d000000210310003900000000040304330000059c044001970000059e044001c700000000004304350000058205000041000000410300003900000000040500190000000005010433000000000535004b00000b3e0000a13d0000000f0540018f0000000305500210000000f80550015f0000059f06000041000000000556022f000000000623001900000000070604330000059c07700197000000f805500210000000000557019f00000000005604350000000405400270000000010330008a000000010630008c00000b280000213d000000100240008c00000b4a0000813d000000000001042d000005520100004100000000001004350000003201000039000000040010043f00000553010000410000152d00010430000005520100004100000000001004350000004101000039000000040010043f00000553010000410000152d00010430000000400100043d0000004402100039000005a0030000410000000000320435000005a1020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000054c020000410000054c0310009c00000000010280190000004001100210000005a2011001c70000152d00010430000000400100043d000005aa0210009c00000b9a0000813d0000008002100039000000400020043f0000004202000039000000000221043600000000030000310000000203300367000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000030540008c00000b650000413d0000000003010433000000000303004b00000b940000613d00000000030204330000059c033001970000059d033001c700000000003204350000000003010433000000020330008c00000b940000413d000000210310003900000000040304330000059c044001970000059e044001c700000000004304350000058105000041000000410300003900000000040500190000000005010433000000000535004b00000b940000a13d0000000f0540018f0000000305500210000000f80550015f0000059f06000041000000000556022f000000000623001900000000070604330000059c07700197000000f805500210000000000557019f00000000005604350000000405400270000000010330008a000000010630008c00000b7e0000213d000000100240008c00000ba00000813d000000000001042d000005520100004100000000001004350000003201000039000000040010043f00000553010000410000152d00010430000005520100004100000000001004350000004101000039000000040010043f00000553010000410000152d00010430000000400100043d0000004402100039000005a0030000410000000000320435000005a1020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000054c020000410000054c0310009c00000000010280190000004001100210000005a2011001c70000152d000104300003000000000002000100000002001d000300000001001d0000000001000411000200000001001d00000000001004350000000401000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000beb0000613d000000000101043b00000003020000290000055002200197000300000002001d0000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000beb0000613d000000000101043b0000000102000029000000000021041b000000400100043d00000000002104350000054c0200004100000000030004140000054c0430009c00000000030280190000054c0410009c00000000010280190000004001100210000000c002300210000000000112019f0000058f011001c70000800d020000390000000303000039000005ab0400004100000002050000290000000306000029152b15210000040f000000010120019000000beb0000613d000000000001042d00000000010000190000152d000104300004000000000002000400000002001d000300000001001d0000000001000411000100000001001d00000000001004350000000301000039000200000001001d000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000c320000613d000000000101043b000000000201041a0000000403000029000000000332004b00000c340000413d00000004030000290000000002320049000000000021041b00000003010000290000055001100197000300000001001d00000000001004350000000201000029000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000c320000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d00000000003104350000054c0200004100000000030004140000054c0430009c00000000030280190000054c0410009c00000000010280190000004001100210000000c002300210000000000112019f0000058f011001c70000800d020000390000000303000039000005ac0400004100000001050000290000000306000029152b15210000040f000000010120019000000c320000613d000000000001042d00000000010000190000152d00010430000005520100004100000000001004350000001101000039000000040010043f00000553010000410000152d000104300006000000000002000600000003001d000400000002001d0000055001100197000500000001001d00000000001004350000000401000039000300000001001d000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000cc70000613d000000000101043b00000000020004110000055002200197000200000002001d0000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000cc70000613d000000000101043b000000000201041a000000010100008a000000000112004b00000c870000613d0000000601000029000100000002001d000000000112004b00000cc90000413d000000050100002900000000001004350000000301000029000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000cc70000613d000000000101043b00000002020000290000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000cc70000613d000000060200002900000001030000290000000002230049000000000101043b000000000021041b000000050100002900000000001004350000000301000039000300000001001d000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000cc70000613d000000000101043b000000000201041a0000000604000029000000000342004b00000cc90000413d0000000002420049000000000021041b00000004010000290000055001100197000400000001001d00000000001004350000000301000029000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000cc70000613d000000000101043b000000000201041a00000006030000290000000002320019000000000021041b000000400100043d00000000003104350000054c0200004100000000030004140000054c0430009c00000000030280190000054c0410009c00000000010280190000004001100210000000c002300210000000000112019f0000058f011001c70000800d020000390000000303000039000005ac0400004100000005050000290000000406000029152b15210000040f000000010120019000000cc70000613d000000000001042d00000000010000190000152d00010430000005520100004100000000001004350000001101000039000000040010043f00000553010000410000152d00010430000a000000000002000300000007001d000400000006001d000500000005001d000900000004001d000800000003001d000600000002001d000700000001001d000005ad0100004100000000001004390000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000591011001c70000800b02000039152b15260000040f000000010220019000000e730000613d000000000101043b0000000902000029000000000121004b00000e7b0000213d000005830100004100000000001004390000000001000412000200000001001d00000004001004430000002001000039000100000001001d00000024001004430000054c0100004100000000020004140000054c0320009c0000000001024019000000c001100210000005ae011001c70000800502000039152b15260000040f000000010220019000000e730000613d000000000101043b000a00000001001d000005900100004100000000001004390000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000591011001c70000800b02000039152b15260000040f000000010220019000000e730000613d000000000101043b0000000a02000029000000000121004b00000d1c0000c13d0000058301000041000000000010043900000002010000290000000400100443000000400100003900000024001004430000054c0100004100000000020004140000054c0320009c0000000001024019000000c001100210000005ae011001c70000800502000039152b15260000040f000000010220019000000d990000c13d00000e730000013d000000000400041a000000010540019000000001014002700000007f0210018f000000000301001900000000030260190000001f0130008c00000000010000190000000101002039000000010110018f000000000115004b00000ec50000c13d000000400100043d0000000002310436000000000505004b00000d3b0000613d0000000000000435000000000403004b000000000400001900000d390000613d000005980500004100000000040000190000000006240019000000000705041a000000000076043500000001055000390000002004400039000000000634004b00000d320000413d000000000324001900000d3f0000013d000001000300008a000000000334016f0000000000320435000000400310003900000000031300490000001f03300039000000200400008a000000000443016f0000000003140019000000000443004b000000000400001900000001040040390000058e0530009c00000e750000213d000000010440019000000e750000c13d000000400030043f0000054c030000410000054c0420009c0000000002038019000000400220021000000000010104330000054c0410009c00000000010380190000006001100210000000000121019f00000000020004140000054c0420009c0000000002038019000000c002200210000000000112019f00000592011001c70000801002000039152b15260000040f000000010220019000000e730000613d000000000101043b000200000001001d000000400100043d000a00000001001d000005900100004100000000001004390000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000591011001c70000800b02000039152b15260000040f000000010220019000000e730000613d0000000a050000290000002002500039000000000101043b0000059303000041000000000032043500000000030004100000055003300197000000a004500039000000000034043500000080035000390000000000130435000000600150003900000594030000410000000000310435000000400150003900000002030000290000000000310435000000a0010000390000000000150435000005950150009c00000e750000213d000000c001500039000000400010043f0000054c010000410000054c0320009c0000000002018019000000400220021000000000030504330000054c0430009c00000000030180190000006003300210000000000223019f00000000030004140000054c0430009c0000000001034019000000c001100210000000000121019f00000592011001c70000801002000039152b15260000040f000000010220019000000e730000613d000000000101043b000200000001001d00000007010000290000055001100197000a00000001001d00000000001004350000000501000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000e730000613d000000000101043b000000000201041a0000000103200039000000000031041b000000400100043d000000c00310003900000009040000290000000000430435000000a003100039000000000023043500000080021000390000000803000029000000000032043500000040021000390000000a030000290000000000320435000000c0020000390000000002210436000000060300002900000550043001970000006003100039000900000004001d000000000043043500000584030000410000000000320435000005af0310009c00000e750000213d000000e003100039000000400030043f0000054c030000410000054c0420009c0000000002038019000000400220021000000000010104330000054c0410009c00000000010380190000006001100210000000000121019f00000000020004140000054c0420009c0000000002038019000000c002200210000000000112019f00000592011001c70000801002000039152b15260000040f000000010220019000000e730000613d000000000201043b000000400100043d000000420310003900000000002304350000002002100039000005b003000041000000000032043500000022031000390000000204000029000000000043043500000042030000390000000000310435000005a30310009c00000e750000213d0000008003100039000000400030043f0000054c030000410000054c0420009c0000000002038019000000400220021000000000010104330000054c0410009c00000000010380190000006001100210000000000121019f00000000020004140000054c0420009c0000000002038019000000c002200210000000000112019f00000592011001c70000801002000039152b15260000040f000000010220019000000e730000613d000000000101043b000000400200043d0000006003200039000000030400002900000000004304350000004003200039000000040400002900000000004304350000000503000029000000ff0330018f00000020042000390000000000340435000000000012043500000000000004350000054c0100004100000000030004140000054c0430009c00000000030180190000054c0420009c00000000010240190000004001100210000000c002300210000000000112019f000005b1011001c70000000102000039152b15260000040f000000000301001900000060033002700000054c03300197000000200430008c000000200400003900000000040340190000001f0540018f000000050440027200000e290000613d00000000060000190000000507600210000000000871034f000000000808043b00000000008704350000000106600039000000000746004b00000e220000413d000000000605004b00000e370000613d00000003055002100000000504400210000000000604043300000000065601cf000000000656022f000000000741034f000000000707043b0000010005500089000000000757022f00000000055701cf000000000565019f0000000000540435000100000003001f000000010220019000000e8d0000613d000000000100043300000550011001980000000a0200002900000eb30000613d000000000121004b00000eb30000c13d00000000002004350000000401000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000e730000613d000000000101043b00000009020000290000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000e730000613d000000000101043b0000000802000029000000000021041b000000400100043d00000000002104350000054c0200004100000000030004140000054c0430009c00000000030280190000054c0410009c00000000010280190000004001100210000000c002300210000000000112019f0000058f011001c70000800d020000390000000303000039000005ab040000410000000a050000290000000906000029152b15210000040f000000010120019000000e730000613d000000000001042d00000000010000190000152d00010430000005520100004100000000001004350000004101000039000000040010043f00000553010000410000152d00010430000000400100043d0000004402100039000005b3030000410000000000320435000000240210003900000017030000390000000000320435000005a10200004100000000002104350000000402100039000000200300003900000000003204350000054c020000410000054c0310009c00000000010280190000004001100210000005a2011001c70000152d00010430000000400200043d0000001f0430018f000000050330027200000e9a0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b00000e920000413d000000000504004b00000ea90000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000054c0100004100000001030000310000054c0430009c00000000030180190000054c0420009c000000000102401900000040011002100000006002300210000000000112019f0000152d00010430000000400100043d0000004402100039000005b203000041000000000032043500000024021000390000000e030000390000000000320435000005a10200004100000000002104350000000402100039000000010300002900000000003204350000054c020000410000054c0310009c00000000010280190000004001100210000005a2011001c70000152d00010430000005520100004100000000001004350000002201000039000000040010043f00000553010000410000152d000104300002000000000002000005830100004100000000001004390000000001000412000100000001001d0000000400100443000000200100003900000024001004430000054c0100004100000000020004140000054c0320009c0000000001024019000000c001100210000005ae011001c70000800502000039152b15260000040f000000010220019000000f7f0000613d000000000101043b000200000001001d000005900100004100000000001004390000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000591011001c70000800b02000039152b15260000040f000000010220019000000f7f0000613d000000000101043b0000000202000029000000000121004b00000f000000c13d0000058301000041000000000010043900000001010000290000000400100443000000400100003900000024001004430000054c0100004100000000020004140000054c0320009c0000000001024019000000c001100210000005ae011001c70000800502000039152b15260000040f000000010220019000000f7d0000c13d00000f7f0000013d000000000400041a000000010540019000000001014002700000007f0210018f000000000301001900000000030260190000001f0130008c00000000010000190000000101002039000000010110018f000000000115004b00000f870000c13d000000400100043d0000000002310436000000000505004b00000f1f0000613d0000000000000435000000000403004b000000000400001900000f1d0000613d000005980500004100000000040000190000000006420019000000000705041a000000000076043500000001055000390000002004400039000000000634004b00000f160000413d000000000342001900000f230000013d000001000300008a000000000334016f0000000000320435000000400310003900000000031300490000001f03300039000000200400008a000000000443016f0000000003140019000000000443004b000000000400001900000001040040390000058e0530009c00000f810000213d000000010440019000000f810000c13d000000400030043f0000054c030000410000054c0420009c0000000002038019000000400220021000000000010104330000054c0410009c00000000010380190000006001100210000000000121019f00000000020004140000054c0420009c0000000002038019000000c002200210000000000112019f00000592011001c70000801002000039152b15260000040f000000010220019000000f7f0000613d000000000101043b000100000001001d000000400100043d000200000001001d000005900100004100000000001004390000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000591011001c70000800b02000039152b15260000040f000000010220019000000f7f0000613d00000002050000290000002002500039000000000101043b0000059303000041000000000032043500000000030004100000055003300197000000a004500039000000000034043500000080035000390000000000130435000000600150003900000594030000410000000000310435000000400150003900000001030000290000000000310435000000a0010000390000000000150435000005950150009c00000f810000213d000000c001500039000000400010043f0000054c010000410000054c0320009c0000000002018019000000400220021000000000030504330000054c0430009c00000000030180190000006003300210000000000223019f00000000030004140000054c0430009c0000000001034019000000c001100210000000000121019f00000592011001c70000801002000039152b15260000040f000000010220019000000f7f0000613d000000000101043b000000000001042d00000000010000190000152d00010430000005520100004100000000001004350000004101000039000000040010043f00000553010000410000152d00010430000005520100004100000000001004350000002201000039000000040010043f00000553010000410000152d000104300005000000000002000400000001001d000500000002001d000000000102004b000010020000613d0000000001000411000300000001001d000005500110019700000000001004350000000701000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000000050500002900000ffa0000613d000000010200008a000000000225013f000000000101043b000000000301041a0000008006300270000000000426004b00000ffc0000213d00000000075600190000059a03300197000000000473004b000010140000413d000200000007001d0000008004700210000000000334019f000000000031041b0000000201000039000000000301041a000000000223004b00000ffc0000213d000100000006001d0000000002530019000000000021041b00000004010000290000055001100197000400000001001d00000000001004350000000301000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f000000010220019000000ffa0000613d000000000101043b000000000201041a00000005030000290000000002320019000000000021041b000000400100043d00000000003104350000054c0200004100000000030004140000054c0430009c00000000030280190000054c0410009c00000000010280190000004001100210000000c002300210000000000112019f0000058f011001c70000800d020000390000000303000039000005ac0400004100000000050000190000000406000029152b15210000040f000000010120019000000ffa0000613d000000400100043d000000200210003900000002030000290000000000320435000000010200002900000000002104350000054c0200004100000000030004140000054c0430009c00000000030280190000054c0410009c00000000010280190000004001100210000000c002300210000000000112019f00000596011001c70000800d020000390000000203000039000005b4040000410000000305000029152b15210000040f000000010120019000000ffa0000613d000000000001042d00000000010000190000152d00010430000005520100004100000000001004350000001101000039000000040010043f00000553010000410000152d00010430000000400100043d0000004402100039000005b7030000410000000000320435000000240210003900000013030000390000000000320435000005a10200004100000000002104350000000402100039000000200300003900000000003204350000054c020000410000054c0310009c00000000010280190000004001100210000005a2011001c70000152d00010430000000400100043d0000006402100039000005b50300004100000000003204350000004402100039000005b6030000410000000000320435000000240210003900000024030000390000000000320435000005a10200004100000000002104350000000402100039000000200300003900000000003204350000054c020000410000054c0310009c00000000010280190000004001100210000005a9011001c70000152d000104300004000000000002000300000001001d000000000101004b000010990000613d0000000001000411000400000001001d000005500110019700000000001004350000000701000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f00000001022001900000000304000029000010910000613d000000000101043b000000000201041a0000008003200270000200000003001d000000000343004b000010930000413d000000020300002900000000034300490000059a02200197000100000003001d0000008003300210000000000223019f000000000021041b000000040100002900000000001004350000000301000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000010910000613d000000000101043b000000000201041a0000000304000029000000000342004b0000000003040019000010930000413d0000000002320049000000000021041b0000000201000039000000000201041a0000000002320049000000000021041b000000400100043d00000000003104350000054c0200004100000000030004140000054c0430009c00000000030280190000054c0410009c00000000010280190000004001100210000000c002300210000000000112019f0000058f011001c70000800d020000390000000303000039000005ac0400004100000004050000290000000006000019152b15210000040f0000000101200190000010910000613d000000400100043d000000200210003900000001030000290000000000320435000000020200002900000000002104350000054c0200004100000000030004140000054c0430009c00000000030280190000054c0410009c00000000010280190000004001100210000000c002300210000000000112019f00000596011001c70000800d020000390000000203000039000005b4040000410000000405000029152b15210000040f0000000101200190000010910000613d000000000001042d00000000010000190000152d00010430000005520100004100000000001004350000001101000039000000040010043f00000553010000410000152d00010430000000400100043d0000004402100039000005b8030000410000000000320435000000240210003900000013030000390000000000320435000005a10200004100000000002104350000000402100039000000200300003900000000003204350000054c020000410000054c0310009c00000000010280190000004001100210000005a2011001c70000152d000104300006000000000002000300000004001d000600000003001d000500000002001d000400000001001d000005820100004100000000001004350000000601000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000011c10000613d0000000002000411000000000101043b000200000002001d00000550022001970000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000011c10000613d000000000101043b000000000101041a000000ff01100190000011c90000613d00000004010000290000055001100197000400000001001d00000000001004350000000701000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000011c10000613d000000000501043b0000000106500039000000000106041a000000010210019000000001011002700000007f0310018f00000000010360190000001f0310008c00000000030000190000000103002039000000010330018f000000000232004b000011f90000c13d000000000101004b00000006030000290000000504000029000011ff0000c13d000000000103004b000012110000613d000005ba0130009c000011c30000813d000000200130008c000011270000413d000200000005001d000100000006001d00000000006004350000054c0100004100000000020004140000054c0320009c0000000001024019000000c0011002100000058f011001c70000801002000039152b15260000040f0000000102200190000011c10000613d000000200200008a00000006050000290000000003250170000000000101043b00000000020000190000000506000029000011160000613d000000000200001900000000046200190000000204400367000000000404043b000000000041041b00000001011000390000002002200039000000000432004b0000110e0000413d000000000353004b000011220000813d0000000303500210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000202200367000000000202043b000000000232016f000000000021041b000000010150021000000001011001bf00000002050000290000000106000029000011300000013d0000000301300210000000010200008a000000000112022f000000000121013f0000000202400367000000000202043b000000000112016f0000000102300210000000000121019f000000000016041b00000003010000290000059a02100197000000000105041a000005bb01100197000300000002001d000000000121019f000000000015041b000000040100002900000000001004350000000901000039000200000001001d000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000011c10000613d000000000101043b000000000101041a000000000101004b000011670000c13d0000000801000039000000000201041a0000058e0320009c000011c30000213d0000000103200039000000000031041b0000000000100435000005bc022000410000000403000029000000000032041b000000000101041a000100000001001d00000000003004350000000201000029000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000011c10000613d000000000101043b0000000102000029000000000021041b00000006090000290000001f0390018f00000005010000290000000204100367000000400100043d00000020021000390000000505900272000011780000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000011700000413d000000000603004b000011870000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000392001900000000000304350000000003130049000000200430008a00000000004104350000001f03300039000000200400008a000000000443016f0000000003140019000000000443004b000000000400001900000001040040390000058e0530009c000011c30000213d0000000104400190000011c30000c13d000000400030043f0000054c030000410000054c0420009c0000000002038019000000400220021000000000010104330000054c0410009c00000000010380190000006001100210000000000121019f00000000020004140000054c0420009c0000000002038019000000c002200210000000000112019f00000592011001c70000801002000039152b15260000040f0000000102200190000011c10000613d000000000601043b000000400100043d000000030200002900000000002104350000054c0200004100000000030004140000054c0430009c00000000030280190000054c0410009c00000000010280190000004001100210000000c002300210000000000112019f0000058f011001c70000800d020000390000000303000039000005bd040000410000000405000029152b15210000040f0000000101200190000011c10000613d000000000001042d00000000010000190000152d00010430000005520100004100000000001004350000004101000039000000040010043f00000553010000410000152d000104300000000201000029152b0aaf0000040f000400000001001d152b0b050000040f000000400400043d000600000004001d0000002002400039000005a4030000410000000000320435000500000001001d00000004010000290000000013010434000400000003001d0000003702400039152b05bd0000040f000000060100002900000004020000290000000001120019000005a5020000410000003703100039000000000023043500000048021000390000000501000029152b08c40000040f00000006030000290000000002310049000000200120008a00000000001304350000000001030019152b05310000040f000005a101000041000000400200043d000500000002001d000000000012043500000004012000390000000602000029152b05cc0000040f000000050400002900000000014100490000054c020000410000054c0310009c00000000010280190000054c0340009c000000000204401900000040022002100000006001100210000000000121019f0000152d00010430000005520100004100000000001004350000002201000039000000040010043f00000553010000410000152d00010430000000400100043d0000004402100039000005b903000041000000000032043500000024021000390000001a030000390000000000320435000005a10200004100000000002104350000000402100039000000200300003900000000003204350000054c020000410000054c0310009c00000000010280190000004001100210000005a2011001c70000152d00010430000000400100043d0000004402100039000005be03000041000000000032043500000024021000390000000d030000390000000000320435000005a10200004100000000002104350000000402100039000000200300003900000000003204350000054c020000410000054c0310009c00000000010280190000004001100210000005a2011001c70000152d000104300004000000000002000400000001001d000005820100004100000000001004350000000601000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000013210000613d0000000002000411000000000101043b000300000002001d00000550022001970000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000013210000613d000000000101043b000000000101041a000000ff01100190000013290000613d00000004010000290000055001100197000400000001001d00000000001004350000000701000039000300000001001d000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000013210000613d000000000101043b0000000101100039000000000101041a000000010210019000000001011002700000007f0310018f00000000010360190000001f0310008c00000000030000190000000103002039000000010330018f000000000232004b000013230000c13d000000000101004b000013590000613d000000040100002900000000001004350000000301000029000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000013210000613d000000000101043b000000000101041a000005bf0110009c0000136b0000813d000000040100002900000000001004350000000301000029000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000013210000613d000000000101043b000000000001041b0000000104100039000000000104041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000013230000c13d000000000103004b000012c10000613d0000001f0130008c000012c00000a13d000300000003001d000200000004001d00000000004004350000054c0100004100000000020004140000054c0320009c0000000001024019000000c0011002100000058f011001c70000801002000039152b15260000040f0000000102200190000013210000613d000000000201043b00000003010000290000001f01100039000000050110027000000000011200190000000102200039000000000312004b000012b20000813d000000000002041b0000000102200039000000000312004b000012ae0000413d0000054c0100004100000000020004140000054c0320009c0000000001024019000000c0011002100000058f011001c70000801002000039152b15260000040f0000000102200190000013210000613d000000000101043b0000000202000029000000000002041b0000000004010019000000000004041b000000040100002900000000001004350000000901000039000300000001001d000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000013210000613d000000000101043b000000000401041a000000000104004b0000130e0000613d0000000803000039000000000103041a000000000201004b000013800000613d000000000241004b000012f60000613d000000010240008a0000000000300435000200000003001d000000000303041a000000000223004b0000138c0000a13d000005c002400041000005c001100041000000000101041a000000000012041b00000000001004350000000301000029000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039000100000004001d152b15260000040f0000000102200190000013210000613d000000000101043b0000000102000029000000000021041b0000000203000029000000000103041a000000000201004b000013860000613d0000000000300435000005c002100041000000000002041b000000010110008a000000000013041b000000040100002900000000001004350000000301000029000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000013210000613d000000000101043b000000000001041b000000400100043d0000054c0200004100000000030004140000054c0430009c00000000030280190000054c0410009c00000000010280190000004001100210000000c002300210000000000112019f00000592011001c70000800d020000390000000203000039000005c1040000410000000405000029152b15210000040f0000000101200190000013210000613d000000000001042d00000000010000190000152d00010430000005520100004100000000001004350000002201000039000000040010043f00000553010000410000152d000104300000000301000029152b0aaf0000040f000200000001001d152b0b050000040f000000400400043d000400000004001d0000002002400039000005a4030000410000000000320435000300000001001d00000002010000290000000013010434000200000003001d0000003702400039152b05bd0000040f000000040100002900000002020000290000000001120019000005a5020000410000003703100039000000000023043500000048021000390000000301000029152b08c40000040f00000004030000290000000002310049000000200120008a00000000001304350000000001030019152b05310000040f000005a101000041000000400200043d000300000002001d000000000012043500000004012000390000000402000029152b05cc0000040f000000030400002900000000014100490000054c020000410000054c0310009c00000000010280190000054c0340009c000000000204401900000040022002100000006001100210000000000121019f0000152d00010430000000400100043d0000004402100039000005c403000041000000000032043500000024021000390000001a030000390000000000320435000005a10200004100000000002104350000000402100039000000200300003900000000003204350000054c020000410000054c0310009c00000000010280190000004001100210000005a2011001c70000152d00010430000000400100043d0000006402100039000005c20300004100000000003204350000004402100039000005c3030000410000000000320435000000240210003900000021030000390000000000320435000005a10200004100000000002104350000000402100039000000200300003900000000003204350000054c020000410000054c0310009c00000000010280190000004001100210000005a9011001c70000152d00010430000005520100004100000000001004350000001101000039000000040010043f00000553010000410000152d00010430000005520100004100000000001004350000003101000039000000040010043f00000553010000410000152d00010430000005520100004100000000001004350000003201000039000000040010043f00000553010000410000152d000104300003000000000002000200000002001d000300000001001d000005810100004100000000001004350000000601000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000014110000613d0000000002000411000000000101043b000100000002001d00000550022001970000000000200435000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000014110000613d000000000101043b000000000101041a000000ff01100190000014130000613d00000003010000290000055001100197000300000001001d00000000001004350000000701000039000100000001001d000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000014110000613d000000000101043b0000000101100039000000000101041a000000010210019000000001011002700000007f0310018f00000000010360190000001f0310008c00000000030000190000000103002039000000010330018f000000000232004b000014430000c13d000000000101004b000014490000613d000000030100002900000000001004350000000101000029000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000014110000613d000000000101043b000000000101041a000100000001001d0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000014110000613d00000002020000290000059a02200197000000000101043b000000000301041a000005bb03300197000000000323019f000000000031041b000000400100043d0000002003100039000000000023043500000001020000290000059a0220019700000000002104350000054c0200004100000000030004140000054c0430009c00000000030280190000054c0410009c00000000010280190000004001100210000000c002300210000000000112019f00000596011001c70000800d020000390000000203000039000005c5040000410000000305000029152b15210000040f0000000101200190000014110000613d000000000001042d00000000010000190000152d000104300000000101000029152b0aaf0000040f000100000001001d152b0b5b0000040f000000400400043d000300000004001d0000002002400039000005a4030000410000000000320435000200000001001d00000001010000290000000013010434000100000003001d0000003702400039152b05bd0000040f000000030100002900000001020000290000000001120019000005a5020000410000003703100039000000000023043500000048021000390000000201000029152b08c40000040f00000003030000290000000002310049000000200120008a00000000001304350000000001030019152b05310000040f000005a101000041000000400200043d000200000002001d000000000012043500000004012000390000000302000029152b05cc0000040f000000020400002900000000014100490000054c020000410000054c0310009c00000000010280190000054c0340009c000000000204401900000040022002100000006001100210000000000121019f0000152d00010430000005520100004100000000001004350000002201000039000000040010043f00000553010000410000152d00010430000000400100043d0000004402100039000005c403000041000000000032043500000024021000390000001a030000390000000000320435000005a10200004100000000002104350000000402100039000000200300003900000000003204350000054c020000410000054c0310009c00000000010280190000004001100210000005a2011001c70000152d000104300004000000000002000000400200043d0000059b0320009c000014cb0000813d0000006003200039000000400030043f000000400320003900000060040000390000000000430435000000200320003900000000000304350000000000020435000005500110019700000000001004350000000701000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000014d10000613d000000400600043d000005c60260009c000014cb0000213d000000000101043b0000006002600039000000400020043f0000002002600039000000000301041a000000800430027000000000004204350000059a0230019700000000002604350000000101100039000000000201041a000000010320019000000001042002700000007f0540018f000000000704001900000000070560190000001f0470008c00000000040000190000000104002039000000010440018f000000000443004b000014d30000c13d000000400400043d0000000005740436000000000303004b000014b00000613d000100000007001d000200000005001d000300000004001d000400000006001d00000000001004350000054c0100004100000000020004140000054c0320009c0000000001024019000000c0011002100000058f011001c70000801002000039152b15260000040f0000000102200190000014d10000613d0000000107000029000000000207004b000014b50000613d000000000201043b0000000001000019000000040600002900000002050000290000000003150019000000000402041a000000000043043500000001022000390000002001100039000000000371004b000014a80000413d000014b80000013d000001000100008a000000000112016f00000000001504350000004001400039000014ba0000013d0000000001000019000000040600002900000002050000290000000001150019000000030400002900000000014100490000001f01100039000000200200008a000000000221016f0000000001420019000000000221004b000000000200001900000001020040390000058e0310009c000014cb0000213d0000000102200190000014cb0000c13d000000400010043f000000400160003900000000004104350000000001060019000000000001042d000005520100004100000000001004350000004101000039000000040010043f00000553010000410000152d0001043000000000010000190000152d00010430000005520100004100000000001004350000002201000039000000040010043f00000553010000410000152d000104300001000000000002000005500110019700000000001004350000000701000039000000200010043f0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000014fc0000613d000000000101043b000000000101041a000100000001001d0000054c0100004100000000020004140000054c0320009c0000000001024019000000c00110021000000596011001c70000801002000039152b15260000040f0000000102200190000014fc0000613d00000001020000290000059a03200197000000000101043b000000000101041a00000080021002700000000001030019000000000001042d00000000010000190000152d000104300000000804000039000000000304041a000000400100043d00000000023104360000000000400435000000000403004b0000150d0000613d000005bc040000410000000005000019000000000604041a000000000262043600000001044000390000000105500039000000000635004b000015070000413d00000000021200490000001f02200039000000200300008a000000000332016f0000000002130019000000000332004b000000000300001900000001030040390000058e0420009c0000151b0000213d00000001033001900000151b0000c13d000000400020043f000000000001042d000005520100004100000000001004350000004101000039000000040010043f00000553010000410000152d0001043000001524002104210000000102000039000000000001042d0000000002000019000000000001042d00001529002104230000000102000039000000000001042d0000000002000019000000000001042d0000152b000004320000152c0001042e0000152d000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff00000000000000df8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000002000000000000000000000000000001000000010000000000000000004e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000000550d996300000000000000000000000000000000000000000000000000000000a217fdde00000000000000000000000000000000000000000000000000000000d46ec0ec00000000000000000000000000000000000000000000000000000000d547741e00000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000d46ec0ed00000000000000000000000000000000000000000000000000000000d505accf00000000000000000000000000000000000000000000000000000000aa02f94900000000000000000000000000000000000000000000000000000000aa02f94a00000000000000000000000000000000000000000000000000000000af93df5700000000000000000000000000000000000000000000000000000000a217fddf00000000000000000000000000000000000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000007fc24dee0000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a11812ba000000000000000000000000000000000000000000000000000000007fc24def0000000000000000000000000000000000000000000000000000000091d1485400000000000000000000000000000000000000000000000000000000550d99640000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000007ecebe00000000000000000000000000000000000000000000000000000000002f2ff15c0000000000000000000000000000000000000000000000000000000036568abd0000000000000000000000000000000000000000000000000000000042966c670000000000000000000000000000000000000000000000000000000042966c6800000000000000000000000000000000000000000000000000000000433bef440000000000000000000000000000000000000000000000000000000036568abe0000000000000000000000000000000000000000000000000000000040c10f1900000000000000000000000000000000000000000000000000000000313ce56600000000000000000000000000000000000000000000000000000000313ce567000000000000000000000000000000000000000000000000000000003644e515000000000000000000000000000000000000000000000000000000002f2ff15d0000000000000000000000000000000000000000000000000000000030adf81f0000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000248a9ca30000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000000000000000000000000000000000001ec90f2e0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c7f115822aabac0cd6b9d21b08c0c63819451a58157aecad689d1b5674fad4085e20732f79076148980e17b6ce9f22756f85058fe2765420ed48a504bef5a8bc310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9ffffffff0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000007965db0b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000008000000000000000000200000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc04f4e455a20537461626c65636f696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf4f4e455a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff02000000000000000000000000000000000000200000000000000000000000009a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b020000020000000000000000000000000000000400000000000000000000000002000000000000000000000000000000000000000000000000000000000000008b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6000000000000000000000000000000000000000000000000ffffffffffffff3f02000000000000000000000000000000000000400000000000000000000000002f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf600000000000000000000000000000000ffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffa000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff300000000000000000000000000000000000000000000000000000000000000078000000000000000000000000000000000000000000000000000000000000003031323334353637383961626364656600000000000000000000000000000000537472696e67733a20686578206c656e67746820696e73756666696369656e7408c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000206973206d697373696e6720726f6c6520000000000000000000000000000000f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b20726f6c657320666f722073656c660000000000000000000000000000000000416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e63650000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff808c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff1f19010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000494e56414c49445f5349474e45520000000000000000000000000000000000005045524d49545f444541444c494e455f45585049524544000000000000000000acb6de9209e4f34974cb165eef5738f0cf0b4ea9819ef30d30f0f7d81272ab824544454400000000000000000000000000000000000000000000000000000000464143494c495441544f525f4255434b45545f43415041434954595f45584345494e56414c49445f4d494e545f414d4f554e5400000000000000000000000000494e56414c49445f4255524e5f414d4f554e5400000000000000000000000000464143494c495441544f525f414c52454144595f4558495354530000000000000000000000000000000000000000000000000000000000010000000000000000ffffffffffffffffffffffffffffffff00000000000000000000000000000000f3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3dabd62626ada7b13e299389e94d768b294e5e24285ed2ffa1e5cd447c99c54ad494e56414c49445f4c4142454c000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000f3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee2a8fe5b89f35f2ebd6f3f95a7ef215f4bd89179e10c101073ae76cffad14734cf4f00000000000000000000000000000000000000000000000000000000000000464143494c495441544f525f4255434b45545f4c4556454c5f4e4f545f5a4552464143494c495441544f525f444f45535f4e4f545f4558495354000000000000c795c0a4927c3b6645e4e49a5a519af936b3c1c0e4c323a3f7251063f3f4bb0e000000000000000000000000000000000000000000000000ffffffffffffff9f0000000000000000000000000000000000000000000000000000000000000000aec2322cacec90ab0f340a6943d1aea394422217d301ca9ce23e37dd6d43d83f
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0x000000000000000000000000b76f765a785eca438e1d95f594490088afaf9acc
-----Decoded View---------------
Arg [0] : admin (address): 0xb76F765A785eCa438e1d95f594490088aFAF9acc
-----Encoded View---------------
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.