Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
4973085 | 12 days ago | Contract Creation | 0 ETH |
Loading...
Loading
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 Source Code Verified (Exact Match)
Contract Name:
CommunityRegistry
Compiler Version
v0.8.25+commit.b61c2a91
ZkSolc Version
v1.5.12
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; import "@openzeppelin/contracts/access/extensions/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/access/IAccessControl.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./Versionable/IVersionable.sol"; import "./UsesGalaxisRegistry.sol"; contract CommunityRegistry is AccessControlEnumerable, UsesGalaxisRegistry, IVersionable { function version() virtual external pure returns(uint256) { return 2024040401; } bytes32 public constant COMMUNITY_REGISTRY_ADMIN = keccak256("COMMUNITY_REGISTRY_ADMIN"); uint32 public community_id; string public community_name; mapping(bytes32 => address) addresses; mapping(bytes32 => uint256) uints; mapping(bytes32 => bool) booleans; mapping(bytes32 => string) strings; mapping (uint => string) public addressEntries; mapping (uint => string) public uintEntries; mapping (uint => string) public boolEntries; mapping (uint => string) public stringEntries; uint public numberOfAddresses; uint public numberOfUINTs; uint public numberOfBooleans; uint public numberOfStrings; bool initialised; bool public independant; event IndependanceDay(bool gain_independance); modifier onlyAdmin() { require( isUserCommunityAdmin(COMMUNITY_REGISTRY_ADMIN,msg.sender) ,"CommunityRegistry : Unauthorised"); _; } modifier onlyPropertyAdmin() { require( isUserCommunityAdmin(COMMUNITY_REGISTRY_ADMIN,msg.sender) || hasRole(COMMUNITY_REGISTRY_ADMIN,msg.sender) ,"CommunityRegistry : Unauthorised"); _; } function isUserCommunityAdmin(bytes32 role, address user) public view returns (bool) { if (hasRole(DEFAULT_ADMIN_ROLE,user) ) return true; // community_admin can do anything if (independant){ return( hasRole(role,user) ); } else { // for Factories return(roleManager().hasRole(role,user)); } } function roleManager() internal view returns (IAccessControlEnumerable) { address addr = galaxisRegistry.getRegistryAddress("ROLE_MANAGER"); // universal if (addr != address(0)) return IAccessControlEnumerable(addr); addr = galaxisRegistry.getRegistryAddress("MAINNET_CHAIN_IMPLEMENTER"); // mainnet if (addr != address(0)) return IAccessControlEnumerable(addr); addr = galaxisRegistry.getRegistryAddress("L2_RECEIVER"); // mainnet require(addr != address(0),"CommunityRegistry : no higher authority found"); return IAccessControlEnumerable(addr); } function grantRole(bytes32 key, address user) public override(AccessControl,IAccessControl) onlyAdmin { _grantRole(key,user); // need to be able to grant it } constructor ( address _galaxisRegistry, uint32 _community_id, address _community_admin, string memory _community_name ) UsesGalaxisRegistry(_galaxisRegistry){ _init(_community_id,_community_admin,_community_name); } function init( uint32 _community_id, address _community_admin, string memory _community_name ) external { _init(_community_id,_community_admin,_community_name); } function _init( uint32 _community_id, address _community_admin, string memory _community_name ) internal { require(!initialised,"This can only be called once"); initialised = true; community_id = _community_id; community_name = _community_name; _grantRole(DEFAULT_ADMIN_ROLE, _community_admin); // default admin = launchpad } event AdminUpdated(address user, bool isAdmin); event AppAdminChanged(address app,address user,bool state); //=== event AddressChanged(string key, address value); event UintChanged(string key, uint256 value); event BooleanChanged(string key, bool value); event StringChanged(string key, string value); function setIndependant(bool gain_independance) external onlyAdmin { if (independant != gain_independance) { independant = gain_independance; emit IndependanceDay(gain_independance); } } function setAdmin(address user,bool status ) external onlyAdmin { if (status) _grantRole(COMMUNITY_REGISTRY_ADMIN,user); else _revokeRole(COMMUNITY_REGISTRY_ADMIN,user); } function hash(string memory field) internal pure returns (bytes32) { return keccak256(abi.encode(field)); } function setRegistryAddress(string memory fn, address value) external onlyPropertyAdmin { bytes32 hf = hash(fn); addresses[hf] = value; addressEntries[numberOfAddresses++] = fn; emit AddressChanged(fn,value); } function setRegistryBool(string memory fn, bool value) external onlyPropertyAdmin { bytes32 hf = hash(fn); booleans[hf] = value; boolEntries[numberOfBooleans++] = fn; emit BooleanChanged(fn,value); } function setRegistryString(string memory fn, string memory value) external onlyPropertyAdmin { bytes32 hf = hash(fn); strings[hf] = value; stringEntries[numberOfStrings++] = fn; emit StringChanged(fn,value); } function setRegistryUINT(string memory fn, uint value) external onlyPropertyAdmin { bytes32 hf = hash(fn); uints[hf] = value; uintEntries[numberOfUINTs++] = fn; emit UintChanged(fn,value); } function getRegistryAddress(string memory key) external view returns (address) { return addresses[hash(key)]; } function getRegistryBool(string memory key) external view returns (bool) { return booleans[hash(key)]; } function getRegistryUINT(string memory key) external view returns (uint256) { return uints[hash(key)]; } function getRegistryString(string memory key) external view returns (string memory) { return strings[hash(key)]; } }
//SPDX-License-Identifier: Unlicensed pragma solidity 0.8.25; /** * @title IVersionable * @dev Interface for versionable contracts. */ interface IVersionable { /** * @notice Get the current version of the contract. * @return The current version. */ function version() external pure returns (uint256); }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; import "./IRegistry.sol"; contract UsesGalaxisRegistry { IRegistry immutable public galaxisRegistry; constructor(address _galaxisRegistry) { galaxisRegistry = IRegistry(_galaxisRegistry); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (access/extensions/AccessControlEnumerable.sol) pragma solidity ^0.8.20; import {IAccessControlEnumerable} from "./IAccessControlEnumerable.sol"; import {AccessControl} from "../AccessControl.sol"; import {EnumerableSet} from "../../utils/structs/EnumerableSet.sol"; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 role => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view virtual returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view virtual returns (uint256) { return _roleMembers[role].length(); } /** * @dev Return all accounts that have `role` * * 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 getRoleMembers(bytes32 role) public view virtual returns (address[] memory) { return _roleMembers[role].values(); } /** * @dev Overload {AccessControl-_grantRole} to track enumerable memberships */ function _grantRole(bytes32 role, address account) internal virtual override returns (bool) { bool granted = super._grantRole(role, account); if (granted) { _roleMembers[role].add(account); } return granted; } /** * @dev Overload {AccessControl-_revokeRole} to track enumerable memberships */ function _revokeRole(bytes32 role, address account) internal virtual override returns (bool) { bool revoked = super._revokeRole(role, account); if (revoked) { _roleMembers[role].remove(account); } return revoked; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (access/IAccessControl.sol) pragma solidity ^0.8.20; /** * @dev External interface of AccessControl declared to support ERC-165 detection. */ interface IAccessControl { /** * @dev The `account` is missing a role. */ error AccessControlUnauthorizedAccount(address account, bytes32 neededRole); /** * @dev The caller of a function is not the expected one. * * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}. */ error AccessControlBadConfirmation(); /** * @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. */ 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. This account bears the admin role (for the granted role). * Expected in cases where the role was granted using the internal {AccessControl-_grantRole}. */ 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 `callerConfirmation`. */ function renounceRole(bytes32 role, address callerConfirmation) external; }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; interface IRegistry { function setRegistryAddress(string memory fn, address value) external ; function setRegistryBool(string memory fn, bool value) external ; function setRegistryUINT(string memory key) external returns (uint256) ; function setRegistryString(string memory fn, string memory value) external ; function setAdmin(address user,bool status ) external; function setAppAdmin(address app, address user, bool state) external; function getRegistryAddress(string memory key) external view returns (address) ; function getRegistryBool(string memory key) external view returns (bool); function getRegistryUINT(string memory key) external view returns (uint256) ; function getRegistryString(string memory key) external view returns (string memory) ; function isAdmin(address user) external view returns (bool) ; function isAppAdmin(address app, address user) external view returns (bool); function numberOfAddresses() external view returns(uint256); function addressEntries(uint256) external view returns(string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (access/extensions/IAccessControlEnumerable.sol) pragma solidity ^0.8.20; import {IAccessControl} from "../IAccessControl.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC-165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) pragma solidity ^0.8.20; import {IAccessControl} from "./IAccessControl.sol"; import {Context} from "../utils/Context.sol"; import {ERC165} from "../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: * * ```solidity * 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}: * * ```solidity * 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. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address account => bool) hasRole; bytes32 adminRole; } mapping(bytes32 role => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with an {AccessControlUnauthorizedAccount} error including the required role. */ 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 returns (bool) { return _roles[role].hasRole[account]; } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()` * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier. */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account` * is missing `role`. */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert AccessControlUnauthorizedAccount(account, role); } } /** * @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 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 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 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 `callerConfirmation`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address callerConfirmation) public virtual { if (callerConfirmation != _msgSender()) { revert AccessControlBadConfirmation(); } _revokeRole(role, callerConfirmation); } /** * @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 Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual returns (bool) { if (!hasRole(role, account)) { _roles[role].hasRole[account] = true; emit RoleGranted(role, account, _msgSender()); return true; } else { return false; } } /** * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual returns (bool) { if (hasRole(role, account)) { _roles[role].hasRole[account] = false; emit RoleRevoked(role, account, _msgSender()); return true; } else { return false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.20; /** * @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. * * ```solidity * 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 is the index of the value in the `values` array plus 1. // Position 0 is used to mean a value is not in the set. mapping(bytes32 value => uint256) _positions; } /** * @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._positions[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 cache the value's position to prevent multiple reads from the same storage slot uint256 position = set._positions[value]; if (position != 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 valueIndex = position - 1; uint256 lastIndex = set._values.length - 1; if (valueIndex != lastIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the lastValue to the index where the value to delete is set._values[valueIndex] = lastValue; // Update the tracked position of the lastValue (that was just moved) set._positions[lastValue] = position; } // Delete the slot where the moved value was stored set._values.pop(); // Delete the tracked position for the deleted slot delete set._positions[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._positions[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; assembly ("memory-safe") { 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; assembly ("memory-safe") { 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; assembly ("memory-safe") { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC-165 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); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[ERC]. * * 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[ERC 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); }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_galaxisRegistry","type":"address"},{"internalType":"uint32","name":"_community_id","type":"uint32"},{"internalType":"address","name":"_community_admin","type":"address"},{"internalType":"string","name":"_community_name","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"key","type":"string"},{"indexed":false,"internalType":"address","name":"value","type":"address"}],"name":"AddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"isAdmin","type":"bool"}],"name":"AdminUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"app","type":"address"},{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"state","type":"bool"}],"name":"AppAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"key","type":"string"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"BooleanChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"gain_independance","type":"bool"}],"name":"IndependanceDay","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":false,"internalType":"string","name":"key","type":"string"},{"indexed":false,"internalType":"string","name":"value","type":"string"}],"name":"StringChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"key","type":"string"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"UintChanged","type":"event"},{"inputs":[],"name":"COMMUNITY_REGISTRY_ADMIN","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"addressEntries","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"boolEntries","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"community_id","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"community_name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"galaxisRegistry","outputs":[{"internalType":"contract IRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"key","type":"string"}],"name":"getRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"key","type":"string"}],"name":"getRegistryBool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"key","type":"string"}],"name":"getRegistryString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"key","type":"string"}],"name":"getRegistryUINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMembers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"key","type":"bytes32"},{"internalType":"address","name":"user","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":[],"name":"independant","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_community_id","type":"uint32"},{"internalType":"address","name":"_community_admin","type":"address"},{"internalType":"string","name":"_community_name","type":"string"}],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"user","type":"address"}],"name":"isUserCommunityAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfAddresses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfBooleans","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfStrings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfUINTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","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":"user","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"gain_independance","type":"bool"}],"name":"setIndependant","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"fn","type":"string"},{"internalType":"address","name":"value","type":"address"}],"name":"setRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"fn","type":"string"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setRegistryBool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"fn","type":"string"},{"internalType":"string","name":"value","type":"string"}],"name":"setRegistryString","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"fn","type":"string"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setRegistryUINT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stringEntries","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uintEntries","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"}]
Contract Creation Code
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100052d725654905356e150bbfe5c8fc66c4b9dfc96468692c228921fd184f2000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000f8274c5e5149a6e0fc5190483323a1b399896a8a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000049396893d0cc273b6cbd0f3830fea35c5963fd090000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d47616c617869732041646d696e00000000000000000000000000000000000000
Deployed Bytecode
0x00010000000000020007000000000002000000000302001900000000000103550000006002100270000004bf022001970000000100300190000000260000c13d0000008003000039000000400030043f000000040020008c00000cc40000413d000000000301043b000000e003300270000004cc0030009c000000d70000213d000004e60030009c000000f10000213d000004f30030009c000002070000a13d000004f40030009c000002810000a13d000004f50030009c000003e50000613d000004f60030009c000003f60000613d000004f70030009c00000cc40000c13d000000240020008c00000cc40000413d0000000002000416000000000002004b00000cc40000c13d0000000401100370000000000101043b000000000010043f0000000801000039000005640000013d000000a004000039000000400040043f0000000003000416000000000003004b00000cc40000c13d0000001f03200039000004c003300197000000a003300039000000400030043f0000001f0520018f000004c106200198000000a003600039000000380000613d000000000701034f000000007807043c0000000004840436000000000034004b000000340000c13d000000000005004b000000450000613d000000000161034f0000000304500210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000800020008c00000cc40000413d000000a00300043d000004c20030009c00000cc40000213d000000c00100043d000004bf0010009c00000cc40000213d000000e00400043d000500000004001d000004c20040009c00000cc40000213d000001000500043d000004c30050009c00000cc40000213d0000001f04500039000000000024004b0000000006000019000004c406008041000004c404400197000000000004004b0000000007000019000004c407004041000004c40040009c000000000706c019000000000007004b00000cc40000c13d000000a0045000390000000004040433000004c30040009c000009110000213d0000001f0640003900000527066001970000003f066000390000052706600197000000400800043d0000000006680019000000000086004b00000000070000390000000107004039000004c30060009c000009110000213d0000000100700190000009110000c13d000000a007200039000000400060043f000400000008001d0000000002480436000300000002001d000000c0025000390000000005240019000000000075004b00000cc40000213d000000000004004b0000000308000029000000850000613d000000000500001900000000065800190000000007250019000000000707043300000000007604350000002005500039000000000045004b0000007e0000413d0000000405000029000000000254001900000020022000390000000000020435000004c202300197000000800020043f0000001002000039000000000302041a000000ff0030019000000a8e0000c13d000004bf01100197000005280330019700000001033001bf000000000032041b0000000202000039000000000302041a000004c503300197000000000113019f000000000012041b0000000004050433000004c30040009c000009110000213d0000000303000039000000000103041a000000010210019000000001051002700000007f0550618f0000001f0050008c00000000010000390000000101002039000000000012004b0000035c0000c13d000100000005001d000000200050008c000200000004001d000000c50000413d000000000030043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d00000002040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000303000039000000c50000813d000000000002041b0000000102200039000000000012004b000000c10000413d0000001f0040008c00000ab80000a13d000000000030043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000200300008a0000000202300180000000000101043b00000ac50000c13d000000200300003900000ad20000013d000004cd0030009c000001050000213d000004da0030009c000002400000a13d000004db0030009c000003290000a13d000004dc0030009c000004f40000613d000004dd0030009c0000054a0000613d000004de0030009c00000cc40000c13d000000240020008c00000cc40000413d0000000002000416000000000002004b00000cc40000c13d0000000401100370000000000101043b000000000010043f0000000101000039000000200010043f0000004002000039000000000100001912f612c40000040f0000091b0000013d000004e70030009c0000025f0000a13d000004e80030009c000003410000a13d000004e90030009c0000054f0000613d000004ea0030009c000005560000613d000004eb0030009c00000cc40000c13d000000240020008c00000cc40000413d0000000002000416000000000002004b00000cc40000c13d0000000401100370000000000101043b000000000010043f0000000901000039000005640000013d000004ce0030009c0000026c0000a13d000004cf0030009c0000034a0000a13d000004d00030009c0000055b0000613d000004d10030009c000005780000613d000004d20030009c00000cc40000c13d000000440020008c00000cc40000413d0000000003000416000000000003004b00000cc40000c13d0000000403100370000000000403043b000004c30040009c00000cc40000213d0000002303400039000000000023004b00000cc40000813d0000000405400039000000000351034f000000000303043b000004c30030009c000009110000213d0000001f0630003900000527066001970000003f066000390000052706600197000004ff0060009c000009110000213d0000008006600039000000400060043f000000800030043f00000000043400190000002404400039000000000024004b00000cc40000213d0000002002500039000000000421034f00000527053001980000001f0630018f000000a002500039000001390000613d000000a007000039000000000804034f000000008908043c0000000007970436000000000027004b000001350000c13d000000000006004b000001460000613d000000000454034f0000000305600210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000420435000000a00230003900000000000204350000002401100370000000000101043b000500000001001d000000000100041112f60f510000040f000000000001004b0000016c0000c13d0000050001000041000000000010043f000000200000043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000101041a000000ff00100190000006570000613d000000400100043d0000002002100039000000200300003900000000003204350000004004100039000000800300043d00000000003404350000006004100039000000000003004b0000017e0000613d00000000050000190000000006450019000000a007500039000000000707043300000000007604350000002005500039000000000035004b000001770000413d000000000443001900000000000404350000001f033000390000052703300197000000400430003900000000004104350000007f0330003900000527043001970000000003140019000000000043004b00000000040000390000000104004039000004c30030009c000009110000213d0000000100400190000009110000c13d000000400030043f000004bf0020009c000004bf0200804100000040022002100000000001010433000004bf0010009c000004bf010080410000006001100210000000000121019f0000000002000414000004bf0020009c000004bf02008041000000c002200210000000000112019f000004c9011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000010043f0000000501000039000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b0000000502000029000000000021041b0000000d02000039000000000102041a000000010310003a0000063b0000613d000000000032041b000000000010043f0000000901000039000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000400000001001d000000800100043d000300000001001d000004c30010009c000009110000213d0000000401000029000000000101041a000000010010019000000001021002700000007f0220618f000200000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000035c0000c13d0000000201000029000000200010008c000001f30000413d0000000401000029000000000010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d00000003030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000002010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000001f30000813d000000000002041b0000000102200039000000000012004b000001ef0000413d00000003010000290000001f0010008c00000c5d0000a13d0000000401000029000000000010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000200200008a0000000302200180000000000101043b00000cd20000c13d000000a00300003900000ce00000013d000004fa0030009c000003620000213d000004fd0030009c000005810000613d000004fe0030009c00000cc40000c13d000000240020008c00000cc40000413d0000000002000416000000000002004b00000cc40000c13d0000000401100370000000000201043b000000000002004b0000000001000039000000010100c039000500000002001d000000000012004b00000cc40000c13d000000000100041112f60f510000040f000000000001004b000006570000613d000000050000006b0000000003000039000000010300c0390000001001000039000000000201041a0000ff000020019000000000040000390000000104006039000000000343013f000000010030019000000c5b0000c13d00000529022001970000000503000029000000000003004b000001000220c1bf000000000021041b000000400100043d0000000000310435000004bf0010009c000004bf0100804100000040011002100000000002000414000004bf0020009c000004bf02008041000000c002200210000000000112019f000004c6011001c70000800d020000390000000103000039000005210400004112f612ec0000040f000000010020019000000cc40000613d00000c5b0000013d000004e10030009c000003740000213d000004e40030009c0000058e0000613d000004e50030009c00000cc40000c13d000000440020008c00000cc40000413d0000000002000416000000000002004b00000cc40000c13d0000000402100370000000000202043b000000000020043f0000000102000039000000200020043f0000002401100370000000000101043b000500000001001d0000004002000039000000000100001912f612c40000040f000000050200002912f6121f0000040f0000000302200210000000000101041a000000000121022f000004c201100197000000ff0020008c0000000001002019000009840000013d000004ee0030009c000003820000213d000004f10030009c000006410000613d000004f20030009c00000cc40000c13d0000000001000416000000000001004b00000cc40000c13d0000050e01000041000000800010043f0000050201000041000012f70001042e000004d50030009c0000039b0000213d000004d80030009c000006670000613d000004d90030009c00000cc40000c13d000000240020008c00000cc40000413d0000000003000416000000000003004b00000cc40000c13d0000000401100370000000000101043b000004c30010009c00000cc40000213d000000040110003912f60ea80000040f12f610fc0000040f000000000010043f0000000701000039000005640000013d000004f80030009c0000066e0000613d000004f90030009c00000cc40000c13d000000440020008c00000cc40000413d0000000002000416000000000002004b00000cc40000c13d0000000402100370000000000202043b000500000002001d0000002401100370000000000101043b000400000001001d000004c20010009c00000cc40000213d000000000100041112f60f510000040f000000000001004b000006570000613d0000000501000029000000000010043f000000200000043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000101041a000000ff0010019000000c5b0000c13d0000000501000029000000000010043f000000200000043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000201041a000005280220019700000001022001bf000000000021041b0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c9011001c70000800d020000390000000403000039000004ca0400004100000005050000290000000406000029000000000700041112f612ec0000040f000000010020019000000cc40000613d0000000501000029000000000010043f0000000101000039000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000201043b0000000401000029000000000010043f000500000002001d0000000101200039000300000001001d000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000101041a000000000001004b00000c5b0000c13d0000000501000029000000000101041a000200000001001d000004c30010009c000009110000213d000000020100002900000001011000390000000502000029000000000012041b000000000020043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b00000002011000290000000402000029000000000021041b0000000501000029000000000101041a000500000001001d000000000020043f0000000301000029000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000050200002900000a310000013d000004df0030009c000006830000613d000004e00030009c00000cc40000c13d000000240020008c00000cc40000413d0000000003000416000000000003004b00000cc40000c13d0000000401100370000000000101043b000004c30010009c00000cc40000213d000000040110003912f60ea80000040f12f610fc0000040f000000000010043f0000000501000039000000200010043f0000004002000039000000000100001912f612c40000040f000000000101041a000009840000013d000004ec0030009c000006890000613d000004ed0030009c00000cc40000c13d0000000001000416000000000001004b00000cc40000c13d0000000d010000390000091b0000013d000004d30030009c000006970000613d000004d40030009c00000cc40000c13d0000000001000416000000000001004b00000cc40000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000091f0000613d0000051301000041000000000010043f0000002201000039000000040010043f0000051401000041000012f800010430000004fb0030009c000007b60000613d000004fc0030009c00000cc40000c13d000000240020008c00000cc40000413d0000000002000416000000000002004b00000cc40000c13d0000000401100370000000000101043b000000000010043f000000200000043f0000004002000039000000000100001912f612c40000040f00000001011000390000091b0000013d000004e20030009c000008d40000613d000004e30030009c00000cc40000c13d000000240020008c00000cc40000413d0000000002000416000000000002004b00000cc40000c13d0000000401100370000000000101043b000000000010043f0000000a01000039000005640000013d000004ef0030009c000008f20000613d000004f00030009c00000cc40000c13d000000240020008c00000cc40000413d0000000003000416000000000003004b00000cc40000c13d0000000401100370000000000101043b000004c30010009c00000cc40000213d000000040110003912f60ea80000040f12f610fc0000040f000000000010043f0000000401000039000000200010043f0000004002000039000000000100001912f612c40000040f000000000101041a000004c201100197000009840000013d000004d60030009c000009170000613d000004d70030009c00000cc40000c13d000000440020008c00000cc40000413d0000000002000416000000000002004b00000cc40000c13d0000000402100370000000000202043b000500000002001d0000002401100370000000000101043b000400000001001d000004c20010009c00000cc40000213d0000000501000029000000000010043f000000200000043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b0000000101100039000000000101041a000300000001001d000000000010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000101041a000000ff0010019000000a330000c13d000000400100043d00000024021000390000000303000029000000000032043500000505020000410000000000210435000000040210003900000000030004110000000000320435000004bf0010009c000004bf01008041000000400110021000000506011001c7000012f800010430000000440020008c00000cc40000413d0000000002000416000000000002004b00000cc40000c13d0000002402100370000000000302043b000004c20030009c00000cc40000213d0000000002000411000000000023004b000009270000c13d0000000401100370000000000101043b12f6113d0000040f0000000001000019000012f70001042e000000440020008c00000cc40000413d0000000003000416000000000003004b00000cc40000c13d0000000403100370000000000403043b000004c30040009c00000cc40000213d0000002303400039000000000023004b00000cc40000813d0000000405400039000000000351034f000000000303043b000004c30030009c000009110000213d0000001f0630003900000527066001970000003f066000390000052706600197000004ff0060009c000009110000213d0000008006600039000000400060043f000000800030043f00000000043400190000002404400039000000000024004b00000cc40000213d0000002002500039000000000421034f00000527053001980000001f0630018f000000a002500039000004200000613d000000a007000039000000000804034f000000008908043c0000000007970436000000000027004b0000041c0000c13d000000000006004b0000042d0000613d000000000454034f0000000305600210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000420435000000a00230003900000000000204350000002401100370000000000101043b000500000001001d000004c20010009c00000cc40000213d000000000100041112f60f510000040f000000000001004b000004550000c13d0000050001000041000000000010043f000000200000043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000101041a000000ff00100190000006570000613d000000400100043d0000002002100039000000200300003900000000003204350000004004100039000000800300043d00000000003404350000006004100039000000000003004b000004670000613d00000000050000190000000006450019000000a007500039000000000707043300000000007604350000002005500039000000000035004b000004600000413d000000000443001900000000000404350000001f033000390000052703300197000000400430003900000000004104350000007f0330003900000527043001970000000003140019000000000043004b00000000040000390000000104004039000004c30030009c000009110000213d0000000100400190000009110000c13d000000400030043f000004bf0020009c000004bf0200804100000040022002100000000001010433000004bf0010009c000004bf010080410000006001100210000000000121019f0000000002000414000004bf0020009c000004bf02008041000000c002200210000000000112019f000004c9011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000010043f0000000401000039000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d0000000502000029000504c20020019b000000000101043b000000000201041a000005110220019700000005022001af000000000021041b0000000c02000039000000000102041a000000010310003a0000063b0000613d000000000032041b000000000010043f0000000801000039000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000400000001001d000000800100043d000300000001001d000004c30010009c000009110000213d0000000401000029000000000101041a000000010010019000000001021002700000007f0220618f000200000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000035c0000c13d0000000201000029000000200010008c000004e00000413d0000000401000029000000000010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d00000003030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000002010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000004e00000813d000000000002041b0000000102200039000000000012004b000004dc0000413d00000003010000290000001f0010008c00000c690000a13d0000000401000029000000000010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000200200008a0000000302200180000000000101043b00000d310000c13d000000a00300003900000d3f0000013d000000240020008c00000cc40000413d0000000002000416000000000002004b00000cc40000c13d0000000401100370000000000101043b000000000010043f0000000101000039000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000301041a000000400200043d000400000002001d000300000003001d0000000002320436000500000002001d000000000010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d0000000305000029000000000005004b00000005060000290000000002060019000005260000613d000000000101043b00000000030000190000000002060019000000000401041a000000000242043600000001011000390000000103300039000000000053004b000005200000413d000000040300002900000000013200490000001f0110003900000527021001970000000001320019000000000021004b00000000020000390000000102004039000004c30010009c000009110000213d0000000100200190000009110000c13d000000400010043f00000020020000390000000002210436000000000303043300000000003204350000004002100039000000000003004b000005410000613d00000000040000190000000065060434000004c20550019700000000025204360000000104400039000000000034004b0000053b0000413d0000000002120049000004bf0020009c000004bf020080410000006002200210000004bf0010009c000004bf010080410000004001100210000000000112019f000012f70001042e0000000001000416000000000001004b00000cc40000c13d0000000e010000390000091b0000013d0000000001000416000000000001004b00000cc40000c13d0000050001000041000000800010043f0000050201000041000012f70001042e0000000001000416000000000001004b00000cc40000c13d0000000c010000390000091b0000013d000000240020008c00000cc40000413d0000000002000416000000000002004b00000cc40000c13d0000000401100370000000000101043b000000000010043f0000000b01000039000000200010043f0000004002000039000000000100001912f612c40000040f12f60ef20000040f0000002002000039000000400300043d000500000003001d000000000223043612f60f3f0000040f00000005020000290000000001210049000004bf0010009c000004bf010080410000006001100210000004bf0020009c000004bf020080410000004002200210000000000121019f000012f70001042e0000000001000416000000000001004b00000cc40000c13d0000000201000039000000000101041a000004bf01100197000000800010043f0000050201000041000012f70001042e000000240020008c00000cc40000413d0000000002000416000000000002004b00000cc40000c13d0000000401100370000000000101043b000005230010019800000cc40000c13d000005240010009c0000092b0000c13d0000000102000039000009300000013d000000440020008c00000cc40000413d0000000003000416000000000003004b00000cc40000c13d0000000403100370000000000403043b000004c30040009c00000cc40000213d0000002303400039000000000023004b00000cc40000813d0000000405400039000000000351034f000000000303043b000004c30030009c000009110000213d0000001f0630003900000527066001970000003f066000390000052706600197000004ff0060009c000009110000213d0000008006600039000000400060043f000000800030043f00000000043400190000002404400039000000000024004b00000cc40000213d0000002002500039000000000421034f00000527053001980000001f0630018f000000a002500039000005b80000613d000000a007000039000000000804034f000000008908043c0000000007970436000000000027004b000005b40000c13d000000000006004b000005c50000613d000000000454034f0000000305600210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000420435000000a00230003900000000000204350000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000500000002001d000000000012004b00000cc40000c13d000000000100041112f60f510000040f000000000001004b000005f00000c13d0000050001000041000000000010043f000000200000043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000101041a000000ff00100190000006570000613d000000400100043d0000002002100039000000200300003900000000003204350000004004100039000000800300043d00000000003404350000006004100039000000000003004b000006020000613d00000000050000190000000006450019000000a007500039000000000707043300000000007604350000002005500039000000000035004b000005fb0000413d000000000443001900000000000404350000001f033000390000052703300197000000400430003900000000004104350000007f0330003900000527043001970000000003140019000000000043004b00000000040000390000000104004039000004c30030009c000009110000213d0000000100400190000009110000c13d000000400030043f000004bf0020009c000004bf0200804100000040022002100000000001010433000004bf0010009c000004bf010080410000006001100210000000000121019f0000000002000414000004bf0020009c000004bf02008041000000c002200210000000000112019f000004c9011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000010043f0000000601000039000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000201041a000005280220019700000005022001af000000000021041b0000000e02000039000000000102041a000000010310003a00000b670000c13d0000051301000041000000000010043f0000001101000039000000040010043f0000051401000041000012f800010430000000440020008c00000cc40000413d0000000002000416000000000002004b00000cc40000c13d0000000402100370000000000202043b000500000002001d000004c20020009c00000cc40000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000400000002001d000000000012004b00000cc40000c13d000000000100041112f60f510000040f000000000001004b0000093a0000c13d000000400100043d0000004402100039000005220300004100000000003204350000050a02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000004bf0010009c000004bf0100804100000040011002100000050b011001c7000012f8000104300000000001000416000000000001004b00000cc40000c13d0000001001000039000000000101041a0000ff0000100190000008ed0000013d000000240020008c00000cc40000413d0000000003000416000000000003004b00000cc40000c13d0000000401100370000000000101043b000004c30010009c00000cc40000213d000000040110003912f60ea80000040f12f610fc0000040f000000000010043f0000000601000039000000200010043f0000004002000039000000000100001912f612c40000040f000000000101041a000000ff00100190000009820000013d0000000001000416000000000001004b00000cc40000c13d000000800000043f0000050201000041000012f70001042e0000000001000416000000000001004b00000cc40000c13d0000000001000412000700000001001d000600000000003d0000000001000415000000070110008a000000050110021012f612d90000040f000004c201100197000000800010043f0000050201000041000012f70001042e000000440020008c00000cc40000413d0000000003000416000000000003004b00000cc40000c13d0000000403100370000000000403043b000004c30040009c00000cc40000213d0000002303400039000000000023004b00000cc40000813d0000000405400039000000000351034f000000000303043b000004c30030009c000009110000213d0000001f0630003900000527066001970000003f066000390000052706600197000004ff0060009c000009110000213d0000008006600039000000400060043f000000800030043f00000000043400190000002404400039000000000024004b00000cc40000213d0000002004500039000000000541034f00000527063001980000001f0730018f000000a004600039000006c10000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000048004b000006bd0000c13d000000000007004b000006ce0000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000a00330003900000000000304350000002403100370000000000403043b000004c30040009c00000cc40000213d0000002303400039000000000023004b00000cc40000813d0000000405400039000000000351034f000000000303043b000004c30030009c000009110000213d0000001f0630003900000527066001970000003f066000390000052706600197000000400700043d0000000006670019000500000007001d000000000076004b00000000070000390000000107004039000004c30060009c000009110000213d0000000100700190000009110000c13d000000400060043f00000005060000290000000006360436000400000006001d00000000043400190000002404400039000000000024004b00000cc40000213d0000002002500039000000000221034f00000527043001980000001f0530018f0000000401400029000006fe0000613d000000000602034f0000000407000029000000006806043c0000000007870436000000000017004b000006fa0000c13d000000000005004b0000070b0000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f000000000021043500000004013000290000000000010435000000000100041112f60f510000040f000000000001004b0000072e0000c13d0000050001000041000000000010043f000000200000043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000101041a000000ff00100190000006570000613d000000400100043d0000002002100039000000200300003900000000003204350000004004100039000000800300043d00000000003404350000006004100039000000000003004b000007400000613d00000000050000190000000006450019000000a007500039000000000707043300000000007604350000002005500039000000000035004b000007390000413d000000000443001900000000000404350000001f033000390000052703300197000000400430003900000000004104350000007f0330003900000527043001970000000003140019000000000043004b00000000040000390000000104004039000004c30030009c000009110000213d0000000100400190000009110000c13d000000400030043f000004bf0020009c000004bf0200804100000040022002100000000001010433000004bf0010009c000004bf010080410000006001100210000000000121019f0000000002000414000004bf0020009c000004bf02008041000000c002200210000000000112019f000004c9011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000010043f0000000701000039000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000300000001001d00000005010000290000000001010433000200000001001d000004c30010009c000009110000213d0000000301000029000000000101041a000000010010019000000001021002700000007f0220618f000100000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000035c0000c13d0000000101000029000000200010008c000007a20000413d0000000301000029000000000010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d00000002030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000007a20000813d000000000002041b0000000102200039000000000012004b0000079e0000413d00000002010000290000001f0010008c00000d180000a13d0000000301000029000000000010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000200200008a0000000202200180000000000101043b00000dbd0000c13d000000200300003900000dca0000013d000000440020008c00000cc40000413d0000000002000416000000000002004b00000cc40000c13d0000002402100370000000000202043b000500000002001d000004c20020009c00000cc40000213d0000000401100370000000000101043b000400000001001d0000000501000029000000000010043f000004c701000041000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000101041a000000ff00100190000009800000c13d0000001001000039000000000101041a0000ff00001001900000099e0000c13d000005170100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000004bf0010009c000004bf01008041000000c00110021000000518011001c7000080050200003912f612f10000040f000000010020019000000a380000613d000000000201043b000000400400043d000300000004001d00000044014000390000051903000041000000000031043500000024014000390000000c0300003900000000003104350000051a010000410000000000140435000000040140003900000020030000390000000000310435000004bf0040009c000004bf01000041000000000104401900000040011002100000000003000414000004bf0030009c000004bf03008041000000c003300210000000000113019f0000050b011001c7000004c202200197000200000002001d12f612f10000040f0000006003100270000004bf03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000030b0000290000000305700029000008110000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000080d0000c13d000000000006004b0000081e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000a9a0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000100000002001d000004c30020009c000009110000213d0000000100100190000009110000c13d0000000101000029000000400010043f000000200030008c00000cc40000413d00000000020b0433000004c20020009c00000cc40000213d000000000002004b00000c820000c13d000000010300002900000044013000390000051b0200004100000000002104350000002401300039000000190200003900000000002104350000051a010000410000000000130435000000040130003900000020020000390000000000210435000004bf0030009c000004bf01000041000000000103401900000040011002100000000002000414000004bf0020009c000004bf02008041000000c002200210000000000112019f0000050b011001c7000000020200002912f612f10000040f0000006003100270000004bf03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000001057000290000085b0000613d000000000801034f0000000109000029000000008a08043c0000000009a90436000000000059004b000008570000c13d000000000006004b000008680000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000bc40000613d0000001f01400039000000600110018f0000000101100029000300000001001d000004c30010009c000009110000213d0000000301000029000000400010043f000000200030008c00000cc40000413d00000001010000290000000002010433000004c20020009c00000cc40000213d000000000002004b00000c810000c13d000000030300002900000044013000390000051c02000041000000000021043500000024013000390000000b0200003900000000002104350000051a010000410000000000130435000000040130003900000020020000390000000000210435000004bf0030009c000004bf01000041000000000103401900000040011002100000000002000414000004bf0020009c000004bf02008041000000c002200210000000000112019f0000050b011001c7000000020200002912f612f10000040f0000006003100270000004bf03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000305700029000008a10000613d000000000801034f0000000309000029000000008a08043c0000000009a90436000000000059004b0000089d0000c13d000000000006004b000008ae0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000d250000613d0000001f01400039000000600110018f0000000301100029000100000001001d000004c30010009c000009110000213d0000000101000029000000400010043f000000200030008c00000cc40000413d00000003010000290000000002010433000004c20020009c00000cc40000213d000000000002004b00000c820000c13d000000010300002900000064013000390000051e02000041000000000021043500000044013000390000051f02000041000000000021043500000024013000390000002d0200003900000000002104350000050a010000410000000000130435000000040130003900000020020000390000000000210435000004bf0030009c000004bf03008041000000400130021000000520011001c7000012f800010430000000440020008c00000cc40000413d0000000002000416000000000002004b00000cc40000c13d0000002402100370000000000202043b000500000002001d000004c20020009c00000cc40000213d0000000401100370000000000101043b000000000010043f000000200000043f0000004002000039000000000100001912f612c40000040f0000000502000029000000000020043f000000200010043f0000000001000019000000400200003912f612c40000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f0000050201000041000012f70001042e000000640020008c00000cc40000413d0000000003000416000000000003004b00000cc40000c13d0000000403100370000000000503043b000004bf0050009c00000cc40000213d0000002403100370000000000303043b000004c20030009c00000cc40000213d0000004404100370000000000704043b000004c30070009c00000cc40000213d0000002304700039000000000024004b00000cc40000813d0000000408700039000000000481034f000000000604043b000004c30060009c000009110000213d0000001f0960003900000527099001970000003f099000390000052709900197000004ff0090009c00000a390000a13d0000051301000041000000000010043f0000004101000039000000040010043f0000051401000041000012f8000104300000000001000416000000000001004b00000cc40000c13d0000000f01000039000000000101041a000000800010043f0000050201000041000012f70001042e000000800010043f000000000004004b000009340000613d000000000030043f000000000001004b0000098b0000c13d0000002002000039000009960000013d0000051501000041000000800010043f0000051601000041000012f800010430000005250010009c00000000020000390000000102006039000005260010009c00000001022061bf000000010120018f000000800010043f0000050201000041000012f70001042e0000052802200197000000a00020043f000000000001004b00000040020000390000002002006039000009960000013d0000000501000029000004c201100197000500000001001d000000000010043f0000050f01000041000000200010043f000000040000006b000009bb0000c13d0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000101041a000000ff0010019000000c5b0000613d0000000501000029000000000010043f0000050f01000041000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000201041a0000052802200197000000000021041b0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c9011001c70000800d020000390000000403000039000005100400004100000500050000410000000506000029000000000700041112f612ec0000040f000000010020019000000cc40000613d0000050001000041000000000010043f0000000101000039000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000050200002912f6123a0000040f0000000001000019000012f70001042e0000000101000039000000000001004b0000000001000039000000010100c039000000400200043d0000000000120435000004bf0020009c000004bf02008041000000400120021000000507011001c7000012f70001042e000005030200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b0000098d0000413d0000004002300039000000800100003912f60e960000040f0000002001000039000000400200043d000500000002001d000000000212043600000080010000390000056d0000013d0000000401000029000000000010043f000000200000043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b0000000502000029000000000020043f000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000101041a000000ff0110018f000009810000013d0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000101041a000000ff0010019000000c5b0000c13d0000000501000029000000000010043f0000050f01000041000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000201041a000005280220019700000001022001bf000000000021041b0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c9011001c70000800d020000390000000403000039000004ca0400004100000500050000410000000506000029000000000700041112f612ec0000040f000000010020019000000cc40000613d0000050001000041000000000010043f0000000101000039000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000201043b0000000501000029000000000010043f000400000002001d0000000101200039000300000001001d000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000101041a000000000001004b00000c5b0000c13d0000000401000029000000000101041a000200000001001d000004c30010009c000009110000213d000000020100002900000001011000390000000402000029000000000012041b000000000020043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b00000002011000290000000502000029000000000021041b0000000401000029000000000101041a000400000001001d000000000020043f0000000301000029000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b0000000402000029000000000021041b00000c5b0000013d0000000501000029000000040200002912f6113d0000040f0000000001000019000012f70001042e000000000001042f0000008009900039000000400090043f000000800060043f00000000076700190000002407700039000000000027004b00000cc40000213d0000002002800039000000000221034f00000527076001980000001f0860018f000000a00170003900000a4c0000613d000000a009000039000000000a02034f00000000ab0a043c0000000009b90436000000000019004b00000a480000c13d000000000008004b00000a590000613d000000000272034f0000000307800210000000000801043300000000087801cf000000000878022f000000000202043b0000010007700089000000000272022f00000000027201cf000000000282019f0000000000210435000000a00160003900000000000104350000001001000039000000000201041a000000ff0020019000000a8e0000c13d000004bf05500197000005280220019700000001022001bf000000000021041b0000000201000039000000000201041a000004c502200197000000000252019f000000000021041b000000800200043d000004c30020009c000009110000213d0000000301000039000000000601041a000000010060019000000001056002700000007f0550618f0000001f0050008c00000000070000390000000107002039000000000676013f00000001006001900000035c0000c13d000000200050008c00000a860000413d0000001f0620003900000005066002700000050c0660009a000000200020008c00000503060040410000001f0550003900000005055002700000050c0550009a000000000056004b00000a860000813d000000000006041b0000000106600039000000000056004b00000a820000413d0000001f0020008c00000bb90000a13d000000000010043f000005270520019800000bd00000c13d000000a006000039000005030400004100000bde0000013d000000400100043d00000044021000390000050903000041000000000032043500000024021000390000001c0300003900000000003204350000050a02000041000000000021043500000004021000390000002003000039000006610000013d0000001f0530018f000004c106300198000000400200043d000000000462001900000aa50000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000aa10000c13d000000000005004b00000ab20000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000004bf0020009c000004bf020080410000004002200210000000000112019f000012f800010430000000020000006b000000000100001900000abd0000613d00000003010000290000000001010433000000020400002900000003024002100000052a0220027f0000052a02200167000000000121016f0000000102400210000000000121019f00000ae00000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000040600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000acb0000c13d000000020020006c00000add0000813d00000002020000290000000302200210000000f80220018f0000052a0220027f0000052a0220016700000004033000290000000003030433000000000223016f000000000021041b0000000201000029000000010110021000000001011001bf0000000302000039000000000012041b0000000501000029000004c201100197000500000001001d000000000010043f000004c701000041000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000101041a000000ff0010019000000b5e0000c13d0000000501000029000000000010043f000004c701000041000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000201041a000005280220019700000001022001bf000000000021041b0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c9011001c70000800d0200003900000004030000390000000007000411000004ca040000410000000005000019000000050600002912f612ec0000040f000000010020019000000cc40000613d000000000000043f0000000101000039000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000201043b0000000501000029000000000010043f000400000002001d0000000101200039000300000001001d000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000101041a000000000001004b00000b5e0000c13d0000000401000029000000000101041a000200000001001d000004c30010009c000009110000213d000000020100002900000001011000390000000402000029000000000012041b000000000020043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b00000002011000290000000502000029000000000021041b0000000401000029000000000101041a000400000001001d000000000020043f0000000301000029000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b0000000402000029000000000021041b000000800100043d000001400000044300000160001004430000002001000039000001000010044300000001010000390000012000100443000004cb01000041000012f70001042e000000000032041b000000000010043f0000000a01000039000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000400000001001d000000800100043d000300000001001d000004c30010009c000009110000213d0000000401000029000000000101041a000000010010019000000001021002700000007f0220618f000200000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000035c0000c13d0000000201000029000000200010008c00000ba50000413d0000000401000029000000000010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d00000003030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000002010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000ba50000813d000000000002041b0000000102200039000000000012004b00000ba10000413d00000003010000290000001f0010008c00000c750000a13d0000000401000029000000000010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000200200008a0000000302200180000000000101043b00000d770000c13d000000a00300003900000d850000013d000000000002004b000000000400001900000bbd0000613d000000a00400043d00000003052002100000052a0550027f0000052a05500167000000000454016f0000000102200210000000000224019f00000be90000013d0000001f0530018f000004c106300198000000400200043d000000000462001900000aa50000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000bcb0000c13d00000aa50000013d00000503040000410000002007000039000000010650008a00000005066002700000050d0660009a000000000807001900000080077000390000000007070433000000000074041b00000020078000390000000104400039000000000064004b00000bd50000c13d000000a006800039000000000025004b00000be70000813d0000000305200210000000f80550018f0000052a0550027f0000052a055001670000000006060433000000000556016f000000000054041b000000010220021000000001022001bf000000000021041b000004c201300197000500000001001d000000000010043f000004c701000041000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000101041a000000ff0010019000000c5b0000c13d0000000501000029000000000010043f000004c701000041000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000201041a000005280220019700000001022001bf000000000021041b0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c9011001c70000800d0200003900000004030000390000000007000411000004ca040000410000000005000019000000050600002912f612ec0000040f000000010020019000000cc40000613d000000000000043f0000000101000039000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000201043b0000000501000029000000000010043f000400000002001d0000000101200039000300000001001d000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000000000101041a000000000001004b00000c5b0000c13d0000000401000029000000000101041a000200000001001d000004c30010009c000009110000213d000000020100002900000001011000390000000402000029000000000012041b000000000020043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b00000002011000290000000502000029000000000021041b0000000401000029000000000101041a000400000001001d000000000020043f0000000301000029000000200010043f000000000100041400000a270000013d0000000001000019000012f70001042e000000030000006b000000000100001900000c610000613d000000a00100043d000000030400002900000003024002100000052a0220027f0000052a02200167000000000121016f0000000102400210000000000121019f00000ced0000013d000000030000006b000000000100001900000c6d0000613d000000a00100043d000000030400002900000003024002100000052a0220027f0000052a02200167000000000121016f0000000102400210000000000121019f00000d4c0000013d000000030000006b000000000100001900000c790000613d000000a00100043d000000030400002900000003024002100000052a0220027f0000052a02200167000000000121016f0000000102400210000000000121019f00000d920000013d000100030000002d0000000104000029000100000004001d0000002401400039000000050300002900000000003104350000051d010000410000000000140435000000040140003900000004030000290000000000310435000004bf0040009c000004bf01000041000000000104401900000040011002100000000003000414000004bf0030009c000004bf03008041000000c003300210000000000113019f00000506011001c712f612f10000040f0000006003100270000004bf03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000010570002900000ca60000613d000000000801034f0000000109000029000000008a08043c0000000009a90436000000000059004b00000ca20000c13d000000000006004b00000cb30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000cc60000613d0000001f01400039000000600110018f0000000101100029000004c30010009c000009110000213d000000400010043f000000200030008c00000cc40000413d00000001010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000009810000613d0000000001000019000012f8000104300000001f0530018f000004c106300198000000400200043d000000000462001900000aa50000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000ccd0000c13d00000aa50000013d000000010320008a0000000503300270000000000331001900000001033000390000002005000039000000000405001900000080055000390000000005050433000000000051041b00000020054000390000000101100039000000000031004b00000cd70000c13d000000a003400039000000030020006c00000cea0000813d00000003020000290000000302200210000000f80220018f0000052a0220027f0000052a022001670000000003030433000000000223016f000000000021041b0000000301000029000000010110021000000001011001bf0000000402000029000000000012041b0000004002000039000000400100043d00000000022104360000004004100039000000800300043d00000000003404350000006004100039000000000003004b00000d000000613d00000000050000190000000006450019000000a007500039000000000707043300000000007604350000002005500039000000000035004b00000cf90000413d00000000044300190000000000040435000000050400002900000000004204350000001f0230003900000527022001970000006002200039000004bf0020009c000004bf020080410000006002200210000004bf0010009c000004bf010080410000004001100210000000000112019f0000000002000414000004bf0020009c000004bf02008041000000c002200210000000000112019f000004c9011001c70000800d02000039000000010300003900000501040000410000023c0000013d000000020000006b000000000100001900000d1d0000613d00000004010000290000000001010433000000020400002900000003024002100000052a0220027f0000052a02200167000000000121016f0000000102400210000000000121019f00000dd80000013d0000001f0530018f000004c106300198000000400200043d000000000462001900000aa50000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d2c0000c13d00000aa50000013d000000010320008a0000000503300270000000000331001900000001033000390000002005000039000000000405001900000080055000390000000005050433000000000051041b00000020054000390000000101100039000000000031004b00000d360000c13d000000a003400039000000030020006c00000d490000813d00000003020000290000000302200210000000f80220018f0000052a0220027f0000052a022001670000000003030433000000000223016f000000000021041b0000000301000029000000010110021000000001011001bf0000000402000029000000000012041b0000004002000039000000400100043d00000000022104360000004004100039000000800300043d00000000003404350000006004100039000000000003004b00000d5f0000613d00000000050000190000000006450019000000a007500039000000000707043300000000007604350000002005500039000000000035004b00000d580000413d00000000044300190000000000040435000000050400002900000000004204350000001f0230003900000527022001970000006002200039000004bf0020009c000004bf020080410000006002200210000004bf0010009c000004bf010080410000004001100210000000000112019f0000000002000414000004bf0020009c000004bf02008041000000c002200210000000000112019f000004c9011001c70000800d02000039000000010300003900000512040000410000023c0000013d000000010320008a0000000503300270000000000331001900000001033000390000002005000039000000000405001900000080055000390000000005050433000000000051041b00000020054000390000000101100039000000000031004b00000d7c0000c13d000000a003400039000000030020006c00000d8f0000813d00000003020000290000000302200210000000f80220018f0000052a0220027f0000052a022001670000000003030433000000000223016f000000000021041b0000000301000029000000010110021000000001011001bf0000000402000029000000000012041b0000004002000039000000400100043d00000000022104360000004004100039000000800300043d00000000003404350000006004100039000000000003004b00000da50000613d00000000050000190000000006450019000000a007500039000000000707043300000000007604350000002005500039000000000035004b00000d9e0000413d00000000044300190000000000040435000000050400002900000000004204350000001f0230003900000527022001970000006002200039000004bf0020009c000004bf020080410000006002200210000004bf0010009c000004bf010080410000004001100210000000000112019f0000000002000414000004bf0020009c000004bf02008041000000c002200210000000000112019f000004c9011001c70000800d02000039000000010300003900000508040000410000023c0000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000dc30000c13d000000020020006c00000dd50000813d00000002020000290000000302200210000000f80220018f0000052a0220027f0000052a0220016700000005033000290000000003030433000000000223016f000000000021041b0000000201000029000000010110021000000001011001bf0000000302000029000000000012041b0000000f02000039000000000102041a000000010310003a0000063b0000613d000000000032041b000000000010043f0000000b01000039000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000000101043b000300000001001d000000800100043d000200000001001d000004c30010009c000009110000213d0000000301000029000000000101041a000000010010019000000001021002700000007f0220618f000100000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000035c0000c13d0000000101000029000000200010008c00000e1c0000413d0000000301000029000000000010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d00000002030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000e1c0000813d000000000002041b0000000102200039000000000012004b00000e180000413d00000002010000290000001f0010008c00000e300000a13d0000000301000029000000000010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000cc40000613d000000200200008a0000000202200180000000000101043b00000e3c0000c13d000000a00300003900000e4a0000013d000000020000006b000000000100001900000e340000613d000000a00100043d000000020400002900000003024002100000052a0220027f0000052a02200167000000000121016f0000000102400210000000000121019f00000e570000013d000000010320008a0000000503300270000000000331001900000001033000390000002005000039000000000405001900000080055000390000000005050433000000000051041b00000020054000390000000101100039000000000031004b00000e410000c13d000000a003400039000000020020006c00000e540000813d00000002020000290000000302200210000000f80220018f0000052a0220027f0000052a022001670000000003030433000000000223016f000000000021041b0000000201000029000000010110021000000001011001bf0000000302000029000000000012041b0000004002000039000000400100043d00000000022104360000004004100039000000800300043d00000000003404350000006004100039000000000003004b00000e6a0000613d00000000050000190000000006450019000000a007500039000000000707043300000000007604350000002005500039000000000035004b00000e630000413d000000000543001900000000000504350000001f033000390000052703300197000000000443001900000000031400490000000000320435000000050200002900000000030204330000000002340436000000000003004b000000040700002900000e7f0000613d000000000400001900000000052400190000000006740019000000000606043300000000006504350000002004400039000000000034004b00000e780000413d000000000423001900000000000404350000001f03300039000005270330019700000000021200490000000002320019000004bf0020009c000004bf020080410000006002200210000004bf0010009c000004bf010080410000004001100210000000000112019f0000000002000414000004bf0020009c000004bf02008041000000c002200210000000000112019f000004c9011001c70000800d02000039000000010300003900000504040000410000023c0000013d0000001f0220003900000527022001970000000001120019000000000021004b00000000020000390000000102004039000004c30010009c00000ea20000213d000000010020019000000ea20000c13d000000400010043f000000000001042d0000051301000041000000000010043f0000004101000039000000040010043f0000051401000041000012f80001043000000000030100190000001f01100039000000000021004b0000000004000019000004c404004041000004c405200197000004c401100197000000000651013f000000000051004b0000000001000019000004c401002041000004c40060009c000000000104c019000000000001004b00000ef00000613d0000000006000367000000000136034f000000000401043b0000052b0040009c00000eea0000813d0000001f0140003900000527011001970000003f011000390000052705100197000000400100043d0000000005510019000000000015004b00000000080000390000000108004039000004c30050009c00000eea0000213d000000010080019000000eea0000c13d000000400050043f000000000541043600000020033000390000000008430019000000000028004b00000ef00000213d000000000336034f00000527064001980000001f0740018f000000000265001900000eda0000613d000000000803034f0000000009050019000000008a08043c0000000009a90436000000000029004b00000ed60000c13d000000000007004b00000ee70000613d000000000363034f0000000306700210000000000702043300000000076701cf000000000767022f000000000303043b0000010006600089000000000363022f00000000036301cf000000000373019f000000000032043500000000024500190000000000020435000000000001042d0000051301000041000000000010043f0000004101000039000000040010043f0000051401000041000012f8000104300000000001000019000012f8000104300003000000000002000000000201041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000043004b00000f310000c13d000000400500043d0000000004650436000000000003004b00000f1c0000613d000100000004001d000300000006001d000200000005001d000000000010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f000000010020019000000f3d0000613d0000000306000029000000000006004b00000f220000613d000000000201043b0000000001000019000000020500002900000001070000290000000003170019000000000402041a000000000043043500000001022000390000002001100039000000000061004b00000f140000413d00000f240000013d00000528012001970000000000140435000000000006004b0000002001000039000000000100603900000f240000013d000000000100001900000002050000290000003f0110003900000527021001970000000001520019000000000021004b00000000020000390000000102004039000004c30010009c00000f370000213d000000010020019000000f370000c13d000000400010043f0000000001050019000000000001042d0000051301000041000000000010043f0000002201000039000000040010043f0000051401000041000012f8000104300000051301000041000000000010043f0000004101000039000000040010043f0000051401000041000012f8000104300000000001000019000012f80001043000000000430104340000000001320436000000000003004b00000f4b0000613d000000000200001900000000052100190000000006240019000000000606043300000000006504350000002002200039000000000032004b00000f440000413d000000000231001900000000000204350000001f0230003900000527022001970000000001210019000000000001042d0003000000000002000004c201100197000300000001001d000000000010043f000004c701000041000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f00000001002001900000109e0000613d000000000101043b000000000101041a000000ff0010019000000f660000613d0000000101000039000000000001042d0000001001000039000000000101041a0000ff000010019000000f7b0000613d0000000301000029000000000010043f0000050f01000041000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f00000001002001900000109e0000613d000000000101043b000000000101041a000000ff0110018f000000000001042d000005170100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000004bf0010009c000004bf01008041000000c00110021000000518011001c7000080050200003912f612f10000040f0000000100200190000010a60000613d000000000201043b000000400400043d000200000004001d00000044014000390000051903000041000000000031043500000024014000390000000c0300003900000000003104350000051a010000410000000000140435000000040140003900000020030000390000000000310435000004bf0040009c000004bf01000041000000000104401900000040011002100000000003000414000004bf0030009c000004bf03008041000000c003300210000000000113019f0000050b011001c7000004c202200197000100000002001d12f612f10000040f000000020b0000290000006003100270000004bf03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000fb40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000fb00000c13d000000000006004b00000fc10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000010a70000613d0000001f01400039000000600110018f0000000004b10019000000000014004b00000000010000390000000101004039000004c30040009c000010a00000213d0000000100100190000010a00000c13d000000400040043f000000200030008c0000109e0000413d00000000020b0433000004c20020009c0000109e0000213d000000000002004b0000105d0000c13d00000044014000390000051b0200004100000000002104350000002401400039000000190200003900000000002104350000051a010000410000000000140435000000040140003900000020020000390000000000210435000004bf0040009c000004bf01000041000000000104401900000040011002100000000002000414000004bf0020009c000004bf02008041000000c002200210000000000112019f0000050b011001c70000000102000029000200000004001d12f612f10000040f000000020b0000290000006003100270000004bf03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000ffd0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000ff90000c13d000000000006004b0000100a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000010bf0000613d0000001f01400039000000600110018f0000000004b10019000004c30040009c000010a00000213d000000400040043f000000200030008c0000109e0000413d00000000020b0433000004c20020009c0000109e0000213d000000000002004b0000105d0000c13d00000044014000390000051c02000041000000000021043500000024014000390000000b0200003900000000002104350000051a010000410000000000140435000000040140003900000020020000390000000000210435000004bf0040009c000004bf01000041000000000104401900000040011002100000000002000414000004bf0020009c000004bf02008041000000c002200210000000000112019f0000050b011001c70000000102000029000200000004001d12f612f10000040f000000020b0000290000006003100270000004bf03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000010410000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000103d0000c13d000000000006004b0000104e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000010cb0000613d0000001f01400039000000600110018f0000000004b10019000004c30040009c000010a00000213d000000400040043f000000200030008c0000109e0000413d00000000020b0433000004c20020009c0000109e0000213d000000000002004b000010e90000613d0000000303000029000200000004001d000000240140003900000000003104350000051d010000410000000000140435000000040140003900000500030000410000000000310435000004bf0040009c000004bf01000041000000000104401900000040011002100000000003000414000004bf0030009c000004bf03008041000000c003300210000000000113019f00000506011001c712f612f10000040f000000020b0000290000006003100270000004bf03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000010810000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000107d0000c13d000000000006004b0000108e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000010b30000613d0000001f01400039000000600110018f0000000001b10019000004c30010009c000010a00000213d000000400010043f000000200030008c0000109e0000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b00000f650000613d0000000001000019000012f8000104300000051301000041000000000010043f0000004101000039000000040010043f0000051401000041000012f800010430000000000001042f0000001f0530018f000004c106300198000000400200043d0000000004620019000010d60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010ae0000c13d000010d60000013d0000001f0530018f000004c106300198000000400200043d0000000004620019000010d60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010ba0000c13d000010d60000013d0000001f0530018f000004c106300198000000400200043d0000000004620019000010d60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010c60000c13d000010d60000013d0000001f0530018f000004c106300198000000400200043d0000000004620019000010d60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010d20000c13d000000000005004b000010e30000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000004bf0020009c000004bf020080410000004002200210000000000112019f000012f80001043000000064014000390000051e02000041000000000021043500000044014000390000051f02000041000000000021043500000024014000390000002d0200003900000000002104350000050a010000410000000000140435000000040140003900000020020000390000000000210435000004bf0040009c000004bf04008041000000400140021000000520011001c7000012f800010430000000400200043d0000002003200039000000200400003900000000004304350000000054010434000000400120003900000000004104350000006001200039000000000004004b0000110e0000613d000000000600001900000000071600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000011070000413d000000000541001900000000000504350000001f04400039000005270440019700000000042400490000000001140019000000200410008a00000000004204350000001f0110003900000527041001970000000001240019000000000041004b00000000040000390000000104004039000004c30010009c000011350000213d0000000100400190000011350000c13d000000400010043f000004bf0030009c000004bf0300804100000040013002100000000002020433000004bf0020009c000004bf020080410000006002200210000000000112019f0000000002000414000004bf0020009c000004bf02008041000000c002200210000000000112019f000004c9011001c7000080100200003912f612f10000040f00000001002001900000113b0000613d000000000101043b000000000001042d0000051301000041000000000010043f0000004101000039000000040010043f0000051401000041000012f8000104300000000001000019000012f8000104300006000000000002000600000002001d000500000001001d000000000010043f000000200000043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f00000001002001900000120b0000613d000000000101043b0000000602000029000004c202200197000600000002001d000000000020043f000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f00000001002001900000120b0000613d000000000101043b000000000101041a000000ff001001900000120a0000613d0000000501000029000000000010043f000000200000043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f00000001002001900000120b0000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f00000001002001900000120b0000613d000000000101043b000000000201041a0000052802200197000000000021041b0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c9011001c70000800d020000390000000403000039000000000700041100000510040000410000000505000029000000060600002912f612ec0000040f00000001002001900000120b0000613d0000000501000029000000000010043f0000000101000039000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f00000001002001900000120b0000613d000000000201043b0000000601000029000000000010043f000500000002001d0000000101200039000300000001001d000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f00000001002001900000120b0000613d0000000503000029000000000101043b000000000101041a000000000001004b0000120a0000613d000000000203041a000000000002004b0000120d0000613d000000000021004b000400000001001d000011ea0000613d000200000002001d000000000030043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f00000001002001900000120b0000613d00000004020000290001000100200092000000000101043b0000000504000029000000000204041a000000010020006c000012130000a13d0000000202000029000000010220008a0000000001120019000000000101041a000200000001001d000000000040043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f00000001002001900000120b0000613d000000000101043b00000001011000290000000202000029000000000021041b000000000020043f0000000301000029000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f00000001002001900000120b0000613d000000000101043b0000000402000029000000000021041b0000000503000029000000000103041a000400000001001d000000000001004b000012190000613d000000000030043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f00000001002001900000120b0000613d0000000402000029000000010220008a000000000101043b0000000001210019000000000001041b0000000501000029000000000021041b0000000601000029000000000010043f0000000301000029000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f00000001002001900000120b0000613d000000000101043b000000000001041b000000000001042d0000000001000019000012f8000104300000051301000041000000000010043f0000001101000039000000040010043f0000051401000041000012f8000104300000051301000041000000000010043f0000003201000039000000040010043f0000051401000041000012f8000104300000051301000041000000000010043f0000003101000039000000040010043f0000051401000041000012f8000104300001000000000002000000000301041a000100000002001d000000000023004b000012320000a13d000000000010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f0000000100200190000012380000613d000000000101043b00000001011000290000000002000019000000000001042d0000051301000041000000000010043f0000003201000039000000040010043f0000051401000041000012f8000104300000000001000019000012f8000104300006000000000002000300000002001d000000000020043f000600000001001d0000000101100039000400000001001d000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f0000000100200190000012af0000613d0000000603000029000000000101043b000000000101041a000000000001004b000012ae0000613d000000000203041a000000000002004b000012b10000613d000000000021004b000500000001001d0000128e0000613d000200000002001d000000000030043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f0000000100200190000012af0000613d00000005020000290001000100200092000000000101043b0000000604000029000000000204041a000000010020006c000012b70000a13d0000000202000029000000010220008a0000000001120019000000000101041a000200000001001d000000000040043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f0000000100200190000012af0000613d000000000101043b00000001011000290000000202000029000000000021041b000000000020043f0000000401000029000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f0000000100200190000012af0000613d000000000101043b0000000502000029000000000021041b0000000603000029000000000103041a000500000001001d000000000001004b000012bd0000613d000000000030043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c6011001c7000080100200003912f612f10000040f0000000100200190000012af0000613d0000000502000029000000010220008a000000000101043b0000000001210019000000000001041b0000000601000029000000000021041b0000000301000029000000000010043f0000000401000029000000200010043f0000000001000414000004bf0010009c000004bf01008041000000c001100210000004c8011001c7000080100200003912f612f10000040f0000000100200190000012af0000613d000000000101043b000000000001041b000000000001042d0000000001000019000012f8000104300000051301000041000000000010043f0000001101000039000000040010043f0000051401000041000012f8000104300000051301000041000000000010043f0000003201000039000000040010043f0000051401000041000012f8000104300000051301000041000000000010043f0000003101000039000000040010043f0000051401000041000012f800010430000000000001042f000004bf0010009c000004bf010080410000004001100210000004bf0020009c000004bf020080410000006002200210000000000112019f0000000002000414000004bf0020009c000004bf02008041000000c002200210000000000112019f000004c9011001c7000080100200003912f612f10000040f0000000100200190000012d70000613d000000000101043b000000000001042d0000000001000019000012f80001043000000517020000410000000000200443000000050110027000000000020100310000000400200443000000010101003100000024001004430000000001000414000004bf0010009c000004bf01008041000000c00110021000000518011001c7000080050200003912f612f10000040f0000000100200190000012eb0000613d000000000101043b000000000001042d000000000001042f000012ef002104210000000102000039000000000001042d0000000002000019000000000001042d000012f4002104230000000102000039000000000001042d0000000002000019000000000001042d000012f600000432000012f70001042e000012f80001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000200000000000000000000000000000000000020000000000000000000000000ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5020000000000000000000000000000000000004000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d00000002000000000000000000000000000000800000010000000000000000000000000000000000000000000000000000000000000000000000000086bfc13c00000000000000000000000000000000000000000000000000000000caf11fa800000000000000000000000000000000000000000000000000000000daa24ef500000000000000000000000000000000000000000000000000000000edf161c300000000000000000000000000000000000000000000000000000000edf161c400000000000000000000000000000000000000000000000000000000f5a24eec00000000000000000000000000000000000000000000000000000000f74bc1a700000000000000000000000000000000000000000000000000000000daa24ef600000000000000000000000000000000000000000000000000000000e094141900000000000000000000000000000000000000000000000000000000d53d817100000000000000000000000000000000000000000000000000000000d53d817200000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000caf11fa900000000000000000000000000000000000000000000000000000000cf7aae4000000000000000000000000000000000000000000000000000000000a217fdde00000000000000000000000000000000000000000000000000000000a3246ad200000000000000000000000000000000000000000000000000000000a3246ad300000000000000000000000000000000000000000000000000000000bd69dabb00000000000000000000000000000000000000000000000000000000ca15c87300000000000000000000000000000000000000000000000000000000a217fddf00000000000000000000000000000000000000000000000000000000a23220d10000000000000000000000000000000000000000000000000000000091d148530000000000000000000000000000000000000000000000000000000091d148540000000000000000000000000000000000000000000000000000000095a501f10000000000000000000000000000000000000000000000000000000086bfc13d000000000000000000000000000000000000000000000000000000009010d07c000000000000000000000000000000000000000000000000000000004b0bddd1000000000000000000000000000000000000000000000000000000007671114c0000000000000000000000000000000000000000000000000000000080cefab60000000000000000000000000000000000000000000000000000000080cefab70000000000000000000000000000000000000000000000000000000081b3bc3b0000000000000000000000000000000000000000000000000000000086bb91b6000000000000000000000000000000000000000000000000000000007671114d00000000000000000000000000000000000000000000000000000000769eeca000000000000000000000000000000000000000000000000000000000632b2c6b00000000000000000000000000000000000000000000000000000000632b2c6c0000000000000000000000000000000000000000000000000000000074b9982c000000000000000000000000000000000000000000000000000000004b0bddd20000000000000000000000000000000000000000000000000000000054fd4d5000000000000000000000000000000000000000000000000000000000257973e30000000000000000000000000000000000000000000000000000000036568abd0000000000000000000000000000000000000000000000000000000036568abe000000000000000000000000000000000000000000000000000000003a8debb000000000000000000000000000000000000000000000000000000000464ec28d00000000000000000000000000000000000000000000000000000000257973e4000000000000000000000000000000000000000000000000000000002f2ff15d000000000000000000000000000000000000000000000000000000002125ba01000000000000000000000000000000000000000000000000000000002125ba0200000000000000000000000000000000000000000000000000000000248a9ca30000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000000a84df10000000000000000000000000000000000000000000000000ffffffffffffff7ffb3231be112a9810d87b6e307a1f4ba88b91ae1ffb1f669ad6f3832974c930bc6f9b8d4014adf282c415fabf2e21564a4b5e12d207a5d78bdb3b27fa6eb269410000000000000000000000000000000000000020000000800000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b13ccedecfd5facd9a6919351fc6f21cf2d37f232c95b60d565aa0d3e5fc929cee2517d3f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000020000000000000000000000000d46dd1212533bce3bd611506ec0679bdeb89e0c79d1255a1c72a28a43e7f269f546869732063616e206f6e6c792062652063616c6c6564206f6e63650000000008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000003da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a53da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a40000000000000000000000000000000000000000000000000000000078a467d19ec6c1cd8b0c7a10501118ffb4723ef66d77599d4611ba49e923befa1f977f83f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171bffffffffffffffffffffffff0000000000000000000000000000000000000000135cf55549d8538a41f19f46cc85625da93e68b63484cca8fcb9aaf19e5201374e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000006697b232000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000800000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000524f4c455f4d414e41474552000000000000000000000000000000000000000074b9982c000000000000000000000000000000000000000000000000000000004d41494e4e45545f434841494e5f494d504c454d454e544552000000000000004c325f524543454956455200000000000000000000000000000000000000000091d148540000000000000000000000000000000000000000000000000000000074686f7269747920666f756e6400000000000000000000000000000000000000436f6d6d756e6974795265676973747279203a206e6f206869676865722061750000000000000000000000000000000000000084000000000000000000000000889b2ade33ec1ef6a9d0b1891c50aefe644e15f892e1a015204250a995591502436f6d6d756e6974795265676973747279203a20556e617574686f726973656400000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff5a05180f0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000007965db0b00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000010000000000000000f21518f2f29608922e3c8729540325d1fa9f779c01509eae634cf5858b5443eb
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f8274c5e5149a6e0fc5190483323a1b399896a8a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000049396893d0cc273b6cbd0f3830fea35c5963fd090000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d47616c617869732041646d696e00000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _galaxisRegistry (address): 0xF8274c5E5149a6e0FC5190483323a1B399896a8A
Arg [1] : _community_id (uint32): 0
Arg [2] : _community_admin (address): 0x49396893d0cc273B6cbd0f3830FEA35c5963FD09
Arg [3] : _community_name (string): Galaxis Admin
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000f8274c5e5149a6e0fc5190483323a1b399896a8a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 00000000000000000000000049396893d0cc273b6cbd0f3830fea35c5963fd09
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 47616c617869732041646d696e00000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.