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 | |||
---|---|---|---|---|---|---|
274624 | 48 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:
SP
Compiler Version
v0.8.26+commit.8a97fa7a
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GNU AGPLv3 pragma solidity ^0.8.26; import { ISP } from "../interfaces/ISP.sol"; import { ISPHook } from "../interfaces/ISPHook.sol"; import { ISPGlobalHook } from "../interfaces/ISPGlobalHook.sol"; import { Schema } from "../models/Schema.sol"; import { Attestation, OffchainAttestation } from "../models/Attestation.sol"; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SignatureChecker } from "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol"; import { MessageHashUtils } from "@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol"; import { UUPSUpgradeable } from "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol"; import { OwnableUpgradeable } from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; // solhint-disable var-name-mixedcase contract SP is ISP, UUPSUpgradeable, OwnableUpgradeable { /// @custom:storage-location erc7201:ethsign.SP struct SPStorage { bool paused; mapping(uint64 => Schema) schemaRegistry; mapping(uint64 => Attestation) attestationRegistry; mapping(string => OffchainAttestation) offchainAttestationRegistry; uint64 schemaCounter; uint64 attestationCounter; uint64 initialSchemaCounter; uint64 initialAttestationCounter; ISPGlobalHook globalHook; } // keccak256(abi.encode(uint256(keccak256("ethsign.SP")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant SPStorageLocation = 0x9f5ee6fb062129ebe4f4f93ab4866ee289599fbb940712219d796d503e3bd400; bytes32 private constant REGISTER_ACTION_NAME = "REGISTER"; bytes32 private constant REGISTER_BATCH_ACTION_NAME = "REGISTER_BATCH"; bytes32 private constant ATTEST_ACTION_NAME = "ATTEST"; bytes32 private constant ATTEST_BATCH_ACTION_NAME = "ATTEST_BATCH"; bytes32 private constant ATTEST_OFFCHAIN_ACTION_NAME = "ATTEST_OFFCHAIN"; bytes32 private constant ATTEST_OFFCHAIN_BATCH_ACTION_NAME = "ATTEST_OFFCHAIN_BATCH"; bytes32 private constant REVOKE_ACTION_NAME = "REVOKE"; bytes32 private constant REVOKE_BATCH_ACTION_NAME = "REVOKE_BATCH"; bytes32 private constant REVOKE_OFFCHAIN_ACTION_NAME = "REVOKE_OFFCHAIN"; bytes32 private constant REVOKE_OFFCHAIN_BATCH_ACTION_NAME = "REVOKE_OFFCHAIN_BATCH"; function _getSPStorage() internal pure returns (SPStorage storage $) { assembly { $.slot := SPStorageLocation } } /// @custom:oz-upgrades-unsafe-allow constructor constructor() { if (block.chainid != 31_337) { _disableInitializers(); } } function initialize(uint64 schemaCounter_, uint64 attestationCounter_) public initializer { SPStorage storage $ = _getSPStorage(); __Ownable_init(_msgSender()); $.schemaCounter = schemaCounter_; $.attestationCounter = attestationCounter_; $.initialSchemaCounter = schemaCounter_; $.initialAttestationCounter = attestationCounter_; } function setGlobalHook(address hook) external onlyOwner { _getSPStorage().globalHook = ISPGlobalHook(hook); } function setPause(bool paused) external onlyOwner { _getSPStorage().paused = paused; } function register( Schema memory schema, bytes calldata delegateSignature ) external override returns (uint64 schemaId) { bool delegateMode = delegateSignature.length != 0; if (delegateMode) { __checkDelegationSignature(schema.registrant, getDelegatedRegisterHash(schema), delegateSignature); } else { if (schema.registrant != _msgSender()) revert SchemaWrongRegistrant(); } schemaId = _register(schema); _callGlobalHook(); } function attest( Attestation calldata attestation, string calldata indexingKey, bytes calldata delegateSignature, bytes calldata extraData ) external override returns (uint64) { bool delegateMode = delegateSignature.length != 0; if (delegateMode) { __checkDelegationSignature(attestation.attester, getDelegatedAttestHash(attestation), delegateSignature); } (uint64 schemaId, uint64 attestationId) = _attest(attestation, indexingKey, delegateMode); ISPHook hook = __getResolverFromAttestationId(attestationId); if (address(hook) != address(0)) { hook.didReceiveAttestation(attestation.attester, schemaId, attestationId, extraData); } _callGlobalHook(); return attestationId; } function attestBatch( Attestation[] memory attestations, string[] memory indexingKeys, bytes memory delegateSignature, bytes memory extraData ) external override returns (uint64[] memory attestationIds) { bool delegateMode = delegateSignature.length != 0; address attester = attestations[0].attester; if (delegateMode) { __checkDelegationSignature(attester, getDelegatedAttestBatchHash(attestations), delegateSignature); } attestationIds = new uint64[](attestations.length); for (uint256 i = 0; i < attestations.length; i++) { if (delegateMode && attestations[i].attester != attester) { revert AttestationWrongAttester(); } (uint64 schemaId, uint64 attestationId) = _attest(attestations[i], indexingKeys[i], delegateMode); attestationIds[i] = attestationId; ISPHook hook = __getResolverFromAttestationId(attestationId); if (address(hook) != address(0)) { hook.didReceiveAttestation(attestations[i].attester, schemaId, attestationId, extraData); } } _callGlobalHook(); } function attest( Attestation calldata attestation, uint256 resolverFeesETH, string calldata indexingKey, bytes calldata delegateSignature, bytes calldata extraData ) external payable returns (uint64) { bool delegateMode = delegateSignature.length != 0; if (delegateMode) { __checkDelegationSignature(attestation.attester, getDelegatedAttestHash(attestation), delegateSignature); } (uint64 schemaId, uint64 attestationId) = _attest(attestation, indexingKey, delegateMode); ISPHook hook = __getResolverFromAttestationId(attestationId); if (address(hook) != address(0)) { hook.didReceiveAttestation{ value: resolverFeesETH }( attestation.attester, schemaId, attestationId, extraData ); } _callGlobalHook(); return attestationId; } function attestBatch( Attestation[] memory attestations, uint256[] memory resolverFeesETH, string[] memory indexingKeys, bytes memory delegateSignature, bytes memory extraData ) external payable override returns (uint64[] memory attestationIds) { bool delegateMode = delegateSignature.length != 0; address attester = attestations[0].attester; if (delegateMode) { __checkDelegationSignature(attester, getDelegatedAttestBatchHash(attestations), delegateSignature); } attestationIds = new uint64[](attestations.length); for (uint256 i = 0; i < attestations.length; i++) { if (delegateMode && attestations[i].attester != attester) { revert AttestationWrongAttester(); } (uint64 schemaId, uint64 attestationId) = _attest(attestations[i], indexingKeys[i], delegateMode); attestationIds[i] = attestationId; ISPHook hook = __getResolverFromAttestationId(attestationId); if (address(hook) != address(0)) { hook.didReceiveAttestation{ value: resolverFeesETH[i] }( attestations[i].attester, schemaId, attestationId, extraData ); } } _callGlobalHook(); } function attest( Attestation memory attestation, IERC20 resolverFeesERC20Token, uint256 resolverFeesERC20Amount, string memory indexingKey, bytes memory delegateSignature, bytes memory extraData ) external override returns (uint64) { bool delegateMode = delegateSignature.length != 0; if (delegateMode) { __checkDelegationSignature(attestation.attester, getDelegatedAttestHash(attestation), delegateSignature); } (uint64 schemaId, uint64 attestationId) = _attest(attestation, indexingKey, delegateMode); ISPHook hook = __getResolverFromAttestationId(attestationId); if (address(hook) != address(0)) { hook.didReceiveAttestation( attestation.attester, schemaId, attestationId, resolverFeesERC20Token, resolverFeesERC20Amount, extraData ); } _callGlobalHook(); return attestationId; } function attestBatch( Attestation[] memory attestations, IERC20[] memory resolverFeesERC20Tokens, uint256[] memory resolverFeesERC20Amount, string[] memory indexingKeys, bytes memory delegateSignature, bytes memory extraData ) external override returns (uint64[] memory attestationIds) { bool delegateMode = delegateSignature.length != 0; // address attester = attestations[0].attester; if (delegateMode) { __checkDelegationSignature( attestations[0].attester, getDelegatedAttestBatchHash(attestations), delegateSignature ); } attestationIds = new uint64[](attestations.length); for (uint256 i = 0; i < attestations.length; i++) { if (delegateMode && attestations[i].attester != attestations[0].attester) { revert AttestationWrongAttester(); } (uint64 schemaId, uint64 attestationId) = _attest(attestations[i], indexingKeys[i], delegateMode); attestationIds[i] = attestationId; ISPHook hook = __getResolverFromAttestationId(attestationId); if (address(hook) != address(0)) { hook.didReceiveAttestation( attestations[i].attester, schemaId, attestationId, resolverFeesERC20Tokens[i], resolverFeesERC20Amount[i], extraData ); } } _callGlobalHook(); } function attestOffchain( string calldata offchainAttestationId, address delegateAttester, bytes calldata delegateSignature ) external override { address attester = _msgSender(); if (delegateSignature.length != 0) { __checkDelegationSignature( delegateAttester, getDelegatedOffchainAttestHash(offchainAttestationId), delegateSignature ); attester = delegateAttester; } _attestOffchain(offchainAttestationId, attester); _callGlobalHook(); } function attestOffchainBatch( string[] calldata attestationIds, address delegateAttester, bytes calldata delegateSignature ) external override { address attester = _msgSender(); if (delegateSignature.length != 0) { __checkDelegationSignature( delegateAttester, getDelegatedOffchainAttestBatchHash(attestationIds), delegateSignature ); attester = delegateAttester; } for (uint256 i = 0; i < attestationIds.length; i++) { _attestOffchain(attestationIds[i], attester); } _callGlobalHook(); } function revoke( uint64 attestationId, string calldata reason, bytes calldata delegateSignature, bytes calldata extraData ) external override { address storageAttester = _getSPStorage().attestationRegistry[attestationId].attester; bool delegateMode = delegateSignature.length != 0; if (delegateMode) { __checkDelegationSignature( storageAttester, getDelegatedRevokeHash(attestationId, reason), delegateSignature ); } uint64 schemaId = _revoke(attestationId, reason, delegateMode); ISPHook hook = __getResolverFromAttestationId(attestationId); if (address(hook) != address(0)) { hook.didReceiveRevocation(storageAttester, schemaId, attestationId, extraData); } _callGlobalHook(); } function revokeBatch( uint64[] memory attestationIds, string[] memory reasons, bytes memory delegateSignature, bytes memory extraData ) external override { address currentAttester = _msgSender(); bool delegateMode = delegateSignature.length != 0; if (delegateMode) { address storageAttester = _getSPStorage().attestationRegistry[attestationIds[0]].attester; __checkDelegationSignature( storageAttester, getDelegatedRevokeBatchHash(attestationIds, reasons), delegateSignature ); currentAttester = storageAttester; } for (uint256 i = 0; i < attestationIds.length; i++) { address storageAttester = _getSPStorage().attestationRegistry[attestationIds[i]].attester; if (delegateMode && storageAttester != currentAttester) { revert AttestationWrongAttester(); } uint64 schemaId = _revoke(attestationIds[i], reasons[i], delegateMode); ISPHook hook = __getResolverFromAttestationId(attestationIds[i]); if (address(hook) != address(0)) { hook.didReceiveRevocation(storageAttester, schemaId, attestationIds[i], extraData); } } _callGlobalHook(); } function revoke( uint64 attestationId, string memory reason, uint256 resolverFeesETH, bytes memory delegateSignature, bytes memory extraData ) external payable override { address storageAttester = _getSPStorage().attestationRegistry[attestationId].attester; bool delegateMode = delegateSignature.length != 0; if (delegateMode) { __checkDelegationSignature( storageAttester, getDelegatedRevokeHash(attestationId, reason), delegateSignature ); } uint64 schemaId = _revoke(attestationId, reason, delegateMode); ISPHook hook = __getResolverFromAttestationId(attestationId); if (address(hook) != address(0)) { hook.didReceiveRevocation{ value: resolverFeesETH }(storageAttester, schemaId, attestationId, extraData); } _callGlobalHook(); } function revokeBatch( uint64[] memory attestationIds, string[] memory reasons, uint256[] memory resolverFeesETH, bytes memory delegateSignature, bytes memory extraData ) external payable override { address currentAttester = _msgSender(); bool delegateMode = delegateSignature.length != 0; if (delegateMode) { address storageAttester = _getSPStorage().attestationRegistry[attestationIds[0]].attester; __checkDelegationSignature( storageAttester, getDelegatedRevokeBatchHash(attestationIds, reasons), delegateSignature ); currentAttester = storageAttester; } for (uint256 i = 0; i < attestationIds.length; i++) { address storageAttester = _getSPStorage().attestationRegistry[attestationIds[i]].attester; if (delegateMode && storageAttester != currentAttester) { revert AttestationWrongAttester(); } uint64 schemaId = _revoke(attestationIds[i], reasons[i], delegateMode); ISPHook hook = __getResolverFromAttestationId(attestationIds[i]); if (address(hook) != address(0)) { hook.didReceiveRevocation{ value: resolverFeesETH[i] }( storageAttester, schemaId, attestationIds[i], extraData ); } } _callGlobalHook(); } function revoke( uint64 attestationId, string memory reason, IERC20 resolverFeesERC20Token, uint256 resolverFeesERC20Amount, bytes memory delegateSignature, bytes memory extraData ) external override { address storageAttester = _getSPStorage().attestationRegistry[attestationId].attester; bool delegateMode = delegateSignature.length != 0; if (delegateMode) { __checkDelegationSignature( storageAttester, getDelegatedRevokeHash(attestationId, reason), delegateSignature ); } uint64 schemaId = _revoke(attestationId, reason, delegateMode); ISPHook hook = __getResolverFromAttestationId(attestationId); if (address(hook) != address(0)) { hook.didReceiveRevocation( storageAttester, schemaId, attestationId, resolverFeesERC20Token, resolverFeesERC20Amount, extraData ); } _callGlobalHook(); } function revokeBatch( uint64[] memory attestationIds, string[] memory reasons, IERC20[] memory resolverFeesERC20Tokens, uint256[] memory resolverFeesERC20Amount, bytes memory delegateSignature, bytes memory extraData ) external override { address currentAttester = _msgSender(); bool delegateMode = delegateSignature.length != 0; if (delegateMode) { address storageAttester = _getSPStorage().attestationRegistry[attestationIds[0]].attester; __checkDelegationSignature( storageAttester, getDelegatedRevokeBatchHash(attestationIds, reasons), delegateSignature ); currentAttester = storageAttester; } for (uint256 i = 0; i < attestationIds.length; i++) { address storageAttester = _getSPStorage().attestationRegistry[attestationIds[i]].attester; if (delegateMode && storageAttester != currentAttester) { revert AttestationWrongAttester(); } uint64 schemaId = _revoke(attestationIds[i], reasons[i], delegateMode); ISPHook hook = __getResolverFromAttestationId(attestationIds[i]); if (address(hook) != address(0)) { hook.didReceiveRevocation( storageAttester, schemaId, attestationIds[i], resolverFeesERC20Tokens[i], resolverFeesERC20Amount[i], extraData ); } } _callGlobalHook(); } function revokeOffchain( string calldata offchainAttestationId, string calldata reason, bytes calldata delegateSignature ) external override { bool delegateMode = delegateSignature.length != 0; if (delegateMode) { address storageAttester = _getSPStorage().offchainAttestationRegistry[offchainAttestationId].attester; __checkDelegationSignature( storageAttester, getDelegatedOffchainRevokeHash(offchainAttestationId, reason), delegateSignature ); } _revokeOffchain(offchainAttestationId, reason, delegateMode); _callGlobalHook(); } function revokeOffchainBatch( string[] calldata offchainAttestationIds, string[] calldata reasons, bytes calldata delegateSignature ) external override { address currentAttester = _msgSender(); bool delegateMode = delegateSignature.length != 0; if (delegateMode) { address storageAttester = _getSPStorage().offchainAttestationRegistry[offchainAttestationIds[0]].attester; __checkDelegationSignature( storageAttester, getDelegatedOffchainRevokeBatchHash(offchainAttestationIds, reasons), delegateSignature ); currentAttester = storageAttester; } for (uint256 i = 0; i < offchainAttestationIds.length; i++) { address storageAttester = _getSPStorage().offchainAttestationRegistry[offchainAttestationIds[i]].attester; if (delegateMode && storageAttester != currentAttester) { revert AttestationWrongAttester(); } _revokeOffchain(offchainAttestationIds[i], reasons[i], delegateMode); } _callGlobalHook(); } function getSchema(uint64 schemaId) external view override returns (Schema memory) { SPStorage storage $ = _getSPStorage(); if (schemaId < $.initialSchemaCounter) revert LegacySPRequired(); return $.schemaRegistry[schemaId]; } function getAttestation(uint64 attestationId) external view override returns (Attestation memory) { SPStorage storage $ = _getSPStorage(); if (attestationId < $.initialAttestationCounter) revert LegacySPRequired(); return $.attestationRegistry[attestationId]; } function getOffchainAttestation(string calldata offchainAttestationId) external view returns (OffchainAttestation memory) { return _getSPStorage().offchainAttestationRegistry[offchainAttestationId]; } function schemaCounter() external view override returns (uint64) { return _getSPStorage().schemaCounter; } function attestationCounter() external view override returns (uint64) { return _getSPStorage().attestationCounter; } function version() external pure override returns (string memory) { return "1.1.3"; } function getDelegatedRegisterHash(Schema memory schema) public pure override returns (bytes32) { return keccak256(abi.encode(REGISTER_ACTION_NAME, schema)); } function getDelegatedAttestHash(Attestation memory attestation) public pure override returns (bytes32) { return keccak256(abi.encode(ATTEST_ACTION_NAME, attestation)); } function getDelegatedAttestBatchHash(Attestation[] memory attestations) public pure returns (bytes32) { return keccak256(abi.encode(ATTEST_BATCH_ACTION_NAME, attestations)); } function getDelegatedOffchainAttestHash(string memory offchainAttestationId) public pure override returns (bytes32) { return keccak256(abi.encode(ATTEST_OFFCHAIN_ACTION_NAME, offchainAttestationId)); } function getDelegatedOffchainAttestBatchHash(string[] memory offchainAttestationIds) public pure returns (bytes32) { return keccak256(abi.encode(ATTEST_OFFCHAIN_BATCH_ACTION_NAME, offchainAttestationIds)); } function getDelegatedRevokeHash( uint64 attestationId, string memory reason ) public pure override returns (bytes32) { return keccak256(abi.encode(REVOKE_ACTION_NAME, attestationId, reason)); } function getDelegatedRevokeBatchHash( uint64[] memory attestationIds, string[] memory reasons ) public pure returns (bytes32) { return keccak256(abi.encode(REVOKE_BATCH_ACTION_NAME, attestationIds, reasons)); } function getDelegatedOffchainRevokeHash( string memory offchainAttestationId, string memory reason ) public pure override returns (bytes32) { return keccak256(abi.encode(REVOKE_OFFCHAIN_ACTION_NAME, offchainAttestationId, reason)); } function getDelegatedOffchainRevokeBatchHash( string[] memory offchainAttestationIds, string[] memory reasons ) public pure returns (bytes32) { return keccak256(abi.encode(REVOKE_OFFCHAIN_BATCH_ACTION_NAME, offchainAttestationIds, reasons)); } function _callGlobalHook() internal { SPStorage storage $ = _getSPStorage(); if (address($.globalHook) != address(0)) $.globalHook.callHook(_msgData(), _msgSender()); } function _register(Schema memory schema) internal returns (uint64 schemaId) { SPStorage storage $ = _getSPStorage(); if ($.paused) revert Paused(); schemaId = $.schemaCounter++; schema.timestamp = uint64(block.timestamp); $.schemaRegistry[schemaId] = schema; emit SchemaRegistered(schemaId); } // solhint-disable-next-line code-complexity function _attest( Attestation memory attestation, string memory indexingKey, bool delegateMode ) internal returns (uint64 schemaId, uint64 attestationId) { SPStorage storage $ = _getSPStorage(); if ($.paused) revert Paused(); attestationId = $.attestationCounter++; attestation.attestTimestamp = uint64(block.timestamp); // In delegation mode, the attester is already checked ahead of time. if (!delegateMode && attestation.attester != _msgSender()) { revert AttestationWrongAttester(); } if (attestation.linkedAttestationId > 0 && !__attestationExists(attestation.linkedAttestationId)) { revert AttestationNonexistent(); } if ( attestation.linkedAttestationId != 0 && $.attestationRegistry[attestation.linkedAttestationId].attester != attestation.attester ) { revert AttestationWrongAttester(); } if (attestation.revoked || attestation.revokeTimestamp > 0) { revert AttestationAlreadyRevoked(); } Schema memory s = $.schemaRegistry[attestation.schemaId]; if (!__schemaExists(attestation.schemaId)) revert SchemaNonexistent(); if (s.maxValidFor > 0) { uint256 attestationValidFor = attestation.validUntil - block.timestamp; if (s.maxValidFor < attestationValidFor) { revert AttestationInvalidDuration(); } } $.attestationRegistry[attestationId] = attestation; emit AttestationMade(attestationId, indexingKey); return (attestation.schemaId, attestationId); } function _attestOffchain(string calldata offchainAttestationId, address attester) internal { SPStorage storage $ = _getSPStorage(); if ($.paused) revert Paused(); OffchainAttestation storage attestation = $.offchainAttestationRegistry[offchainAttestationId]; if (__offchainAttestationExists(offchainAttestationId)) { revert OffchainAttestationExists(); } attestation.timestamp = uint64(block.timestamp); attestation.attester = attester; emit OffchainAttestationMade(offchainAttestationId); } function _revoke( uint64 attestationId, string memory reason, bool delegateMode ) internal returns (uint64 schemaId) { SPStorage storage $ = _getSPStorage(); if ($.paused) revert Paused(); Attestation storage a = $.attestationRegistry[attestationId]; if (a.attester == address(0)) revert AttestationNonexistent(); // In delegation mode, the attester is already checked ahead of time. if (!delegateMode && a.attester != _msgSender()) revert AttestationWrongAttester(); Schema memory s = $.schemaRegistry[a.schemaId]; if (!s.revocable) revert AttestationIrrevocable(); if (a.revoked) revert AttestationAlreadyRevoked(); a.revoked = true; a.revokeTimestamp = uint64(block.timestamp); emit AttestationRevoked(attestationId, reason); return a.schemaId; } function _revokeOffchain( string calldata offchainAttestationId, string calldata reason, bool delegateMode ) internal { SPStorage storage $ = _getSPStorage(); if ($.paused) revert Paused(); OffchainAttestation storage attestation = $.offchainAttestationRegistry[offchainAttestationId]; if (!__offchainAttestationExists(offchainAttestationId)) { revert OffchainAttestationNonexistent(); } if (!delegateMode && attestation.attester != _msgSender()) { revert AttestationWrongAttester(); } if (attestation.timestamp == 1) { revert OffchainAttestationAlreadyRevoked(); } attestation.timestamp = 1; emit OffchainAttestationRevoked(offchainAttestationId, reason); } // solhint-disable-next-line no-empty-blocks function _authorizeUpgrade(address newImplementation) internal virtual override onlyOwner { } function __checkDelegationSignature( address delegateAttester, bytes32 hash, bytes memory delegateSignature ) internal view { if ( !SignatureChecker.isValidSignatureNow( delegateAttester, MessageHashUtils.toEthSignedMessageHash(hash), delegateSignature ) ) { revert InvalidDelegateSignature(); } } function __getResolverFromAttestationId(uint64 attestationId) internal view returns (ISPHook) { SPStorage storage $ = _getSPStorage(); Attestation memory a = $.attestationRegistry[attestationId]; Schema memory s = $.schemaRegistry[a.schemaId]; return s.hook; } function __schemaExists(uint64 schemaId) internal view returns (bool) { return _getSPStorage().schemaRegistry[schemaId].timestamp > 0; } function __attestationExists(uint64 attestationId) internal view returns (bool) { SPStorage storage $ = _getSPStorage(); return attestationId < $.attestationCounter; } function __offchainAttestationExists(string memory attestationId) internal view returns (bool) { SPStorage storage $ = _getSPStorage(); return $.offchainAttestationRegistry[attestationId].timestamp != 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /** * @title SIGN Attestation Protocol Resolver Interface * @author Jack Xu @ EthSign */ interface ISPHook { function didReceiveAttestation( address attester, uint64 schemaId, uint64 attestationId, bytes calldata extraData ) external payable; function didReceiveAttestation( address attester, uint64 schemaId, uint64 attestationId, IERC20 resolverFeeERC20Token, uint256 resolverFeeERC20Amount, bytes calldata extraData ) external; function didReceiveRevocation( address attester, uint64 schemaId, uint64 attestationId, bytes calldata extraData ) external payable; function didReceiveRevocation( address attester, uint64 schemaId, uint64 attestationId, IERC20 resolverFeeERC20Token, uint256 resolverFeeERC20Amount, bytes calldata extraData ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import { IVersionable } from "./IVersionable.sol"; import { Schema } from "../models/Schema.sol"; import { Attestation, OffchainAttestation } from "../models/Attestation.sol"; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /** * @title Sign Protocol Interface * @author Jack Xu @ EthSign */ interface ISP is IVersionable { event SchemaRegistered(uint64 schemaId); event AttestationMade(uint64 attestationId, string indexingKey); event AttestationRevoked(uint64 attestationId, string reason); event OffchainAttestationMade(string attestationId); event OffchainAttestationRevoked(string attestationId, string reason); /** * @dev 0x9e87fac8 */ error Paused(); /** * @dev 0x38f8c6c4 */ error SchemaNonexistent(); /** * @dev 0x71984561 */ error SchemaWrongRegistrant(); /** * @dev 0x8ac42f49 */ error AttestationIrrevocable(); /** * @dev 0x54681a13 */ error AttestationNonexistent(); /** * @dev 0xa65e02ed */ error AttestationInvalidDuration(); /** * @dev 0xd8c3da86 */ error AttestationAlreadyRevoked(); /** * @dev 0xa9ad2007 */ error AttestationWrongAttester(); /** * @dev 0xc83e3cdf */ error OffchainAttestationExists(); /** * @dev 0xa006519a */ error OffchainAttestationNonexistent(); /** * @dev 0xa0671d20 */ error OffchainAttestationAlreadyRevoked(); /** * @dev 0xfdf4e6f9 */ error InvalidDelegateSignature(); /** * @dev 0x5c34b9cc */ error LegacySPRequired(); /** * @notice Registers a Schema. * @dev Emits `SchemaRegistered`. * @param schema See `Schema`. * @param delegateSignature An optional ECDSA delegateSignature if this is a delegated attestation. Use `""` or `0x` * otherwise. * @return schemaId The assigned ID of the registered schema. */ function register(Schema memory schema, bytes calldata delegateSignature) external returns (uint64 schemaId); /** * @notice Makes an attestation. * @dev Emits `AttestationMade`. * @param attestation See `Attestation`. * @param indexingKey Used by the frontend to aid indexing. * @param delegateSignature An optional ECDSA delegateSignature if this is a delegated attestation. Use `""` or `0x` * otherwise. * @param extraData This is forwarded to the resolver directly. * @return attestationId The assigned ID of the attestation. */ function attest( Attestation calldata attestation, string calldata indexingKey, bytes calldata delegateSignature, bytes calldata extraData ) external returns (uint64 attestationId); /** * @notice Makes an attestation where the schema hook expects ETH payment. * @dev Emits `AttestationMade`. * @param attestation See `Attestation`. * @param resolverFeesETH Amount of funds to send to the hook. * @param indexingKey Used by the frontend to aid indexing. * @param delegateSignature An optional ECDSA delegateSignature if this is a delegated attestation. Use `""` or `0x` * otherwise. * @param extraData This is forwarded to the resolver directly. * @return attestationId The assigned ID of the attestation. */ function attest( Attestation calldata attestation, uint256 resolverFeesETH, string calldata indexingKey, bytes calldata delegateSignature, bytes calldata extraData ) external payable returns (uint64 attestationId); /** * @notice Makes an attestation where the schema hook expects ERC20 payment. * @dev Emits `AttestationMade`. * @param attestation See `Attestation`. * @param resolverFeesERC20Token ERC20 token address used for payment. * @param resolverFeesERC20Amount Amount of funds to send to the hook. * @param indexingKey Used by the frontend to aid indexing. * @param delegateSignature An optional ECDSA delegateSignature if this is a delegated attestation. Use `""` or `0x` * otherwise. * @param extraData This is forwarded to the resolver directly. * @return attestationId The assigned ID of the attestation. */ function attest( Attestation calldata attestation, IERC20 resolverFeesERC20Token, uint256 resolverFeesERC20Amount, string calldata indexingKey, bytes calldata delegateSignature, bytes calldata extraData ) external returns (uint64 attestationId); /** * @notice Timestamps an off-chain data ID. * @dev Emits `OffchainAttestationMade`. * @param offchainAttestationId The off-chain data ID. * @param delegateAttester An optional delegated attester that authorized the caller to attest on their behalf if * this is a delegated attestation. Use `address(0)` otherwise. * @param delegateSignature An optional ECDSA delegateSignature if this is a delegated attestation. Use `""` or `0x` * otherwise. Use `""` or `0x` otherwise. */ function attestOffchain( string calldata offchainAttestationId, address delegateAttester, bytes calldata delegateSignature ) external; /** * @notice Revokes an existing revocable attestation. * @dev Emits `AttestationRevoked`. Must be called by the attester. * @param attestationId An existing attestation ID. * @param reason The revocation reason. This is only emitted as an event to save gas. * @param delegateSignature An optional ECDSA delegateSignature if this is a delegated revocation. * @param extraData This is forwarded to the resolver directly. */ function revoke( uint64 attestationId, string calldata reason, bytes calldata delegateSignature, bytes calldata extraData ) external; /** * @notice Revokes an existing revocable attestation where the schema hook expects ERC20 payment. * @dev Emits `AttestationRevoked`. Must be called by the attester. * @param attestationId An existing attestation ID. * @param reason The revocation reason. This is only emitted as an event to save gas. * @param resolverFeesETH Amount of funds to send to the hook. * @param delegateSignature An optional ECDSA delegateSignature if this is a delegated revocation. * @param extraData This is forwarded to the resolver directly. */ function revoke( uint64 attestationId, string calldata reason, uint256 resolverFeesETH, bytes calldata delegateSignature, bytes calldata extraData ) external payable; /** * @notice Revokes an existing revocable attestation where the schema hook expects ERC20 payment. * @dev Emits `AttestationRevoked`. Must be called by the attester. * @param attestationId An existing attestation ID. * @param reason The revocation reason. This is only emitted as an event to save gas. * @param resolverFeesERC20Token ERC20 token address used for payment. * @param resolverFeesERC20Amount Amount of funds to send to the hook. * @param delegateSignature An optional ECDSA delegateSignature if this is a delegated revocation. * @param extraData This is forwarded to the resolver directly. */ function revoke( uint64 attestationId, string calldata reason, IERC20 resolverFeesERC20Token, uint256 resolverFeesERC20Amount, bytes calldata delegateSignature, bytes calldata extraData ) external; /** * @notice Revokes an existing offchain attestation. * @dev Emits `OffchainAttestationRevoked`. Must be called by the attester. * @param offchainAttestationId An existing attestation ID. * @param reason The revocation reason. This is only emitted as an event to save gas. * @param delegateSignature An optional ECDSA delegateSignature if this is a delegated revocation. */ function revokeOffchain( string calldata offchainAttestationId, string calldata reason, bytes calldata delegateSignature ) external; /** * @notice Batch attests. */ function attestBatch( Attestation[] calldata attestations, string[] calldata indexingKeys, bytes calldata delegateSignature, bytes calldata extraData ) external returns (uint64[] calldata attestationIds); /** * @notice Batch attests where the schema hook expects ETH payment. */ function attestBatch( Attestation[] calldata attestations, uint256[] calldata resolverFeesETH, string[] calldata indexingKeys, bytes calldata delegateSignature, bytes calldata extraData ) external payable returns (uint64[] calldata attestationIds); /** * @notice Batch attests where the schema hook expects ERC20 payment. */ function attestBatch( Attestation[] calldata attestations, IERC20[] calldata resolverFeesERC20Tokens, uint256[] calldata resolverFeesERC20Amount, string[] calldata indexingKeys, bytes calldata delegateSignature, bytes calldata extraData ) external returns (uint64[] calldata attestationIds); /** * @notice Batch timestamps off-chain data IDs. */ function attestOffchainBatch( string[] calldata offchainAttestationIds, address delegateAttester, bytes calldata delegateSignature ) external; /** * @notice Batch revokes revocable on-chain attestations. */ function revokeBatch( uint64[] calldata attestationIds, string[] calldata reasons, bytes calldata delegateSignature, bytes calldata extraData ) external; /** * @notice Batch revokes revocable on-chain attestations where the schema hook expects ETH payment. */ function revokeBatch( uint64[] calldata attestationIds, string[] calldata reasons, uint256[] calldata resolverFeesETH, bytes calldata delegateSignature, bytes calldata extraData ) external payable; /** * @notice Batch revokes revocable on-chain attestations where the schema hook expects ERC20 payment. */ function revokeBatch( uint64[] calldata attestationIds, string[] calldata reasons, IERC20[] calldata resolverFeesERC20Tokens, uint256[] calldata resolverFeesERC20Amount, bytes calldata delegateSignature, bytes calldata extraData ) external; /** * @notice Batch revokes off-chain attestations. */ function revokeOffchainBatch( string[] calldata offchainAttestationIds, string[] calldata reasons, bytes calldata delegateSignature ) external; /** * @notice Returns the specified `Schema`. */ function getSchema(uint64 schemaId) external view returns (Schema calldata); /** * @notice Returns the specified `Attestation`. */ function getAttestation(uint64 attestationId) external view returns (Attestation calldata); /** * @notice Returns the specified `OffchainAttestation`. */ function getOffchainAttestation(string calldata offchainAttestationId) external view returns (OffchainAttestation calldata); /** * @notice Returns the hash that will be used to authorize a delegated registration. */ function getDelegatedRegisterHash(Schema memory schema) external pure returns (bytes32); /** * @notice Returns the hash that will be used to authorize a delegated attestation. */ function getDelegatedAttestHash(Attestation calldata attestation) external pure returns (bytes32); /** * @notice Returns the hash that will be used to authorize a delegated batch attestation. */ function getDelegatedAttestBatchHash(Attestation[] calldata attestations) external pure returns (bytes32); /** * @notice Returns the hash that will be used to authorize a delegated offchain attestation. */ function getDelegatedOffchainAttestHash(string calldata offchainAttestationId) external pure returns (bytes32); /** * @notice Returns the hash that will be used to authorize a delegated batch offchain attestation. */ function getDelegatedOffchainAttestBatchHash(string[] calldata offchainAttestationIds) external pure returns (bytes32); /** * @notice Returns the hash that will be used to authorize a delegated revocation. */ function getDelegatedRevokeHash(uint64 attestationId, string memory reason) external pure returns (bytes32); /** * @notice Returns the hash that will be used to authorize a delegated batch revocation. */ function getDelegatedRevokeBatchHash( uint64[] memory attestationIds, string[] memory reasons ) external pure returns (bytes32); /** * @notice Returns the hash that will be used to authorize a delegated offchain revocation. */ function getDelegatedOffchainRevokeHash( string memory offchainAttestationId, string memory reason ) external pure returns (bytes32); /** * @notice Returns the hash that will be used to authorize a delegated batch offchain revocation. */ function getDelegatedOffchainRevokeBatchHash( string[] memory offchainAttestationIds, string[] memory reasons ) external pure returns (bytes32); /** * @notice Returns the current schema counter. This is incremented for each `Schema` registered. */ function schemaCounter() external view returns (uint64); /** * @notice Returns the current on-chain attestation counter. This is incremented for each `Attestation` made. */ function attestationCounter() external view returns (uint64); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import { ISPHook } from "../interfaces/ISPHook.sol"; import { DataLocation } from "./DataLocation.sol"; /** * @title Schema * @author Jack Xu @ EthSign * @notice This struct represents an on-chain Schema that Attestations can conform to. * * `registrant`: The address that registered this schema. * `revocable`: Whether Attestations that adopt this Schema can be revoked. * `dataLocation`: Where `Schema.data` is stored. See `DataLocation.DataLocation`. * `maxValidFor`: The maximum number of seconds that an Attestation can remain valid. 0 means Attestations can be valid * forever. This is enforced through `Attestation.validUntil`. * `hook`: The `ISPHook` that is called at the end of every function. 0 means there is no hook set. See * `ISPHook`. * `timestamp`: When the schema was registered. This is automatically populated by `_register(...)`. * `data`: The raw schema that `Attestation.data` should follow. Since there is no way to enforce this, it is a `string` * for easy readability. */ struct Schema { address registrant; bool revocable; DataLocation dataLocation; uint64 maxValidFor; ISPHook hook; uint64 timestamp; string data; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; interface ISPGlobalHook { function callHook(bytes calldata msgData, address msgSender) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import { DataLocation } from "./DataLocation.sol"; /** * @title Attestation * @author Jack Xu @ EthSign * @notice This struct represents an on-chain attestation record. This record is not deleted after revocation. * * `schemaId`: The `Schema` that this Attestation is based on. It must exist. * `linkedAttestationId`: Useful if the current Attestation references a previous Attestation. It can either be 0 or an * existing attestation ID. * `attestTimestamp`: When the attestation was made. This is automatically populated by `_attest(...)`. * `revokeTimestamp`: When the attestation was revoked. This is automatically populated by `_revoke(...)`. * `attester`: The attester. At this time, the attester must be the caller of `attest()`. * `validUntil`: The expiration timestamp of the Attestation. Must respect `Schema.maxValidFor`. 0 indicates no * expiration date. * `dataLocation`: Where `Attestation.data` is stored. See `DataLocation.DataLocation`. * `revoked`: If the Attestation has been revoked. It is possible to make a revoked Attestation. * `recipients`: The intended ABI-encoded recipients of this Attestation. This is of type `bytes` to support non-EVM * repicients. * `data`: The raw data of the Attestation based on `Schema.schema`. There is no enforcement here, however. Recommended * to use `abi.encode`. */ struct Attestation { uint64 schemaId; uint64 linkedAttestationId; uint64 attestTimestamp; uint64 revokeTimestamp; address attester; uint64 validUntil; DataLocation dataLocation; bool revoked; bytes[] recipients; bytes data; } /** * @title OffchainAttestation * @author Jack Xu @ EthSign * @notice This struct represents an off-chain attestation record. This record is not deleted after revocation. * * `attester`: The attester. At this time, the attester must be the caller of `attestOffchain()`. * `timestamp`: The `block.timestamp` of the function call. */ struct OffchainAttestation { address attester; uint64 timestamp; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol"; import {Initializable} from "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable { /// @custom:storage-location erc7201:openzeppelin.storage.Ownable struct OwnableStorage { address _owner; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Ownable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant OwnableStorageLocation = 0x9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300; function _getOwnableStorage() private pure returns (OwnableStorage storage $) { assembly { $.slot := OwnableStorageLocation } } /** * @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. */ function __Ownable_init(address initialOwner) internal onlyInitializing { __Ownable_init_unchained(initialOwner); } function __Ownable_init_unchained(address initialOwner) internal onlyInitializing { 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) { OwnableStorage storage $ = _getOwnableStorage(); 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 { OwnableStorage storage $ = _getOwnableStorage(); address oldOwner = $._owner; $._owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/SignatureChecker.sol) pragma solidity ^0.8.20; import {ECDSA} from "./ECDSA.sol"; import {IERC1271} from "../../interfaces/IERC1271.sol"; /** * @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA * signatures from externally owned accounts (EOAs) as well as ERC1271 signatures from smart contract wallets like * Argent and Safe Wallet (previously Gnosis Safe). */ library SignatureChecker { /** * @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the * signature is validated against that smart contract using ERC1271, otherwise it's validated using `ECDSA.recover`. * * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus * change through time. It could return true at block N and false at block N+1 (or the opposite). */ function isValidSignatureNow(address signer, bytes32 hash, bytes memory signature) internal view returns (bool) { (address recovered, ECDSA.RecoverError error, ) = ECDSA.tryRecover(hash, signature); return (error == ECDSA.RecoverError.NoError && recovered == signer) || isValidERC1271SignatureNow(signer, hash, signature); } /** * @dev Checks if a signature is valid for a given signer and data hash. The signature is validated * against the signer smart contract using ERC1271. * * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus * change through time. It could return true at block N and false at block N+1 (or the opposite). */ function isValidERC1271SignatureNow( address signer, bytes32 hash, bytes memory signature ) internal view returns (bool) { (bool success, bytes memory result) = signer.staticcall( abi.encodeCall(IERC1271.isValidSignature, (hash, signature)) ); return (success && result.length >= 32 && abi.decode(result, (bytes32)) == bytes32(IERC1271.isValidSignature.selector)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol) pragma solidity ^0.8.20; import {Strings} from "../Strings.sol"; /** * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing. * * The library provides methods for generating a hash of a message that conforms to the * https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712] * specifications. */ library MessageHashUtils { /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing a bytes32 `messageHash` with * `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method. * * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with * keccak256, although any bytes32 value can be safely used because the final digest will * be re-hashed. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) { /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20) } } /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing an arbitrary `message` with * `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) { return keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message)); } /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x00` (data with intended validator). * * The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended * `validator` address. Then hashing the result. * * See {ECDSA-recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked(hex"19_00", validator, data)); } /** * @dev Returns the keccak256 digest of an EIP-712 typed data (EIP-191 version `0x01`). * * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with * `\x19\x01` and hashing the result. It corresponds to the hash signed by the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712. * * See {ECDSA-recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, hex"19_01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) digest := keccak256(ptr, 0x42) } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; /** * @title IVersionable * @author Jack Xu @ EthSign * @dev This interface helps contracts to keep track of their versioning for upgrade compatibility checks. */ interface IVersionable { function version() external pure returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/UUPSUpgradeable.sol) pragma solidity ^0.8.20; import {IERC1822Proxiable} from "@openzeppelin/contracts/interfaces/draft-IERC1822.sol"; import {ERC1967Utils} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol"; import {Initializable} from "./Initializable.sol"; /** * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy. * * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing * `UUPSUpgradeable` with a custom implementation of upgrades. * * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism. */ abstract contract UUPSUpgradeable is Initializable, IERC1822Proxiable { /// @custom:oz-upgrades-unsafe-allow state-variable-immutable address private immutable __self = address(this); /** * @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)` * and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called, * while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string. * If the getter returns `"5.0.0"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must * be the empty byte string if no function should be called, making it impossible to invoke the `receive` function * during an upgrade. */ string public constant UPGRADE_INTERFACE_VERSION = "5.0.0"; /** * @dev The call is from an unauthorized context. */ error UUPSUnauthorizedCallContext(); /** * @dev The storage `slot` is unsupported as a UUID. */ error UUPSUnsupportedProxiableUUID(bytes32 slot); /** * @dev Check that the execution is being performed through a delegatecall call and that the execution context is * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to * fail. */ modifier onlyProxy() { _checkProxy(); _; } /** * @dev Check that the execution is not being performed through a delegate call. This allows a function to be * callable on the implementing contract but not through proxies. */ modifier notDelegated() { _checkNotDelegated(); _; } function __UUPSUpgradeable_init() internal onlyInitializing { } function __UUPSUpgradeable_init_unchained() internal onlyInitializing { } /** * @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the * implementation. It is used to validate the implementation's compatibility when performing an upgrade. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier. */ function proxiableUUID() external view virtual notDelegated returns (bytes32) { return ERC1967Utils.IMPLEMENTATION_SLOT; } /** * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call * encoded in `data`. * * Calls {_authorizeUpgrade}. * * Emits an {Upgraded} event. * * @custom:oz-upgrades-unsafe-allow-reachable delegatecall */ function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy { _authorizeUpgrade(newImplementation); _upgradeToAndCallUUPS(newImplementation, data); } /** * @dev Reverts if the execution is not performed via delegatecall or the execution * context is not of a proxy with an ERC1967-compliant implementation pointing to self. * See {_onlyProxy}. */ function _checkProxy() internal view virtual { if ( address(this) == __self || // Must be called through delegatecall ERC1967Utils.getImplementation() != __self // Must be called through an active proxy ) { revert UUPSUnauthorizedCallContext(); } } /** * @dev Reverts if the execution is performed via delegatecall. * See {notDelegated}. */ function _checkNotDelegated() internal view virtual { if (address(this) != __self) { // Must not be called through delegatecall revert UUPSUnauthorizedCallContext(); } } /** * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by * {upgradeToAndCall}. * * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}. * * ```solidity * function _authorizeUpgrade(address) internal onlyOwner {} * ``` */ function _authorizeUpgrade(address newImplementation) internal virtual; /** * @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call. * * As a security check, {proxiableUUID} is invoked in the new implementation, and the return value * is expected to be the implementation slot in ERC1967. * * Emits an {IERC1967-Upgraded} event. */ function _upgradeToAndCallUUPS(address newImplementation, bytes memory data) private { try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) { if (slot != ERC1967Utils.IMPLEMENTATION_SLOT) { revert UUPSUnsupportedProxiableUUID(slot); } ERC1967Utils.upgradeToAndCall(newImplementation, data); } catch { // The implementation is not UUPS revert ERC1967Utils.ERC1967InvalidImplementation(newImplementation); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; /** * @title DataLocation * @author Jack Xu @ EthSign * @notice This enum indicates where `Schema.data` and `Attestation.data` are stored. */ enum DataLocation { ONCHAIN, ARWEAVE, IPFS, CUSTOM }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } 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.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; import {Math} from "./math/Math.sol"; import {SignedMath} from "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC1271.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC1271 standard signature validation method for * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271]. */ interface IERC1271 { /** * @dev Should return whether the signature provided is valid for the provided data * @param hash Hash of the data to be signed * @param signature Signature byte array associated with _data */ function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.20; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Storage of the initializable contract. * * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions * when using with upgradeable contracts. * * @custom:storage-location erc7201:openzeppelin.storage.Initializable */ struct InitializableStorage { /** * @dev Indicates that the contract has been initialized. */ uint64 _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool _initializing; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00; /** * @dev The contract is already initialized. */ error InvalidInitialization(); /** * @dev The contract is not initializing. */ error NotInitializing(); /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint64 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in * production. * * Emits an {Initialized} event. */ modifier initializer() { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); // Cache values to avoid duplicated sloads bool isTopLevelCall = !$._initializing; uint64 initialized = $._initialized; // Allowed calls: // - initialSetup: the contract is not in the initializing state and no previous version was // initialized // - construction: the contract is initialized at version 1 (no reininitialization) and the // current contract is just being deployed bool initialSetup = initialized == 0 && isTopLevelCall; bool construction = initialized == 1 && address(this).code.length == 0; if (!initialSetup && !construction) { revert InvalidInitialization(); } $._initialized = 1; if (isTopLevelCall) { $._initializing = true; } _; if (isTopLevelCall) { $._initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint64 version) { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing || $._initialized >= version) { revert InvalidInitialization(); } $._initialized = version; $._initializing = true; _; $._initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { _checkInitializing(); _; } /** * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}. */ function _checkInitializing() internal view virtual { if (!_isInitializing()) { revert NotInitializing(); } } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing) { revert InvalidInitialization(); } if ($._initialized != type(uint64).max) { $._initialized = type(uint64).max; emit Initialized(type(uint64).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint64) { return _getInitializableStorage()._initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _getInitializableStorage()._initializing; } /** * @dev Returns a pointer to the storage namespace. */ // solhint-disable-next-line var-name-mixedcase function _getInitializableStorage() private pure returns (InitializableStorage storage $) { assembly { $.slot := INITIALIZABLE_STORAGE } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.20; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS } /** * @dev The signature derives the `address(0)`. */ error ECDSAInvalidSignature(); /** * @dev The signature has an invalid length. */ error ECDSAInvalidSignatureLength(uint256 length); /** * @dev The signature has an S value that is in the upper half order. */ error ECDSAInvalidSignatureS(bytes32 s); /** * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not * return address(0) without also returning an error description. Errors are documented using an enum (error type) * and a bytes32 providing additional information about the error. * * If no error is returned, then the address can be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length)); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) { unchecked { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); // We do not check for an overflow here since the shift operation results in 0 or 1. uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError, bytes32) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS, s); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature, bytes32(0)); } return (signer, RecoverError.NoError, bytes32(0)); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s); _throwError(error, errorArg); return recovered; } /** * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided. */ function _throwError(RecoverError error, bytes32 errorArg) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert ECDSAInvalidSignature(); } else if (error == RecoverError.InvalidSignatureLength) { revert ECDSAInvalidSignatureLength(uint256(errorArg)); } else if (error == RecoverError.InvalidSignatureS) { revert ECDSAInvalidSignatureS(errorArg); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC1822.sol) pragma solidity ^0.8.20; /** * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified * proxy whose upgrades are fully controlled by the current implementation. */ interface IERC1822Proxiable { /** * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation * address. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. */ function proxiableUUID() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/ERC1967/ERC1967Utils.sol) pragma solidity ^0.8.20; import {IBeacon} from "../beacon/IBeacon.sol"; import {Address} from "../../utils/Address.sol"; import {StorageSlot} from "../../utils/StorageSlot.sol"; /** * @dev This abstract contract provides getters and event emitting update functions for * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. */ library ERC1967Utils { // We re-declare ERC-1967 events here because they can't be used directly from IERC1967. // This will be fixed in Solidity 0.8.21. At that point we should remove these events. /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Emitted when the beacon is changed. */ event BeaconUpgraded(address indexed beacon); /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev The `implementation` of the proxy is invalid. */ error ERC1967InvalidImplementation(address implementation); /** * @dev The `admin` of the proxy is invalid. */ error ERC1967InvalidAdmin(address admin); /** * @dev The `beacon` of the proxy is invalid. */ error ERC1967InvalidBeacon(address beacon); /** * @dev An upgrade function sees `msg.value > 0` that may be lost. */ error ERC1967NonPayable(); /** * @dev Returns the current implementation address. */ function getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value; } /** * @dev Stores a new address in the EIP1967 implementation slot. */ function _setImplementation(address newImplementation) private { if (newImplementation.code.length == 0) { revert ERC1967InvalidImplementation(newImplementation); } StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation; } /** * @dev Performs implementation upgrade with additional setup call if data is nonempty. * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected * to avoid stuck value in the contract. * * Emits an {IERC1967-Upgraded} event. */ function upgradeToAndCall(address newImplementation, bytes memory data) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); if (data.length > 0) { Address.functionDelegateCall(newImplementation, data); } else { _checkNonPayable(); } } /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** * @dev Returns the current admin. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103` */ function getAdmin() internal view returns (address) { return StorageSlot.getAddressSlot(ADMIN_SLOT).value; } /** * @dev Stores a new address in the EIP1967 admin slot. */ function _setAdmin(address newAdmin) private { if (newAdmin == address(0)) { revert ERC1967InvalidAdmin(address(0)); } StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin; } /** * @dev Changes the admin of the proxy. * * Emits an {IERC1967-AdminChanged} event. */ function changeAdmin(address newAdmin) internal { emit AdminChanged(getAdmin(), newAdmin); _setAdmin(newAdmin); } /** * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. * This is the keccak-256 hash of "eip1967.proxy.beacon" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Returns the current beacon. */ function getBeacon() internal view returns (address) { return StorageSlot.getAddressSlot(BEACON_SLOT).value; } /** * @dev Stores a new beacon in the EIP1967 beacon slot. */ function _setBeacon(address newBeacon) private { if (newBeacon.code.length == 0) { revert ERC1967InvalidBeacon(newBeacon); } StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon; address beaconImplementation = IBeacon(newBeacon).implementation(); if (beaconImplementation.code.length == 0) { revert ERC1967InvalidImplementation(beaconImplementation); } } /** * @dev Change the beacon and trigger a setup call if data is nonempty. * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected * to avoid stuck value in the contract. * * Emits an {IERC1967-BeaconUpgraded} event. * * CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since * it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for * efficiency. */ function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal { _setBeacon(newBeacon); emit BeaconUpgraded(newBeacon); if (data.length > 0) { Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data); } else { _checkNonPayable(); } } /** * @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract * if an upgrade doesn't perform an initialization call. */ function _checkNonPayable() private { if (msg.value > 0) { revert ERC1967NonPayable(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.20; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ```solidity * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(newImplementation.code.length > 0); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol) pragma solidity ^0.8.20; /** * @dev This is the interface that {BeaconProxy} expects of its beacon. */ interface IBeacon { /** * @dev Must return an address that can be used as a delegate call target. * * {UpgradeableBeacon} will check that this address is a contract. */ function implementation() external view returns (address); }
{ "optimizer": { "enabled": true, "mode": "3" }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[],"name":"AttestationAlreadyRevoked","type":"error"},{"inputs":[],"name":"AttestationInvalidDuration","type":"error"},{"inputs":[],"name":"AttestationIrrevocable","type":"error"},{"inputs":[],"name":"AttestationNonexistent","type":"error"},{"inputs":[],"name":"AttestationWrongAttester","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"InvalidDelegateSignature","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"LegacySPRequired","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"OffchainAttestationAlreadyRevoked","type":"error"},{"inputs":[],"name":"OffchainAttestationExists","type":"error"},{"inputs":[],"name":"OffchainAttestationNonexistent","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"Paused","type":"error"},{"inputs":[],"name":"SchemaNonexistent","type":"error"},{"inputs":[],"name":"SchemaWrongRegistrant","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"attestationId","type":"uint64"},{"indexed":false,"internalType":"string","name":"indexingKey","type":"string"}],"name":"AttestationMade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"attestationId","type":"uint64"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"AttestationRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"attestationId","type":"string"}],"name":"OffchainAttestationMade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"attestationId","type":"string"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"OffchainAttestationRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"schemaId","type":"uint64"}],"name":"SchemaRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"schemaId","type":"uint64"},{"internalType":"uint64","name":"linkedAttestationId","type":"uint64"},{"internalType":"uint64","name":"attestTimestamp","type":"uint64"},{"internalType":"uint64","name":"revokeTimestamp","type":"uint64"},{"internalType":"address","name":"attester","type":"address"},{"internalType":"uint64","name":"validUntil","type":"uint64"},{"internalType":"enum DataLocation","name":"dataLocation","type":"uint8"},{"internalType":"bool","name":"revoked","type":"bool"},{"internalType":"bytes[]","name":"recipients","type":"bytes[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Attestation","name":"attestation","type":"tuple"},{"internalType":"contract IERC20","name":"resolverFeesERC20Token","type":"address"},{"internalType":"uint256","name":"resolverFeesERC20Amount","type":"uint256"},{"internalType":"string","name":"indexingKey","type":"string"},{"internalType":"bytes","name":"delegateSignature","type":"bytes"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"name":"attest","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"schemaId","type":"uint64"},{"internalType":"uint64","name":"linkedAttestationId","type":"uint64"},{"internalType":"uint64","name":"attestTimestamp","type":"uint64"},{"internalType":"uint64","name":"revokeTimestamp","type":"uint64"},{"internalType":"address","name":"attester","type":"address"},{"internalType":"uint64","name":"validUntil","type":"uint64"},{"internalType":"enum DataLocation","name":"dataLocation","type":"uint8"},{"internalType":"bool","name":"revoked","type":"bool"},{"internalType":"bytes[]","name":"recipients","type":"bytes[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Attestation","name":"attestation","type":"tuple"},{"internalType":"string","name":"indexingKey","type":"string"},{"internalType":"bytes","name":"delegateSignature","type":"bytes"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"name":"attest","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"schemaId","type":"uint64"},{"internalType":"uint64","name":"linkedAttestationId","type":"uint64"},{"internalType":"uint64","name":"attestTimestamp","type":"uint64"},{"internalType":"uint64","name":"revokeTimestamp","type":"uint64"},{"internalType":"address","name":"attester","type":"address"},{"internalType":"uint64","name":"validUntil","type":"uint64"},{"internalType":"enum DataLocation","name":"dataLocation","type":"uint8"},{"internalType":"bool","name":"revoked","type":"bool"},{"internalType":"bytes[]","name":"recipients","type":"bytes[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Attestation","name":"attestation","type":"tuple"},{"internalType":"uint256","name":"resolverFeesETH","type":"uint256"},{"internalType":"string","name":"indexingKey","type":"string"},{"internalType":"bytes","name":"delegateSignature","type":"bytes"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"name":"attest","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"schemaId","type":"uint64"},{"internalType":"uint64","name":"linkedAttestationId","type":"uint64"},{"internalType":"uint64","name":"attestTimestamp","type":"uint64"},{"internalType":"uint64","name":"revokeTimestamp","type":"uint64"},{"internalType":"address","name":"attester","type":"address"},{"internalType":"uint64","name":"validUntil","type":"uint64"},{"internalType":"enum DataLocation","name":"dataLocation","type":"uint8"},{"internalType":"bool","name":"revoked","type":"bool"},{"internalType":"bytes[]","name":"recipients","type":"bytes[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Attestation[]","name":"attestations","type":"tuple[]"},{"internalType":"uint256[]","name":"resolverFeesETH","type":"uint256[]"},{"internalType":"string[]","name":"indexingKeys","type":"string[]"},{"internalType":"bytes","name":"delegateSignature","type":"bytes"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"name":"attestBatch","outputs":[{"internalType":"uint64[]","name":"attestationIds","type":"uint64[]"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"schemaId","type":"uint64"},{"internalType":"uint64","name":"linkedAttestationId","type":"uint64"},{"internalType":"uint64","name":"attestTimestamp","type":"uint64"},{"internalType":"uint64","name":"revokeTimestamp","type":"uint64"},{"internalType":"address","name":"attester","type":"address"},{"internalType":"uint64","name":"validUntil","type":"uint64"},{"internalType":"enum DataLocation","name":"dataLocation","type":"uint8"},{"internalType":"bool","name":"revoked","type":"bool"},{"internalType":"bytes[]","name":"recipients","type":"bytes[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Attestation[]","name":"attestations","type":"tuple[]"},{"internalType":"contract IERC20[]","name":"resolverFeesERC20Tokens","type":"address[]"},{"internalType":"uint256[]","name":"resolverFeesERC20Amount","type":"uint256[]"},{"internalType":"string[]","name":"indexingKeys","type":"string[]"},{"internalType":"bytes","name":"delegateSignature","type":"bytes"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"name":"attestBatch","outputs":[{"internalType":"uint64[]","name":"attestationIds","type":"uint64[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"schemaId","type":"uint64"},{"internalType":"uint64","name":"linkedAttestationId","type":"uint64"},{"internalType":"uint64","name":"attestTimestamp","type":"uint64"},{"internalType":"uint64","name":"revokeTimestamp","type":"uint64"},{"internalType":"address","name":"attester","type":"address"},{"internalType":"uint64","name":"validUntil","type":"uint64"},{"internalType":"enum DataLocation","name":"dataLocation","type":"uint8"},{"internalType":"bool","name":"revoked","type":"bool"},{"internalType":"bytes[]","name":"recipients","type":"bytes[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Attestation[]","name":"attestations","type":"tuple[]"},{"internalType":"string[]","name":"indexingKeys","type":"string[]"},{"internalType":"bytes","name":"delegateSignature","type":"bytes"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"name":"attestBatch","outputs":[{"internalType":"uint64[]","name":"attestationIds","type":"uint64[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"offchainAttestationId","type":"string"},{"internalType":"address","name":"delegateAttester","type":"address"},{"internalType":"bytes","name":"delegateSignature","type":"bytes"}],"name":"attestOffchain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"attestationIds","type":"string[]"},{"internalType":"address","name":"delegateAttester","type":"address"},{"internalType":"bytes","name":"delegateSignature","type":"bytes"}],"name":"attestOffchainBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"attestationCounter","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"attestationId","type":"uint64"}],"name":"getAttestation","outputs":[{"components":[{"internalType":"uint64","name":"schemaId","type":"uint64"},{"internalType":"uint64","name":"linkedAttestationId","type":"uint64"},{"internalType":"uint64","name":"attestTimestamp","type":"uint64"},{"internalType":"uint64","name":"revokeTimestamp","type":"uint64"},{"internalType":"address","name":"attester","type":"address"},{"internalType":"uint64","name":"validUntil","type":"uint64"},{"internalType":"enum DataLocation","name":"dataLocation","type":"uint8"},{"internalType":"bool","name":"revoked","type":"bool"},{"internalType":"bytes[]","name":"recipients","type":"bytes[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Attestation","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"schemaId","type":"uint64"},{"internalType":"uint64","name":"linkedAttestationId","type":"uint64"},{"internalType":"uint64","name":"attestTimestamp","type":"uint64"},{"internalType":"uint64","name":"revokeTimestamp","type":"uint64"},{"internalType":"address","name":"attester","type":"address"},{"internalType":"uint64","name":"validUntil","type":"uint64"},{"internalType":"enum DataLocation","name":"dataLocation","type":"uint8"},{"internalType":"bool","name":"revoked","type":"bool"},{"internalType":"bytes[]","name":"recipients","type":"bytes[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Attestation[]","name":"attestations","type":"tuple[]"}],"name":"getDelegatedAttestBatchHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"schemaId","type":"uint64"},{"internalType":"uint64","name":"linkedAttestationId","type":"uint64"},{"internalType":"uint64","name":"attestTimestamp","type":"uint64"},{"internalType":"uint64","name":"revokeTimestamp","type":"uint64"},{"internalType":"address","name":"attester","type":"address"},{"internalType":"uint64","name":"validUntil","type":"uint64"},{"internalType":"enum DataLocation","name":"dataLocation","type":"uint8"},{"internalType":"bool","name":"revoked","type":"bool"},{"internalType":"bytes[]","name":"recipients","type":"bytes[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Attestation","name":"attestation","type":"tuple"}],"name":"getDelegatedAttestHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string[]","name":"offchainAttestationIds","type":"string[]"}],"name":"getDelegatedOffchainAttestBatchHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string","name":"offchainAttestationId","type":"string"}],"name":"getDelegatedOffchainAttestHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string[]","name":"offchainAttestationIds","type":"string[]"},{"internalType":"string[]","name":"reasons","type":"string[]"}],"name":"getDelegatedOffchainRevokeBatchHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string","name":"offchainAttestationId","type":"string"},{"internalType":"string","name":"reason","type":"string"}],"name":"getDelegatedOffchainRevokeHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"registrant","type":"address"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"enum DataLocation","name":"dataLocation","type":"uint8"},{"internalType":"uint64","name":"maxValidFor","type":"uint64"},{"internalType":"contract ISPHook","name":"hook","type":"address"},{"internalType":"uint64","name":"timestamp","type":"uint64"},{"internalType":"string","name":"data","type":"string"}],"internalType":"struct Schema","name":"schema","type":"tuple"}],"name":"getDelegatedRegisterHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint64[]","name":"attestationIds","type":"uint64[]"},{"internalType":"string[]","name":"reasons","type":"string[]"}],"name":"getDelegatedRevokeBatchHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint64","name":"attestationId","type":"uint64"},{"internalType":"string","name":"reason","type":"string"}],"name":"getDelegatedRevokeHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string","name":"offchainAttestationId","type":"string"}],"name":"getOffchainAttestation","outputs":[{"components":[{"internalType":"address","name":"attester","type":"address"},{"internalType":"uint64","name":"timestamp","type":"uint64"}],"internalType":"struct OffchainAttestation","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"schemaId","type":"uint64"}],"name":"getSchema","outputs":[{"components":[{"internalType":"address","name":"registrant","type":"address"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"enum DataLocation","name":"dataLocation","type":"uint8"},{"internalType":"uint64","name":"maxValidFor","type":"uint64"},{"internalType":"contract ISPHook","name":"hook","type":"address"},{"internalType":"uint64","name":"timestamp","type":"uint64"},{"internalType":"string","name":"data","type":"string"}],"internalType":"struct Schema","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"schemaCounter_","type":"uint64"},{"internalType":"uint64","name":"attestationCounter_","type":"uint64"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"registrant","type":"address"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"enum DataLocation","name":"dataLocation","type":"uint8"},{"internalType":"uint64","name":"maxValidFor","type":"uint64"},{"internalType":"contract ISPHook","name":"hook","type":"address"},{"internalType":"uint64","name":"timestamp","type":"uint64"},{"internalType":"string","name":"data","type":"string"}],"internalType":"struct Schema","name":"schema","type":"tuple"},{"internalType":"bytes","name":"delegateSignature","type":"bytes"}],"name":"register","outputs":[{"internalType":"uint64","name":"schemaId","type":"uint64"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"attestationId","type":"uint64"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"delegateSignature","type":"bytes"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"attestationId","type":"uint64"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"contract IERC20","name":"resolverFeesERC20Token","type":"address"},{"internalType":"uint256","name":"resolverFeesERC20Amount","type":"uint256"},{"internalType":"bytes","name":"delegateSignature","type":"bytes"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"attestationId","type":"uint64"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"uint256","name":"resolverFeesETH","type":"uint256"},{"internalType":"bytes","name":"delegateSignature","type":"bytes"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"name":"revoke","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint64[]","name":"attestationIds","type":"uint64[]"},{"internalType":"string[]","name":"reasons","type":"string[]"},{"internalType":"bytes","name":"delegateSignature","type":"bytes"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"name":"revokeBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64[]","name":"attestationIds","type":"uint64[]"},{"internalType":"string[]","name":"reasons","type":"string[]"},{"internalType":"uint256[]","name":"resolverFeesETH","type":"uint256[]"},{"internalType":"bytes","name":"delegateSignature","type":"bytes"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"name":"revokeBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint64[]","name":"attestationIds","type":"uint64[]"},{"internalType":"string[]","name":"reasons","type":"string[]"},{"internalType":"contract IERC20[]","name":"resolverFeesERC20Tokens","type":"address[]"},{"internalType":"uint256[]","name":"resolverFeesERC20Amount","type":"uint256[]"},{"internalType":"bytes","name":"delegateSignature","type":"bytes"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"name":"revokeBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"offchainAttestationId","type":"string"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"delegateSignature","type":"bytes"}],"name":"revokeOffchain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"offchainAttestationIds","type":"string[]"},{"internalType":"string[]","name":"reasons","type":"string[]"},{"internalType":"bytes","name":"delegateSignature","type":"bytes"}],"name":"revokeOffchainBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"schemaCounter","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"hook","type":"address"}],"name":"setGlobalHook","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010011676d03cac3a27b17302cfa826a14322c70655bc2e7148d85caf7a907a000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0004000000000002001b00000000000200000000030200190000006004100270000010ac0d4001970003000000d103550002000000010355000010ac0040019d0000000100300190000000a80000c13d0000008004000039000000400040043f0000000400d0008c0000160c0000413d000000000301043b000000e003300270000010b50030009c00190000000d001d000000c60000a13d000010b60030009c000000f80000a13d000010b70030009c0000041b0000a13d000010b80030009c000006bd0000213d000010bc0030009c000010a30000613d000010bd0030009c00000beb0000613d000010be0030009c0000160c0000c13d0000004400d0008c0000160c0000413d0000000002000416000000000002004b0000160c0000c13d0000000402100370000000000302043b000010b10030009c0000160c0000213d000000040430003900000000034d0049000011060030009c0000160c0000213d000000e00030008c0000160c0000413d0000016003000039000000400030043f000000000241034f000000000502043b000010f00050009c0000160c0000213d000000800050043f0000002005400039000000000251034f000000000602043b000000000006004b0000000002000039000000010200c039000000000026004b0000160c0000c13d000000a00060043f0000002005500039000000000251034f000000000602043b000000030060008c0000160c0000213d000000c00060043f0000002005500039000000000251034f000000000602043b000010b10060009c0000160c0000213d000000e00060043f0000002005500039000000000251034f000000000602043b000010f00060009c0000160c0000213d000001000060043f0000002005500039000000000251034f000000000602043b000010b10060009c0000160c0000213d000001200060043f0000002002500039000000000221034f000000000502043b000010b10050009c0000160c0000213d00000000054500190000001f025000390000000000d2004b0000160c0000813d000000000251034f000000000402043b000010b10040009c0000164e0000213d0000001f024000390000114c022001970000003f022000390000114c06200197000011070060009c0000164e0000213d00000020055000390000016002600039000000400020043f000001600040043f00000000025400190000000000d2004b0000160c0000213d000000000651034f0000114c074001980000001f0840018f00000180057000390000007b0000613d0000018009000039000000000a06034f00000000a20a043c0000000009290436000000000059004b000000770000c13d000000000008004b000000880000613d000000000276034f0000000306800210000000000705043300000000076701cf000000000767022f000000000202043b0000010006600089000000000262022f00000000026201cf000000000272019f000000000025043500000180024000390000000000020435000001400030043f0000002402100370000000000302043b000010b10030009c00000019040000290000160c0000213d0000002302300039000000000042004b0000160c0000813d001700040030003d0000001701100360000000000101043b001800000001001d000010b10010009c0000160c0000213d0000001801300029001600240010003d000000160040006b0000160c0000213d000000800100043d001910f00010019b000000180000006b000025b70000c13d0000000001000411000000190010006b000025ed0000613d0000110801000041000000000010043f0000110901000041000042ac00010430000000a001000039000000400010043f0000000001000416000000000001004b0000160c0000c13d0000000001000410000000800010043f000010ad0100004100000000001004430000000001000414000010ac0010009c000010ac01008041000000c001100210000010ae011001c70000800b0200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b00007a690010008c000000e00000c13d000000800100043d000001400000044300000160001004430000002001000039000001000010044300000001010000390000012000100443000010b401000041000042ab0001042e000010d20030009c000002830000213d000010e00030009c000005360000213d000010e70030009c0000085e0000a13d000010e80030009c0000158d0000613d000010e90030009c000011210000613d000010ea0030009c0000160c0000c13d0000002400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000401100370000000000101043b000010b10010009c0000160c0000213d000000040110003900000000020d001942aa30c30000040f42aa35140000040f000015c80000013d000010af01000041000000000101041a000010b000100198000015b70000c13d000010b102100197000010b10020009c000000bd0000613d000010b1011001c7000010af02000041000000000012041b000010b101000041000000a00010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010b2011001c70000800d020000390000000103000039000010b30400004142aa429b0000040f0000000100200190000000bd0000c13d0000160c0000013d000010c50030009c000004050000213d000010cc0030009c0000083a0000a13d000010cd0030009c00000e890000613d000010ce0030009c00000b520000613d000010cf0030009c0000160c0000c13d000000c400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000403100370000000000203043b001800000002001d000010b10020009c0000160c0000213d0000002403100370000000000403043b000010b10040009c0000160c0000213d00000023034000390000000000d3004b0000160c0000813d0000000405400039000000000351034f000000000303043b000010b10030009c0000164e0000213d0000001f063000390000114c066001970000003f066000390000114c06600197000010ee0060009c0000164e0000213d00000024044000390000008006600039000000400060043f000000800030043f00000000044300190000000000d4004b0000160c0000213d0000002004500039000000000541034f0000114c063001980000001f0730018f000000a004600039000001310000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000048004b0000012d0000c13d000000000007004b0000013e0000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000a00330003900000000000304350000004403100370000000000203043b001700000002001d000010f00020009c00000019020000290000160c0000213d0000008403100370000000000403043b000010b10040009c0000160c0000213d0000002303400039000000000023004b0000160c0000813d0000000405400039000000000351034f000000000303043b000010b10030009c0000164e0000213d0000001f063000390000114c066001970000003f066000390000114c06600197000000400700043d0000000006670019001600000007001d000000000076004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d0000002407400039000000400060043f000000160400002900000000043404360000000006730019000000000026004b0000160c0000213d0000002005500039000000000651034f0000114c073001980000001f0830018f0000000005740019000001730000613d000000000906034f000000000a040019000000009b09043c000000000aba043600000000005a004b0000016f0000c13d000000000008004b000001800000613d000000000676034f0000000307800210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f000000000065043500000000033400190000000000030435000000a403100370000000000403043b000010b10040009c00000019020000290000160c0000213d0000002303400039000000000023004b0000160c0000813d0000000405400039000000000351034f000000000303043b000010b10030009c0000164e0000213d0000001f063000390000114c066001970000003f066000390000114c06600197000000400700043d0000000006670019001500000007001d000000000076004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d0000002404400039000000400060043f00000015060000290000000006360436001400000006001d0000000004430019000000000024004b0000160c0000213d0000002002500039000000000221034f0000114c043001980000001f0530018f0000001401400029000001b10000613d000000000602034f0000001407000029000000006806043c0000000007870436000000000017004b000001ad0000c13d000000000005004b000001be0000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000000140130002900000000000104350000001801000029000000000010043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d00000016020000290000000002020433000000000002004b0000000002000039000000010200c039001900000002001d000000000101043b0000000101100039000000000101041a001310f00010019b000002170000613d000000400100043d0000006002100039000000600300003900000000003204350000004002100039000000180300002900000000003204350000002002100039000011040300004100000000003204350000008004100039000000800300043d0000000000340435000000a004100039000000000003004b000001f00000613d00000000050000190000000006450019000000a007500039000000000707043300000000007604350000002005500039000000000035004b000001e90000413d000000000443001900000000000404350000001f033000390000114c0330019700000080043000390000000000410435000000bf033000390000114c043001970000000003140019000000000043004b00000000040000390000000104004039000010b10030009c0000164e0000213d00000001004001900000164e0000c13d000000400030043f000010ac0020009c000010ac0200804100000040022002100000000001010433000010ac0010009c000010ac010080410000006001100210000000000121019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000201043b0000001301000029000000160300002942aa399a0000040f00000080020000390000001801000029000000190300002942aa3c150000040f001600000001001d000000180100002942aa3d1f0000040f001900000001001d000000000001004b00000b4f0000613d00001100010000410000000000100443000000190100002900000004001004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001101011001c7000080020200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000000001004b0000160c0000613d000000400400043d0000110201000041000000000014043500000064010000390000000201100367000000000101043b000000a402400039000000c0030000390000000000320435000000840240003900000000001204350000001701000029000010f0011001970000006402400039000000000012043500000044014000390000001802000029000000000021043500000024014000390000001602000029000000000021043500000004014000390000001302000029000000000021043500000015010000290000000001010433000000c4024000390000000000120435001700000004001d000000e402400039000000000001004b00000014060000290000025a0000613d000000000300001900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b000002530000413d0000000002210019000000000002043500000000020004140000001903000029000000040030008c00002b120000613d0000001f011000390000114c01100197000000e401100039000010ac0010009c000010ac0100804100000060011002100000001703000029000010ac0030009c000010ac030080410000004003300210000000000131019f000010ac0020009c000010ac02008041000000c002200210000000000112019f000000190200002942aa429b0000040f0000006003100270000110ac0030019d0003000000010355000000010020019000002b120000c13d000010ac033001970000001f0530018f0000110306300198000000400200043d000000000462001900002b500000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000027e0000c13d00002b500000013d000010d30030009c000005a70000213d000010da0030009c000009a20000a13d000010db0030009c000015bb0000613d000010dc0030009c000012b10000613d000010dd0030009c0000160c0000c13d000000c400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000401100370000000000101043b000010b10010009c0000160c0000213d000000040110003900000000020d001942aa32680000040f001700000001001d00000002010003670000002402100370000000000402043b000010b10040009c0000160c0000213d00000023024000390000000003000031001810ef0030019b000010ef05200197000000180650014f000000180050006c0000000005000019000010ef05004041001900000003001d000000000032004b0000000002000019000010ef02008041000010ef0060009c000000000502c019000000000005004b0000160c0000c13d0000000402400039000000000221034f000000000502043b000010b10050009c0000164e0000213d00000005065002100000003f02600039000010ed02200197000000400300043d0000000007230019001600000003001d000000000037004b00000000020000390000000102004039000010b10070009c0000164e0000213d00000001002001900000164e0000c13d000000400070043f0000001602000029000000000052043500000024044000390000000006460019000000190060006c0000160c0000213d000000000005004b000002d40000613d0000001605000029000000000241034f000000000202043b000010f00020009c0000160c0000213d000000200550003900000000002504350000002004400039000000000064004b000002cb0000413d0000004402100370000000000402043b000010b10040009c0000160c0000213d0000002302400039000000190020006c0000000005000019000010ef05008041000010ef02200197000000180620014f000000180020006c0000000002000019000010ef02004041000010ef0060009c000000000205c019000000000002004b0000160c0000c13d0000000402400039000000000221034f000000000502043b000010b10050009c0000164e0000213d00000005065002100000003f02600039000010ed02200197000000400300043d0000000007230019001100000003001d000000000037004b00000000020000390000000102004039000010b10070009c0000164e0000213d00000001002001900000164e0000c13d000000400070043f0000001102000029000000000052043500000024044000390000000006460019000000190060006c0000160c0000213d000000000005004b000003080000613d0000001105000029000000000241034f000000000202043b000000200550003900000000002504350000002004400039000000000064004b000003010000413d0000006402100370000000000402043b000010b10040009c0000160c0000213d0000002302400039000000190020006c0000000005000019000010ef05008041000010ef02200197000000180620014f000000180020006c0000000002000019000010ef02004041000010ef0060009c000000000205c019000000000002004b0000160c0000c13d0000000402400039000000000221034f000000000602043b000010b10060009c0000164e0000213d00000005056002100000003f02500039000010ed02200197000000400300043d0000000007230019000c00000003001d000000000037004b00000000020000390000000102004039000010b10070009c0000164e0000213d00000001002001900000164e0000c13d0000002404400039000000400070043f0000000c0200002900000000006204350000000005450019000000190050006c0000160c0000213d000000000006004b000025040000c13d0000008402100370000000000502043b000010b10050009c0000160c0000213d0000002302500039000000190020006c0000000003000019000010ef03008041000010ef02200197000000180420014f000000180020006c0000000002000019000010ef02004041000010ef0040009c000000000203c019000000000002004b0000160c0000c13d0000000406500039000000000261034f000000000402043b000010b10040009c0000164e0000213d0000001f024000390000114c022001970000003f022000390000114c02200197000000400300043d0000000007230019001500000003001d000000000037004b00000000020000390000000102004039000010b10070009c0000164e0000213d00000001002001900000164e0000c13d0000002402500039000000400070043f000000150300002900000000054304360000000002240019000000190020006c0000160c0000213d0000002002600039000000000721034f0000114c084001980000001f0940018f00000000068500190000036b0000613d000000000a07034f000000000205001900000000a30a043c0000000002320436000000000062004b000003670000c13d000000000009004b000003780000613d000000000287034f0000000303900210000000000706043300000000073701cf000000000737022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000272019f000000000026043500000000024500190000000000020435000000a402100370000000000402043b000010b10040009c0000160c0000213d0000002302400039000000190020006c0000000003000019000010ef03008041000010ef02200197000000180520014f000000180020006c0000000002000019000010ef02004041000010ef0050009c000000000203c019000000000002004b0000160c0000c13d0000000405400039000000000251034f000000000302043b000010b10030009c0000164e0000213d0000001f023000390000114c022001970000003f022000390000114c02200197000000400700043d0000000006270019000200000007001d000000000076004b00000000020000390000000102004039000010b10060009c0000164e0000213d00000001002001900000164e0000c13d0000002402400039000000400060043f00000002040000290000000004340436000f00000004001d0000000002230019000000190020006c0000160c0000213d0000002002500039000000000221034f0000114c043001980000001f0530018f0000000f01400029000003b20000613d000000000602034f0000000f07000029000000006806043c0000000007870436000000000017004b000003ae0000c13d000000000005004b000003bf0000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002104350000000f01300029000000000001043500000015010000290000000001010433000400000001001d000000000001004b0000000001000039000000010100c039000300000001001d000003db0000613d00000017010000290000000001010433000000000001004b00000be50000613d00000017010000290000002002100039000000000202043300000080022000390000000002020433001900000002001d42aa356a0000040f0000001902000029000010f002200197000000000301001900000000010200190000000002030019000000150300002942aa399a0000040f00000017010000290000000002010433000010b10020009c0000164e0000213d00000005012002100000003f03100039000010ed03300197000000400400043d0000000003340019000800000004001d000000000043004b00000000040000390000000104004039000010b10030009c0000164e0000213d00000001004001900000164e0000c13d000000400030043f000000080300002900000000032304360000001f0210018f000000000001004b000003f90000613d000000000113001900000000040000310000000204400367000000004504043c0000000003530436000000000013004b000003f50000c13d000000000002004b00000017010000290000000001010433000000000001004b00002dc50000c13d42aa3b910000040f0000002001000039000000400200043d001900000002001d00000000021204360000000801000029000005340000013d000010c60030009c000008470000a13d000010c70030009c00000e970000613d000010c80030009c00000b960000613d000010c90030009c0000160c0000c13d0000002400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000401100370000000000101043b000010b10010009c0000160c0000213d000000040110003900000000020d001942aa30790000040f42aa386d0000040f000015c80000013d000010bf0030009c000008540000a13d000010c00030009c000015630000613d000010c10030009c00000f640000613d000010c20030009c0000160c0000c13d0000008400d0008c0000160c0000413d0000000002000416000000000002004b0000160c0000c13d0000000401100370000000000101043b000010b10010009c0000160c0000213d000000040110003900000000020d001942aa32680000040f001300000001001d00000002010003670000002402100370000000000402043b000010b10040009c0000160c0000213d0000002302400039000000000d000031001910ef00d0019b000010ef05200197000000190650014f000000190050006c0000000005000019000010ef050040410000000000d2004b0000000002000019000010ef02008041000010ef0060009c000000000502c019000000000005004b0000160c0000c13d0000000402400039000000000221034f000000000602043b000010b10060009c0000164e0000213d00000005086002100000003f02800039000010ed02200197000000400300043d0000000007230019001100000003001d000000000037004b00000000020000390000000102004039000010b10070009c0000164e0000213d00000001002001900000164e0000c13d0000002403400039000000400070043f00000011020000290000000002620436000c00000002001d001800000003001d00000000023800190000000000d2004b0000160c0000213d000000000006004b00001ab00000c13d0000004402100370000000000502043b000010b10050009c0000160c0000213d00000023025000390000000000d2004b0000000003000019000010ef03008041000010ef02200197000000190420014f000000190020006c0000000002000019000010ef02004041000010ef0040009c000000000203c019000000000002004b0000160c0000c13d0000000406500039000000000261034f000000000402043b000010b10040009c0000164e0000213d0000001f024000390000114c022001970000003f022000390000114c02200197000000400300043d0000000007230019001800000003001d000000000037004b00000000020000390000000102004039000010b10070009c0000164e0000213d00000001002001900000164e0000c13d0000002402500039000000400070043f0000001803000029000000000543043600000000022400190000000000d2004b0000160c0000213d0000002002600039000000000721034f0000114c084001980000001f0940018f0000000006850019000004980000613d000000000a07034f000000000205001900000000a30a043c0000000002320436000000000062004b000004940000c13d000000000009004b000004a50000613d000000000287034f0000000303900210000000000706043300000000073701cf000000000737022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000272019f0000000000260435000000000245001900000000000204350000006402100370000000000402043b000010b10040009c0000160c0000213d00000000080d001900000023024000390000000000d2004b0000000003000019000010ef03008041000010ef02200197000000190520014f000000190020006c0000000002000019000010ef02004041000010ef0050009c000000000203c019000000000002004b0000160c0000c13d0000000405400039000000000251034f000000000302043b000010b10030009c0000164e0000213d0000001f023000390000114c022001970000003f022000390000114c02200197000000400700043d0000000006270019000300000007001d000000000076004b00000000020000390000000102004039000010b10060009c0000164e0000213d00000001002001900000164e0000c13d0000002402400039000000400060043f00000003040000290000000004340436000200000004001d0000000002230019000000000082004b0000160c0000213d0000002002500039000000000221034f0000114c043001980000001f0530018f0000000201400029000004e00000613d000000000602034f0000000207000029000000006806043c0000000007870436000000000017004b000004dc0000c13d000000000005004b000004ed0000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002104350000000201300029000000000001043500000018010000290000000001010433000700000001001d000000000001004b0000000001000039000000010100c039000600000001001d00000013010000290000000001010433000000000001004b00000be50000613d00000013020000290000002002200039000b00000002001d000000000202043300000080022000390000000002020433000110f00020019b000000070000006b0000050b0000613d000000130100002942aa356a0000040f00000000020100190000000101000029000000180300002942aa399a0000040f00000013010000290000000001010433000010b10010009c0000164e0000213d00000005021002100000003f03200039000010ed03300197000000400400043d0000000003340019000500000004001d000000000043004b00000000040000390000000104004039000010b10030009c0000164e0000213d00000001004001900000164e0000c13d000000400030043f00000005030000290000000001130436000400000001001d0000001f0120018f000000000002004b000005290000613d0000000404000029000000000224001900000000030000310000000203300367000000003503043c0000000004540436000000000024004b000005250000c13d000000000001004b00000013010000290000000001010433000000000001004b000026790000c13d42aa3b910000040f0000002001000039000000400200043d001900000002001d0000000002120436000000050100002942aa33c50000040f000017130000013d000010e10030009c000009ba0000a13d000010e20030009c000015cf0000613d000010e30030009c0000140a0000613d000010e40030009c0000160c0000c13d0000004400d0008c0000160c0000413d0000000403100370000000000203043b001900000002001d000010f00020009c0000160c0000213d0000002403100370000000000403043b000010b10040009c0000160c0000213d00000023034000390000000000d3004b0000160c0000813d0000000405400039000000000351034f000000000303043b000010b10030009c0000164e0000213d0000001f063000390000114c066001970000003f066000390000114c06600197000010ee0060009c0000164e0000213d00000024044000390000008006600039000000400060043f000000800030043f00000000044300190000000000d4004b0000160c0000213d0000002002500039000000000221034f0000114c043001980000001f0530018f000000a0014000390000056a0000613d000000a006000039000000000702034f000000007807043c0000000006860436000000000016004b000005660000c13d000000000005004b000005770000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000000a0013000390000000000010435000011320100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001133011001c7000080050200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000010f0011001970000000002000410000000000012004b000016380000613d0000113402000041000000000202041a000010f002200197000000000012004b000016380000c13d0000112601000041000000000101041a000010f0021001970000000001000411000000000012004b00001bff0000c13d000000400200043d0000113501000041001800000002001d000000000012043500000000010004140000001902000029000000040020008c00001ce60000c13d00000000010004150000001b0110008a00000005011002100000000103000031000000200030008c0000002004000039000000000403401900001d140000013d000010d40030009c000009cc0000a13d000010d50030009c000016030000613d000010d60030009c0000154a0000613d000010d70030009c0000160c0000c13d000000c400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000401100370000000000101043b000010b10010009c0000160c0000213d000000040110003900000000020d001942aa31450000040f001900000001001d00000002010003670000002402100370000000000202043b001800000002001d000010f00020009c0000160c0000213d0000006402100370000000000502043b000010b10050009c0000160c0000213d00000023045000390000000002000031000010ef03200197000010ef06400197000000000736013f000000000036004b0000000006000019000010ef06004041000000000024004b0000000004000019000010ef04008041000010ef0070009c000000000604c019000000000006004b0000160c0000c13d0000000406500039000000000461034f000000000404043b000010b10040009c0000164e0000213d0000001f074000390000114c077001970000003f077000390000114c07700197000000400800043d0000000007780019001700000008001d000000000087004b00000000080000390000000108004039000010b10070009c0000164e0000213d00000001008001900000164e0000c13d0000002408500039000000400070043f000000170500002900000000054504360000000007840019000000000027004b0000160c0000213d0000002006600039000000000761034f0000114c084001980000001f0940018f0000000006850019000005fb0000613d000000000a07034f000000000b05001900000000ac0a043c000000000bcb043600000000006b004b000005f70000c13d000000000009004b000006080000613d000000000787034f0000000308900210000000000906043300000000098901cf000000000989022f000000000707043b0000010008800089000000000787022f00000000078701cf000000000797019f0000000000760435000000000445001900000000000404350000008404100370000000000504043b000010b10050009c0000160c0000213d0000002304500039000000000024004b0000000006000019000010ef06008041000010ef04400197000000000734013f000000000034004b0000000004000019000010ef04004041000010ef0070009c000000000406c019000000000004004b0000160c0000c13d0000000406500039000000000461034f000000000404043b000010b10040009c0000164e0000213d0000001f074000390000114c077001970000003f077000390000114c07700197000000400800043d0000000007780019001600000008001d000000000087004b00000000080000390000000108004039000010b10070009c0000164e0000213d00000001008001900000164e0000c13d0000002408500039000000400070043f000000160500002900000000054504360000000007840019000000000027004b0000160c0000213d0000002006600039000000000761034f0000114c084001980000001f0940018f0000000006850019000006410000613d000000000a07034f000000000b05001900000000ac0a043c000000000bcb043600000000006b004b0000063d0000c13d000000000009004b0000064e0000613d000000000787034f0000000308900210000000000906043300000000098901cf000000000989022f000000000707043b0000010008800089000000000787022f00000000078701cf000000000797019f000000000076043500000000044500190000000000040435000000a404100370000000000404043b000010b10040009c0000160c0000213d0000002305400039000000000025004b0000000006000019000010ef06008041000010ef05500197000000000735013f000000000035004b0000000003000019000010ef03004041000010ef0070009c000000000306c019000000000003004b0000160c0000c13d0000000405400039000000000351034f000000000303043b000010b10030009c0000164e0000213d0000001f063000390000114c066001970000003f066000390000114c06600197000000400700043d0000000006670019001500000007001d000000000076004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d0000002404400039000000400060043f00000015060000290000000006360436001400000006001d0000000004430019000000000024004b0000160c0000213d0000002002500039000000000221034f0000114c043001980000001f0530018f0000001401400029000006880000613d000000000602034f0000001407000029000000006806043c0000000007870436000000000017004b000006840000c13d000000000005004b000006950000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002104350000001401300029000000000001043500000016010000290000000001010433000000000001004b0000000001000039000000010100c039001200000001001d0000001901000029001300800010003d000006ac0000613d00000013010000290000000001010433001100000001001d000000190100002942aa37760000040f0000001102000029000010f002200197000000000301001900000000010200190000000002030019000000160300002942aa399a0000040f00000019010000290000001702000029000000120300002942aa3e9b0000040f001600000001001d0000000001020019001700000002001d42aa3d1f0000040f001900000001001d000000000001004b0000254f0000c13d0000001701000029001810b10010019b42aa3b910000040f000000400100043d0000001802000029000010f20000013d000010b90030009c000010b80000613d000010ba0030009c00000d120000613d000010bb0030009c0000160c0000c13d000000c400d0008c0000160c0000413d0000000002000416000000000002004b0000160c0000c13d0000000402100370000000000302043b000010b10030009c0000160c0000213d00000023023000390000000000d2004b0000160c0000813d0000000402300039000000000221034f000000000602043b000010b10060009c0000164e0000213d00000005056002100000003f02500039000010ed07200197000010ee0070009c0000164e0000213d0000008002700039000000400020043f000000800060043f000000240330003900000000053500190000000000d5004b0000160c0000213d000000000006004b000006eb0000613d000000000231034f000000000602043b000010b10060009c0000160c0000213d000000200440003900000000006404350000002003300039000000000053004b000006e20000413d0000002402100370000000000302043b000010b10030009c0000160c0000213d00000023023000390000000000d2004b0000000004000019000010ef04008041000010ef02200197000000000002004b0000000005000019000010ef05004041000010ef0020009c000000000504c019000000000005004b0000160c0000c13d0000000402300039000000000221034f000000000502043b000010b10050009c0000164e0000213d00000005045002100000003f02400039000010ed02200197000000400700043d0000000006270019001800000007001d000000000076004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d0000002403300039000000400060043f00000018020000290000000002520436001600000002001d00000000043400190000000000d4004b0000160c0000213d000000000005004b00001c040000c13d0000004402100370000000000302043b000010b10030009c0000160c0000213d00000023023000390000000000d2004b0000000004000019000010ef04008041000010ef02200197000000000002004b0000000005000019000010ef05004041000010ef0020009c000000000504c019000000000005004b0000160c0000c13d0000000402300039000000000221034f000000000402043b000010b10040009c0000164e0000213d00000005054002100000003f02500039000010ed02200197000000400700043d0000000006270019000f00000007001d000000000076004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d000000400060043f0000000f020000290000000002420436000900000002001d000000240330003900000000053500190000000000d5004b0000160c0000213d000000000004004b0000074d0000613d0000000f04000029000000000231034f000000000602043b000010f00060009c0000160c0000213d000000200440003900000000006404350000002003300039000000000053004b000007440000413d0000006402100370000000000302043b000010b10030009c0000160c0000213d00000023023000390000000000d2004b0000000004000019000010ef04008041000010ef02200197000000000002004b0000000005000019000010ef05004041000010ef0020009c000000000504c019000000000005004b0000160c0000c13d0000000402300039000000000221034f000000000402043b000010b10040009c0000164e0000213d00000005054002100000003f02500039000010ed02200197000000400700043d0000000006270019000400000007001d000000000076004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d000000400060043f00000004020000290000000002420436000300000002001d000000240330003900000000053500190000000000d5004b0000160c0000213d000000000004004b000007810000613d0000000404000029000000000231034f000000000202043b000000200440003900000000002404350000002003300039000000000053004b0000077a0000413d0000008402100370000000000402043b000010b10040009c00000019080000290000160c0000213d0000002302400039000000000082004b0000000003000019000010ef03008041000010ef02200197000000000002004b0000000005000019000010ef05004041000010ef0020009c000000000503c019000000000005004b0000160c0000c13d0000000405400039000000000251034f000000000302043b000010b10030009c0000164e0000213d0000001f023000390000114c022001970000003f022000390000114c02200197000000400700043d0000000006270019001700000007001d000000000076004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d0000002402400039000000400060043f000000170400002900000000043404360000000002230019000000000082004b0000160c0000213d0000002002500039000000000621034f0000114c073001980000001f0830018f0000000005740019000007b80000613d000000000906034f000000000a040019000000009209043c000000000a2a043600000000005a004b000007b40000c13d000000000008004b000007c50000613d000000000276034f0000000306800210000000000705043300000000076701cf000000000767022f000000000202043b0000010006600089000000000262022f00000000026201cf000000000272019f000000000025043500000000023400190000000000020435000000a402100370000000000402043b000010b10040009c00000019080000290000160c0000213d0000002302400039000000000082004b0000000003000019000010ef03008041000010ef02200197000000000002004b0000000005000019000010ef05004041000010ef0020009c000000000503c019000000000005004b0000160c0000c13d0000000405400039000000000251034f000000000302043b000010b10030009c0000164e0000213d0000001f023000390000114c022001970000003f022000390000114c02200197000000400700043d0000000006270019000200000007001d000000000076004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d0000002402400039000000400060043f00000002040000290000000004340436001000000004001d0000000002230019000000000082004b0000160c0000213d0000002002500039000000000221034f0000114c043001980000001f0530018f0000001001400029000007ff0000613d000000000602034f0000001007000029000000006806043c0000000007870436000000000017004b000007fb0000c13d000000000005004b0000080c0000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f000000000021043500000010013000290000000000010435000000000100041100000017020000290000000002020433000600000002001d000000000002004b001900000001001d000008330000613d000000800100043d000000000001004b00000be50000613d000000a00100043d000010b101100197000000000010043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b0000000101100039000000000101041a001900000001001d0000008001000039000000180200002942aa36230000040f00000000020100190000001901000029000010f001100197001900000001001d000000170300002942aa399a0000040f000000800100043d000000000001004b00000b4f0000613d0000001901000029000110f00010019b000e00000000001d000021950000013d000010d00030009c00000abf0000613d000010d10030009c0000160c0000c13d0000000001000416000000000001004b0000160c0000c13d0000112601000041000000000101041a000010f001100197000000800010043f0000111a01000041000042ab0001042e000010ca0030009c00000b190000613d000010cb0030009c0000160c0000c13d0000000001000416000000000001004b0000160c0000c13d000000c001000039000000400010043f0000000501000039000000800010043f0000112301000041000009ae0000013d000010c30030009c00000e750000613d000010c40030009c0000160c0000c13d0000000001000416000000000001004b0000160c0000c13d0000110a01000041000000000101041a000010fe0000013d000010eb0030009c000010c70000613d000010ec0030009c0000160c0000c13d0000006400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000403100370000000000203043b000f00000002001d000010b10020009c0000160c0000213d0000000f0200002900000023032000390000000000d3004b0000160c0000813d0000000f020000290000000403200039000000000331034f000000000203043b000e00000002001d000010b10020009c0000160c0000213d0000000f02000029001500240020003d0000000e02000029000000050420021000000015034000290000000000d3004b0000160c0000213d0000002405100370000000000205043b001800000002001d000010f00020009c0000160c0000213d0000004405100370000000000505043b000010b10050009c0000160c0000213d00000023065000390000000000d6004b0000160c0000813d0000000406500039000000000661034f000000000206043b001700000002001d000010b10020009c0000160c0000213d0000002405500039001400000005001d001600170050002d0000001600d0006b0000160c0000213d000000170000006b00001b910000c13d0000000001000411001800000001001d0000000e0000006b00000b4f0000613d0000001801000029000d10f00010019b0000000002000019001300000002001d000000050120021000000015021000290000000201000367000000000221034f000000000302043b00000000020000310000000f0420006a000000430440008a000010ef05400197000010ef06300197000000000756013f000000000056004b0000000005000019000010ef05004041000000000043004b0000000004000019000010ef04008041000010ef0070009c000000000504c019000000000005004b0000160c0000c13d0000001503300029000000000431034f000000000704043b000010b10070009c0000160c0000213d00000000027200490000002006300039000010ef03200197000010ef04600197000000000534013f000000000034004b0000000003000019000010ef03004041001900000006001d000000000026004b0000000002000019000010ef02002041000010ef0050009c000000000302c019000000000003004b0000160c0000c13d000010f302000041000000000202041a000000ff0020019000002afc0000c13d00000019031003600018114c0070019c000000400100043d0000001802100029000008d80000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b000008d40000c13d0000001f04700190001600000004001d0000000306400210000008e60000613d0000001803300360000000000402043300000000046401cf000000000464022f000000000303043b0000010005600089000000000353022f00000000035301cf000000000343019f0000000000320435001400000006001d00000000027100190000111b030000410000000000320435000010ac0010009c000010ac0100804100000040011002100000002002700039000010ac0020009c001200000002001d000010ac020080410000006002200210000000000121019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c70000801002000039001700000007001d42aa42a00000040f000000170400002900000001002001900000160c0000613d0000001f024000390000114c02200197001100000002001d0000003f022000390000114c03200197000000000101043b001000000001001d000000400200043d0000000001320019000000000021004b00000000030000390000000103004039000010b10010009c0000164e0000213d00000001003001900000164e0000c13d000000400010043f00000000014204360000001904400029000000000040007c0000160c0000213d000000190300002900000002043003670000001803100029000000180000006b0000091f0000613d000000000504034f0000000006010019000000005705043c0000000006760436000000000036004b0000091b0000c13d000000160000006b0000092c0000613d00000018044003600000000005030433000000140600002900000000056501cf000000000565022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000454019f000000000043043500000012032000290000000000030435000000400300043d0000000002020433000000000002004b0000093a0000613d000000000400001900000000053400190000000006140019000000000606043300000000006504350000002004400039000000000024004b000009330000413d00000000013200190000111b040000410000000000410435000010ac0030009c000010ac0300804100000040013002100000002002200039000010ac0020009c000010ac020080410000006002200210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b000000000101041a00001112001001980000218a0000c13d000010fb0100004100000000001004430000000001000414000010ac0010009c000010ac01008041000000c001100210000010ae011001c70000800b0200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000a00110021000001112011001970000000d011001af0000001003000029000000000203041a0000111102200197000000000121019f000000000013041b000000400100043d000000200210003900000017080000290000000000820435000000200200003900000000002104350000004002100039000000180320002900000019040000290000000204400367000000180000006b000009790000613d000000000504034f0000000006020019000000005705043c0000000006760436000000000036004b000009750000c13d000000160000006b000009860000613d00000018044003600000000005030433000000140600002900000000056501cf000000000565022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000454019f000000000043043500000000028200190000000000020435000010ac0010009c000010ac01008041000000400110021000000011020000290000004002200039000010ac0020009c000010ac020080410000006002200210000000000121019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c70000800d0200003900000001030000390000114a0400004142aa429b0000040f00000001002001900000160c0000613d000000130200002900000001022000390000000e0020006c0000089e0000413d00000b4f0000013d000010de0030009c000010da0000613d000010df0030009c0000160c0000c13d0000000001000416000000000001004b0000160c0000c13d000000c001000039000000400010043f0000000501000039000000800010043f0000113101000041000000a00010043f0000002001000039000000c00010043f0000008001000039000000e00200003942aa33d30000040f000000c00110008a000010ac0010009c000010ac01008041000000600110021000001124011001c7000042ab0001042e000010e50030009c000010f80000613d000010e60030009c0000160c0000c13d0000002400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000401100370000000000101043b000010b10010009c0000160c0000213d000000040110003900000000020d001942aa32680000040f42aa356a0000040f000015c80000013d000010d80030009c000011020000613d000010d90030009c0000160c0000c13d0000008400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000403100370000000000303043b000010b10030009c0000160c0000213d00000023043000390000000000d4004b0000160c0000813d0000000404300039000000000441034f000000000504043b000010b10050009c0000164e0000213d00000005045002100000003f06400039000010ed06600197000010ee0060009c0000164e0000213d0000008006600039000000400060043f000000800050043f000000240330003900000000043400190000000000d4004b0000160c0000213d000000000005004b000009f90000613d0000008005000039000000000631034f000000000606043b000010b10060009c0000160c0000213d000000200550003900000000006504350000002003300039000000000043004b000009f00000413d0000002403100370000000000303043b000010b10030009c0000160c0000213d00000023043000390000000000d4004b0000000005000019000010ef05008041000010ef04400197000000000004004b0000000006000019000010ef06004041000010ef0040009c000000000605c019000000000006004b0000160c0000c13d0000000404300039000000000441034f000000000504043b000010b10050009c0000164e0000213d00000005045002100000003f06400039000010ed06600197000000400200043d0000000006620019000b00000002001d000000000026004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d0000002403300039000000400060043f0000000b020000290000000002520436000900000002001d00000000043400190000000000d4004b0000160c0000213d000000000005004b00001c9a0000c13d0000004403100370000000000403043b000010b10040009c0000160c0000213d00000023034000390000000000d3004b0000000005000019000010ef05008041000010ef03300197000000000003004b0000000006000019000010ef06004041000010ef0030009c000000000605c019000000000006004b0000160c0000c13d0000000405400039000000000351034f000000000303043b000010b10030009c0000164e0000213d0000001f063000390000114c066001970000003f066000390000114c06600197000000400200043d0000000006620019001800000002001d000000000026004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d0000002407400039000000400060043f0000001802000029000000000432043600000000067300190000000000d6004b0000160c0000213d0000002005500039000000000651034f0000114c073001980000001f0830018f000000000574001900000a5b0000613d000000000906034f000000000a040019000000009b09043c000000000aba043600000000005a004b00000a570000c13d000000000008004b00000a680000613d000000000676034f0000000307800210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000000334001900000000000304350000006403100370000000000403043b000010b10040009c00000019020000290000160c0000213d0000002303400039000000000023004b0000000005000019000010ef05008041000010ef03300197000000000003004b0000000006000019000010ef06004041000010ef0030009c000000000605c019000000000006004b0000160c0000c13d0000000405400039000000000351034f000000000303043b000010b10030009c0000164e0000213d0000001f063000390000114c066001970000003f066000390000114c06600197000000400700043d0000000006670019000800000007001d000000000076004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d0000002404400039000000400060043f00000008060000290000000006360436000700000006001d0000000004430019000000000024004b0000160c0000213d0000002002500039000000000221034f0000114c043001980000001f0530018f000000070140002900000aa20000613d000000000602034f0000000707000029000000006806043c0000000007870436000000000017004b00000a9e0000c13d000000000005004b00000aaf0000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f000000000021043500000007013000290000000000010435000000000100041100000018020000290000000002020433000c00000002001d000000000002004b001900000001001d000026570000c13d000000800100043d000000000001004b00000b4f0000613d0000001901000029000610f00010019b00000000020000190000176e0000013d0000002400d0008c0000160c0000413d0000000002000416000000000002004b0000160c0000c13d0000000401100370000000000101043b000010b10010009c0000160c0000213d0000016002000039000000400020043f000000800000043f000000a00000043f000000c00000043f000000e00000043f000001000000043f000001200000043f0000006002000039000001400020043f0000110a02000041000000000202041a0000008002200270000010b102200197000000000021004b0000111d0000413d000000000010043f000010f401000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b000000400200043d001900000002001d000010f50020009c0000164e0000213d0000001905000029000000e002500039000000400020043f000000000201041a000010f0032001970000000003350436000010f6002001980000000004000039000000010400c0390000000000430435000000a803200270000000ff0330018f000000030030008c000016830000213d00000040045000390000000000340435000000b002200270000010b102200197000000600350003900000000002304350000000102100039000000000202041a0000008003500039000010f0042001970000000000430435000000a003500039000000a002200270000010b10220019700000000002304350000000201100039000000000601041a000000010360019000000001056002700000007f0250018f00000000050260190000001f0050008c00000000040000390000000104002039001700000006001d000000000446013f000000010040019000001a3a0000613d0000111501000041000000000010043f0000002201000039000000040010043f0000111601000041000042ac000104300000006400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000403100370000000000403043b000010b10040009c0000160c0000213d00000023034000390000000000d3004b0000160c0000813d0000000403400039000000000531034f000000000205043b001900000002001d000010b10020009c0000160c0000213d0000002404400039001800000004001d00000019044000290000000000d4004b0000160c0000213d0000002404100370000000000204043b001700000002001d000010f00020009c0000160c0000213d0000004404100370000000000404043b000010b10040009c0000160c0000213d00000023054000390000000000d5004b0000160c0000813d0000000405400039000000000551034f000000000205043b001600000002001d000010b10020009c0000160c0000213d0000002404400039001400000004001d001500160040002d0000001500d0006b0000160c0000213d000000160000006b00001afe0000c13d0000000001000411001700000001001d00000018010000290000001902000029000000170300002942aa3a9f0000040f42aa3b910000040f0000000001000019000042ab0001042e0000004400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000403100370000000000403043b000010b10040009c0000160c0000213d00000023034000390000000000d3004b0000160c0000813d0000000405400039000000000351034f000000000303043b000010b10030009c0000164e0000213d0000001f073000390000114c077001970000003f077000390000114c07700197000010ee0070009c0000164e0000213d00000024044000390000008007700039000000400070043f000000800030043f00000000044300190000000000d4004b0000160c0000213d0000002004500039000000000541034f0000114c063001980000001f0730018f000000a00460003900000b7c0000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000048004b00000b780000c13d000000000007004b00000b890000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000a00330003900000000000304350000002401100370000000000101043b000010b10010009c0000160c0000213d000000040110003900000000020d001942aa30790000040f0000000002010019000000800100003942aa38150000040f000015c80000013d0000006400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000403100370000000000203043b001200000002001d000010b10020009c0000160c0000213d000000120200002900000023032000390000000000d3004b0000160c0000813d00000012020000290000000403200039000000000431034f000000000204043b000a00000002001d000010b10020009c0000160c0000213d000000120200002900000024042000390000000a020000290000000502200210001800000004001d001600000002001d001700000042001d0000001700d0006b0000160c0000213d0000002404100370000000000204043b000900000002001d000010b10020009c0000160c0000213d000000090200002900000023042000390000000000d4004b0000160c0000813d00000009020000290000000404200039000000000441034f000000000204043b000800000002001d000010b10020009c0000160c0000213d0000000902000029000000240420003900000008020000290000000502200210001100000004001d001400000002001d001500000042001d0000001500d0006b0000160c0000213d0000004404100370000000000404043b000010b10040009c0000160c0000213d00000023054000390000000000d5004b0000160c0000813d0000000405400039000000000551034f000000000205043b001000000002001d000010b10020009c0000160c0000213d0000002404400039000f00000004001d001300100040002d0000001300d0006b0000160c0000213d0000000004000411000000100000006b000700000004001d0000294e0000613d0000000a0000006b00001da70000c13d0000111501000041000000000010043f0000003201000039000000040010043f0000111601000041000042ac00010430000000a400d0008c0000160c0000413d0000000402100370000000000202043b001800000002001d000010b10020009c0000160c0000213d0000001803d0006a000011060030009c0000160c0000213d000001440030008c0000160c0000413d0000004402100370000000000302043b000010b10030009c0000160c0000213d00000023023000390000000000d2004b0000160c0000813d0000000402300039000000000221034f000000000202043b001700000002001d000010b10020009c0000160c0000213d0000002403300039001500000003001d001600170030002d0000001600d0006b0000160c0000213d0000006402100370000000000302043b000010b10030009c0000160c0000213d00000023023000390000000000d2004b0000160c0000813d001300040030003d0000001302100360000000000202043b001400000002001d000010b10020009c0000160c0000213d0000001402300029001200240020003d0000001200d0006b0000160c0000213d0000008402100370000000000302043b000010b10030009c0000160c0000213d00000023023000390000000000d2004b0000160c0000813d0000000402300039000000000221034f000000000202043b001100000002001d000010b10020009c0000160c0000213d0000002403300039001000000003001d00000011023000290000000000d2004b0000160c0000213d0000001802000029000f00040020003d000000140000006b0000000002000039000000010200c039000e00000002001d00000c730000613d00000018020000290000008402200039000000000121034f000000000101043b000d00000001001d000010f00010009c00000019020000290000160c0000213d0000000f0100002942aa31450000040f42aa37760000040f00000014020000290000001f022000390000114c022001970000003f022000390000114c052001970000000002010019000000400300043d0000000001530019000000000031004b00000000050000390000000105004039000010b10010009c0000164e0000213d00000001005001900000164e0000c13d000000400010043f000000140100002900000000011304360000001206000029000000000060007c0000160c0000213d00000014060000290000114c056001980000001f0660018f000000000451001900000013070000290000002007700039000000020770036700000c610000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b00000c5d0000c13d000000000006004b00000c6e0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000140110002900000000000104350000000d0100002942aa399a0000040f00190000000000350000000f01000029000000190200002942aa31450000040f00000017020000290000001f022000390000114c022001970000003f022000390000114c03200197000000400200043d0000000003320019000000000023004b00000000040000390000000104004039000010b10030009c0000164e0000213d00000001004001900000164e0000c13d000000400030043f000000170300002900000000033204360000001605000029000000000050007c0000160c0000213d00000017040000290000114c054001980000001f0640018f00000015040000290000000207400367000000000453001900000c970000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00000c930000c13d000000000006004b00000ca40000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000170330002900000000000304350000000e0300002942aa3e9b0000040f001600000001001d0000000001020019001900000002001d42aa3d1f0000040f001700000001001d000000000001004b00000f5e0000613d000000180100002900000084011000390000000201100367000000000101043b001800000001001d000010f00010009c0000160c0000213d00001100010000410000000000100443000000170100002900000004001004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001101011001c7000080020200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000000001004b0000160c0000613d000000400300043d0000006401300039000000800200003900000000002104350000001601000029000010b10110019700000024023000390000000000120435000011170100004100000000001304350000000401300039000000180200002900000000002104350000008401300039000000110200002900000000002104350000001901000029000010b1041001970000004401300039001900000004001d00000000004104350000114c042001980000001f0520018f001800000003001d000000a40230003900000000034200190000000201000367000000100610036000000ce90000613d000000000706034f0000000008020019000000007907043c0000000008980436000000000038004b00000ce50000c13d000000000005004b00000cf60000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000110220002900000000000204350000002401100370000000000301043b00000000010004140000001702000029000000040020008c00002b310000613d00000011020000290000001f022000390000114c02200197000011180020009c000011180200804100000060022002100000001804000029000010ac0040009c000010ac040080410000004004400210000000000242019f000010ac0010009c000010ac01008041000000c001100210000000000112019f000011190110009a000000000003004b00002b270000c13d000000170200002900002b2b0000013d000000a400d0008c0000160c0000413d0000000402100370000000000202043b001800000002001d000010b10020009c0000160c0000213d0000002402100370000000000402043b000010b10040009c0000160c0000213d00000023024000390000000000d2004b0000160c0000813d0000000405400039000000000251034f000000000302043b000010b10030009c0000164e0000213d0000001f023000390000114c022001970000003f022000390000114c06200197000010ee0060009c0000164e0000213d00000024024000390000008004600039000000400040043f000000800030043f00000000022300190000000000d2004b0000160c0000213d0000002002500039000000000521034f0000114c063001980000001f0730018f000000a00460003900000d3e0000613d000000a008000039000000000905034f000000009209043c0000000008280436000000000048004b00000d3a0000c13d000000000007004b00000d4b0000613d000000000265034f0000000305700210000000000604043300000000065601cf000000000656022f000000000202043b0000010005500089000000000252022f00000000025201cf000000000262019f0000000000240435000000a00230003900000000000204350000006402100370000000000402043b000010b10040009c00000019080000290000160c0000213d0000002302400039000000000082004b0000160c0000813d0000000405400039000000000251034f000000000302043b000010b10030009c0000164e0000213d0000001f023000390000114c022001970000003f022000390000114c02200197000000400700043d0000000006270019001700000007001d000000000076004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d0000002402400039000000400060043f000000170400002900000000043404360000000002230019000000000082004b0000160c0000213d0000002002500039000000000621034f0000114c073001980000001f0830018f000000000574001900000d7b0000613d000000000906034f000000000a040019000000009209043c000000000a2a043600000000005a004b00000d770000c13d000000000008004b00000d880000613d000000000276034f0000000306800210000000000705043300000000076701cf000000000767022f000000000202043b0000010006600089000000000262022f00000000026201cf000000000272019f0000000000250435000000000234001900000000000204350000008402100370000000000402043b000010b10040009c00000019080000290000160c0000213d0000002302400039000000000082004b0000160c0000813d0000000405400039000000000251034f000000000302043b000010b10030009c0000164e0000213d0000001f023000390000114c022001970000003f022000390000114c02200197000000400700043d0000000006270019001600000007001d000000000076004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d0000002402400039000000400060043f00000016040000290000000004340436001500000004001d0000000002230019000000000082004b0000160c0000213d0000002002500039000000000221034f0000114c043001980000001f0530018f000000150140002900000db90000613d000000000602034f0000001507000029000000006806043c0000000007870436000000000017004b00000db50000c13d000000000005004b00000dc60000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000000150130002900000000000104350000001801000029000000000010043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d00000017020000290000000002020433000000000002004b0000000002000039000000010200c039001900000002001d000000000101043b0000000101100039000000000101041a001410f00010019b00000e1f0000613d000000400100043d0000006002100039000000600300003900000000003204350000004002100039000000180300002900000000003204350000002002100039000011040300004100000000003204350000008004100039000000800300043d0000000000340435000000a004100039000000000003004b00000df80000613d00000000050000190000000006450019000000a007500039000000000707043300000000007604350000002005500039000000000035004b00000df10000413d000000000443001900000000000404350000001f033000390000114c0330019700000080043000390000000000410435000000bf033000390000114c043001970000000003140019000000000043004b00000000040000390000000104004039000010b10030009c0000164e0000213d00000001004001900000164e0000c13d000000400030043f000010ac0020009c000010ac0200804100000040022002100000000001010433000010ac0010009c000010ac010080410000006001100210000000000121019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000201043b0000001401000029000000170300002942aa399a0000040f00000080020000390000001801000029000000190300002942aa3c150000040f001700000001001d000000180100002942aa3d1f0000040f001900000001001d000000000001004b00000b4f0000613d00001100010000410000000000100443000000190100002900000004001004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001101011001c7000080020200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000000001004b0000160c0000613d000000400300043d000000640130003900000080020000390000000000210435000000440130003900000018020000290000000000210435000000240130003900000017020000290000000000210435000011050100004100000000001304350000000401300039000000140200002900000000002104350000001601000029000000000101043300000084023000390000000000120435001700000003001d000000a402300039000000000001004b000000150600002900000e590000613d000000000300001900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b00000e520000413d0000000002210019000000000002043500000044020000390000000202200367000000000302043b00000000020004140000001904000029000000040040008c00002b120000613d0000001f011000390000114c01100197000000a401100039000010ac0010009c000010ac0100804100000060011002100000001704000029000010ac0040009c000010ac040080410000004004400210000000000141019f000010ac0020009c000010ac02008041000000c002200210000000000112019f000000000003004b00002b080000c13d000000190200002900002b0c0000013d0000002400d0008c0000160c0000413d0000000002000416000000000002004b0000160c0000c13d0000000401100370000000000201043b000000000002004b0000000001000039000000010100c039001900000002001d000000000012004b0000160c0000c13d42aa398e0000040f000010f301000041000000000201041a0000114d022001970000001903000029000000ff0330018f000010d60000013d0000002400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000401100370000000000101043b000010b10010009c0000160c0000213d000000040110003900000000020d001942aa31450000040f42aa37760000040f000015c80000013d0000008400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000403100370000000000203043b001800000002001d000010b10020009c0000160c0000213d0000001803d0006a000011060030009c0000160c0000213d000001440030008c0000160c0000413d0000002403100370000000000303043b000010b10030009c0000160c0000213d00000023043000390000000000d4004b0000160c0000813d0000000404300039000000000441034f000000000204043b001700000002001d000010b10020009c0000160c0000213d0000002403300039001500000003001d001600170030002d0000001600d0006b0000160c0000213d0000004403100370000000000303043b000010b10030009c0000160c0000213d00000023043000390000000000d4004b0000160c0000813d001300040030003d0000001304100360000000000204043b001400000002001d000010b10020009c0000160c0000213d0000001403300029001200240030003d0000001200d0006b0000160c0000213d0000006403100370000000000303043b000010b10030009c0000160c0000213d00000023043000390000000000d4004b0000160c0000813d0000000404300039000000000441034f000000000204043b001100000002001d000010b10020009c0000160c0000213d0000002403300039001000000003001d00000011033000290000000000d3004b0000160c0000213d0000001802000029000f00040020003d000000140000006b0000000002000039000000010200c039000e00000002001d00000f220000613d00000018020000290000008403200039000000000131034f000000000101043b000d00000001001d000010f00010009c00000019020000290000160c0000213d0000000f0100002942aa31450000040f42aa37760000040f00000014020000290000001f022000390000114c022001970000003f022000390000114c052001970000000002010019000000400300043d0000000001530019000000000031004b00000000050000390000000105004039000010b10010009c0000164e0000213d00000001005001900000164e0000c13d000000400010043f000000140100002900000000011304360000001206000029000000000060007c0000160c0000213d00000014060000290000114c056001980000001f0660018f000000000451001900000013070000290000002007700039000000020770036700000f100000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b00000f0c0000c13d000000000006004b00000f1d0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000140110002900000000000104350000000d0100002942aa399a0000040f00190000000000350000000f01000029000000190200002942aa31450000040f00000017020000290000001f022000390000114c022001970000003f022000390000114c03200197000000400200043d0000000003320019000000000023004b00000000040000390000000104004039000010b10030009c0000164e0000213d00000001004001900000164e0000c13d000000400030043f000000170300002900000000033204360000001605000029000000000050007c0000160c0000213d00000017040000290000114c054001980000001f0640018f00000015040000290000000207400367000000000453001900000f460000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00000f420000c13d000000000006004b00000f530000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000170330002900000000000304350000000e0300002942aa3e9b0000040f001600000001001d0000000001020019001900000002001d42aa3d1f0000040f001700000001001d000000000001004b000024930000c13d0000001901000029001910b10010019b42aa3b910000040f000000400100043d0000001902000029000010f20000013d000000a400d0008c0000160c0000413d0000000402100370000000000302043b000010b10030009c0000160c0000213d00000023023000390000000000d2004b0000160c0000813d0000000402300039000000000221034f000000000502043b000010b10050009c0000164e0000213d00000005045002100000003f02400039000010ed06200197000010ee0060009c0000164e0000213d0000008002600039000000400020043f000000800050043f000000240330003900000000043400190000000000d4004b0000160c0000213d000000000005004b00000f8a0000613d0000008005000039000000000231034f000000000602043b000010b10060009c0000160c0000213d000000200550003900000000006504350000002003300039000000000043004b00000f810000413d0000002402100370000000000302043b000010b10030009c0000160c0000213d00000023023000390000000000d2004b0000000004000019000010ef04008041000010ef02200197000000000002004b0000000005000019000010ef05004041000010ef0020009c000000000504c019000000000005004b0000160c0000c13d0000000402300039000000000221034f000000000502043b000010b10050009c0000164e0000213d00000005045002100000003f02400039000010ed02200197000000400700043d0000000006270019001200000007001d000000000076004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d0000002403300039000000400060043f00000012020000290000000002520436000e00000002001d00000000043400190000000000d4004b0000160c0000213d000000000005004b00001c4f0000c13d0000004402100370000000000302043b000010b10030009c0000160c0000213d00000023023000390000000000d2004b0000000004000019000010ef04008041000010ef02200197000000000002004b0000000005000019000010ef05004041000010ef0020009c000000000504c019000000000005004b0000160c0000c13d0000000402300039000000000221034f000000000402043b000010b10040009c0000164e0000213d00000005054002100000003f02500039000010ed02200197000000400700043d0000000006270019000600000007001d000000000076004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d000000400060043f00000006020000290000000002420436000500000002001d000000240330003900000000053500190000000000d5004b0000160c0000213d000000000004004b00000fea0000613d0000000604000029000000000231034f000000000202043b000000200440003900000000002404350000002003300039000000000053004b00000fe30000413d0000006402100370000000000402043b000010b10040009c00000019080000290000160c0000213d0000002302400039000000000082004b0000000003000019000010ef03008041000010ef02200197000000000002004b0000000005000019000010ef05004041000010ef0020009c000000000503c019000000000005004b0000160c0000c13d0000000405400039000000000251034f000000000302043b000010b10030009c0000164e0000213d0000001f023000390000114c022001970000003f022000390000114c02200197000000400700043d0000000006270019001800000007001d000000000076004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d0000002402400039000000400060043f000000180400002900000000043404360000000002230019000000000082004b0000160c0000213d0000002002500039000000000621034f0000114c073001980000001f0830018f0000000005740019000010210000613d000000000906034f000000000a040019000000009209043c000000000a2a043600000000005a004b0000101d0000c13d000000000008004b0000102e0000613d000000000276034f0000000306800210000000000705043300000000076701cf000000000767022f000000000202043b0000010006600089000000000262022f00000000026201cf000000000272019f0000000000250435000000000234001900000000000204350000008402100370000000000402043b000010b10040009c00000019080000290000160c0000213d0000002302400039000000000082004b0000000003000019000010ef03008041000010ef02200197000000000002004b0000000005000019000010ef05004041000010ef0020009c000000000503c019000000000005004b0000160c0000c13d0000000405400039000000000251034f000000000302043b000010b10030009c0000164e0000213d0000001f023000390000114c022001970000003f022000390000114c02200197000000400700043d0000000006270019000400000007001d000000000076004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d0000002402400039000000400060043f00000004040000290000000004340436001100000004001d0000000002230019000000000082004b0000160c0000213d0000002002500039000000000221034f0000114c043001980000001f0530018f0000001101400029000010680000613d000000000602034f0000001107000029000000006806043c0000000007870436000000000017004b000010640000c13d000000000005004b000010750000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f000000000021043500000011013000290000000000010435000000000100041100000018020000290000000002020433000800000002001d000000000002004b001900000001001d0000109c0000613d000000800100043d000000000001004b00000be50000613d000000a00100043d000010b101100197000000000010043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b0000000101100039000000000101041a001900000001001d0000008001000039000000120200002942aa36230000040f00000000020100190000001901000029000010f001100197001900000001001d000000180300002942aa399a0000040f000000800100043d000000000001004b00000b4f0000613d0000001901000029000310f00010019b001000000000001d00001eb90000013d0000004400d0008c0000160c0000413d0000000002000416000000000002004b0000160c0000c13d0000000402100370000000000202043b001900000002001d000010b10020009c0000160c0000213d0000002401100370000000000101043b000010b10010009c0000160c0000213d000000040110003900000000020d001942aa30790000040f0000000002010019000000190100002942aa392e0000040f000015c80000013d0000002400d0008c0000160c0000413d0000000002000416000000000002004b0000160c0000c13d0000000401100370000000000101043b001900000001001d000010f00010009c0000160c0000213d42aa398e0000040f000000190100002942aa39730000040f0000000001000019000042ab0001042e0000002400d0008c0000160c0000413d0000000002000416000000000002004b0000160c0000c13d0000000401100370000000000101043b001900000001001d000010f00010009c0000160c0000213d42aa398e0000040f0000114b01000041000000000201041a0000110c022001970000001903000029000000000232019f000000000021041b0000000001000019000042ab0001042e0000000001000416000000000001004b0000160c0000c13d000011320100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001133011001c7000080050200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000010f0011001970000000002000410000000000012004b000016380000c13d000000400100043d00001134020000410000000000210435000010ac0010009c000010ac01008041000000400110021000001114011001c7000042ab0001042e0000000001000416000000000001004b0000160c0000c13d0000110a01000041000000000101041a0000004001100270000010b101100197000000800010043f0000111a01000041000042ab0001042e0000002400d0008c0000160c0000413d0000000002000416000000000002004b0000160c0000c13d0000000401100370000000000101043b000010b10010009c0000160c0000213d000001c002000039000000400020043f000000800000043f000000a00000043f000000c00000043f000000e00000043f000001000000043f000001200000043f000001400000043f000001600000043f0000006002000039000001800020043f000001a00020043f0000110a02000041000000000202041a000000c002200270000000000021004b0000163c0000813d0000112e01000041000000000010043f0000110901000041000042ac000104300000008400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000403100370000000000203043b001900000002001d000010b10020009c0000160c0000213d0000002403100370000000000303043b000010b10030009c0000160c0000213d00000023043000390000000000d4004b0000160c0000813d001700040030003d0000001704100360000000000204043b001800000002001d000010b10020009c0000160c0000213d0000002403300039001500000003001d001600180030002d0000001600d0006b0000160c0000213d0000004403100370000000000303043b000010b10030009c0000160c0000213d00000023043000390000000000d4004b0000160c0000813d0000000404300039000000000441034f000000000204043b001400000002001d000010b10020009c0000160c0000213d0000002403300039001200000003001d001300140030002d0000001300d0006b0000160c0000213d0000006403100370000000000303043b000010b10030009c0000160c0000213d00000023043000390000000000d4004b0000160c0000813d0000000404300039000000000141034f000000000101043b001100000001001d000010b10010009c0000160c0000213d0000002402300039001000000002001d00000011012000290000000000d1004b0000160c0000213d0000001901000029000000000010043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d00000018020000290000001f022000390000114c022001970000003f02200039000f114c0020019b000000140000006b0000000002000039000000010200c039000e00000002001d000000000101043b0000000101100039000000000101041a000d10f00010019b000012160000613d000000400200043d0000000f01200029000000000021004b00000000030000390000000103004039000010b10010009c0000164e0000213d00000001003001900000164e0000c13d000000400010043f000000180100002900000000011204360000001604000029000000000040007c0000160c0000213d00000018050000290000114c045001980000001f0550018f0000000003410019000000170600002900000020066000390000000206600367000011990000613d000000000706034f0000000008010019000000007907043c0000000008980436000000000038004b000011950000c13d000000000005004b000011a60000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000043043500000018031000290000000000030435000000400300043d000000600430003900000060050000390000000000540435000000400430003900000019050000290000000000540435000000200430003900001104050000410000000000540435000000000202043300000080053000390000000000250435000000a005300039000000000002004b000011c00000613d000000000600001900000000075600190000000008160019000000000808043300000000008704350000002006600039000000000026004b000011b90000413d000000000152001900000000000104350000001f012000390000114c0110019700000080021000390000000000230435000000bf011000390000114c021001970000000001320019000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d000000400010043f000010ac0040009c000010ac0400804100000040014002100000000002030433000010ac0020009c000010ac020080410000006002200210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d00000014020000290000001f022000390000114c022001970000003f022000390000114c04200197000000000201043b000000400300043d0000000001430019000000000031004b00000000040000390000000104004039000010b10010009c0000164e0000213d00000001004001900000164e0000c13d000000400010043f000000140100002900000000011304360000001305000029000000000050007c0000160c0000213d00000014060000290000114c056001980000001f0660018f000000120400002900000002074003670000000004510019000012050000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000012010000c13d000000000006004b000012120000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000140110002900000000000104350000000d0100002942aa399a0000040f000000400200043d0000000f01200029000000000021004b00000000030000390000000103004039000010b10010009c0000164e0000213d00000001003001900000164e0000c13d000000400010043f000000180100002900000000011204360000001604000029000000000040007c0000160c0000213d00000018050000290000114c045001980000001f0550018f000000150300002900000002063003670000000003410019000012320000613d000000000706034f0000000008010019000000007907043c0000000008980436000000000038004b0000122e0000c13d000000000005004b0000123f0000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000001801100029000000000001043500000019010000290000000e0300002942aa3c150000040f001700000001001d000000190100002942aa3d1f0000040f001800000001001d000000000001004b00000b4f0000613d00001100010000410000000000100443000000180100002900000004001004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001101011001c7000080020200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000000001004b0000160c0000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000000190200002900000000002104350000002401500039000000170200002900000000002104350000110501000041000000000015043500000004015000390000000d0200002900000000002104350000008401500039000000110200002900000000002104350000114c032001980000001f0420018f001700000005001d000000a4015000390000000002310019000000100500002900000002055003670000127a0000613d000000000605034f0000000007010019000000006806043c0000000007870436000000000027004b000012760000c13d000000000004004b000012870000613d000000000335034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000001101100029000000000001043500000000010004140000001802000029000000040020008c00002b120000613d00000011020000290000001f022000390000114c02200197000000a402200039000010ac0020009c000010ac0200804100000060022002100000001703000029000010ac0030009c000010ac030080410000004003300210000000000223019f000010ac0010009c000010ac01008041000000c001100210000000000121019f000000180200002942aa429b0000040f0000006003100270000110ac0030019d0003000000010355000000010020019000002b120000c13d000010ac033001970000001f0530018f0000110306300198000000400200043d000000000462001900002b500000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012ac0000c13d00002b500000013d0000006400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000403100370000000000403043b000010b10040009c0000160c0000213d00000023034000390000000000d3004b0000160c0000813d0000000403400039000000000531034f000000000205043b001900000002001d000010b10020009c0000160c0000213d0000002404400039001800000004001d001700190040002d0000001700d0006b0000160c0000213d0000002404100370000000000404043b000010b10040009c0000160c0000213d00000023054000390000000000d5004b0000160c0000813d0000000405400039000000000551034f000000000205043b001600000002001d000010b10020009c0000160c0000213d0000002404400039001500000004001d001400160040002d0000001400d0006b0000160c0000213d0000004404100370000000000404043b000010b10040009c0000160c0000213d00000023054000390000000000d5004b0000160c0000813d0000000405400039000000000551034f000000000205043b001300000002001d000010b10020009c0000160c0000213d0000002404400039001100000004001d001200130040002d0000001200d0006b0000160c0000213d000000130000006b000013ff0000613d00000019020000290000114c042001980010001f00200193000e00200030003d0000000e02100360000f00000004001d0000008001400039000012fc0000613d0000008003000039000000000402034f000000004504043c0000000003530436000000000013004b000012f80000c13d000000100000006b0000130a0000613d0000000f0220036000000010030000290000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000000190300002900000080013000390000111b0200004100000000002104350000002001300039000010ac0010009c000d00000001001d000010ac0100804100000060011002100000000002000414000010ac0020009c000010ac02008041000000c002200210000000000121019f0000112f011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d00000019020000290000001f022000390000114c022001970000003f022000390000114c032001970000000005000031000000000101043b000000400200043d0000000003320019000000000023004b00000000040000390000000104004039000010b10030009c0000164e0000213d00000001004001900000164e0000c13d000000000101041a000c00000001001d000000400030043f00000019010000290000000001120436000000170050006b0000160c0000213d00000002060003670000000e046003600000000f031000290000000f0000006b0000133f0000613d000000000704034f0000000008010019000000007907043c0000000008980436000000000038004b0000133b0000c13d000000100000006b0000134d0000613d0000000f0440036000000010070000290000000307700210000000000803043300000000087801cf000000000878022f000000000404043b0000010007700089000000000474022f00000000047401cf000000000484019f00000000004304350000000d03200029000000000003043500000016030000290000001f033000390000114c033001970000003f033000390000114c03300197000000400400043d0000000003340019000000000043004b00000000070000390000000107004039000010b10030009c0000164e0000213d00000001007001900000164e0000c13d000000400030043f00000016030000290000000003340436000000140050006b0000160c0000213d000000150660036000000016050000290000114c075001980000001f0850018f00000000057300190000136e0000613d000000000906034f000000000a030019000000009b09043c000000000aba043600000000005a004b0000136a0000c13d000000000008004b0000137b0000613d000000000676034f0000000307800210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f000000000065043500000016053000290000000000050435000000400500043d000000400650003900000060070000390000000000760435000000200650003900001130070000410000000000760435000000000702043300000080025000390000000000720435000000a002500039000000000007004b000013920000613d00000000080000190000000009280019000000000a180019000000000a0a04330000000000a904350000002008800039000000000078004b0000138b0000413d000000000127001900000000000104350000001f017000390000114c01100197000000600750003900000080081000390000000000870435000000000221001900000000010404330000000002120436000000000001004b000013a60000613d000000000400001900000000072400190000000008340019000000000808043300000000008704350000002004400039000000000014004b0000139f0000413d0000000003210019000000000003043500000000025200490000001f011000390000114c011001970000000001210019000000200210008a00000000002504350000001f011000390000114c021001970000000001520019000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d000000400010043f000010ac0060009c000010ac0600804100000040016002100000000002050433000010ac0020009c000010ac020080410000006002200210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d00000013020000290000001f022000390000114c022001970000003f022000390000114c04200197000000000201043b000000400300043d0000000001430019000000000031004b00000000040000390000000104004039000010b10010009c0000164e0000213d00000001004001900000164e0000c13d000000400010043f000000130100002900000000041304360000001201000029000000000010007c0000160c0000213d00000013010000290000114c061001980000001f0710018f000000110100002900000002081003670000000005640019000013ed0000613d000000000108034f0000000009040019000000001a01043c0000000009a90436000000000059004b000013e90000c13d0000000c01000029000010f001100197000000000007004b000013fc0000613d000000000668034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f00000000006504350000001304400029000000000004043542aa399a0000040f000000130000006b0000000005000039000000010500c039000000180100002900000019020000290000001503000029000000160400002942aa41830000040f42aa3b910000040f0000000001000019000042ab0001042e000000a400d0008c0000160c0000413d0000000401100370000000000101043b000010b10010009c0000160c0000213d000000040110003900000000020d001942aa32680000040f001700000001001d00000002010003670000002402100370000000000402043b000010b10040009c0000160c0000213d00000023024000390000000008000031001910ef0080019b000010ef05200197000000190650014f000000190050006c0000000005000019000010ef05004041000000000082004b0000000002000019000010ef02008041000010ef0060009c000000000502c019000000000005004b0000160c0000c13d0000000402400039000000000221034f000000000502043b000010b10050009c0000164e0000213d00000005065002100000003f02600039000010ed02200197000000400300043d0000000007230019001600000003001d000000000037004b00000000020000390000000102004039000010b10070009c0000164e0000213d00000001002001900000164e0000c13d000000400070043f0000001602000029000000000052043500000024044000390000000006460019000000000086004b0000160c0000213d001800000008001d000000000005004b0000144c0000613d0000001605000029000000000241034f000000000202043b000000200550003900000000002504350000002004400039000000000064004b000014450000413d0000004402100370000000000402043b000010b10040009c000000180d0000290000160c0000213d00000023024000390000000000d2004b0000000005000019000010ef05008041000010ef02200197000000190620014f000000190020006c0000000002000019000010ef02004041000010ef0060009c000000000205c019000000000002004b0000160c0000c13d0000000402400039000000000221034f000000000602043b000010b10060009c0000164e0000213d00000005056002100000003f02500039000010ed02200197000000400300043d0000000007230019000f00000003001d000000000037004b00000000020000390000000102004039000010b10070009c0000164e0000213d00000001002001900000164e0000c13d0000002404400039000000400070043f0000000f02000029000000000062043500000000054500190000000000d5004b0000160c0000213d000000000006004b00001e580000c13d0000006402100370000000000502043b000010b10050009c0000160c0000213d00000023025000390000000000d2004b0000000003000019000010ef03008041000010ef02200197000000190420014f000000190020006c0000000002000019000010ef02004041000010ef0040009c000000000203c019000000000002004b0000160c0000c13d0000000406500039000000000261034f000000000402043b000010b10040009c0000164e0000213d0000001f024000390000114c022001970000003f022000390000114c02200197000000400300043d0000000007230019001500000003001d000000000037004b00000000020000390000000102004039000010b10070009c0000164e0000213d00000001002001900000164e0000c13d0000002402500039000000400070043f0000001503000029000000000543043600000000022400190000000000d2004b0000160c0000213d0000002002600039000000000721034f0000114c084001980000001f0940018f0000000006850019000014b00000613d000000000a07034f000000000205001900000000a30a043c0000000002320436000000000062004b000014ac0000c13d000000000009004b000014bd0000613d000000000287034f0000000303900210000000000706043300000000073701cf000000000737022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000272019f0000000000260435000000000245001900000000000204350000008402100370000000000402043b000010b10040009c00000018080000290000160c0000213d0000002302400039000000000082004b0000000003000019000010ef03008041000010ef02200197000000190520014f000000190020006c0000000002000019000010ef02004041000010ef0050009c000000000203c019000000000002004b0000160c0000c13d0000000405400039000000000251034f000000000302043b000010b10030009c0000164e0000213d0000001f023000390000114c022001970000003f022000390000114c02200197000000400700043d0000000006270019000400000007001d000000000076004b00000000020000390000000102004039000010b10060009c0000164e0000213d00000001002001900000164e0000c13d0000002402400039000000400060043f00000004040000290000000004340436000300000004001d0000000002230019000000000082004b0000160c0000213d0000002002500039000000000221034f0000114c043001980000001f0530018f0000000301400029000014f80000613d000000000602034f0000000307000029000000006806043c0000000007870436000000000017004b000014f40000c13d000000000005004b000015050000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002104350000000301300029000000000001043500000015010000290000000001010433000600000001001d000000000001004b0000000001000039000000010100c039000500000001001d00000017010000290000000001010433000000000001004b00000be50000613d00000017020000290000002002200039000000000202043300000080022000390000000002020433000210f00020019b000000060000006b000015220000613d000000170100002942aa356a0000040f00000000020100190000000201000029000000150300002942aa399a0000040f00000017010000290000000001010433000010b10010009c0000164e0000213d00000005021002100000003f03200039000010ed03300197000000400400043d0000000003340019000900000004001d000000000043004b00000000040000390000000104004039000010b10030009c0000164e0000213d00000001004001900000164e0000c13d000000400030043f000000090300002900000000031304360000001f0120018f000000000002004b0000153e0000613d000000000223001900000000040000310000000204400367000000004504043c0000000003530436000000000023004b0000153a0000c13d000000000001004b00000017010000290000000001010433000000000001004b00002bae0000c13d42aa3b910000040f0000002001000039000000400200043d001900000002001d00000000021204360000000901000029000005340000013d0000000001000416000000000001004b0000160c0000c13d0000112601000041000000000201041a000010f0032001970000000005000411000000000053004b0000160e0000c13d0000110c02200197000000000021041b0000000001000414000010ac0010009c000010ac01008041000000c001100210000010fd011001c70000800d0200003900000003030000390000112904000041000000000600001942aa429b0000040f00000001002001900000160c0000613d0000000001000019000042ab0001042e0000004400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000403100370000000000303043b000010b10030009c0000160c0000213d00000023043000390000000000d4004b0000160c0000813d0000000404300039000000000441034f000000000504043b000010b10050009c0000164e0000213d00000005045002100000003f06400039000010ed06600197000010ee0060009c0000164e0000213d00000024023000390000008006600039000000400060043f000000800050043f00000000042400190000000000d4004b0000160c0000213d000000000005004b0000171e0000c13d0000002401100370000000000101043b000010b10010009c0000160c0000213d000000040110003900000000020d001942aa30c30000040f0000000002010019000000800100003942aa38af0000040f000015c80000013d0000004400d0008c0000160c0000413d0000000002000416000000000002004b0000160c0000c13d0000000402100370000000000202043b001900000002001d000010b10020009c0000160c0000213d0000002401100370000000000101043b001800000001001d000010b10010009c0000160c0000213d000010af01000041000000000201041a000010b003200197000010b101200198000016540000613d000000010010008c000015b70000c13d001600000002001d001700000003001d00001100010000410000000000100443000000000100041000000004001004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001101011001c7000080020200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000000001004b00000017030000290000001602000029000016560000613d0000114601000041000000000010043f0000110901000041000042ac000104300000002400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000401100370000000000101043b000010b10010009c0000160c0000213d000000040110003900000000020d001942aa33e50000040f42aa368b0000040f000000400200043d0000000000120435000010ac0020009c000010ac02008041000000400120021000001114011001c7000042ab0001042e0000004400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000403100370000000000303043b000010b10030009c0000160c0000213d00000023043000390000000000d4004b0000160c0000813d0000000404300039000000000441034f000000000504043b000010b10050009c0000164e0000213d00000005045002100000003f06400039000010ed06600197000010ee0060009c0000164e0000213d0000008006600039000000400060043f000000800050043f000000240330003900000000043400190000000000d4004b0000160c0000213d000000000005004b000015f80000613d0000008005000039000000000631034f000000000606043b000010b10060009c0000160c0000213d000000200550003900000000006504350000002003300039000000000043004b000015ef0000413d0000002401100370000000000101043b000010b10010009c0000160c0000213d000000040110003900000000020d001942aa30c30000040f0000000002010019000000800100003942aa36230000040f000015c80000013d0000002400d0008c0000160c0000413d0000000003000416000000000003004b0000160c0000c13d0000000401100370000000000101043b000010b10010009c000016130000a13d0000000001000019000042ac000104300000112801000041000000000010043f000000040050043f0000111601000041000042ac00010430000000040110003900000000020d001942aa30420000040f001900000001001d001800000002001d000000400100043d001700000001001d42aa305c0000040f00000017020000290000002001200039000000000001043500000000000204350000001901000029000000180200002942aa36f70000040f001900000001001d000000400100043d001800000001001d42aa305c0000040f0000001901000029000000000101041a000010f00210019700000018030000290000000003230436000000a001100270000010b1011001970000000000130435000000400100043d00000000022104360000000003030433000010b1033001970000000000320435000010ac0010009c000010ac0100804100000040011002100000112a011001c7000042ab0001042e0000113d01000041000000000010043f0000110901000041000042ac00010430000000000010043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b001100000001001d000000400100043d001200000001001d000010ff0010009c000016640000a13d0000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac00010430000000000003004b000015b70000c13d0000110b0120019700000001011001bf0000113f0220019700001140022001c7000000000003004b000000000201c019000010af01000041000000000021041b000010b000200198000017150000c13d0000114501000041000000000010043f0000110901000041000042ac0001043000000012040000290000014001400039000000400010043f00000060014000390000001105000029000000000205041a000000c00320027000000000003104350000008001200270000010b101100197000000400340003900000000001304350000004001200270000010b10110019700000020034000390000000000130435000010b10120019700000000001404350000000101500039000000000101041a0000008002400039000010f0031001970000000000320435000000a002400039000000a003100270000010b1033001970000000000320435000000e002100270000000ff0220018f000000030020008c000016890000a13d0000111501000041000000000010043f0000002101000039000000040010043f0000111601000041000042ac00010430000000c0034000390000000000230435000000e002400039000010f8001001980000000001000039000000010100c03900000000001204350000000201500039000000000401041a000010b10040009c0000164e0000213d00000005024002100000003f02200039000010ed02200197000000400300043d0000000002230019001000000003001d000000000032004b00000000030000390000000103004039000010b10020009c0000164e0000213d00000001003001900000164e0000c13d000000400020043f001300000004001d00000010020000290000000000420435000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d0000001305000029000000000005004b000017030000613d000000000601043b000000200700008a00000000080000190000001009000029000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f000000010030019000000b130000c13d000000400a00043d00000000034a0436000000000002004b000016e80000613d001400000003001d001500000004001d00160000000a001d001700000009001d001800000008001d001900000006001d000000000060043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000150b00002900000000000b004b000000200700008a00000018080000290000001709000029000016ee0000613d000000000201043b000000000100001900000013050000290000001906000029000000160a000029000000140c00002900000000031c0019000000000402041a0000000000430435000000010220003900000020011000390000000000b1004b000016e00000413d000016f20000013d0000114d011001970000000000130435000000000004004b00000020010000390000000001006039000016f20000013d000000000100001900000013050000290000001906000029000000160a0000290000003f01100039000000000271016f0000000001a20019000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d0000002009900039000000400010043f0000000000a9043500000001066000390000000108800039000000000058004b000016b60000413d00000012010000290000010001100039000000100200002900000000002104350000001101000029000000030110003942aa37290000040f0000001203000029000001200230003900000000001204350000002001000039000000400200043d001900000002001d0000000002120436000000000103001942aa346b0000040f000000190200002900001a560000013d001700000003001d0000000001000411000010f00610019800001a5f0000c13d0000114401000041000000000010043f000000040000043f0000111601000041000042ac0001043000000080050000390000000007020019000017290000013d000000200550003900000000038a0019000000000003043500000000009504350000002007700039000000000047004b000000190d000029000015820000813d000000000871034f000000000808043b000010b10080009c0000160c0000213d000000000a2800190000001f08a000390000000000d8004b0000000009000019000010ef09008041000010ef08800197000000000008004b000000000b000019000010ef0b004041000010ef0080009c000000000b09c01900000000000b004b0000160c0000c13d0000000008a1034f000000000808043b000010b10080009c0000164e0000213d0000001f098000390000114c099001970000003f099000390000114c0b900197000000400900043d000000000bb9001900000000009b004b000000000c000039000000010c004039000010b100b0009c0000164e0000213d0000000100c001900000164e0000c13d000000200ca000390000004000b0043f000000000a890436000000000bc800190000000000db004b0000160c0000213d000000000cc1034f0000114c0d800198000000000bda00190000175b0000613d000000000e0c034f000000000f0a001900000000e30e043c000000000f3f04360000000000bf004b000017570000c13d0000001f0e800190000017210000613d0000000003dc034f000000030ce00210000000000d0b0433000000000dcd01cf000000000dcd022f000000000303043b000001000cc000890000000003c3022f0000000003c301cf0000000003d3019f00000000003b0435000017210000013d00000012020000290000000102200039000000800100043d000000000012004b00000b4f0000813d001200000002001d0000000501200210001900000001001d000000a001100039001000000001001d0000000001010433000010b101100197000000000010043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b0000000101100039000000000101041a000d10f00010019b0000000c0000006b0000178a0000613d0000000d02000029000000060020006c00002fdb0000c13d000000800100043d0000001202000029000000000021004b00000be50000a13d0000000b010000290000000001010433000000000021004b00000be50000a13d000010f301000041000000000101041a000000ff0010019000002afc0000c13d00000010010000290000000001010433000010b102100197000000190300002900000009013000290000000001010433001100000001001d001300000002001d000000000020043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b001900000001001d0000000101100039001400000001001d000000000101041a001500000001001d000010f00110019800002dac0000613d0000000c0000006b000017b70000c13d0000000002000411000000000021004b00002fdb0000c13d0000001901000029000000000101041a000010b101100197000000000010043f000010f401000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b000000400200043d001800000002001d000010f50020009c0000164e0000213d0000001805000029000000e002500039000000400020043f000000000201041a000010f0032001970000000004350436000010f6002001980000000003000039000000010300c039000f00000004001d0000000000340435000000a803200270000000ff0330018f000000030030008c000016830000213d00000040045000390000000000340435000000b002200270000010b102200197000000600350003900000000002304350000000102100039000000000202041a0000008003500039000010f0042001970000000000430435000000a003500039000000a002200270000010b10220019700000000002304350000000201100039000000000201041a000000010320019000000001052002700000007f0550618f0000001f0050008c00000000040000390000000104002039000000000442013f000000010040019000000b130000c13d000000400400043d001700000004001d001600000005001d0000000004540436000e00000004001d000000000003004b000018130000613d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000160000006b0000181a0000613d000000000201043b000000000100001900000016050000290000000e060000290000000003160019000000000402041a000000000043043500000001022000390000002001100039000000000051004b0000180b0000413d0000181b0000013d0000114d012001970000000e020000290000000000120435000000160000006b000000200100003900000000010060390000181b0000013d00000000010000190000003f011000390000114c021001970000001701200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d000000400010043f0000001801000029000000c001100039000000170200002900000000002104350000000f010000290000000001010433000000000001004b00002db00000613d0000001501000029000010f80010019800002db40000c13d000010f901100197000010fa011001c70000001402000029000000000012041b000010fb0100004100000000001004430000000001000414000010ac0010009c000010ac01008041000000c001100210000010ae011001c70000800b0200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000c0011002100000001903000029000000000203041a000010fc02200197000000000112019f000000000013041b000000400100043d0000002002100039000000400300003900000000003204350000001302000029000000000021043500000040031000390000001102000029000000004202043400000000002304350000006003100039000000000002004b0000185c0000613d000000000500001900000000063500190000000007540019000000000707043300000000007604350000002005500039000000000025004b000018550000413d0000001f042000390000114c04400197000000000232001900000000000204350000006002400039000010ac0020009c000010ac020080410000006002200210000010ac0010009c000010ac010080410000004001100210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c70000800d020000390000000103000039000010fe0400004142aa429b0000040f00000001002001900000160c0000613d000000800100043d000000120010006c00000be50000a13d0000001901000029000000000101041a000a00000001001d00000010010000290000000001010433000010b101100197000000000010043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b000e00000001001d000000400100043d001100000001001d000010ff0010009c0000164e0000213d00000011040000290000014001400039000000400010043f00000060014000390000000e05000029000000000205041a000000c00320027000000000003104350000008001200270000010b101100197000000400340003900000000001304350000004001200270000010b10110019700000020034000390000000000130435000010b10120019700000000001404350000000101500039000000000101041a0000008002400039000010f0031001970000000000320435000000a002400039000000a003100270000010b1033001970000000000320435000000e002100270000000ff0220018f000000030020008c000016830000213d000000c0034000390000000000230435000000e002400039000010f8001001980000000001000039000000010100c03900000000001204350000000201500039000000000201041a001600000002001d000010b10020009c0000164e0000213d000000160200002900000005022002100000003f02200039000010ed02200197000000400300043d0000000002230019000f00000003001d000000000032004b00000000030000390000000103004039000010b10020009c0000164e0000213d00000001003001900000164e0000c13d000000400020043f00000016020000290000000f030000290000000000230435000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000160000006b000019240000613d000000000401043b00000000050000190000000f06000029000000000104041a000000010210019000000001081002700000007f0880618f0000001f0080008c00000000030000390000000103002039000000000331013f000000010030019000000b130000c13d000000400700043d0000000003870436000000000002004b001900000004001d001800000005001d001700000006001d000019080000613d001300000003001d001400000008001d001500000007001d000000000040043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d0000001405000029000000000005004b0000190e0000613d000000000201043b0000000001000019000000150700002900000013060000290000000003160019000000000402041a000000000043043500000001022000390000002001100039000000000051004b000019000000413d000019100000013d0000114d011001970000000000130435000000000008004b00000020010000390000000001006039000019100000013d000000000100001900000015070000290000003f011000390000114c021001970000000001720019000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d00000017060000290000002006600039000000400010043f00000000007604350000001904000029000000010440003900000018050000290000000105500039000000160050006c000018db0000413d000000110100002900000100011000390000000f0200002900000000002104350000000e010000290000000301100039000000000201041a000000010320019000000001052002700000007f0550618f0000001f0050008c00000000040000390000000104002039000000000442013f000000010040019000000b130000c13d000000400400043d001900000004001d001800000005001d0000000004540436001700000004001d000000000003004b000019530000613d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000180000006b0000195a0000613d000000000201043b0000000001000019000000180500002900000017060000290000000003160019000000000402041a000000000043043500000001022000390000002001100039000000000051004b0000194b0000413d0000195b0000013d0000114d0120019700000017020000290000000000120435000000180000006b000000200100003900000000010060390000195b0000013d00000000010000190000003f011000390000114c021001970000001901200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d000000400010043f00000011020000290000012001200039000000190300002900000000003104350000000001020433000010b101100197000000000010043f000010f401000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b000000400200043d001900000002001d000010f50020009c0000164e0000213d0000001905000029000000e002500039000000400020043f000000000201041a000010f0032001970000000003350436000010f6002001980000000004000039000000010400c0390000000000430435000000a803200270000000ff0330018f000000030030008c000016830000213d00000040045000390000000000340435000000b002200270000010b102200197000000600350003900000000002304350000000102100039000000000202041a000000a003200270000010b103300197000000a00450003900000000003404350000008003500039000010f002200197001600000003001d00000000002304350000000201100039000000000201041a000000010320019000000001052002700000007f0550618f0000001f0050008c00000000040000390000000104002039000000000442013f000000010040019000000b130000c13d000000400400043d001800000004001d001700000005001d0000000004540436001500000004001d000000000003004b000019c50000613d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000170000006b000019cc0000613d000000000201043b0000000001000019000000170500002900000015060000290000000003160019000000000402041a000000000043043500000001022000390000002001100039000000000051004b000019bd0000413d000019cd0000013d0000114d0120019700000015020000290000000000120435000000170000006b00000020010000390000000001006039000019cd0000013d00000000010000190000003f011000390000114c021001970000001801200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d000000400010043f0000001901000029000000c0011000390000001802000029000000000021043500000016010000290000000001010433001910f00010019c000017690000613d000000800100043d000000120010006c00000be50000a13d00000010010000290000000001010433001800000001001d00001100010000410000000000100443000000190100002900000004001004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001101011001c7000080020200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000000001004b0000160c0000613d0000000a01000029000010b1011001970000001802000029000010b102200197000000400500043d00000064035000390000008004000039000000000043043500000044035000390000000000230435000000240250003900000000001204350000110501000041000000000015043500000004015000390000000d0200002900000000002104350000000801000029000000000101043300000084025000390000000000120435001800000005001d000000a402500039000000000001004b000000070600002900001a180000613d000000000300001900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b00001a110000413d0000000002210019000000000002043500000000020004140000001903000029000000040030008c00001a340000613d0000001f011000390000114c01100197000000a401100039000010ac0010009c000010ac0100804100000060011002100000001803000029000010ac0030009c000010ac030080410000004003300210000000000131019f000010ac0020009c000010ac02008041000000c002200210000000000112019f000000190200002942aa429b0000040f0000006003100270000110ac0030019d0003000000010355000000010020019000002fdf0000613d0000001801000029000010b10010009c0000164e0000213d0000001801000029000000400010043f000017690000013d000000400400043d001800000004001d001600000005001d0000000004540436000000000003004b00001a940000c13d000001000100008a000000170110017f0000000000140435000000000002004b000000200300003900000000030060390000001802000029000000180100002900000000021200490000000002320019000000200220003942aa30670000040f0000001901000029000000c002100039000000180300002900000000003204350000002002000039000000400300043d001800000003001d000000000223043642aa34d80000040f00000018020000290000000001210049000010ac0010009c000010ac010080410000006001100210000010ac0020009c000010ac020080410000004002200210000000000121019f000042ab0001042e0000112601000041000000000201041a0000110c03200197000000000363019f000000000031041b0000000001000414000010f005200197000010ac0010009c000010ac01008041000000c001100210000010fd011001c70000800d020000390000000303000039000011290400004142aa429b0000040f00000001002001900000160c0000613d0000001903000029000000800130021000001141011001970000001804000029000000c002400210000000000112019f00000040024002100000114202200197000000000121019f000000000131019f0000110a02000041000000000012041b000000170000006b000015610000c13d000010af01000041000000000201041a0000114302200197000000000021041b0000000103000039000000400100043d0000000000310435000010ac0010009c000010ac0100804100000040011002100000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010f7011001c70000800d02000039000010b30400004142aa429b0000040f00000001002001900000160c0000613d000015610000013d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d0000001702000029000000020020008c0000000002000019000000180300002900001a470000413d000000000101043b00000000020000190000001805000029000000160600002900000020022000390000000003520019000000000401041a00000000004304350000000101100039000000000062004b00001aa70000413d000000000305001900001a470000013d00000000050200190000001107000029000000180800002900001abc0000013d0000002007700039000000000292001900000000000204350000000000a704350000002008800039000000000058004b000000000d040019000004610000813d000000000281034f000000000202043b000010b10020009c0000160c0000213d000000180b2000290000001f02b000390000000000d2004b0000000009000019000010ef09008041000010ef02200197000000190a20014f000000190020006c0000000002000019000010ef02004041000010ef00a0009c000000000209c019000000000002004b0000160c0000c13d0000000002b1034f000000000902043b000010b10090009c0000164e0000213d0000001f029000390000114c022001970000003f022000390000114c02200197000000400a00043d000000000c2a00190000000000ac004b00000000020000390000000102004039000010b100c0009c0000164e0000213d00000001002001900000164e0000c13d000000200bb000390000004000c0043f00000000029a0436000000000cb900190000000000dc004b0000160c0000213d00000000040d0019000000000db1034f0000114c0e900198000000000ce2001900001af00000613d000000000f0d034f000000000b02001900000000f30f043c000000000b3b04360000000000cb004b00001aec0000c13d0000001f0b90019000001ab40000613d0000000003ed034f000000030bb00210000000000d0c0433000000000dbd01cf000000000dbd022f000000000303043b000001000bb000890000000003b3022f0000000003b301cf0000000003d3019f00000000003c043500001ab40000013d00000019020000290000001f022000390000114c022001970000003f022000390000114c02200197000010ee0020009c0000164e0000213d0000008002200039000000400020043f0000002002300039000000000221034f0000001901000029000000800010043f0000114c031001980000001f0410018f000000a00130003900001b150000613d000000a005000039000000000602034f000000006706043c0000000005750436000000000015004b00001b110000c13d000000000004004b00001b220000613d000000000232034f0000000303400210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000001901000029000000a0011000390000000000010435000000400100043d0000004002100039000000400300003900000000003204350000002002100039000011250300004100000000003204350000006004100039000000800300043d00000000003404350000008004100039000000000003004b00001b3a0000613d00000000050000190000000006450019000000a007500039000000000707043300000000007604350000002005500039000000000035004b00001b330000413d000000000443001900000000000404350000001f033000390000114c03300197000000600430003900000000004104350000009f033000390000114c043001970000000003140019000000000043004b00000000040000390000000104004039000010b10030009c0000164e0000213d00000001004001900000164e0000c13d000000400030043f000010ac0020009c000010ac0200804100000040022002100000000001010433000010ac0010009c000010ac010080410000006001100210000000000121019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d00000016020000290000001f022000390000114c022001970000003f022000390000114c04200197000000000201043b000000400300043d0000000001430019000000000031004b00000000040000390000000104004039000010b10010009c0000164e0000213d00000001004001900000164e0000c13d000000400010043f000000160100002900000000011304360000001505000029000000000050007c0000160c0000213d00000016040000290000114c054001980000001f0640018f00000014040000290000000207400367000000000451001900001b7f0000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b00001b7b0000c13d000000000006004b00001b8c0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500000016011000290000000000010435000000170100002942aa399a0000040f00000b4b0000013d0000003f04400039000010ed04400197000010ee0040009c0000164e0000213d0000008004400039000000400040043f0000000e02000029000000800020043f000000000002004b00001d3d0000c13d000000400140003900000040020000390000000000210435000000200140003900001147020000410000000000210435000000800200043d00000005032002100000000005340019000000600340003900000000002304350000008008500039000000000002004b00001d890000c13d0000000002480049000000200320008a00000000003404350000001f022000390000114c032001970000000002430019000000000032004b00000000030000390000000103004039000010b10020009c0000164e0000213d00000001003001900000164e0000c13d000000400020043f000010ac0010009c000010ac0100804100000040011002100000000002040433000010ac0020009c000010ac020080410000006002200210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d00000017020000290000001f022000390000114c022001970000003f022000390000114c04200197000000000201043b000000400300043d0000000001430019000000000031004b00000000040000390000000104004039000010b10010009c0000164e0000213d00000001004001900000164e0000c13d000000400010043f000000170100002900000000011304360000001605000029000000000050007c0000160c0000213d00000017040000290000114c054001980000001f0640018f00000014040000290000000207400367000000000451001900001beb0000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b00001be70000c13d000000000006004b00001bf80000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500000017011000290000000000010435000000180100002942aa399a0000040f0000000e0000006b0000089b0000c13d00000b4f0000013d0000112802000041000000000020043f000000040010043f0000111601000041000042ac000104300000001806000029000000000703001900001c0f0000013d000000200660003900000000028a0019000000000002043500000000009604350000002007700039000000000047004b000000190d000029000007170000813d000000000271034f000000000802043b000010b10080009c0000160c0000213d000000000a3800190000001f02a000390000000000d2004b0000000008000019000010ef08008041000010ef02200197000000000002004b0000000009000019000010ef09004041000010ef0020009c000000000908c019000000000009004b0000160c0000c13d0000000002a1034f000000000802043b000010b10080009c0000164e0000213d0000001f028000390000114c022001970000003f022000390000114c02200197000000400900043d000000000b29001900000000009b004b000000000c000039000000010c004039000010b100b0009c0000164e0000213d0000000100c001900000164e0000c13d000000200ca000390000004000b0043f000000000a8904360000000002c800190000000000d2004b0000160c0000213d000000000cc1034f0000114c0d800198000000000bda001900001c410000613d000000000e0c034f000000000f0a001900000000e20e043c000000000f2f04360000000000bf004b00001c3d0000c13d0000001f0e80019000001c070000613d0000000002dc034f000000030ce00210000000000d0b0433000000000dcd01cf000000000dcd022f000000000202043b000001000cc000890000000002c2022f0000000002c201cf0000000002d2019f00000000002b043500001c070000013d0000001206000029000000000703001900001c5a0000013d000000200660003900000000028a0019000000000002043500000000009604350000002007700039000000000047004b000000190d00002900000fb60000813d000000000271034f000000000802043b000010b10080009c0000160c0000213d000000000a3800190000001f02a000390000000000d2004b0000000008000019000010ef08008041000010ef02200197000000000002004b0000000009000019000010ef09004041000010ef0020009c000000000908c019000000000009004b0000160c0000c13d0000000002a1034f000000000802043b000010b10080009c0000164e0000213d0000001f028000390000114c022001970000003f022000390000114c02200197000000400900043d000000000b29001900000000009b004b000000000c000039000000010c004039000010b100b0009c0000164e0000213d0000000100c001900000164e0000c13d000000200ca000390000004000b0043f000000000a8904360000000002c800190000000000d2004b0000160c0000213d000000000cc1034f0000114c0d800198000000000bda001900001c8c0000613d000000000e0c034f000000000f0a001900000000e20e043c000000000f2f04360000000000bf004b00001c880000c13d0000001f0e80019000001c520000613d0000000002dc034f000000030ce00210000000000d0b0433000000000dcd01cf000000000dcd022f000000000202043b000001000cc000890000000002c2022f0000000002c201cf0000000002d2019f00000000002b043500001c520000013d00000000020300190000000b06000029000000000703001900001ca60000013d000000200660003900000000038a0019000000000003043500000000009604350000002007700039000000000047004b000000190d00002900000a250000813d000000000871034f000000000808043b000010b10080009c0000160c0000213d000000000a2800190000001f08a000390000000000d8004b0000000009000019000010ef09008041000010ef08800197000000000008004b000000000b000019000010ef0b004041000010ef0080009c000000000b09c01900000000000b004b0000160c0000c13d0000000008a1034f000000000808043b000010b10080009c0000164e0000213d0000001f098000390000114c099001970000003f099000390000114c0b900197000000400900043d000000000bb9001900000000009b004b000000000c000039000000010c004039000010b100b0009c0000164e0000213d0000000100c001900000164e0000c13d000000200ca000390000004000b0043f000000000a890436000000000bc800190000000000db004b0000160c0000213d000000000cc1034f0000114c0d800198000000000bda001900001cd80000613d000000000e0c034f000000000f0a001900000000e30e043c000000000f3f04360000000000bf004b00001cd40000c13d0000001f0e80019000001c9e0000613d0000000003dc034f000000030ce00210000000000d0b0433000000000dcd01cf000000000dcd022f000000000303043b000001000cc000890000000003c3022f0000000003c301cf0000000003d3019f00000000003b043500001c9e0000013d0000001802000029000010ac0020009c000010ac020080410000004002200210000010ac0010009c000010ac01008041000000c001100210000000000121019f00001109011001c7000000190200002942aa42a00000040f0000006003100270000010ac03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000180570002900001d000000613d000000000801034f0000001809000029000000008a08043c0000000009a90436000000000059004b00001cfc0000c13d000000000006004b00001d0d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000000010004150000001a0110008a0000000501100210000000010020019000001d370000613d0000001f02400039000000600420018f0000001802400029000000000042004b00000000040000390000000104004039000010b10020009c0000164e0000213d00000001004001900000164e0000c13d000000400020043f000000200030008c0000160c0000413d000000180200002900000000020204330000000501100270000000000102001f000011340020009c000021850000c13d00001100010000410000000000100443000000190100002900000004001004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001101011001c7000080020200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000000001004b000024780000c13d0000113c01000041000000000010043f0000001901000029000000040010043f0000111601000041000042ac0001043000000080040000390000001506000029000000190200002900001d490000013d00000020044000390000000007790019000000000007043500000000008404350000002006600039000000000036004b00000019020000290000218e0000813d000000000761034f000000000707043b000010b10070009c0000160c0000213d00000015097000290000001f07900039000000000027004b0000000008000019000010ef08008041000010ef07700197000000000007004b000000000a000019000010ef0a004041000010ef0070009c000000000a08c01900000000000a004b0000160c0000c13d000000000791034f000000000707043b000010b10070009c0000164e0000213d0000001f087000390000114c088001970000003f088000390000114c0a800197000000400800043d000000000aa8001900000000008a004b000000000b000039000000010b004039000010b100a0009c0000164e0000213d0000000100b001900000164e0000c13d000000200b9000390000004000a0043f0000000009780436000000000ab7001900000000002a004b0000160c0000213d000000000bb1034f0000114c0c700198000000000ac9001900001d7b0000613d000000000d0b034f000000000e09001900000000df0d043c000000000efe04360000000000ae004b00001d770000c13d0000001f0d70019000001d410000613d000000000bcb034f000000030cd00210000000000d0a0433000000000dcd01cf000000000dcd022f000000000b0b043b000001000cc00089000000000bcb022f000000000bcb01cf000000000bdb019f0000000000ba043500001d410000013d0000008005000039000000000700001900001d940000013d000000000a89001900000000000a04350000001f099000390000114c0990019700000000088900190000000107700039000000000027004b00001ba90000813d0000000009480049000000800990008a000000200330003900000000009304350000002005500039000000000905043300000000a90904340000000008980436000000000009004b00001d8c0000613d000000000b000019000000000c8b0019000000000dba0019000000000d0d04330000000000dc0435000000200bb0003900000000009b004b00001d9f0000413d00001d8c0000013d0000001902000029000000120420006a0000002003300039000000000331034f000000000303043b000000430440008a000010ef05400197000010ef06300197000000000756013f000000000056004b0000000005000019000010ef05004041000000000043004b0000000004000019000010ef04008041000010ef0070009c000000000504c019000000000005004b0000160c0000c13d0000001804300029000000000341034f000000000303043b000010b10030009c0000160c0000213d00000000053200490000002002400039000010ef04500197000010ef06200197000000000746013f000000000046004b0000000004000019000010ef04004041000000000052004b0000000005000019000010ef05002041000010ef0070009c000000000405c019000000000004004b0000160c0000c13d000000000221034f0000114c043001980000001f0530018f000000800140003900001dd90000613d0000008006000039000000000702034f000000007807043c0000000006860436000000000016004b00001dd50000c13d000000000005004b00001de60000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f000000000021043500000080013000390000111b0200004100000000002104350000111c0030009c0000111c0300804100000060013002100000000002000414000010ac0020009c000010ac02008041000000c002200210000000000121019f0000111d0110009a000080100200003942aa42a00000040f00000001002001900000160c0000613d0000000003000031000000000201043b00000016010000290000003f01100039000010ed04100197000000400100043d0000000004410019000000000014004b00000000050000390000000105004039000010b10040009c0000164e0000213d00000001005001900000164e0000c13d000000000202041a000000400040043f0000000a040000290000000000410435000000170030006b0000160c0000213d000710f00020019b0000000204000367000010ef053001970000000002010019000000180600002900001e170000013d00000020022000390000000007790019000000000007043500000000008204350000002006600039000000170060006c000029040000813d000000000764034f000000000707043b000010b10070009c0000160c0000213d00000018097000290000001f07900039000000000037004b0000000008000019000010ef08008041000010ef07700197000000000a57013f000000000057004b0000000007000019000010ef07004041000010ef00a0009c000000000708c019000000000007004b0000160c0000c13d000000000794034f000000000707043b000010b10070009c0000164e0000213d0000001f087000390000114c088001970000003f088000390000114c0a800197000000400800043d000000000aa8001900000000008a004b000000000b000039000000010b004039000010b100a0009c0000164e0000213d0000000100b001900000164e0000c13d000000200b9000390000004000a0043f0000000009780436000000000ab7001900000000003a004b0000160c0000213d000000000bb4034f0000114c0c700198000000000ac9001900001e4a0000613d000000000d0b034f000000000e09001900000000df0d043c000000000efe04360000000000ae004b00001e460000c13d0000001f0d70019000001e100000613d000000000bcb034f000000030cd00210000000000d0a0433000000000dcd01cf000000000dcd022f000000000b0b043b000001000cc00089000000000bcb022f000000000bcb01cf000000000bdb019f0000000000ba043500001e100000013d0000000f07000029000000000804001900001e630000013d0000002007700039000000000292001900000000000204350000000000a704350000002008800039000000000058004b000000180d000029000014790000813d000000000281034f000000000202043b000010b10020009c0000160c0000213d000000000b4200190000001f02b000390000000000d2004b0000000009000019000010ef09008041000010ef02200197000000190a20014f000000190020006c0000000002000019000010ef02004041000010ef00a0009c000000000209c019000000000002004b0000160c0000c13d0000000002b1034f000000000902043b000010b10090009c0000164e0000213d0000001f029000390000114c022001970000003f022000390000114c02200197000000400a00043d000000000c2a00190000000000ac004b00000000020000390000000102004039000010b100c0009c0000164e0000213d00000001002001900000164e0000c13d000000200bb000390000004000c0043f00000000029a0436000000000cb900190000000000dc004b0000160c0000213d000000000db1034f0000114c0e900198000000000ce2001900001e960000613d000000000f0d034f000000000b02001900000000f30f043c000000000b3b04360000000000cb004b00001e920000c13d0000001f0b90019000001e5b0000613d0000000003ed034f000000030bb00210000000000d0c0433000000000dbd01cf000000000dbd022f000000000303043b000001000bb000890000000003b3022f0000000003b301cf0000000003d3019f00000000003c043500001e5b0000013d000010fd011001c7000080090200003900000017030000290000001904000029000000000500001942aa429b0000040f00030000000103550000006003100270000110ac0030019d0000000100200190000030280000613d0000001801000029000010b10010009c0000164e0000213d0000001801000029000000400010043f0000001002000029001000010020003d000000800100043d000000100010006b00000b4f0000813d00000010010000290000000501100210000a00000001001d000000a001100039000c00000001001d0000000001010433000010b101100197000000000010043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b0000000101100039000000000101041a000910f00010019b000000080000006b00001ed50000613d0000000902000029000000030020006c00002fdb0000c13d000000800100043d000000100010006c00000be50000a13d00000012010000290000000001010433000000100010006c00000be50000a13d000010f301000041000000000101041a000000ff0010019000002afc0000c13d0000000c010000290000000001010433000010b1031001970000000a020000290000000e012000290000000001010433000d00000001001d000f00000003001d000000000030043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b001600000001001d0000000101100039001300000001001d000000000101041a001500000001001d000010f00110019800002dac0000613d000000080000006b00001f010000c13d0000000002000411000000000021004b00002fdb0000c13d0000001601000029000000000101041a000010b101100197000000000010043f000010f401000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b000000400200043d001700000002001d000010f50020009c0000164e0000213d0000001704000029000000e002400039000000400020043f000000000201041a000010f0032001970000000004340436000010f6002001980000000003000039000000010300c039000b00000004001d0000000000340435000000a803200270000000ff0330018f000000030030008c000016830000213d000000170500002900000040045000390000000000340435000000b002200270000010b102200197000000600350003900000000002304350000000102100039000000000202041a0000008003500039000010f0042001970000000000430435000000a003500039000000a002200270000010b10220019700000000002304350000000201100039000000000201041a000000010320019000000001042002700000007f0440618f001900000004001d0000001f0040008c00000000040000390000000104002039000000000442013f000000010040019000000b130000c13d000000400400043d001400000004001d00000019050000290000000004540436001800000004001d000000000003004b00001f5d0000613d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000190000006b00001f640000613d000000000201043b00000000010000190000001803100029000000000402041a000000000043043500000001022000390000002001100039000000190010006c00001f550000413d00001f650000013d0000114d0120019700000018020000290000000000120435000000190000006b0000002001000039000000000100603900001f650000013d00000000010000190000003f011000390000114c021001970000001401200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d000000400010043f0000001701000029000000c001100039000000140200002900000000002104350000000b010000290000000001010433000000000001004b00002db00000613d0000001501000029000010f80010019800002db40000c13d0000001501000029000010f901100197000010fa011001c70000001302000029000000000012041b000010fb0100004100000000001004430000000001000414000010ac0010009c000010ac01008041000000c001100210000010ae011001c70000800b0200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000c0011002100000001603000029000000000203041a000010fc02200197000000000112019f000000000013041b000000400100043d0000002002100039000000400300003900000000003204350000000f02000029000000000021043500000040031000390000000d02000029000000004202043400000000002304350000006003100039000000000002004b00001fa70000613d000000000500001900000000063500190000000007540019000000000707043300000000007604350000002005500039000000000025004b00001fa00000413d0000001f042000390000114c04400197000000000232001900000000000204350000006002400039000010ac0020009c000010ac020080410000006002200210000010ac0010009c000010ac010080410000004001100210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c70000800d020000390000000103000039000010fe0400004142aa429b0000040f00000001002001900000160c0000613d000000800100043d000000100010006c00000be50000a13d0000001601000029000000000101041a000700000001001d0000000c010000290000000001010433000010b101100197000000000010043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b000d00000001001d000000400100043d000f00000001001d000010ff0010009c0000164e0000213d0000000f040000290000014001400039000000400010043f00000060014000390000000d05000029000000000205041a000000c00320027000000000003104350000008001200270000010b101100197000000400340003900000000001304350000004001200270000010b10110019700000020034000390000000000130435000010b10120019700000000001404350000000101500039000000000101041a0000008002400039000010f0031001970000000000320435000000a002400039000000a003100270000010b1033001970000000000320435000000e002100270000000ff0220018f000000030020008c000016830000213d0000000f04000029000000c0034000390000000000230435000000e002400039000010f8001001980000000001000039000000010100c03900000000001204350000000d010000290000000201100039000000000201041a001300000002001d000010b10020009c0000164e0000213d000000130200002900000005022002100000003f02200039000010ed02200197000000400300043d0000000002230019000b00000003001d000000000032004b00000000030000390000000103004039000010b10020009c0000164e0000213d00000001003001900000164e0000c13d000000400020043f00000013020000290000000b030000290000000000230435000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000130000006b000020720000613d000000000201043b001600000000001d0015000b0000002d001800000002001d000000000102041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f000000010030019000000b130000c13d000000400300043d001900000003001d001700000004001d0000000003430436001400000003001d000000000002004b000020530000613d0000001801000029000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000170000006b0000205a0000613d000000000201043b0000000001000019000000170500002900000014060000290000000003160019000000000402041a000000000043043500000001022000390000002001100039000000000051004b0000204b0000413d0000205b0000013d0000114d0110019700000014020000290000000000120435000000170000006b000000200100003900000000010060390000205b0000013d00000000010000190000003f011000390000114c021001970000001901200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d00000015020000290000002002200039000000400010043f001500000002001d000000190100002900000000001204350000001802000029000000010220003900000016030000290000000103300039001600000003001d000000130030006c000020280000413d0000000f0100002900000100011000390000000b0200002900000000002104350000000d010000290000000301100039000000000201041a000000010320019000000001042002700000007f0440618f001900000004001d0000001f0040008c00000000040000390000000104002039000000000442013f000000010040019000000b130000c13d000000400400043d001700000004001d00000019050000290000000004540436001800000004001d000000000003004b000020a00000613d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000190000006b000020a70000613d000000000201043b00000000010000190000001803100029000000000402041a000000000043043500000001022000390000002001100039000000190010006c000020980000413d000020a80000013d0000114d0120019700000018020000290000000000120435000000190000006b00000020010000390000000001006039000020a80000013d00000000010000190000003f011000390000114c021001970000001701200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d000000400010043f0000000f020000290000012001200039000000170300002900000000003104350000000001020433000010b101100197000000000010043f000010f401000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b000000400200043d001700000002001d000010f50020009c0000164e0000213d0000001704000029000000e002400039000000400020043f000000000201041a000010f0032001970000000003340436000010f6002001980000000004000039000000010400c0390000000000430435000000a803200270000000ff0330018f000000030030008c000016830000213d000000170500002900000040045000390000000000340435000000b002200270000010b102200197000000600350003900000000002304350000000102100039000000000202041a000000a003200270000010b103300197000000a00450003900000000003404350000008003500039000010f002200197001500000003001d00000000002304350000000201100039000000000201041a000000010320019000000001042002700000007f0440618f001900000004001d0000001f0040008c00000000040000390000000104002039000000000442013f000000010040019000000b130000c13d000000400400043d001600000004001d00000019050000290000000004540436001800000004001d000000000003004b000021120000613d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000190000006b000021190000613d000000000201043b00000000010000190000001803100029000000000402041a000000000043043500000001022000390000002001100039000000190010006c0000210a0000413d0000211a0000013d0000114d0120019700000018020000290000000000120435000000190000006b000000200100003900000000010060390000211a0000013d00000000010000190000003f011000390000114c021001970000001601200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d000000400010043f0000001701000029000000c0011000390000001602000029000000000021043500000015010000290000000001010433001910f00010019c00001eb40000613d00000006010000290000000001010433000000100010006c00000be50000a13d000000800100043d000000100010006c00000be50000a13d0000000a0200002900000005012000290000000001010433001700000001001d0000000c010000290000000001010433001800000001001d00001100010000410000000000100443000000190100002900000004001004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001101011001c7000080020200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000000001004b0000160c0000613d0000000701000029000010b1011001970000001802000029000010b102200197000000400500043d0000006403500039000000800400003900000000004304350000004403500039000000000023043500000024025000390000000000120435000011050100004100000000001504350000000401500039000000090200002900000000002104350000000401000029000000000101043300000084025000390000000000120435001800000005001d000000a402500039000000000001004b0000216c0000613d000000000300001900000000042300190000001105300029000000000505043300000000005404350000002003300039000000000013004b000021650000413d0000000002210019000000000002043500000000020004140000001903000029000000040030008c00001eaf0000613d0000001f011000390000114c01100197000000a401100039000010ac0010009c000010ac0100804100000060011002100000001803000029000010ac0030009c000010ac030080410000004003300210000000000131019f000010ac0020009c000010ac02008041000000c002200210000000000112019f000000170000006b00001ea40000c13d000000190200002900001ea90000013d0000113601000041000000000010043f000000040020043f0000111601000041000042ac000104300000114901000041000000000010043f0000110901000041000042ac00010430000000400400043d00001b9b0000013d0000000e02000029000e00010020003d000000800100043d0000000e0010006b00000b4f0000813d0000000e010000290000000501100210000800000001001d000000a001100039000b00000001001d0000000001010433000010b101100197000000000010043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b0000000101100039000000000101041a000710f00010019b000000060000006b000021b10000613d0000000702000029000000010020006c00002fdb0000c13d000000800100043d0000000e0010006c00000be50000a13d000000180100002900000000010104330000000e0010006c00000be50000a13d000010f301000041000000000101041a000000ff0010019000002afc0000c13d0000000b010000290000000001010433000010b103100197000000080200002900000016012000290000000001010433000d00000001001d001100000003001d000000000030043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b001400000001001d0000000101100039000c00000001001d000000000101041a001300000001001d000010f00110019800002dac0000613d000000060000006b000021dd0000c13d0000000002000411000000000021004b00002fdb0000c13d0000001401000029000000000101041a000010b101100197000000000010043f000010f401000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b000000400200043d001500000002001d000010f50020009c0000164e0000213d0000001504000029000000e002400039000000400020043f000000000201041a000010f0032001970000000004340436000010f6002001980000000003000039000000010300c039000a00000004001d0000000000340435000000a803200270000000ff0330018f000000030030008c000016830000213d000000150500002900000040045000390000000000340435000000b002200270000010b102200197000000600350003900000000002304350000000102100039000000000202041a0000008003500039000010f0042001970000000000430435000000a003500039000000a002200270000010b10220019700000000002304350000000201100039000000000201041a000000010320019000000001042002700000007f0440618f001900000004001d0000001f0040008c00000000040000390000000104002039000000000442013f000000010040019000000b130000c13d000000400400043d001200000004001d00000019050000290000000004540436001700000004001d000000000003004b000022390000613d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000190000006b000022400000613d000000000201043b00000000010000190000001703100029000000000402041a000000000043043500000001022000390000002001100039000000190010006c000022310000413d000022410000013d0000114d0120019700000017020000290000000000120435000000190000006b00000020010000390000000001006039000022410000013d00000000010000190000003f011000390000114c021001970000001201200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d000000400010043f0000001501000029000000c001100039000000120200002900000000002104350000000a010000290000000001010433000000000001004b00002db00000613d0000001301000029000010f80010019800002db40000c13d0000001301000029000010f901100197000010fa011001c70000000c02000029000000000012041b000010fb0100004100000000001004430000000001000414000010ac0010009c000010ac01008041000000c001100210000010ae011001c70000800b0200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000c0011002100000001403000029000000000203041a000010fc02200197000000000112019f000000000013041b000000400100043d0000002002100039000000400300003900000000003204350000001102000029000000000021043500000040031000390000000d02000029000000004202043400000000002304350000006003100039000000000002004b000022830000613d000000000500001900000000063500190000000007540019000000000707043300000000007604350000002005500039000000000025004b0000227c0000413d0000001f042000390000114c04400197000000000232001900000000000204350000006002400039000010ac0020009c000010ac020080410000006002200210000010ac0010009c000010ac010080410000004001100210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c70000800d020000390000000103000039000010fe0400004142aa429b0000040f00000001002001900000160c0000613d000000800100043d0000000e0010006c00000be50000a13d0000001401000029000000000101041a000500000001001d0000000b010000290000000001010433000010b101100197000000000010043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b000c00000001001d000000400100043d000d00000001001d000010ff0010009c0000164e0000213d0000000d040000290000014001400039000000400010043f00000060014000390000000c05000029000000000205041a000000c00320027000000000003104350000008001200270000010b101100197000000400340003900000000001304350000004001200270000010b10110019700000020034000390000000000130435000010b10120019700000000001404350000000101500039000000000101041a0000008002400039000010f0031001970000000000320435000000a002400039000000a003100270000010b1033001970000000000320435000000e002100270000000ff0220018f000000030020008c000016830000213d0000000d04000029000000c0034000390000000000230435000000e002400039000010f8001001980000000001000039000000010100c03900000000001204350000000c010000290000000201100039000000000201041a001100000002001d000010b10020009c0000164e0000213d000000110200002900000005022002100000003f02200039000010ed02200197000000400300043d0000000002230019000a00000003001d000000000032004b00000000030000390000000103004039000010b10020009c0000164e0000213d00000001003001900000164e0000c13d000000400020043f00000011020000290000000a030000290000000000230435000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000110000006b0000234e0000613d000000000101043b001500000001001d001300000000001d0012000a0000002d0000001501000029000000000101041a000000010210019000000001031002700000007f0330618f001900000003001d0000001f0030008c00000000030000390000000103002039000000000331013f000000010030019000000b130000c13d000000400300043d001400000003001d00000019040000290000000003430436001700000003001d000000000002004b0000232f0000613d0000001501000029000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000190000006b000023360000613d000000000201043b00000000010000190000001703100029000000000402041a000000000043043500000001022000390000002001100039000000190010006c000023270000413d000023370000013d0000114d0110019700000017020000290000000000120435000000190000006b00000020010000390000000001006039000023370000013d00000000010000190000003f011000390000114c021001970000001401200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d00000012020000290000002002200039000000400010043f001200000002001d000000140100002900000000001204350000001501000029001500010010003d00000013020000290000000102200039001300000002001d000000110020006c000023050000413d0000000d0100002900000100011000390000000a0200002900000000002104350000000c010000290000000301100039000000000201041a000000010320019000000001042002700000007f0440618f001900000004001d0000001f0040008c00000000040000390000000104002039000000000442013f000000010040019000000b130000c13d000000400400043d001500000004001d00000019050000290000000004540436001700000004001d000000000003004b0000237c0000613d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000190000006b000023830000613d000000000201043b00000000010000190000001703100029000000000402041a000000000043043500000001022000390000002001100039000000190010006c000023740000413d000023840000013d0000114d0120019700000017020000290000000000120435000000190000006b00000020010000390000000001006039000023840000013d00000000010000190000003f011000390000114c021001970000001501200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d000000400010043f0000000d020000290000012001200039000000150300002900000000003104350000000001020433000010b101100197000000000010043f000010f401000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b000000400200043d001500000002001d000010f50020009c0000164e0000213d0000001504000029000000e002400039000000400020043f000000000201041a000010f0032001970000000003340436000010f6002001980000000004000039000000010400c0390000000000430435000000a803200270000000ff0330018f000000030030008c000016830000213d000000150500002900000040045000390000000000340435000000b002200270000010b102200197000000600350003900000000002304350000000102100039000000000202041a000000a003200270000010b103300197000000a00450003900000000003404350000008003500039000010f002200197001300000003001d00000000002304350000000201100039000000000201041a000000010320019000000001042002700000007f0440618f001900000004001d0000001f0040008c00000000040000390000000104002039000000000442013f000000010040019000000b130000c13d000000400400043d001400000004001d00000019050000290000000004540436001700000004001d000000000003004b000023ee0000613d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000190000006b000023f50000613d000000000201043b00000000010000190000001703100029000000000402041a000000000043043500000001022000390000002001100039000000190010006c000023e60000413d000023f60000013d0000114d0120019700000017020000290000000000120435000000190000006b00000020010000390000000001006039000023f60000013d00000000010000190000003f011000390000114c021001970000001401200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d000000400010043f0000001501000029000000c0011000390000001402000029000000000021043500000013010000290000000001010433001910f00010019c000021900000613d000000800100043d0000000e0010006c00000be50000a13d0000000f0100002900000000010104330000000e0010006c00000be50000a13d000000040100002900000000010104330000000e0010006c00000be50000a13d0000000b010000290000000001010433001500000001001d000000080200002900000009012000290000000001010433001400000001001d00000003012000290000000001010433001700000001001d00001100010000410000000000100443000000190100002900000004001004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001101011001c7000080020200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000000001004b0000160c0000613d0000000501000029000010b1011001970000001502000029000010b1022001970000001403000029000010f003300197000000400600043d000000a404600039000000c00500003900000000005404350000008404600039000000170500002900000000005404350000006404600039000000000034043500000044036000390000000000230435000000240260003900000000001204350000110201000041000000000016043500000004016000390000000702000029000000000021043500000002010000290000000001010433000000c4026000390000000000120435001700000006001d000000e402600039000000000001004b000024560000613d000000000300001900000000042300190000001005300029000000000505043300000000005404350000002003300039000000000013004b0000244f0000413d0000000002210019000000000002043500000000020004140000001903000029000000040030008c000024720000613d0000001f011000390000114c01100197000000e401100039000010ac0010009c000010ac0100804100000060011002100000001703000029000010ac0030009c000010ac030080410000004003300210000000000131019f000010ac0020009c000010ac02008041000000c002200210000000000112019f000000190200002942aa429b0000040f0000006003100270000110ac0030019d00030000000103550000000100200190000030350000613d0000001701000029000010b10010009c0000164e0000213d0000001701000029000000400010043f000021900000013d0000113401000041000000000201041a0000110c022001970000001905000029000000000252019f000000000021041b0000000001000414000010ac0010009c000010ac01008041000000c001100210000010fd011001c70000800d020000390000000203000039000011370400004142aa429b0000040f00000001002001900000160c0000613d000000800100043d000000000001004b000025b00000c13d0000000001000416000000000001004b000015610000613d0000113b01000041000000000010043f0000110901000041000042ac00010430000000180100002900000084011000390000000201100367000000000101043b001800000001001d000010f00010009c0000160c0000213d00001100010000410000000000100443000000170100002900000004001004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001101011001c7000080020200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000000001004b0000160c0000613d000000400500043d0000006401500039000000800200003900000000002104350000001601000029000010b10110019700000024025000390000000000120435000011170100004100000000001504350000000401500039000000180200002900000000002104350000008401500039000000110200002900000000002104350000001901000029000010b1031001970000004401500039001900000003001d00000000003104350000114c032001980000001f0420018f001800000005001d000000a401500039000000000231001900000010050000290000000205500367000024cd0000613d000000000605034f0000000007010019000000006806043c0000000007870436000000000027004b000024c90000c13d000000000004004b000024da0000613d000000000335034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000001101100029000000000001043500000000010004140000001702000029000000040020008c00002b310000613d00000011020000290000001f022000390000114c02200197000011180020009c000011180200804100000060022002100000001803000029000010ac0030009c000010ac030080410000004003300210000000000232019f000010ac0010009c000010ac01008041000000c001100210000000000112019f000011190110009a000000170200002942aa429b0000040f0000006003100270000110ac0030019d0003000000010355000000010020019000002b310000c13d000010ac033001970000001f0530018f0000110306300198000000400200043d000000000462001900002b500000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024ff0000c13d00002b500000013d0000000c0700002900000000080400190000250e0000013d0000002007700039000000000292001900000000000204350000000000a704350000002008800039000000000058004b000003340000813d000000000281034f000000000202043b000010b10020009c0000160c0000213d000000000b4200190000001f02b00039000000190020006c0000000009000019000010ef09008041000010ef02200197000000180a20014f000000180020006c0000000002000019000010ef02004041000010ef00a0009c000000000209c019000000000002004b0000160c0000c13d0000000002b1034f000000000902043b000010b10090009c0000164e0000213d0000001f029000390000114c022001970000003f022000390000114c02200197000000400a00043d000000000c2a00190000000000ac004b00000000020000390000000102004039000010b100c0009c0000164e0000213d00000001002001900000164e0000c13d000000200bb000390000004000c0043f00000000029a0436000000000cb900190000001900c0006c0000160c0000213d000000000db1034f0000114c0e900198000000000ce20019000025410000613d000000000f0d034f000000000b02001900000000f30f043c000000000b3b04360000000000cb004b0000253d0000c13d0000001f0b900190000025070000613d0000000003ed034f000000030bb00210000000000d0c0433000000000dbd01cf000000000dbd022f000000000303043b000001000bb000890000000003b3022f0000000003b301cf0000000003d3019f00000000003c0435000025070000013d00000013010000290000000001010433001300000001001d00001100010000410000000000100443000000190100002900000004001004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001101011001c7000080020200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000000001004b0000160c0000613d0000001301000029000010f001100197000000400500043d0000112702000041000000000025043500000044020000390000000202200367000000000202043b000000a403500039000000c0040000390000000000430435000000840350003900000000002304350000006402500039000000180300002900000000003204350000001602000029000010b10220019700000024035000390000000000230435000000040250003900000000001204350000001701000029000010b1021001970000004401500039001800000002001d000000000021043500000015010000290000000001010433000000c4025000390000000000120435001700000005001d000000e402500039000000000001004b00000014060000290000258e0000613d000000000300001900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b000025870000413d0000000002210019000000000002043500000000020004140000001903000029000000040030008c000025aa0000613d0000001f011000390000114c01100197000000e401100039000010ac0010009c000010ac0100804100000060011002100000001703000029000010ac0030009c000010ac030080410000004003300210000000000131019f000010ac0020009c000010ac02008041000000c002200210000000000112019f000000190200002942aa429b0000040f0000006003100270000110ac0030019d0003000000010355000000010020019000002b440000613d0000001701000029000010b10010009c0000164e0000213d0000001701000029000000400010043f000006b90000013d00000000020004140000001903000029000000040030008c000025fd0000c13d000000010200003900000001040000310000260c0000013d000000800100003942aa368b0000040f00000018020000290000001f022000390000114c022001970000003f022000390000114c042001970000000002010019000000400300043d0000000001430019000000000031004b00000000040000390000000104004039000010b10010009c0000164e0000213d00000001004001900000164e0000c13d000000400010043f000000180100002900000000011304360000001605000029000000000050007c0000160c0000213d00000018060000290000114c056001980000001f0660018f0000000004510019000000170700002900000020077000390000000207700367000025dc0000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000025d80000c13d000000000006004b000025e90000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500000018011000290000000000010435000000190100002942aa399a0000040f000010f301000041000000000101041a000000ff0010019000002afc0000c13d0000110a01000041000000000201041a000010b103200197001800000003001d000010b10030009c0000287a0000c13d0000111501000041000000000010043f0000001101000039000000040010043f0000111601000041000042ac00010430000010ac0010009c000010ac010080410000006001100210000010ac0020009c000010ac02008041000000c002200210000000000112019f00001138011001c7000000190200002942aa42a50000040f000000010220018f00030000000103550000006001100270000110ac0010019d000010ac04100197000000000004004b000026190000c13d000000600100003900000080030000390000000001010433000000000002004b000026430000c13d000000000001004b000028720000c13d0000113a01000041000000000010043f0000110901000041000042ac00010430000010b10040009c0000164e0000213d0000001f014000390000114c011001970000003f011000390000114c03100197000000400100043d0000000003310019000000000013004b00000000050000390000000105004039000010b10030009c0000164e0000213d00000001005001900000164e0000c13d000000400030043f00000000034104360000114c054001980000001f0640018f00000000045300190000000307000367000026350000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b000026310000c13d000000000006004b000026100000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000026100000013d000000000001004b000015610000c13d00001100010000410000000000100443000000190100002900000004001004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001101011001c7000080020200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000000001004b000015610000c13d000011390100004100001d380000013d000000800100043d000000000001004b00000be50000613d000000a00100043d000010b101100197000000000010043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b0000000101100039000000000101041a001900000001001d00000080010000390000000b0200002942aa36230000040f00000000020100190000001901000029000010f001100197001900000001001d000000180300002942aa399a0000040f000000800100043d000000000001004b00000abb0000c13d00000b4f0000013d0000000004000019000026860000013d0000001801000029000010b10010009c0000164e0000213d0000001801000029000000400010043f000000130100002900000000010104330000000e040000290000000104400039000000000014004b0000052e0000813d000000070000006b0000000505400210000026920000613d000000000041004b00000be50000a13d0000000b02500029000000000202043300000080022000390000000002020433000010f002200197000000010020006c00002fdb0000c13d000000000041004b00000be50000a13d00000011010000290000000001010433000000000041004b00000be50000a13d0000000c0150002900000000020104330000000b01500029000a00000001001d00000000010104330000000603000029000e00000004001d001900000005001d42aa3e9b0000040f0000001904000029000900000001001d000000050100002900000000010104330000000e0010006c00000be50000a13d0000000401400029000010b1022001970000000000210435000800000002001d000000000020043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b000d00000001001d000000400100043d001000000001001d000010ff0010009c0000164e0000213d00000010040000290000014001400039000000400010043f00000060014000390000000d05000029000000000205041a000000c00320027000000000003104350000008001200270000010b101100197000000400340003900000000001304350000004001200270000010b10110019700000020034000390000000000130435000010b10120019700000000001404350000000101500039000000000101041a0000008002400039000010f0031001970000000000320435000000a002400039000000a003100270000010b1033001970000000000320435000000e002100270000000ff0220018f000000030020008c000016830000213d000000c0034000390000000000230435000000e002400039000010f8001001980000000001000039000000010100c03900000000001204350000000201500039000000000201041a001600000002001d000010b10020009c0000164e0000213d000000160200002900000005022002100000003f02200039000010ed02200197000000400300043d0000000002230019000f00000003001d000000000032004b00000000030000390000000103004039000010b10020009c0000164e0000213d00000001003001900000164e0000c13d000000400020043f00000016020000290000000f030000290000000000230435000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000160000006b000027520000613d000000000401043b00000000050000190000000f06000029000000000104041a000000010210019000000001081002700000007f0880618f0000001f0080008c00000000030000390000000103002039000000000331013f000000010030019000000b130000c13d000000400700043d0000000003870436000000000002004b001900000004001d001800000005001d001700000006001d000027360000613d001200000003001d001400000008001d001500000007001d000000000040043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d0000001405000029000000000005004b0000273c0000613d000000000201043b0000000001000019000000150700002900000012060000290000000003160019000000000402041a000000000043043500000001022000390000002001100039000000000051004b0000272e0000413d0000273e0000013d0000114d011001970000000000130435000000000008004b000000200100003900000000010060390000273e0000013d000000000100001900000015070000290000003f011000390000114c021001970000000001720019000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d00000017060000290000002006600039000000400010043f00000000007604350000001904000029000000010440003900000018050000290000000105500039000000160050006c000027090000413d000000100100002900000100011000390000000f0200002900000000002104350000000d010000290000000301100039000000000201041a000000010320019000000001052002700000007f0550618f0000001f0050008c00000000040000390000000104002039000000000442013f000000010040019000000b130000c13d000000400400043d001900000004001d001800000005001d0000000004540436001700000004001d000000000003004b000027810000613d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000180000006b000027880000613d000000000201043b0000000001000019000000180500002900000017060000290000000003160019000000000402041a000000000043043500000001022000390000002001100039000000000051004b000027790000413d000027890000013d0000114d0120019700000017020000290000000000120435000000180000006b00000020010000390000000001006039000027890000013d00000000010000190000003f011000390000114c021001970000001901200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d000000400010043f00000010020000290000012001200039000000190300002900000000003104350000000001020433000010b101100197000000000010043f000010f401000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b000000400200043d001900000002001d000010f50020009c0000164e0000213d0000001905000029000000e002500039000000400020043f000000000201041a000010f0032001970000000003350436000010f6002001980000000004000039000000010400c0390000000000430435000000a803200270000000ff0330018f000000030030008c000016830000213d00000040045000390000000000340435000000b002200270000010b102200197000000600350003900000000002304350000000102100039000000000202041a000000a003200270000010b103300197000000a00450003900000000003404350000008003500039000010f002200197001600000003001d00000000002304350000000201100039000000000201041a000000010320019000000001052002700000007f0550618f0000001f0050008c00000000040000390000000104002039000000000442013f000000010040019000000b130000c13d000000400400043d001800000004001d001700000005001d0000000004540436001500000004001d000000000003004b000027f30000613d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000170000006b000027fa0000613d000000000201043b0000000001000019000000170500002900000015060000290000000003160019000000000402041a000000000043043500000001022000390000002001100039000000000051004b000027eb0000413d000027fb0000013d0000114d0120019700000015020000290000000000120435000000170000006b00000020010000390000000001006039000027fb0000013d00000000010000190000003f011000390000114c021001970000001801200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d000000400010043f0000001901000029000000c0011000390000001802000029000000000021043500000016010000290000000001010433001910f00010019c000026800000613d000000130100002900000000010104330000000e0010006c00000be50000a13d0000000a01000029000000000101043300000080011000390000000001010433001800000001001d00001100010000410000000000100443000000190100002900000004001004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001101011001c7000080020200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000000001004b0000160c0000613d0000001801000029000010f001100197000000400400043d0000006402400039000000800300003900000000003204350000004402400039000000080300002900000000003204350000000902000029000010b1022001970000002403400039000000000023043500001117020000410000000000240435000000040240003900000000001204350000000301000029000000000101043300000084024000390000000000120435001800000004001d000000a402400039000000000001004b0000000206000029000028490000613d000000000300001900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b000028420000413d0000000002210019000000000002043500000000020004140000001903000029000000040030008c0000267b0000613d0000001f011000390000114c01100197000000a401100039000010ac0010009c000010ac0100804100000060011002100000001803000029000010ac0030009c000010ac030080410000004003300210000000000131019f000010ac0020009c000010ac02008041000000c002200210000000000112019f000000190200002942aa429b0000040f0000006003100270000110ac0030019d000300000001035500000001002001900000267b0000c13d000010ac033001970000001f0530018f0000110306300198000000400200043d000000000462001900002b500000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000286d0000c13d00002b500000013d000010ac0030009c000010ac030080410000004002300210000010ac0010009c000010ac010080410000006001100210000000000121019f000042ac000104300000110b0220019700000018030000290000000103300039000000000223019f000000000021041b000010fb0100004100000000001004430000000001000414000010ac0010009c000010ac01008041000000c001100210000010ae011001c70000800b0200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000010b101100197000001200010043f0000001801000029000000000010043f000010f401000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000800200043d000010f002200197000000000101043b000000000301041a0000110c03300197000000000223019f000000000021041b000000c00300043d000000030030008c000016830000213d0000110d02200197000000a8033002100000110e03300197000000000223019f000000a00300043d000000000003004b0000110f030000410000000003006019000000000232019f000000e00300043d000000b0033002100000111003300197000000000232019f000000000021041b000001000200043d000010f0022001970000000103100039000000000403041a0000111104400197000000000224019f000001200400043d000000a0044002100000111204400197000000000242019f000000000023041b000001400200043d001900000002001d0000000032020434001600000003001d001700000002001d000010b10020009c0000164e0000213d0000000201100039001500000001001d000000000101041a000000010010019000000001021002700000007f0220618f001400000002001d0000001f0020008c00000000020000390000000102002039000000000121013f000000010010019000000b130000c13d0000001401000029000000200010008c000028f00000413d0000001501000029000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d00000017030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000014010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000028f00000813d000000000002041b0000000102200039000000000012004b000028ec0000413d00000017010000290000001f0010008c00002db80000a13d0000001501000029000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000200200008a0000001702200180000000000101043b00002fec0000c13d000000200300003900002ff80000013d00000014020000290000003f02200039000010ed06200197000000400200043d0000000006620019001900000002001d000000000026004b00000000070000390000000107004039000010b10060009c0000164e0000213d00000001007001900000164e0000c13d000000400060043f000000080200002900000019060000290000000000260435000000150030006b0000160c0000213d000000080000006b00002b630000c13d000000190200002942aa38af0000040f00000010020000290000001f022000390000114c022001970000003f022000390000114c042001970000000002010019000000400300043d0000000001430019000000000031004b00000000040000390000000104004039000010b10010009c0000164e0000213d00000001004001900000164e0000c13d000000400010043f000000100100002900000000011304360000001305000029000000000050007c0000160c0000213d00000010040000290000114c054001980000001f0640018f0000000f04000029000000020740036700000000045100190000293d0000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000029390000c13d000000000006004b0000294a0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500000010011000290000000000010435000000070100002942aa399a0000040f0000000a0000006b00000b4f0000613d0000000002000019001900000002001d0000000502200210001600000002001d00000018092000290000000202000367000000000192034f000000000101043b0000000003000031000000120430006a000000430440008a000010ef05400197000010ef06100197000000000756013f000000000056004b0000000005000019000010ef05004041000000000041004b0000000004000019000010ef04008041000010ef0070009c000000000504c019000000000005004b0000160c0000c13d0000001804100029000000000142034f000000000101043b000010b10010009c0000160c0000213d00000000051300490000002003400039000010ef04500197000010ef06300197000000000746013f000000000046004b0000000004000019000010ef04004041000000000053004b0000000005000019000010ef05002041000010ef0070009c000000000405c019000000000004004b0000160c0000c13d000000000432034f0000114c05100198000000400200043d0000000003520019000029870000613d000000000604034f0000000007020019000000006806043c0000000007870436000000000037004b000029830000c13d001700000009001d0000001f06100190000029950000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000043043500000000031200190000111b040000410000000000430435000010ac0020009c000010ac0200804100000040022002100000111c0010009c0000111c010080410000006001100210000000000121019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000121019f0000111e0110009a000080100200003942aa42a00000040f000000010020019000000017030000290000160c0000613d000000000101043b000000100000006b000029b10000613d000000000101041a000000070110014f000010f00010019800002fdb0000c13d0000000201000367000000000231034f000000000302043b0000000002000031000000120420006a000000430440008a000010ef05400197000010ef06300197000000000756013f000000000056004b0000000005000019000010ef05004041000000000043004b0000000004000019000010ef04008041000010ef0070009c000000000504c019000000000005004b0000160c0000c13d0000001803300029000000000431034f000000000804043b000010b10080009c0000160c0000213d00000000048200490000002009300039000010ef03400197000010ef05900197000000000635013f000000000035004b0000000003000019000010ef03004041000000000049004b0000000004000019000010ef04002041000010ef0060009c000000000304c019000000000003004b0000160c0000c13d0000001904000029000000080040006c00000be50000813d000000090420006a00000016050000290000001103500029000000000331034f000000000303043b000000430440008a000010ef05400197000010ef06300197000000000756013f000000000056004b0000000005000019000010ef05004041000000000043004b0000000004000019000010ef04008041000010ef0070009c000000000504c019000000000005004b0000160c0000c13d0000001103300029000000000431034f000000000704043b000010b10070009c0000160c0000213d00000000027200490000002006300039000010ef03200197000010ef04600197000000000534013f000000000034004b0000000003000019000010ef03004041000d00000006001d000000000026004b0000000002000019000010ef02002041000010ef0050009c000000000302c019000000000003004b0000160c0000c13d000010f302000041000000000202041a000000ff0020019000002afc0000c13d000000000391034f0000114c0a800198000000400100043d0000000002a1001900002a120000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b00002a0e0000c13d001600000009001d000f00000007001d0000001f04800190001400000004001d000000030640021000002a220000613d0000000003a3034f000000000402043300000000046401cf000000000464022f000000000303043b0000010005600089000000000353022f00000000035301cf000000000343019f0000000000320435001300000006001d00000000028100190000111b030000410000000000320435000010ac0010009c000010ac0100804100000040011002100000002002800039000010ac0020009c000e00000002001d000010ac020080410000006002200210000000000121019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c70000801002000039001700000008001d00150000000a001d42aa42a00000040f00000015080000290000001704000029000000010020019000000016050000290000160c0000613d0000001f024000390000114c02200197000b00000002001d0000003f022000390000114c03200197000000000901043b000000400200043d0000000001320019000000000021004b00000000030000390000000103004039000010b10010009c0000164e0000213d00000001003001900000164e0000c13d000000400010043f00000000014204360000000004540019000000000040007c0000160c0000213d00000002045003670000000003810019000000000008004b00002a5c0000613d000000000504034f0000000006010019000000005705043c0000000006760436000000000036004b00002a580000c13d000000140000006b00002a690000613d000000000484034f0000000005030433000000130600002900000000056501cf000000000565022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000454019f0000000000430435000c00000009001d0000000e032000290000000000030435000000400300043d0000000002020433000000000002004b00002a780000613d000000000400001900000000053400190000000006140019000000000606043300000000006504350000002004400039000000000024004b00002a710000413d00000000013200190000111b040000410000000000410435000010ac0030009c000010ac0300804100000040013002100000002002200039000010ac0020009c000010ac020080410000006002200210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f0000000100200190000000170a0000290000000f0b0000290000001606000029000000150c0000290000000c040000290000160c0000613d000000000101043b000000000101041a000011120010019800002b000000613d000000000104041a000000100000006b00002a9d0000c13d000010f0021001970000000003000411000000000032004b00002fdb0000c13d00001112021001970000110f0020009c00002b040000613d0000111f011001970000110f011001c7000000000014041b000000400100043d00000040021000390000000000a204350000004002000039000000000221043600000060041000390000000005c400190000000203000367000000000663034f00000000000c004b00002ab40000613d000000000706034f0000000008040019000000007907043c0000000008980436000000000058004b00002ab00000c13d000000140000006b00002ac10000613d0000000006c6034f0000000007050433000000130800002900000000078701cf000000000787022f000000000606043b0000010008800089000000000686022f00000000068601cf000000000676019f00000000006504350000000005a4001900000000000504350000000b05400029000000000415004900000000004204350000000d043003600000000002b504360000114c05b00198000000000352001900002ad10000613d000000000604034f0000000007020019000000006806043c0000000007870436000000000037004b00002acd0000c13d0000001f06b0019000002ade0000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000001f03b000390000114c033001970000000004b20019000000000004043500000000031300490000000002230019000010ac0020009c000010ac020080410000006002200210000010ac0010009c000010ac010080410000004001100210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c70000800d020000390000000103000039000011200400004142aa429b0000040f00000001002001900000160c0000613d000000190200002900000001022000390000000a0020006c000029510000413d00000b4f0000013d0000114801000041000000000010043f0000110901000041000042ac000104300000112201000041000000000010043f0000110901000041000042ac000104300000112101000041000000000010043f0000110901000041000042ac00010430000010fd011001c700008009020000390000001904000029000000000500001942aa429b0000040f00030000000103550000006003100270000110ac0030019d000000010020019000002b1a0000613d0000001701000029000010b10010009c0000164e0000213d0000001701000029000000400010043f42aa3b910000040f0000000001000019000042ab0001042e000010ac033001970000001f0530018f0000110306300198000000400200043d000000000462001900002b500000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002b220000c13d00002b500000013d000010fd011001c700008009020000390000001704000029000000000500001942aa429b0000040f00030000000103550000006003100270000110ac0030019d000000010020019000002b370000613d0000001801000029000010b10010009c0000164e0000213d0000001801000029000000400010043f00000f600000013d000010ac033001970000001f0530018f0000110306300198000000400200043d000000000462001900002b500000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002b3f0000c13d00002b500000013d000010ac033001970000001f0530018f0000110306300198000000400200043d000000000462001900002b500000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002b4c0000c13d000000000005004b00002b5d0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000010ac0020009c000010ac020080410000004002200210000000000112019f000042ac000104300000001906000029000000110700002900002b6d0000013d000000200660003900000000028a0019000000000002043500000000009604350000002007700039000000150070006c000029190000813d000000000874034f000000000808043b000010b10080009c0000160c0000213d000000110a8000290000001f08a00039000000000038004b0000000009000019000010ef09008041000010ef08800197000000000b58013f000000000058004b0000000008000019000010ef08004041000010ef00b0009c000000000809c019000000000008004b0000160c0000c13d0000000008a4034f000000000808043b000010b10080009c0000164e0000213d0000001f098000390000114c099001970000003f099000390000114c0b900197000000400900043d000000000bb9001900000000009b004b000000000c000039000000010c004039000010b100b0009c0000164e0000213d0000000100c001900000164e0000c13d000000200ca000390000004000b0043f000000000a890436000000000bc8001900000000003b004b0000160c0000213d0000000002c4034f0000114c0d800198000000000bda001900002ba00000613d000000000e02034f000000000f0a001900000000ec0e043c000000000fcf04360000000000bf004b00002b9c0000c13d0000001f0e80019000002b660000613d0000000002d2034f000000030ce00210000000000d0b0433000000000dcd01cf000000000dcd022f000000000202043b000001000cc000890000000002c2022f0000000002c201cf0000000002d2019f00000000002b043500002b660000013d001000000000001d00002bc60000013d000010fd011001c7000080090200003900000015030000290000001904000029000000000500001942aa429b0000040f00030000000103550000006003100270000110ac0030019d00000001002001900000301b0000613d0000001801000029000010b10010009c0000164e0000213d0000001801000029000000400010043f0000001002000029001000010020003d00000017010000290000000001010433000000100010006b000015430000813d000000100100002900000005011002100000002002100039000c00000002001d000a00170020002d000000060000006b00002bd40000613d0000000a01000029000000000101043300000080011000390000000001010433000010f001100197000000020010006c00002fdb0000c13d0000000f010000290000000001010433000000100010006c00000be50000a13d0000000c020000290000000f0120002900000000020104330000000a010000290000000001010433000000050300002942aa3e9b0000040f000800000001001d00000009010000290000000001010433000000100010006c00000be50000a13d0000000c030000290000000901300029000010b1022001970000000000210435000700000002001d000000000020043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b000d00000001001d000000400100043d000e00000001001d000010ff0010009c0000164e0000213d0000000e040000290000014001400039000000400010043f00000060014000390000000d05000029000000000205041a000000c00320027000000000003104350000008001200270000010b101100197000000400340003900000000001304350000004001200270000010b10110019700000020034000390000000000130435000010b10120019700000000001404350000000101500039000000000101041a0000008002400039000010f0031001970000000000320435000000a002400039000000a003100270000010b1033001970000000000320435000000e002100270000000ff0220018f000000040020008c000016830000813d0000000e04000029000000c0034000390000000000230435000000e002400039000010f8001001980000000001000039000000010100c03900000000001204350000000d010000290000000201100039000000000201041a001300000002001d000010b10020009c0000164e0000213d000000130200002900000005022002100000003f02200039000010ed02200197000000400300043d0000000002230019000b00000003001d000000000032004b00000000030000390000000103004039000010b10020009c0000164e0000213d00000001003001900000164e0000c13d000000400020043f00000013020000290000000b030000290000000000230435000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000130000006b00002c910000613d000000000401043b00000000050000190000000b06000029000000000104041a000000010210019000000001071002700000007f0770618f0000001f0070008c00000000030000390000000103002039000000000032004b00000b130000c13d001500000006001d001800000005001d000000400500043d0000000003750436000000000002004b001900000004001d00002c750000613d001100000003001d001400000007001d001200000005001d000000000040043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000140000006b00002c7b0000613d000000000201043b00000000010000190000001205000029000000140600002900000011070000290000000003170019000000000402041a000000000043043500000001022000390000002001100039000000000061004b00002c6d0000413d00002c7d0000013d0000114d011001970000000000130435000000000007004b0000002001000039000000000100603900002c7d0000013d000000000100001900000012050000290000003f011000390000114c021001970000000001520019000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d00000015060000290000002006600039000000400010043f00000000005604350000001904000029000000010440003900000018050000290000000105500039000000130050006c00002c490000413d0000000e0100002900000100011000390000000b0200002900000000002104350000000d010000290000000301100039000000000201041a000000010320019000000001042002700000007f0440618f001900000004001d0000001f0040008c00000000040000390000000104002039000000000442013f000000010040019000000b130000c13d000000400400043d001800000004001d00000019050000290000000004540436001500000004001d000000000003004b00002cc10000613d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000190000006b00002cc80000613d000000000201043b0000000001000019000000190500002900000015060000290000000003160019000000000402041a000000000043043500000001022000390000002001100039000000000051004b00002cb90000413d00002cc90000013d0000114d0120019700000015020000290000000000120435000000190000006b0000002001000039000000000100603900002cc90000013d00000000010000190000003f011000390000114c021001970000001801200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d000000400010043f0000000e020000290000012001200039000000180300002900000000003104350000000001020433000010b101100197000000000010043f000010f401000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b000000400200043d001900000002001d000010f50020009c0000164e0000213d0000001904000029000000e002400039000000400020043f000000000201041a000010f0032001970000000003340436000010f6002001980000000004000039000000010400c0390000000000430435000000a803200270000000ff0330018f000000030030008c000016830000213d000000190500002900000040045000390000000000340435000000b002200270000010b102200197000000600350003900000000002304350000000102100039000000000202041a000000a003200270000010b103300197000000a00450003900000000003404350000008003500039000010f002200197001400000003001d00000000002304350000000201100039000000000201041a000000010320019000000001042002700000007f0440618f001800000004001d0000001f0040008c00000000040000390000000104002039000000000442013f000000010040019000000b130000c13d000000400400043d001500000004001d00000018050000290000000004540436001300000004001d000000000003004b00002d350000613d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000180000006b00002d3c0000613d000000000201043b0000000001000019000000180500002900000013060000290000000003160019000000000402041a000000000043043500000001022000390000002001100039000000000051004b00002d2d0000413d00002d3d0000013d0000114d0120019700000013020000290000000000120435000000180000006b0000002001000039000000000100603900002d3d0000013d00000000010000190000003f011000390000114c021001970000001501200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d000000400010043f0000001901000029000000c0011000390000001502000029000000000021043500000014010000290000000001010433001910f00010019c00002bc00000613d00000016010000290000000001010433000000100010006c00000be50000a13d00000017010000290000000001010433000000100010006c00000be50000a13d0000000c0200002900000016012000290000000001010433001500000001001d0000000a01000029000000000101043300000080011000390000000001010433001800000001001d00001100010000410000000000100443000000190100002900000004001004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001101011001c7000080020200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000000001004b0000160c0000613d0000001801000029000010f001100197000000400400043d0000006402400039000000800300003900000000003204350000004402400039000000070300002900000000003204350000000802000029000010b1022001970000002403400039000000000023043500001117020000410000000000240435000000040240003900000000001204350000000401000029000000000101043300000084024000390000000000120435001800000004001d000000a402400039000000000001004b000000030600002900002d930000613d000000000300001900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b00002d8c0000413d0000000002210019000000000002043500000000020004140000001903000029000000040030008c00002bbb0000613d0000001f011000390000114c01100197000000a401100039000010ac0010009c000010ac0100804100000060011002100000001803000029000010ac0030009c000010ac030080410000004003300210000000000131019f000010ac0020009c000010ac02008041000000c002200210000000000112019f000000150000006b00002bb00000c13d000000190200002900002bb50000013d0000112d01000041000000000010043f0000110901000041000042ac000104300000112c01000041000000000010043f0000110901000041000042ac000104300000112b01000041000000000010043f0000110901000041000042ac00010430000000170000006b000000000100001900002dbd0000613d00000016010000290000000001010433000000170400002900000003024002100000114e0220027f0000114e02200167000000000121016f0000000102400210000000000121019f000030060000013d0000001701000029000100200010003d000e00000000001d00002dd40000013d0000001801000029000010b10010009c0000164e0000213d0000001801000029000000400010043f0000000e02000029000e00010020003d000000170100002900000000010104330000000e0010006b000003fe0000813d0000000e010000290000000501100210000000040000006b00002de30000613d00000001030000290000000002310019000000000202043300000080022000390000000002020433000000000303043300000080033000390000000003030433000000000223013f000010f00020019800002fdb0000c13d0000000c0200002900000000020204330000000e0020006c00000be50000a13d00000020021000390000001703200029000900000002001d0000000c012000290000000002010433000700000003001d0000000001030433000000030300002942aa3e9b0000040f000600000001001d000000080100002900000000010104330000000e0010006c00000be50000a13d00000009030000290000000801300029000010b1022001970000000000210435000500000002001d000000000020043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b000b00000001001d000000400100043d000d00000001001d000010ff0010009c0000164e0000213d0000000d040000290000014001400039000000400010043f00000060014000390000000b05000029000000000205041a000000c00320027000000000003104350000008001200270000010b101100197000000400340003900000000001304350000004001200270000010b10110019700000020034000390000000000130435000010b10120019700000000001404350000000101500039000000000101041a0000008002400039000010f0031001970000000000320435000000a002400039000000a003100270000010b1033001970000000000320435000000e002100270000000ff0220018f000000030020008c000016830000213d0000000d04000029000000c0034000390000000000230435000000e002400039000010f8001001980000000001000039000000010100c03900000000001204350000000b010000290000000201100039000000000201041a001000000002001d000010b10020009c0000164e0000213d000000100200002900000005022002100000003f02200039000010ed02200197000000400300043d0000000002230019000a00000003001d000000000032004b00000000030000390000000103004039000010b10020009c0000164e0000213d00000001003001900000164e0000c13d000000400020043f00000010020000290000000a030000290000000000230435000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000100000006b00002ea60000613d000000000101043b001900000001001d001400000000001d0013000a0000002d0000001901000029000000000101041a000000010210019000000001031002700000007f0330618f001800000003001d0000001f0030008c00000000030000390000000103002039000000000331013f000000010030019000000b130000c13d000000400300043d001500000003001d00000018040000290000000003430436001200000003001d000000000002004b00002e870000613d0000001901000029000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000180000006b00002e8e0000613d000000000201043b0000000001000019000000180500002900000012060000290000000003160019000000000402041a000000000043043500000001022000390000002001100039000000000051004b00002e7f0000413d00002e8f0000013d0000114d0110019700000012020000290000000000120435000000180000006b0000002001000039000000000100603900002e8f0000013d00000000010000190000003f011000390000114c021001970000001501200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d00000013020000290000002002200039000000400010043f001300000002001d000000150100002900000000001204350000001901000029001900010010003d00000014020000290000000102200039001400000002001d000000100020006c00002e5b0000413d0000000d0100002900000100011000390000000a0200002900000000002104350000000b010000290000000301100039000000000201041a000000010320019000000001042002700000007f0440618f001900000004001d0000001f0040008c00000000040000390000000104002039000000000442013f000000010040019000000b130000c13d000000400400043d001500000004001d00000019050000290000000004540436001800000004001d000000000003004b00002ed40000613d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000190000006b00002edb0000613d000000000201043b00000000010000190000001803100029000000000402041a000000000043043500000001022000390000002001100039000000190010006c00002ecc0000413d00002edc0000013d0000114d0120019700000018020000290000000000120435000000190000006b0000002001000039000000000100603900002edc0000013d00000000010000190000003f011000390000114c021001970000001501200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d000000400010043f0000000d020000290000012001200039000000150300002900000000003104350000000001020433000010b101100197000000000010043f000010f401000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000000101043b000000400200043d001500000002001d000010f50020009c0000164e0000213d0000001504000029000000e002400039000000400020043f000000000201041a000010f0032001970000000003340436000010f6002001980000000004000039000000010400c0390000000000430435000000a803200270000000ff0330018f000000030030008c000016830000213d000000150500002900000040045000390000000000340435000000b002200270000010b102200197000000600350003900000000002304350000000102100039000000000202041a000000a003200270000010b103300197000000a00450003900000000003404350000008003500039000010f002200197001300000003001d00000000002304350000000201100039000000000201041a000000010320019000000001042002700000007f0440618f001900000004001d0000001f0040008c00000000040000390000000104002039000000000442013f000000010040019000000b130000c13d000000400400043d001400000004001d00000019050000290000000004540436001800000004001d000000000003004b00002f460000613d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f00000001002001900000160c0000613d000000190000006b00002f4d0000613d000000000201043b00000000010000190000001803100029000000000402041a000000000043043500000001022000390000002001100039000000190010006c00002f3e0000413d00002f4e0000013d0000114d0120019700000018020000290000000000120435000000190000006b0000002001000039000000000100603900002f4e0000013d00000000010000190000003f011000390000114c021001970000001401200029000000000021004b00000000020000390000000102004039000010b10010009c0000164e0000213d00000001002001900000164e0000c13d000000400010043f0000001501000029000000c0011000390000001402000029000000000021043500000013010000290000000001010433001910f00010019c00002dce0000613d000000170100002900000000010104330000000e0010006c00000be50000a13d000000160100002900000000010104330000000e0010006c00000be50000a13d000000110100002900000000010104330000000e0010006c00000be50000a13d0000000701000029000000000101043300000080011000390000000001010433001500000001001d000000090200002900000016012000290000000001010433001400000001001d00000011012000290000000001010433001800000001001d00001100010000410000000000100443000000190100002900000004001004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001101011001c7000080020200003942aa42a00000040f000000010020019000002fda0000613d000000000101043b000000000001004b0000160c0000613d0000001501000029000010f0011001970000001402000029000010f002200197000000400500043d000000a403500039000000c0040000390000000000430435000000840350003900000018040000290000000000430435000000640350003900000000002304350000004402500039000000050300002900000000003204350000000602000029000010b10220019700000024035000390000000000230435000011270200004100000000002504350000000402500039000000000012043500000002010000290000000001010433000000c4025000390000000000120435001800000005001d000000e402500039000000000001004b00002fb10000613d000000000300001900000000042300190000000f05300029000000000505043300000000005404350000002003300039000000000013004b00002faa0000413d0000000002210019000000000002043500000000020004140000001903000029000000040030008c00002dc90000613d0000001f011000390000114c01100197000000e401100039000010ac0010009c000010ac0100804100000060011002100000001803000029000010ac0030009c000010ac030080410000004003300210000000000131019f000010ac0020009c000010ac02008041000000c002200210000000000112019f000000190200002942aa429b0000040f0000006003100270000110ac0030019d0003000000010355000000010020019000002dc90000c13d000010ac033001970000001f0530018f0000110306300198000000400200043d000000000462001900002b500000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002fd50000c13d00002b500000013d000000000001042f0000113e01000041000000000010043f0000110901000041000042ac00010430000010ac033001970000001f0530018f0000110306300198000000400200043d000000000462001900002b500000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002fe70000c13d00002b500000013d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000019053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00002ff10000c13d000000170020006c000030030000813d00000017020000290000000302200210000000f80220018f0000114e0220027f0000114e0220016700000019033000290000000003030433000000000223016f000000000021041b0000001701000029000000010110021000000001011001bf0000001502000029000000000012041b000000400100043d00000018020000290000000000210435000010ac0010009c000010ac0100804100000040011002100000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010f7011001c70000800d020000390000000103000039000011130400004142aa429b0000040f0000000100200190000006b90000c13d0000160c0000013d000010ac033001970000001f0530018f0000110306300198000000400200043d000000000462001900002b500000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030230000c13d00002b500000013d000010ac033001970000001f0530018f0000110306300198000000400200043d000000000462001900002b500000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030300000c13d00002b500000013d000010ac033001970000001f0530018f0000110306300198000000400200043d000000000462001900002b500000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000303d0000c13d00002b500000013d0000001f03100039000000000023004b0000000004000019000010ef04004041000010ef05200197000010ef03300197000000000653013f000000000053004b0000000003000019000010ef03002041000010ef0060009c000000000304c019000000000003004b0000305a0000613d0000000203100367000000000303043b000010b10030009c0000305a0000213d00000020011000390000000004310019000000000024004b0000305a0000213d0000000002030019000000000001042d0000000001000019000042ac000104300000114f0010009c000030610000813d0000004001100039000000400010043f000000000001042d0000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000001f022000390000114c022001970000000001120019000000000021004b00000000020000390000000102004039000010b10010009c000030730000213d0000000100200190000030730000c13d000000400010043f000000000001042d0000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac0001043000000000030100190000001f01100039000000000021004b0000000004000019000010ef04004041000010ef05200197000010ef01100197000000000651013f000000000051004b0000000001000019000010ef01002041000010ef0060009c000000000104c019000000000001004b000030c10000613d0000000205000367000000000135034f000000000401043b000011500040009c000030bb0000813d0000001f014000390000114c011001970000003f011000390000114c07100197000000400100043d0000000007710019000000000017004b00000000080000390000000108004039000010b10070009c000030bb0000213d0000000100800190000030bb0000c13d0000002008300039000000400070043f00000000034104360000000007840019000000000027004b000030c10000213d000000000585034f0000114c064001980000001f0740018f0000000002630019000030ab0000613d000000000805034f0000000009030019000000008a08043c0000000009a90436000000000029004b000030a70000c13d000000000007004b000030b80000613d000000000565034f0000000306700210000000000702043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000052043500000000024300190000000000020435000000000001042d0000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000000001000019000042ac00010430000300000000000200000000030100190000001f01100039000000000021004b0000000005000019000010ef05004041000010ef04200197000010ef01100197000000000641013f000000000041004b0000000001000019000010ef01002041000010ef0060009c000000000105c019000000000001004b0000313d0000613d0000000205000367000000000135034f000000000601043b000011500060009c0000313f0000813d00000005076002100000003f01700039000010ed01100197000000400900043d0000000008190019000100000009001d000000000098004b00000000010000390000000101004039000010b10080009c0000313f0000213d00000001001001900000313f0000c13d000300200030003d000000400080043f000000010100002900000000006104350000000301700029000200000001001d000000000021004b0000313d0000213d0000000203000029000000030030006c0000313b0000a13d00000001080000290000000309000029000030fa0000013d00000020088000390000000001a1001900000000000104350000000000b804350000002009900039000000020090006c0000313b0000813d000000000195034f000000000101043b000010b10010009c0000313d0000213d000000030c1000290000001f01c00039000000000021004b0000000006000019000010ef06008041000010ef01100197000000000a41013f000000000041004b0000000001000019000010ef01004041000010ef00a0009c000000000106c019000000000001004b0000313d0000c13d0000000001c5034f000000000a01043b000010b100a0009c0000313f0000213d0000001f01a000390000114c011001970000003f011000390000114c01100197000000400b00043d000000000d1b00190000000000bd004b00000000010000390000000101004039000010b100d0009c0000313f0000213d00000001001001900000313f0000c13d0000002006c000390000004000d0043f0000000001ab0436000000000c6a001900000000002c004b0000313d0000213d000000000665034f0000114c0fa00198000000000df100190000312d0000613d000000000e06034f000000000c01001900000000e30e043c000000000c3c04360000000000dc004b000031290000c13d0000001f0ca00190000030f30000613d0000000003f6034f0000000306c00210000000000c0d0433000000000c6c01cf000000000c6c022f000000000303043b0000010006600089000000000363022f00000000036301cf0000000003c3019f00000000003d0435000030f30000013d0000000101000029000000000001042d0000000001000019000042ac000104300000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300005000000000002000200000001001d0000000001120049000011060010009c000032600000213d0000013f0010008c000032600000a13d000000400100043d000300000001001d000011510010009c000032620000813d00000003010000290000014001100039000000400010043f00000002040003670000000201400360000000000101043b000010b10010009c000032600000213d000000000a0200190000000302000029000000000312043600000002010000290000002001100039000000000514034f000000000505043b000010b10050009c000032600000213d00000000005304350000002001100039000000000314034f000000000303043b000010b10030009c000032600000213d0000000302000029000000400520003900000000003504350000002001100039000000000314034f000000000303043b000010b10030009c000032600000213d0000000302000029000000600520003900000000003504350000002001100039000000000314034f000000000303043b000010f00030009c000032600000213d0000000302000029000000800520003900000000003504350000002001100039000000000314034f000000000303043b000010b10030009c000032600000213d0000000302000029000000a00520003900000000003504350000002001100039000000000314034f000000000303043b000000030030008c000032600000213d0000000302000029000000c00520003900000000003504350000002001100039000000000314034f000000000303043b000000000003004b0000000005000039000000010500c039000000000053004b000032600000c13d0000000302000029000000e00520003900000000003504350000002001100039000000000114034f000000000101043b000010b10010009c000032600000213d0000000201100029000500000001001d0000001f011000390000000000a1004b0000000003000019000010ef03008041000010ef01100197000010ef05a00197000000000651013f000000000051004b0000000001000019000010ef01004041000010ef0060009c000000000103c019000000000001004b000032600000c13d0000000501400360000000000301043b000010b10030009c000032620000213d00000005063002100000003f01600039000010ed01100197000000400200043d0000000007120019000100000002001d000000000027004b00000000010000390000000101004039000010b10070009c000032620000213d0000000100100190000032620000c13d000000400070043f0000000101000029000000000031043500000005010000290000002009100039000400000069001d0000000400a0006b000032600000213d000000040090006c000032130000813d000000010b000029000031cf0000013d000000200bb000390000000001c1001900000000000104350000000000db04350000002009900039000000040090006c000000000a020019000032130000813d000000000194034f000000000101043b000010b10010009c000032600000213d000000050e1000290000003f01e000390000000000a1004b0000000003000019000010ef03008041000010ef01100197000000000751013f000000000051004b0000000001000019000010ef01004041000010ef0070009c000000000103c019000000000001004b000032600000c13d000000200fe000390000000001f4034f000000000c01043b000010b100c0009c000032620000213d0000001f01c000390000114c011001970000003f011000390000114c01100197000000400d00043d00000000031d00190000000000d3004b00000000010000390000000101004039000010b10030009c000032620000213d0000000100100190000032620000c13d0000004007e00039000000400030043f0000000001cd043600000000037c00190000000000a3004b000032600000213d00000000020a00190000002003f00039000000000734034f0000114c08c00198000000000f810019000032050000613d000000000307034f000000000e010019000000003a03043c000000000eae04360000000000fe004b000032010000c13d0000001f03c00190000031c70000613d000000000787034f000000030330021000000000080f043300000000083801cf000000000838022f000000000707043b0000010003300089000000000737022f00000000033701cf000000000383019f00000000003f0435000031c70000013d000000030100002900000100011000390000000102000029000000000021043500000002010000290000012001100039000000000114034f000000000101043b000010b10010009c000032600000213d00000002071000290000001f017000390000000000a1004b0000000002000019000010ef02008041000010ef01100197000000000351013f000000000051004b0000000001000019000010ef01004041000010ef0030009c000000000102c019000000000001004b000032600000c13d000000000174034f000000000301043b000010b10030009c000032620000213d0000001f013000390000114c011001970000003f011000390000114c01100197000000400500043d0000000008150019000000000058004b00000000010000390000000101004039000010b10080009c000032620000213d0000000100100190000032620000c13d0000002001700039000000400080043f000000000735043600000000021300190000000000a2004b000032600000213d000000000414034f0000114c063001980000001f0830018f00000000026700190000324d0000613d000000000104034f0000000009070019000000001a01043c0000000009a90436000000000029004b000032490000c13d000000000008004b0000325a0000613d000000000164034f0000000304800210000000000602043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f000000000012043500000000013700190000000000010435000000030100002900000120021000390000000000520435000000000001042d0000000001000019000042ac000104300000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac00010430000a000000000002000300000001001d0000001f01100039000000000021004b0000000003000019000010ef03004041000a10ef0020019b000010ef011001970000000a0510014f0000000a0010006c0000000001000019000010ef01002041000010ef0050009c000000000103c019000000000001004b000033bd0000613d00000002050003670000000301500360000000000101043b000011500010009c000033bf0000813d00000005031002100000003f06300039000010ed06600197000000400400043d0000000006640019000100000004001d000000000046004b00000000070000390000000107004039000010b10060009c000033bf0000213d0000000100700190000033bf0000c13d000000400060043f0000000104000029000000000014043500000003010000290000002004100039000200000034001d000000020020006b000033bd0000213d0000000001040019000000020040006c000033bb0000813d000000200b00008a0000000104000029000032a50000013d0000000404000029000000200440003900000000011700190000000000010435000000090600002900000120016000390000000000310435000000000064043500000005010000290000002001100039000000020010006c000000200b00008a000033bb0000813d000400000004001d000500000001001d000000000115034f000000000101043b000010b10010009c000033bd0000213d0000000301100029000600000001001d000800200010003d000000080120006a000011060010009c000033bd0000213d000001400010008c000033bd0000413d000000400100043d000900000001001d000010ff0010009c000033bf0000213d00000009010000290000014001100039000000400010043f0000000801500360000000000101043b000010b10010009c000033bd0000213d0000000903000029000000000313043600000008010000290000002001100039000000000615034f000000000606043b000010b10060009c000033bd0000213d00000000006304350000002001100039000000000315034f000000000303043b000010b10030009c000033bd0000213d0000000904000029000000400640003900000000003604350000002001100039000000000315034f000000000303043b000010b10030009c000033bd0000213d0000000904000029000000600640003900000000003604350000002001100039000000000315034f000000000303043b000010f00030009c000033bd0000213d0000000904000029000000800640003900000000003604350000002001100039000000000315034f000000000303043b000010b10030009c000033bd0000213d0000000904000029000000a00640003900000000003604350000002001100039000000000315034f000000000303043b000000030030008c000033bd0000213d0000000904000029000000c00640003900000000003604350000002001100039000000000315034f000000000303043b000000000003004b0000000006000039000000010600c039000000000063004b000033bd0000c13d0000000904000029000000e00640003900000000003604350000002001100039000000000115034f000000000101043b000010b10010009c000033bd0000213d000000080d1000290000001f01d00039000000000021004b0000000003000019000010ef03008041000010ef011001970000000a0610014f0000000a0010006c0000000001000019000010ef01004041000010ef0060009c000000000103c019000000000001004b000033bd0000c13d0000000001d5034f000000000101043b000010b10010009c000033bf0000213d00000005031002100000003f06300039000010ed06600197000000400400043d0000000006640019000700000004001d000000000046004b00000000070000390000000107004039000010b10060009c000033bf0000213d0000000100700190000033bf0000c13d000000400060043f00000007040000290000000000140435000000200fd000390000000003f30019000000000023004b000033bd0000213d00000000003f004b000033740000813d000000070e000029000033310000013d000000200ee00039000000000118001900000000000104350000000000ce0435000000200ff0003900000000003f004b000000200b00008a000033740000813d0000000001f5034f000000000101043b000010b10010009c000033bd0000213d0000000009d100190000003f01900039000000000021004b0000000006000019000010ef06008041000010ef011001970000000a0710014f0000000a0010006c0000000001000019000010ef01004041000010ef0070009c000000000106c019000000000001004b000033bd0000c13d0000002006900039000000000165034f000000000101043b000010b10010009c000033bf0000213d0000001f071000390000000007b7016f0000003f077000390000000007b7016f000000400c00043d000000000a7c00190000000000ca004b00000000070000390000000107004039000010b100a0009c000033bf0000213d0000000100700190000033bf0000c13d00000040079000390000004000a0043f00000000081c04360000000007710019000000000027004b000033bd0000213d0000002006600039000000000765034f000000000ab101700000000006a80019000033660000613d000000000b07034f000000000908001900000000b40b043c0000000009490436000000000069004b000033620000c13d0000001f09100190000033290000613d0000000004a7034f0000000307900210000000000906043300000000097901cf000000000979022f000000000404043b0000010007700089000000000474022f00000000047401cf000000000494019f0000000000460435000033290000013d000000090100002900000100011000390000000703000029000000000031043500000006010000290000014001100039000000000115034f000000000101043b000010b10010009c000033bd0000213d00000008071000290000001f01700039000000000021004b0000000003000019000010ef03008041000010ef011001970000000a0410014f0000000a0010006c0000000001000019000010ef01004041000010ef0040009c000000000103c019000000000001004b000033bd0000c13d000000000175034f000000000101043b000010b10010009c000033bf0000213d0000001f031000390000000003b3016f0000003f033000390000000004b3016f000000400300043d0000000006430019000000000036004b00000000080000390000000108004039000010b10060009c000033bf0000213d0000000100800190000033bf0000c13d0000002008700039000000400060043f00000000071304360000000004810019000000000024004b000033bd0000213d000000000985034f000000000ab101700000000006a70019000033ad0000613d000000000b09034f000000000807001900000000b40b043c0000000008480436000000000068004b000033a90000c13d0000001f08100190000032980000613d0000000004a9034f0000000308800210000000000906043300000000098901cf000000000989022f000000000404043b0000010008800089000000000484022f00000000048401cf000000000494019f0000000000460435000032980000013d0000000101000029000000000001042d0000000001000019000042ac000104300000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac00010430000000000301001900000000040104330000000001420436000000000004004b000033d20000613d000000000200001900000020033000390000000005030433000010b10550019700000000015104360000000102200039000000000042004b000033cb0000413d000000000001042d00000000430104340000000001320436000000000003004b000033df0000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b000033d80000413d000000000213001900000000000204350000001f023000390000114c022001970000000001210019000000000001042d00000000030100190000000001120049000011060010009c000034630000213d000000df0010008c000034630000a13d000000400100043d000011520010009c000034650000813d000000e004100039000000400040043f0000000204000367000000000534034f000000000505043b000010f00050009c000034630000213d00000000065104360000002005300039000000000754034f000000000707043b000000000007004b0000000008000039000000010800c039000000000087004b000034630000c13d00000000007604350000002005500039000000000654034f000000000606043b000000030060008c000034630000213d000000400710003900000000006704350000002005500039000000000654034f000000000606043b000010b10060009c000034630000213d000000600710003900000000006704350000002005500039000000000654034f000000000606043b000010f00060009c000034630000213d000000800710003900000000006704350000002005500039000000000654034f000000000606043b000010b10060009c000034630000213d000000a00710003900000000006704350000002005500039000000000554034f000000000505043b000010b10050009c000034630000213d00000000063500190000001f03600039000000000023004b0000000005000019000010ef05008041000010ef03300197000010ef07200197000000000873013f000000000073004b0000000003000019000010ef03004041000010ef0080009c000000000305c019000000000003004b000034630000c13d000000000364034f000000000303043b000010b10030009c000034650000213d0000001f053000390000114c055001970000003f055000390000114c08500197000000400500043d0000000008850019000000000058004b00000000090000390000000109004039000010b10080009c000034650000213d0000000100900190000034650000c13d0000002009600039000000400080043f00000000063504360000000008930019000000000028004b000034630000213d000000000494034f0000114c073001980000001f0830018f0000000002760019000034510000613d000000000904034f000000000a060019000000009b09043c000000000aba043600000000002a004b0000344d0000c13d000000000008004b0000345e0000613d000000000474034f0000000307800210000000000802043300000000087801cf000000000878022f000000000404043b0000010007700089000000000474022f00000000047401cf000000000484019f000000000042043500000000023600190000000000020435000000c0021000390000000000520435000000000001042d0000000001000019000042ac000104300000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000000043010434000010b10330019700000000033204360000000004040433000010b104400197000000000043043500000040031000390000000003030433000010b1033001970000004004200039000000000034043500000060031000390000000003030433000010b1033001970000006004200039000000000034043500000080031000390000000003030433000010f00330019700000080042000390000000000340435000000a003200039000000a0041000390000000004040433000010b1044001970000000000430435000000c0031000390000000003030433000000040030008c000034d20000813d000000c0042000390000000000340435000000e0031000390000000003030433000000000003004b0000000003000039000000010300c039000000e004200039000000000034043500000100031000390000000004030433000001000320003900000140050000390000000000530435000001400320003900000000050404330000000000530435000001600620003900000005035002100000000008360019000000000005004b000034bb0000613d0000000007000019000034a90000013d0000001f0a9000390000114c0aa001970000000009890019000000000009043500000000088a00190000000107700039000000000057004b000034bb0000813d0000000009280049000001600990008a00000000069604360000002004400039000000000904043300000000a90904340000000008980436000000000009004b000034a10000613d000000000b000019000000000c8b0019000000000dba0019000000000d0d04330000000000dc0435000000200bb0003900000000009b004b000034b30000413d000034a10000013d0000012001100039000000000101043300000000042800490000012002200039000000000042043500000000420104340000000001280436000000000002004b000034cc0000613d000000000500001900000000061500190000000007540019000000000707043300000000007604350000002005500039000000000025004b000034c50000413d000000000412001900000000000404350000001f022000390000114c022001970000000001120019000000000001042d0000111501000041000000000010043f0000002101000039000000040010043f0000111601000041000042ac000104300000000043010434000010f00330019700000000033204360000000004040433000000000004004b0000000004000039000000010400c039000000000043043500000040031000390000000003030433000000040030008c0000350e0000813d0000004004200039000000000034043500000060031000390000000003030433000010b1033001970000006004200039000000000034043500000080031000390000000003030433000010f00330019700000080042000390000000000340435000000a0031000390000000003030433000010b103300197000000a0042000390000000000340435000000c0011000390000000001010433000000c003200039000000e0040000390000000000430435000000e005200039000000004301043400000000003504350000010001200039000000000003004b000035080000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b000035010000413d000000000213001900000000000204350000001f023000390000114c022001970000000001120019000000000001042d0000111501000041000000000010043f0000002101000039000000040010043f0000111601000041000042ac00010430000000400200043d000000400320003900000040040000390000000000430435000000200320003900001147040000410000000000430435000000000501043300000005045002100000000004420019000000600620003900000000005604350000008008400039000000000005004b000035400000613d00000000070000190000352d0000013d000000000a89001900000000000a04350000001f099000390000114c0990019700000000088900190000000107700039000000000057004b000035400000813d0000000009280049000000800990008a000000200660003900000000009604350000002001100039000000000901043300000000a90904340000000008980436000000000009004b000035250000613d000000000b000019000000000c8b0019000000000dba0019000000000d0d04330000000000dc0435000000200bb0003900000000009b004b000035380000413d000035250000013d0000000001280049000000200510008a00000000005204350000001f011000390000114c041001970000000001240019000000000041004b00000000040000390000000104004039000010b10010009c000035620000213d0000000100400190000035620000c13d000000400010043f000010ac0030009c000010ac0300804100000040013002100000000002020433000010ac0020009c000010ac020080410000006002200210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f0000000100200190000035680000613d000000000101043b000000000001042d0000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000000001000019000042ac000104300004000000000002000000400200043d00000040032000390000004004000039000000000043043500000020042000390000115303000041000100000004001d0000000000340435000000000401043300000060032000390000000000430435000300000002001d000000800620003900000005034002100000000009360019000200000004001d000000000004004b000035f00000613d0000000008000019000035880000013d0000001f023000390000114c022001970000000003930019000000000003043500000000099200190000000108800039000000020080006c0000000406000029000035f00000813d000000030390006a000000800330008a00000000063604360000002001100039000000000a01043300000000530a0434000010b10330019700000000033904360000000005050433000010b10550019700000000005304350000004003a000390000000003030433000010b103300197000000400590003900000000003504350000006003a000390000000003030433000010b103300197000000600590003900000000003504350000008003a000390000000003030433000010f00330019700000080059000390000000000350435000000a003900039000000a005a000390000000005050433000010b1055001970000000000530435000000c003a000390000000003030433000000040030008c000036150000813d000000c0059000390000000000350435000000e003a000390000000003030433000000000003004b0000000003000039000000010300c039000000e00590003900000000003504350000010003a00039000000000b0304330000010003900039000001400200003900000000002304350000014003900039000000000c0b04330000000000c30435000001600d9000390000000503c00210000000000fd3001900000000000c004b000400000006001d000035de0000613d000000000e000019000035cc0000013d0000001f023000390000114c022001970000000003f300190000000000030435000000000ff20019000000010ee000390000000000ce004b000035de0000813d00000000039f0049000001600330008a000000000d3d0436000000200bb0003900000000030b04330000000073030434000000000f3f0436000000000003004b000035c40000613d00000000050000190000000002f500190000000006570019000000000606043300000000006204350000002005500039000000000035004b000035d60000413d000035c40000013d0000012002a00039000000000202043300000000039f004900000120059000390000000000350435000000007302043400000000093f0436000000000003004b0000357f0000613d000000000500001900000000029500190000000006570019000000000606043300000000006204350000002005500039000000000035004b000035e80000413d0000357f0000013d00000003030000290000000001390049000000200210008a00000000002304350000001f011000390000114c021001970000000001320019000000000021004b00000000030000390000000103004039000010b10010009c0000361b0000213d00000001003001900000361b0000c13d000000400010043f0000000101000029000010ac0010009c000010ac01008041000000400110021000000003020000290000000002020433000010ac0020009c000010ac020080410000006002200210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f0000000100200190000036210000613d000000000101043b000000000001042d0000111501000041000000000010043f0000002101000039000000040010043f0000111601000041000042ac000104300000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000000001000019000042ac00010430000000400300043d000000400430003900000060050000390000000000540435000000200430003900001154050000410000000000540435000000000601043300000080053000390000000000650435000000a005300039000000000006004b000036380000613d000000000700001900000020011000390000000008010433000010b10880019700000000058504360000000107700039000000000067004b000036310000413d0000000001350049000000200110008a0000006006300039000000000016043500000000060204330000000000650435000000050160021000000000011500190000002009100039000000000006004b000036610000613d000000000700001900000000080500190000364e0000013d000000000b9a001900000000000b04350000001f0aa000390000114c0aa0019700000000099a00190000000107700039000000000067004b000036610000813d000000000a590049000000200aa0008a00000020088000390000000000a804350000002002200039000000000a02043300000000ba0a04340000000009a9043600000000000a004b000036460000613d000000000c000019000000000d9c0019000000000ecb0019000000000e0e04330000000000ed0435000000200cc000390000000000ac004b000036590000413d000036460000013d0000000002390049000000200520008a00000000005304350000001f022000390000114c022001970000000001320019000000000021004b00000000020000390000000102004039000010b10010009c000036830000213d0000000100200190000036830000c13d000000400010043f000010ac0040009c000010ac0400804100000040014002100000000002030433000010ac0020009c000010ac020080410000006002200210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f0000000100200190000036890000613d000000000101043b000000000001042d0000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000000001000019000042ac00010430000000400200043d0000004003200039000000400400003900000000004304350000002003200039000011550400004100000000004304350000000054010434000010f004400197000000600620003900000000004604350000000004050433000000000004004b0000000004000039000000010400c0390000008005200039000000000045043500000040041000390000000004040433000000040040008c000036e90000813d000000a005200039000000000045043500000060041000390000000004040433000010b104400197000000c005200039000000000045043500000080041000390000000004040433000010f004400197000000e0052000390000000000450435000000a0041000390000000004040433000010b10440019700000100052000390000000000450435000000c00110003900000000010104330000012004200039000000e00500003900000000005404350000014005200039000000004101043400000000001504350000016005200039000000000001004b000036c40000613d000000000600001900000000075600190000000008640019000000000808043300000000008704350000002006600039000000000016004b000036bd0000413d000000000451001900000000000404350000001f011000390000114c01100197000001400510003900000000005204350000017f011000390000114c041001970000000001240019000000000041004b00000000040000390000000104004039000010b10010009c000036ef0000213d0000000100400190000036ef0000c13d000000400010043f000010ac0030009c000010ac0300804100000040013002100000000002020433000010ac0020009c000010ac020080410000006002200210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f0000000100200190000036f50000613d000000000101043b000000000001042d0000111501000041000000000010043f0000002101000039000000040010043f0000111601000041000042ac000104300000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000000001000019000042ac000104300000114c042001980000001f0520018f0000000206100367000000400100043d0000000003410019000037030000613d000000000706034f0000000008010019000000007907043c0000000008980436000000000038004b000036ff0000c13d000000000005004b000037100000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000043043500000000032100190000111b040000410000000000430435000010ac0010009c000010ac0100804100000040011002100000002002200039000010ac0020009c000010ac020080410000006002200210000000000121019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f0000000100200190000037270000613d000000000101043b000000000001042d0000000001000019000042ac000104300003000000000002000000000201041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000043004b000037680000c13d000000400500043d0000000004650436000000000003004b000037530000613d000100000004001d000300000006001d000200000005001d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f0000000100200190000037740000613d0000000306000029000000000006004b000037590000613d000000000201043b0000000001000019000000020500002900000001070000290000000003170019000000000402041a000000000043043500000001022000390000002001100039000000000061004b0000374b0000413d0000375b0000013d0000114d012001970000000000140435000000000006004b000000200100003900000000010060390000375b0000013d000000000100001900000002050000290000003f011000390000114c021001970000000001520019000000000021004b00000000020000390000000102004039000010b10010009c0000376e0000213d00000001002001900000376e0000c13d000000400010043f0000000001050019000000000001042d0000111501000041000000000010043f0000002201000039000000040010043f0000111601000041000042ac000104300000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000000001000019000042ac00010430000000400200043d0000004003200039000000400400003900000000004304350000002003200039000011560400004100000000004304350000000054010434000010b106400197000000600420003900000000006404350000000005050433000010b1055001970000008006200039000000000056043500000040051000390000000005050433000010b105500197000000a006200039000000000056043500000060051000390000000005050433000010b105500197000000c006200039000000000056043500000080051000390000000005050433000010f005500197000000e0062000390000000000560435000000a0051000390000000005050433000010b10550019700000100062000390000000000560435000000c0051000390000000005050433000000040050008c000038070000813d00000120062000390000000000560435000000e0051000390000000005050433000000000005004b0000000005000039000000010500c0390000014006200039000000000056043500000100051000390000000006050433000001600520003900000140070000390000000000750435000001a00520003900000000070604330000000000750435000001c0082000390000000505700210000000000a850019000000000007004b000037cf0000613d0000000009000019000037bd0000013d0000001f0cb000390000114c0cc00197000000000bab001900000000000b0435000000000aac00190000000109900039000000000079004b000037cf0000813d000000000b2a0049000001c00bb0008a0000000008b804360000002006600039000000000b06043300000000cb0b0434000000000aba043600000000000b004b000037b50000613d000000000d000019000000000ead0019000000000fdc0019000000000f0f04330000000000fe0435000000200dd000390000000000bd004b000037c70000413d000037b50000013d00000000044a00490000012001100039000000000101043300000180062000390000000000460435000000006101043400000000041a0436000000000001004b000037e00000613d000000000700001900000000084700190000000009760019000000000909043300000000009804350000002007700039000000000017004b000037d90000413d0000000006410019000000000006043500000000042400490000001f011000390000114c011001970000000001140019000000200410008a00000000004204350000001f011000390000114c041001970000000001240019000000000041004b00000000040000390000000104004039000010b10010009c0000380d0000213d00000001004001900000380d0000c13d000000400010043f000010ac0030009c000010ac0300804100000040013002100000000002020433000010ac0020009c000010ac020080410000006002200210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f0000000100200190000038130000613d000000000101043b000000000001042d0000111501000041000000000010043f0000002101000039000000040010043f0000111601000041000042ac000104300000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000000001000019000042ac00010430000000400300043d000000400430003900000060050000390000000000540435000000200430003900001130050000410000000000540435000000800530003900000000610104340000000000150435000000a005300039000000000001004b0000382a0000613d000000000700001900000000085700190000000009760019000000000909043300000000009804350000002007700039000000000017004b000038230000413d000000000651001900000000000604350000001f061000390000114c06600197000000600730003900000080086000390000000000870435000000000556001900000000620204340000000005250436000000000002004b0000383e0000613d000000000700001900000000085700190000000009760019000000000909043300000000009804350000002007700039000000000027004b000038370000413d0000000006520019000000000006043500000000053500490000001f022000390000114c022001970000000002250019000000200520008a00000000005304350000001f022000390000114c022001970000000001320019000000000021004b00000000020000390000000102004039000010b10010009c000038650000213d0000000100200190000038650000c13d000000400010043f000010ac0040009c000010ac0400804100000040014002100000000002030433000010ac0020009c000010ac020080410000006002200210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f00000001002001900000386b0000613d000000000101043b000000000001042d0000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000000001000019000042ac00010430000000400200043d0000004003200039000000400400003900000000004304350000002003200039000011250400004100000000004304350000006005200039000000004101043400000000001504350000008005200039000000000001004b000038820000613d000000000600001900000000075600190000000008640019000000000808043300000000008704350000002006600039000000000016004b0000387b0000413d000000000451001900000000000404350000001f011000390000114c01100197000000600510003900000000005204350000009f011000390000114c041001970000000001240019000000000041004b00000000040000390000000104004039000010b10010009c000038a70000213d0000000100400190000038a70000c13d000000400010043f000010ac0030009c000010ac0300804100000040013002100000000002020433000010ac0020009c000010ac020080410000006002200210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f0000000100200190000038ad0000613d000000000101043b000000000001042d0000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000000001000019000042ac00010430000000400300043d00000040043000390000006005000039000000000054043500000020043000390000115705000041000000000054043500000000070104330000000505700210000000000553001900000080083000390000000000780435000000a006500039000000000007004b000038db0000613d0000000009000019000038c80000013d000000000b6a001900000000000b04350000001f0aa000390000114c0aa0019700000000066a00190000000109900039000000000079004b000038db0000813d000000000a360049000000a00aa0008a00000020088000390000000000a804350000002001100039000000000a01043300000000ba0a04340000000006a6043600000000000a004b000038c00000613d000000000c000019000000000d6c0019000000000ecb0019000000000e0e04330000000000ed0435000000200cc000390000000000ac004b000038d30000413d000038c00000013d0000000001360049000000200110008a0000006007300039000000000017043500000000010204330000000000160435000000050710021000000000077600190000002009700039000000000001004b000039040000613d00000000070000190000000008060019000038f10000013d000000000b9a001900000000000b04350000001f0aa000390000114c0aa0019700000000099a00190000000107700039000000000017004b000039040000813d000000000a690049000000200aa0008a00000020088000390000000000a804350000002002200039000000000a02043300000000ba0a04340000000009a9043600000000000a004b000038e90000613d000000000c000019000000000d9c0019000000000ecb0019000000000e0e04330000000000ed0435000000200cc000390000000000ac004b000038fc0000413d000038e90000013d0000000001390049000000200210008a00000000002304350000001f011000390000114c021001970000000001320019000000000021004b00000000020000390000000102004039000010b10010009c000039260000213d0000000100200190000039260000c13d000000400010043f000010ac0040009c000010ac0400804100000040014002100000000002030433000010ac0020009c000010ac020080410000006002200210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f00000001002001900000392c0000613d000000000101043b000000000001042d0000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000000001000019000042ac00010430000000400300043d000000600430003900000060050000390000000000540435000010b10110019700000040043000390000000000140435000000200130003900001104040000410000000000410435000000800530003900000000420204340000000000250435000000a005300039000000000002004b000039460000613d000000000600001900000000075600190000000008640019000000000808043300000000008704350000002006600039000000000026004b0000393f0000413d000000000452001900000000000404350000001f022000390000114c0220019700000080052000390000000000530435000000bf022000390000114c042001970000000002340019000000000042004b00000000040000390000000104004039000010b10020009c0000396b0000213d00000001004001900000396b0000c13d000000400020043f000010ac0010009c000010ac0100804100000040011002100000000002030433000010ac0020009c000010ac020080410000006002200210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f0000000100200190000039710000613d000000000101043b000000000001042d0000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000000001000019000042ac00010430000010f006100198000039870000613d0000112601000041000000000201041a0000110c03200197000000000363019f000000000031041b0000000001000414000010f005200197000010ac0010009c000010ac01008041000000c001100210000010fd011001c70000800d020000390000000303000039000011290400004142aa429b0000040f00000001002001900000398c0000613d000000000001042d0000114401000041000000000010043f000000040000043f0000111601000041000042ac000104300000000001000019000042ac000104300000112601000041000000000101041a000010f0021001970000000001000411000000000012004b000039950000c13d000000000001042d0000112802000041000000000020043f000000040010043f0000111601000041000042ac000104300004000000000002000400000003001d000300000001001d0000115801000041000000000010043f0000001c0020043f0000000001000414000010ac0010009c000010ac01008041000000c00110021000001159011001c7000080100200003942aa42a00000040f000000010020019000003a7f0000613d000000000601043b00000004050000290000000081050434000000410010008c000039b20000c13d000000400150003900000000010104330000115a0010009c00003a310000a13d000000400200043d00000044012000390000004003000039000000000031043500000020012000390000115c030000410000000000310435000000240320003900000000006304350000006404200039000000000305043300000000003404350000008404200039000000000003004b000039c90000613d000000000500001900000000064500190000000007580019000000000707043300000000007604350000002005500039000000000035004b000039c20000413d000000000443001900000000000404350000001f03300039000000200600008a000000000363016f00000064043000390000000000420435000000a303300039000000000463016f0000000003240019000000000043004b00000000040000390000000104004039000010b10030009c00003a790000213d000000010040019000003a790000c13d000000400030043f000000000302043300000000040004140000000302000029000000040020008c00003a0e0000c13d00000001020000390000000104000031000000000004004b00003a220000613d000010b10040009c00003a790000213d0000001f01400039000000000161016f0000003f01100039000000000361016f000000400100043d0000000003310019000000000013004b00000000050000390000000105004039000010b10030009c00003a790000213d000000010050019000003a790000c13d000000400030043f000000000341043600000000056401700000001f0640018f0000000004530019000000030700036700003a000000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b000039fc0000c13d000000000006004b00003a240000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500003a240000013d000010ac0010009c000010ac010080410000004001100210000010ac0030009c000010ac030080410000006003300210000000000113019f000010ac0040009c000010ac04008041000000c003400210000000000131019f42aa42a00000040f000000200600008a000000010220018f00030000000103550000006001100270000110ac0010019d000010ac04100197000000000004004b000039e40000c13d00000060010000390000008003000039000000000002004b00003a750000613d0000000001010433000000200010008c00003a750000413d000011060010009c00003a7f0000213d000000200010008c00003a7f0000413d00000000010304330000115c0010009c00003a750000c13d000000000001042d00000060025000390000000002020433000200000008001d0000000003080433000000400400043d0000006005400039000000000015043500000040014000390000000000310435000000f80120027000000020024000390000000000120435000100000006001d0000000000640435000000000000043f000010ac0040009c000010ac0400804100000040014002100000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f0000115b011001c7000000010200003942aa42a00000040f0000006003100270000010ac03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000003a590000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00003a550000c13d000000000005004b00003a660000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000000020800002900003a810000613d000000000100043d000010f000100198000000000100601900000004050000290000000106000029000039b20000613d000000030110014f000010f00010019800003a300000613d000039b20000013d0000115d01000041000000000010043f0000110901000041000042ac000104300000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000000001000019000042ac000104300000001f0530018f0000110306300198000000400200043d000000000462001900003a8c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003a880000c13d000000000005004b00003a990000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000010ac0020009c000010ac020080410000004002200210000000000112019f000042ac000104300009000000000002000010f304000041000000000404041a000000ff0040019000003b880000c13d0000114c042001980000001f0820018f000800000001001d0000000209100367000000400100043d000900000004001d000000000741001900003ab20000613d000000000409034f0000000005010019000000004604043c0000000005650436000000000075004b00003aae0000c13d000300000003001d000000000008004b000600000008001d000000030680021000003ac10000613d0000000903900360000000000407043300000000046401cf000000000464022f000000000303043b0000010005600089000000000353022f00000000035301cf000000000343019f0000000000370435000500000006001d00000000042100190000111b030000410000000000340435000010ac0010009c000010ac010080410000004001100210000700000002001d0000002002200039000010ac0020009c000400000002001d000010ac020080410000006002200210000000000121019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f000000010020019000003b800000613d0000000003000031000000000101043b000200000001001d0000000705000029000011500050009c00003b820000813d0000001f015000390000114c061001970000003f016000390000114c01100197000000400200043d0000000001120019000000000021004b00000000040000390000000104004039000010b10010009c00003b820000213d000000010040019000003b820000c13d000100000006001d000000400010043f00000000015204360000000804500029000000000034004b00003b800000213d000000080300002900000002043003670000000903100029000000090000006b000000060800002900003afe0000613d000000000504034f0000000006010019000000005705043c0000000006760436000000000036004b00003afa0000c13d000000000008004b00003b0b0000613d00000009044003600000000005030433000000050600002900000000056501cf000000000565022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000454019f000000000043043500000004032000290000000000030435000000400300043d0000000002020433000000000002004b00003b190000613d000000000400001900000000053400190000000006140019000000000606043300000000006504350000002004400039000000000024004b00003b120000413d00000000013200190000111b040000410000000000410435000010ac0030009c000010ac0300804100000040013002100000002002200039000010ac0020009c000010ac020080410000006002200210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f000000010020019000003b800000613d000000000101043b000000000101041a000011120010019800003b8c0000c13d000010fb0100004100000000001004430000000001000414000010ac0010009c000010ac01008041000000c001100210000010ae011001c70000800b0200003942aa42a00000040f000000010020019000003b900000613d0000000302000029000010f002200197000000000101043b000000a0011002100000111201100197000000000121019f0000000203000029000000000203041a0000111102200197000000000121019f000000000013041b000000400100043d000000200210003900000007030000290000000000320435000000200200003900000000002104350000004002100039000000090320002900000008040000290000000204400367000000090000006b000000060800002900003b5b0000613d000000000504034f0000000006020019000000005705043c0000000006760436000000000036004b00003b570000c13d000000000008004b00003b680000613d00000009044003600000000005030433000000050600002900000000056501cf000000000565022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000454019f000000000043043500000007022000290000000000020435000010ac0010009c000010ac01008041000000400110021000000001020000290000004002200039000010ac0020009c000010ac020080410000006002200210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c70000800d0200003900000001030000390000114a0400004142aa429b0000040f000000010020019000003b800000613d000000000001042d0000000001000019000042ac000104300000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000114801000041000000000010043f0000110901000041000042ac000104300000114901000041000000000010043f0000110901000041000042ac00010430000000000001042f00010000000000020000114b01000041000000000101041a000010f00210019800003bec0000613d00001100010000410000000000100443000100000002001d00000004002004430000000001000414000010ac0010009c000010ac01008041000000c00110021000001101011001c7000080020200003942aa42a00000040f000000010020019000003bed0000613d000000000101043b000000000001004b00003bee0000613d000000400c00043d0000115e0100004100000000001c04350000000401c00039000000400200003900000000002104350000004402c0003900000000010000310000000000120435000000200b00008a0000000005b101700000001f0610018f0000006403c000390000000004530019000000020700036700003bbc0000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00003bb80000c13d000000000006004b00003bc90000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000313001900000000000304350000002403c000390000000004000411000000000043043500000000030004140000000102000029000000040020008c00003be90000613d0000001f011000390000000001b1016f0000006401100039000010ac0010009c000010ac010080410000006001100210000010ac00c0009c000010ac0400004100000000040c40190000004004400210000000000141019f000010ac0030009c000010ac03008041000000c003300210000000000113019f00010000000c001d42aa429b0000040f000000010c0000290000006003100270000110ac0030019d0003000000010355000000010020019000003bf60000613d0000115000c0009c00003bf00000813d0000004000c0043f000000000001042d000000000001042f0000000001000019000042ac000104300000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac00010430000010ac033001970000001f0530018f0000110306300198000000400200043d000000000462001900003c020000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003bfe0000c13d000000000005004b00003c0f0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000010ac0020009c000010ac020080410000004002200210000000000112019f000042ac00010430000a000000000002000a00000003001d000900000002001d000010f302000041000000000202041a000000ff0020019000003cfe0000c13d000010b101100197000700000001001d000000000010043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f000000010020019000003cf60000613d000000000301043b0000000101300039000600000001001d000000000101041a000800000001001d000010f00110019800003d020000613d0000000a0000006b00003c360000c13d0000000002000411000000000021004b00003d1b0000c13d000a00000003001d000000000103041a000010b101100197000000000010043f000010f401000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f000000010020019000003cf60000613d000000000101043b000000400500043d000011520050009c00003cf80000813d000000e002500039000000400020043f000000000201041a000010f0032001970000000006350436000010f6002001980000000003000039000000010300c0390000000000360435000000a803200270000000ff0330018f000000040030008c00003d060000813d00000040045000390000000000340435000000b002200270000010b102200197000000600350003900000000002304350000000102100039000000000202041a0000008003500039000010f0042001970000000000430435000000a003500039000000a002200270000010b10220019700000000002304350000000201100039000000000201041a000000010320019000000001082002700000007f0880618f0000001f0080008c00000000040000390000000104002039000000000043004b00003d0c0000c13d000000400700043d0000000004870436000000000003004b00003c930000613d000100000004001d000400000008001d000200000007001d000500000006001d000300000005001d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f000000010020019000003cf60000613d0000000408000029000000000008004b000000050600002900003c990000613d000000000201043b00000000010000190000000305000029000000020700002900000001090000290000000003190019000000000402041a000000000043043500000001022000390000002001100039000000000081004b00003c8b0000413d00003c9c0000013d0000114d012001970000000000140435000000000008004b0000002001000039000000000100603900003c9c0000013d0000000001000019000000030500002900000002070000290000003f011000390000114c021001970000000001720019000000000021004b00000000020000390000000102004039000010b10010009c00003cf80000213d000000010020019000003cf80000c13d000000400010043f000000c00150003900000000007104350000000001060433000000000001004b00003d120000613d0000000801000029000010f80010019800003d160000c13d000010f901100197000010fa011001c70000000602000029000000000012041b000010fb0100004100000000001004430000000001000414000010ac0010009c000010ac01008041000000c001100210000010ae011001c70000800b0200003942aa42a00000040f000000010020019000003d1a0000613d000000000101043b000000c0011002100000000a03000029000000000203041a000010fc02200197000000000112019f000000000013041b000000400100043d0000002002100039000000400300003900000000003204350000000702000029000000000021043500000040031000390000000902000029000000004202043400000000002304350000006003100039000000000002004b00003cda0000613d000000000500001900000000063500190000000007540019000000000707043300000000007604350000002005500039000000000025004b00003cd30000413d0000001f042000390000114c04400197000000000232001900000000000204350000006002400039000010ac0020009c000010ac020080410000006002200210000010ac0010009c000010ac010080410000004001100210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c70000800d020000390000000103000039000010fe0400004142aa429b0000040f000000010020019000003cf60000613d0000000a01000029000000000101041a000010b101100197000000000001042d0000000001000019000042ac000104300000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000114801000041000000000010043f0000110901000041000042ac000104300000112d01000041000000000010043f0000110901000041000042ac000104300000111501000041000000000010043f0000002101000039000000040010043f0000111601000041000042ac000104300000111501000041000000000010043f0000002201000039000000040010043f0000111601000041000042ac000104300000112c01000041000000000010043f0000110901000041000042ac000104300000112b01000041000000000010043f0000110901000041000042ac00010430000000000001042f0000113e01000041000000000010043f0000110901000041000042ac00010430000a000000000002000010b101100197000000000010043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f000000010020019000003e930000613d000000000101043b000100000001001d000000400400043d000011510040009c00003e870000813d0000014001400039000000400010043f00000060014000390000000105000029000000000205041a000000c00320027000000000003104350000008001200270000010b101100197000000400340003900000000001304350000004001200270000010b10110019700000020034000390000000000130435000010b10120019700000000001404350000000101500039000000000101041a0000008002400039000010f0031001970000000000320435000000a002400039000000a003100270000010b1033001970000000000320435000000e002100270000000ff0220018f000000040020008c00003e950000813d000000c0034000390000000000230435000000e002400039000010f8001001980000000001000039000000010100c03900000000001204350000000201500039000000000501041a000010b10050009c00003e870000213d00000005025002100000003f02200039000010ed02200197000000400300043d0000000002230019000200000003001d000000000032004b00000000030000390000000103004039000010b10020009c00003e870000213d000000010030019000003e870000c13d000400000004001d000000400020043f000300000005001d00000002020000290000000000520435000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f000000010020019000003e930000613d0000000306000029000000000006004b000000040500002900003dca0000613d000000000701043b00000000080000190000000209000029000000000107041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000032004b00003e8d0000c13d000000400a00043d00000000034a0436000000000002004b00003daf0000613d000500000003001d000600000004001d00070000000a001d000800000009001d000900000008001d000a00000007001d000000000070043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f000000010020019000003e930000613d000000060b00002900000000000b004b00000003060000290000000908000029000000080900002900003db50000613d000000000201043b000000000100001900000004050000290000000a07000029000000070a000029000000050c00002900000000031c0019000000000402041a0000000000430435000000010220003900000020011000390000000000b1004b00003da70000413d00003db90000013d0000114d011001970000000000130435000000000004004b0000002001000039000000000100603900003db90000013d000000000100001900000004050000290000000a07000029000000070a0000290000003f011000390000114c021001970000000001a20019000000000021004b00000000020000390000000102004039000010b10010009c00003e870000213d000000010020019000003e870000c13d0000002009900039000000400010043f0000000000a9043500000001077000390000000108800039000000000068004b00003d7e0000413d00000100015000390000000202000029000000000021043500000001010000290000000301100039000000000201041a000000010320019000000001072002700000007f0770618f0000001f0070008c00000000040000390000000104002039000000000442013f000000010040019000003e8d0000c13d000000400600043d0000000004760436000000000003004b00003dfa0000613d000800000004001d000a00000007001d000900000006001d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f000000010020019000003e930000613d0000000a07000029000000000007004b00003e000000613d000000000201043b00000000010000190000000405000029000000090600002900000008080000290000000003180019000000000402041a000000000043043500000001022000390000002001100039000000000071004b00003df20000413d00003e030000013d0000114d012001970000000000140435000000000007004b0000002001000039000000000100603900003e030000013d0000000001000019000000040500002900000009060000290000003f011000390000114c021001970000000001620019000000000021004b00000000020000390000000102004039000010b10010009c00003e870000213d000000010020019000003e870000c13d000000400010043f000001200150003900000000006104350000000001050433000010b101100197000000000010043f000010f401000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f000000010020019000003e930000613d000000000101043b000000400500043d000010f50050009c00003e870000213d000000e002500039000000400020043f000000000201041a000010f0032001970000000003350436000010f6002001980000000004000039000000010400c0390000000000430435000000a803200270000000ff0330018f000000030030008c00003e950000213d00000040045000390000000000340435000000b002200270000010b102200197000000600350003900000000002304350000000102100039000000000202041a000000a003200270000010b103300197000000a00450003900000000003404350000008006500039000010f00220019700000000002604350000000201100039000000000201041a000000010320019000000001082002700000007f0880618f0000001f0080008c00000000040000390000000104002039000000000442013f000000010040019000003e8d0000c13d000000400700043d0000000004870436000000000003004b00003e6d0000613d000600000004001d000a00000008001d000700000007001d000800000006001d000900000005001d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f000000010020019000003e930000613d0000000a08000029000000000008004b00003e730000613d000000000201043b000000000100001900000009050000290000000806000029000000070700002900000006090000290000000003190019000000000402041a000000000043043500000001022000390000002001100039000000000081004b00003e650000413d00003e770000013d0000114d012001970000000000140435000000000008004b0000002001000039000000000100603900003e770000013d00000000010000190000000905000029000000080600002900000007070000290000003f011000390000114c021001970000000001720019000000000021004b00000000020000390000000102004039000010b10010009c00003e870000213d000000010020019000003e870000c13d000000400010043f000000c00150003900000000007104350000000001060433000010f001100197000000000001042d0000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000111501000041000000000010043f0000002201000039000000040010043f0000111601000041000042ac000104300000000001000019000042ac000104300000111501000041000000000010043f0000002101000039000000040010043f0000111601000041000042ac00010430000e000000000002000300000002001d000600000001001d000010f301000041000000000101041a000000ff001001900000416e0000c13d000e00000003001d0000110a01000041000000000201041a0000004003200270000010b103300197000500000003001d000010b10030009c000041680000613d0000115f02200197000000050300002900000040033002100000110b0330009a0000114203300197000000000223019f000000000021041b000010fb0100004100000000001004430000000001000414000010ac0010009c000010ac01008041000000c001100210000010ae011001c70000800b0200003942aa42a00000040f0000000100200190000041720000613d00000006020000290000004003200039000000000101043b000800000001001d000010b101100197000d00000003001d00000000001304350000000e0000006b000e00800020003d00003ecd0000c13d0000000e010000290000000001010433000010f0011001970000000002000411000000000021004b0000000602000029000041730000c13d0000002001200039000c00000001001d0000000001010433000010b10110019800003eed0000613d0000110a02000041000000000202041a0000004002200270000010b102200197000000000021004b0000417b0000813d000000000010043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f0000000100200190000041500000613d0000000e020000290000000002020433000000000101043b0000000101100039000000000101041a000000000112013f000010f0001001980000000602000029000041730000c13d000000e001200039000b00000001001d0000000001010433000000000001004b0000415e0000c13d0000006001200039000a00000001001d0000000001010433000010b1001001980000415e0000c13d0000000001020433000010b101100197000000000010043f000010f401000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f0000000100200190000041500000613d000000000101043b000000400500043d000011520050009c000041580000813d000000e002500039000000400020043f000000000201041a000010f0032001970000000003350436000010f6002001980000000004000039000000010400c0390000000000430435000000a803200270000000ff0330018f000000040030008c000041620000813d00000040045000390000000000340435000000b002200270000010b1022001970000006003500039000900000003001d00000000002304350000000102100039000000000202041a0000008003500039000010f0042001970000000000430435000000a003500039000000a002200270000010b10220019700000000002304350000000201100039000000000201041a000000010320019000000001072002700000007f0770618f0000001f0070008c00000000040000390000000104002039000000000043004b000041520000c13d000000400600043d0000000004760436000000000003004b00003f520000613d000100000004001d000700000007001d000200000006001d000400000005001d000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f0000000100200190000041500000613d0000000707000029000000000007004b00003f580000613d000000000201043b00000000010000190000000405000029000000020600002900000001080000290000000003180019000000000402041a000000000043043500000001022000390000002001100039000000000071004b00003f4a0000413d00003f5b0000013d0000114d012001970000000000140435000000000007004b0000002001000039000000000100603900003f5b0000013d0000000001000019000000040500002900000002060000290000003f011000390000114c021001970000000001620019000000000021004b00000000020000390000000102004039000010b10010009c000041580000213d0000000100200190000041580000c13d000000400010043f000000c001500039000000000061043500000006010000290000000001010433000010b101100197000000000010043f000010f401000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f0000000100200190000041500000613d000000000101043b0000000101100039000000000101041a00001112001001980000000602000029000041770000613d00000009010000290000000001010433000010b101100198000000a00420003900003f880000613d0000000002040433000010b102200197000000080220006c000041680000413d000000000021004b0000417f0000413d000900000004001d0000000501000029000000000010043f000010f101000041000000200010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f2011001c7000080100200003942aa42a00000040f0000000100200190000041500000613d00000006040000290000000002040433000010b1022001970000000c03000029000000000303043300000040033002100000114203300197000000000223019f0000000d03000029000000000303043300000080033002100000114103300197000000000232019f0000000a030000290000000003030433000000c003300210000000000232019f000000000301043b000000000023041b0000000e010000290000000001010433000010f002100197000400000003001d0000000101300039000000000301041a0000111103300197000000000223019f00000009030000290000000003030433000000a0033002100000111203300197000000000223019f000000000021041b000000c0034000390000000003030433000000030030008c000041620000213d0000116102200197000000e0033002100000116203300197000000000232019f0000000b030000290000000003030433000000000003004b000010fa030000410000000003006019000000000223019f000000000021041b000000060100002900000100011000390000000001010433000e00000001001d0000000001010433000900000001001d000011500010009c000041580000213d00000004010000290000000202100039000000000302041a0000000901000029000a00000002001d000000000012041b000000000031004b000040240000813d000d00000003001d0000000a01000029000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f0000000100200190000041500000613d000000000101043b00000009031000290000000d04100029000000000043004b000040240000813d000b00000004001d00003fed0000013d000000000001041b0000000103300039000000000043004b000040240000813d000000000103041a000000010010019000000001051002700000007f0550618f0000001f0050008c00000000020000390000000102002039000000000121013f0000000100100190000041520000c13d000000000005004b00003fea0000613d0000001f0050008c000000000103001900003fe90000a13d000c00000005001d000000000030043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c70000801002000039000d00000003001d42aa42a00000040f0000000100200190000041500000613d0000000d03000029000000000201043b0000000c010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000040150000813d000000000002041b0000000102200039000000000012004b000040110000413d000000000030043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f0000000100200190000041500000613d000000000101043b0000000d03000029000000000003041b0000000b0400002900003fe90000013d0000000a01000029000000000010043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f0000000100200190000041500000613d000000090000006b000040ad0000613d000000000601043b00000000040000190000403c0000013d000000010170021000000001011001bf0000000c04000029000000000016041b00000001066000390000000104400039000000090040006c000040ad0000813d0000000e010000290000002001100039000e00000001001d00000000030104330000000075030434000010b10050009c000041580000213d000000000106041a000000010010019000000001081002700000007f0880618f0000001f0080008c00000000020000390000000102002039000000000121013f0000000100100190000041520000c13d000000200080008c000d00000006001d000c00000004001d000b00000005001d000a00000003001d000040730000413d000700000008001d000800000007001d000000000060043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f0000000100200190000041500000613d0000000b050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b00000007010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000d060000290000000c040000290000000807000029000040730000813d000000000002041b0000000102200039000000000012004b0000406f0000413d0000001f0050008c000040940000a13d000000000060043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f0000000100200190000041500000613d0000000b070000290000114c02700198000000000101043b0000000a08000029000040a00000613d000000010320008a00000005033002700000000003310019000000010430003900000020030000390000000d0600002900000000058300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000408a0000c13d000000000072004b000040340000813d000040a40000013d000000000005004b000040980000613d0000000001070433000040990000013d000000000100001900000003025002100000114e0220027f0000114e02200167000000000121016f0000000102500210000000000121019f000040370000013d00000020030000390000000d06000029000000000072004b000040340000813d0000000302700210000000f80220018f0000114e0220027f0000114e0220016700000000038300190000000003030433000000000223016f000000000021041b000040340000013d0000000601000029000001200110003900000000030104330000000065030434000010b10050009c000041580000213d00000004010000290000000304100039000000000104041a000000010010019000000001071002700000007f0770618f0000001f0070008c00000000020000390000000102002039000000000121013f0000000100100190000041520000c13d000000200070008c000e00000004001d000d00000005001d000c00000003001d000040e30000413d000a00000007001d000b00000006001d000000000040043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f0000000100200190000041500000613d0000000d050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b0000000a010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000e040000290000000b06000029000040e30000813d000000000002041b0000000102200039000000000012004b000040df0000413d0000001f0050008c0000410e0000a13d000000000040043f0000000001000414000010ac0010009c000010ac01008041000000c001100210000010f7011001c7000080100200003942aa42a00000040f0000000100200190000041500000613d0000000d060000290000114c02600198000000000101043b0000000c070000290000414c0000613d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000000057300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000040f90000c13d000000000062004b0000410a0000813d0000000302600210000000f80220018f0000114e0220027f0000114e0220016700000000037300190000000003030433000000000223016f000000000021041b000000010160021000000001011001bf0000000e04000029000041190000013d000000000005004b000041120000613d0000000001060433000041130000013d000000000100001900000003025002100000114e0220027f0000114e02200167000000000121016f0000000102500210000000000121019f000000000014041b000000400100043d0000002002100039000000400300003900000000003204350000000502000029000000000021043500000040031000390000000302000029000000004202043400000000002304350000006003100039000000000002004b0000412f0000613d000000000500001900000000063500190000000007540019000000000707043300000000007604350000002005500039000000000025004b000041280000413d0000001f042000390000114c04400197000000000232001900000000000204350000006002400039000010ac0020009c000010ac020080410000006002200210000010ac0010009c000010ac010080410000004001100210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c70000800d020000390000000103000039000011630400004142aa429b0000040f0000000100200190000041500000613d00000006010000290000000001010433000010b1011001970000000502000029000000000001042d0000002003000039000000000062004b000041020000413d0000410a0000013d0000000001000019000042ac000104300000111501000041000000000010043f0000002201000039000000040010043f0000111601000041000042ac000104300000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000112b01000041000000000010043f0000110901000041000042ac000104300000111501000041000000000010043f0000002101000039000000040010043f0000111601000041000042ac000104300000111501000041000000000010043f0000001101000039000000040010043f0000111601000041000042ac000104300000114801000041000000000010043f0000110901000041000042ac00010430000000000001042f0000113e01000041000000000010043f0000110901000041000042ac000104300000116401000041000000000010043f0000110901000041000042ac000104300000112d01000041000000000010043f0000110901000041000042ac000104300000116001000041000000000010043f0000110901000041000042ac00010430000b0000000000020000000009020019000010f302000041000000000202041a000000ff002001900000428a0000c13d0000114c0a9001980000001f0b90018f000900000001001d0000000208100367000000400100043d0000000002a10019000041960000613d000000000708034f000000000c010019000000007607043c000000000c6c043600000000002c004b000041920000c13d000400000005001d000300000003001d000500000004001d00000000000b004b00080000000b001d0000000306b00210000041a70000613d0000000003a8034f000000000402043300000000046401cf000000000464022f000000000303043b0000010005600089000000000353022f00000000035301cf000000000343019f0000000000320435000700000006001d00000000029100190000111b030000410000000000320435000010ac0010009c000010ac0100804100000040011002100000002002900039000010ac0020009c000600000002001d000010ac020080410000006002200210000000000121019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c70000801002000039000b00000009001d000a0000000a001d42aa42a00000040f0000000a080000290000000b0500002900000001002001900000000906000029000042820000613d0000000003000031000000000901043b000011500050009c000042840000813d0000001f015000390000114c071001970000003f017000390000114c01100197000000400200043d0000000001120019000000000021004b00000000040000390000000104004039000010b10010009c000042840000213d0000000100400190000042840000c13d000200000009001d000100000007001d000000400010043f00000000015204360000000004650019000000000034004b000042820000213d00000002046003670000000003810019000000000008004b0000000809000029000041e60000613d000000000504034f0000000006010019000000005705043c0000000006760436000000000036004b000041e20000c13d000000000009004b000041f30000613d000000000484034f0000000005030433000000070600002900000000056501cf000000000565022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000454019f000000000043043500000006032000290000000000030435000000400300043d0000000002020433000000000002004b000042010000613d000000000400001900000000053400190000000006140019000000000606043300000000006504350000002004400039000000000024004b000041fa0000413d00000000013200190000111b040000410000000000410435000010ac0030009c000010ac0300804100000040013002100000002002200039000010ac0020009c000010ac020080410000006002200210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c7000080100200003942aa42a00000040f00000001002001900000000b0b0000290000000a0c0000290000000906000029000042820000613d000000000101043b000000000101041a000011120010019800000002040000290000428e0000613d000000000104041a000000040000006b000000050a000029000042260000c13d000010f0021001970000000003000411000000000032004b000042960000c13d00001112021001970000110f0020009c000042920000613d0000111f011001970000110f011001c7000000000014041b000000400100043d00000040021000390000000000b204350000004002000039000000000221043600000060041000390000000005c400190000000203000367000000000663034f00000000000c004b0000423d0000613d000000000706034f0000000008040019000000007907043c0000000008980436000000000058004b000042390000c13d000000080000006b0000424a0000613d0000000006c6034f0000000007050433000000070800002900000000078701cf000000000787022f000000000606043b0000010008800089000000000686022f00000000068601cf000000000676019f00000000006504350000000005b40019000000000005043500000001054000290000000004150049000000000042043500000003043003600000000002a504360000114c05a001980000001f06a0018f00000000035200190000425b0000613d000000000704034f0000000008020019000000007907043c0000000008980436000000000038004b000042570000c13d000000000006004b000042680000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000001f03a000390000114c033001970000000004a20019000000000004043500000000031300490000000002230019000010ac0020009c000010ac020080410000006002200210000010ac0010009c000010ac010080410000004001100210000000000112019f0000000002000414000010ac0020009c000010ac02008041000000c002200210000000000112019f000010fd011001c70000800d020000390000000103000039000011200400004142aa429b0000040f0000000100200190000042820000613d000000000001042d0000000001000019000042ac000104300000111501000041000000000010043f0000004101000039000000040010043f0000111601000041000042ac000104300000114801000041000000000010043f0000110901000041000042ac000104300000112201000041000000000010043f0000110901000041000042ac000104300000112101000041000000000010043f0000110901000041000042ac000104300000113e01000041000000000010043f0000110901000041000042ac00010430000000000001042f0000429e002104210000000102000039000000000001042d0000000002000019000000000001042d000042a3002104230000000102000039000000000001042d0000000002000019000000000001042d000042a8002104250000000102000039000000000001042d0000000002000019000000000001042d000042aa00000432000042ab0001042e000042ac0001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff9a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b0200000200000000000000000000000000000004000000000000000000000000f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000a00000000000000000c7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d20000000200000000000000000000000000000080000001000000000000000000000000000000000000000000000000000000000000000000000000008d1be87400000000000000000000000000000000000000000000000000000000bedb86fa00000000000000000000000000000000000000000000000000000000dc50ead900000000000000000000000000000000000000000000000000000000f2fde38a00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f83b92b700000000000000000000000000000000000000000000000000000000fd39791300000000000000000000000000000000000000000000000000000000dc50eada00000000000000000000000000000000000000000000000000000000e09f1b7a00000000000000000000000000000000000000000000000000000000e117a86100000000000000000000000000000000000000000000000000000000d3dc7b2200000000000000000000000000000000000000000000000000000000d3dc7b2300000000000000000000000000000000000000000000000000000000d768123500000000000000000000000000000000000000000000000000000000d98934ff00000000000000000000000000000000000000000000000000000000bedb86fb00000000000000000000000000000000000000000000000000000000cb6a323700000000000000000000000000000000000000000000000000000000a01fb77300000000000000000000000000000000000000000000000000000000b82916ca00000000000000000000000000000000000000000000000000000000b82916cb00000000000000000000000000000000000000000000000000000000ba97637d00000000000000000000000000000000000000000000000000000000be919fb100000000000000000000000000000000000000000000000000000000a01fb77400000000000000000000000000000000000000000000000000000000ad3cb1cc000000000000000000000000000000000000000000000000000000008ef1fbc0000000000000000000000000000000000000000000000000000000008ef1fbc100000000000000000000000000000000000000000000000000000000985292eb000000000000000000000000000000000000000000000000000000009b7f8318000000000000000000000000000000000000000000000000000000008d1be875000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000052d1902c000000000000000000000000000000000000000000000000000000006225287f000000000000000000000000000000000000000000000000000000006a67651b000000000000000000000000000000000000000000000000000000006a67651c00000000000000000000000000000000000000000000000000000000715018a600000000000000000000000000000000000000000000000000000000812c255f00000000000000000000000000000000000000000000000000000000622528800000000000000000000000000000000000000000000000000000000065ae13b300000000000000000000000000000000000000000000000000000000570b743300000000000000000000000000000000000000000000000000000000570b743400000000000000000000000000000000000000000000000000000000574a30660000000000000000000000000000000000000000000000000000000059d9a12f0000000000000000000000000000000000000000000000000000000052d1902d0000000000000000000000000000000000000000000000000000000054fd4d50000000000000000000000000000000000000000000000000000000002c996e020000000000000000000000000000000000000000000000000000000040f356f90000000000000000000000000000000000000000000000000000000040f356fa000000000000000000000000000000000000000000000000000000004e6ac1d5000000000000000000000000000000000000000000000000000000004f1ef286000000000000000000000000000000000000000000000000000000002c996e03000000000000000000000000000000000000000000000000000000003f50fb760000000000000000000000000000000000000000000000000000000020f2f3440000000000000000000000000000000000000000000000000000000020f2f3450000000000000000000000000000000000000000000000000000000024855e6000000000000000000000000000000000000000000000000000000000263bc92d0000000000000000000000000000000000000000000000000000000010c037a7000000000000000000000000000000000000000000000000000000001916749d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7f8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff9f5ee6fb062129ebe4f4f93ab4866ee289599fbb940712219d796d503e3bd40202000000000000000000000000000000000000400000000000000000000000009f5ee6fb062129ebe4f4f93ab4866ee289599fbb940712219d796d503e3bd4009f5ee6fb062129ebe4f4f93ab4866ee289599fbb940712219d796d503e3bd401000000000000000000000000000000000000000000000000ffffffffffffff1f0000000000000000000000ff000000000000000000000000000000000000000002000000000000000000000000000000000000200000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000ffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000010000000000000000000000000000000000000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff0200000000000000000000000000000000000000000000000000000000000000294c02ce66be799794a712d72e9926c40a3cb2738a51571523ffe23be2c6fb01000000000000000000000000000000000000000000000000fffffffffffffebf1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000e830b5c70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffe05245564f4b450000000000000000000000000000000000000000000000000000e33361f4000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000fffffffffffffe9f719845610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000009f5ee6fb062129ebe4f4f93ab4866ee289599fbb940712219d796d503e3bd404ffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000ffff00000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000ff00000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000ffffffffffffffff00000000000000000000000000000000000000000000ffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000000000000000000000000000000d0f9818d35b9c7d941f89e81a08a7f4761384ae32aeaf4a913b94319a321e7ff00000000000000000000000000000000000000200000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000003398b4ed0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff5bffffffffffffffffffffffffffffffffffffff5c00000000000000000000000000000000000000000000000000000000000000200000008000000000000000009f5ee6fb062129ebe4f4f93ab4866ee289599fbb940712219d796d503e3bd40300000000000000000000000000000000000000000000000000000000ffffffdffdffffffffffffffffffffffffffffffffffffdfffffff800000000000000000fdffffffffffffffffffffffffffffffffffffe0000000000000000000000000ffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff8cdef7ac4262df432ef960b4d902483c56118d54647a70746d99abc05cb970baac8606f300000000000000000000000000000000000000000000000000000000a1a740f600000000000000000000000000000000000000000000000000000000352e302e300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000004154544553545f4f4646434841494e00000000000000000000000000000000009016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c1993004466507a00000000000000000000000000000000000000000000000000000000118cdaa7000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000004000000000000000000000000010a0e42f00000000000000000000000000000000000000000000000000000000d1994a9a00000000000000000000000000000000000000000000000000000000ccc2eda000000000000000000000000000000000000000000000000000000000cc5042390000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000008000000000000000005245564f4b455f4f4646434841494e0000000000000000000000000000000000312e312e33000000000000000000000000000000000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc52d1902d00000000000000000000000000000000000000000000000000000000aa1d49a400000000000000000000000000000000000000000000000000000000bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b0000000000000000000000000000000000000000000000a000000000000000009996b315000000000000000000000000000000000000000000000000000000001425ea4200000000000000000000000000000000000000000000000000000000b398979f000000000000000000000000000000000000000000000000000000004c9c8ce300000000000000000000000000000000000000000000000000000000e07c8dba00000000000000000000000000000000000000000000000000000000688731b100000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000100000000000000010000000000000000ffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff1e4fbdf700000000000000000000000000000000000000000000000000000000d7e6bcf800000000000000000000000000000000000000000000000000000000f92ee8a9000000000000000000000000000000000000000000000000000000004154544553545f4f4646434841494e5f424154434800000000000000000000009e87fac800000000000000000000000000000000000000000000000000000000ee5ae86a000000000000000000000000000000000000000000000000000000006f0bf119c2fc55752051c1cfde5d145fdd499c7f748df7920409c72319ff60279f5ee6fb062129ebe4f4f93ab4866ee289599fbb940712219d796d503e3bd405ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffc00000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000fffffffffffffec0000000000000000000000000000000000000000000000000ffffffffffffff204154544553545f424154434800000000000000000000000000000000000000005245564f4b455f42415443480000000000000000000000000000000000000000524547495354455200000000000000000000000000000000000000000000000041545445535400000000000000000000000000000000000000000000000000005245564f4b455f4f4646434841494e5f4241544348000000000000000000000019457468657265756d205369676e6564204d6573736167653a0a333200000000020000000000000000000000000000000000003c0000000000000000000000007fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a000000000000000000000000000000000000000800000000000000000000000001626ba7e00000000000000000000000000000000000000000000000000000000fdf4e6f9000000000000000000000000000000000000000000000000000000001bf9480b00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff2a9e0beb00000000000000000000000000000000000000000000000000000000ffff0000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000ff0000000000000000000000000000000000000000000000000000000038b331f00373c8b0f9af5a4273ca1b91e894fec999bfa4ec787e8c90a5c8b05ca3ad78280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006dc3744365f439220285c33379e42346da30c01ed0c21a0ca3ab2df078a63655
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.