Source Code
Overview
SOPH Balance
More Info
ContractCreator
Multichain Info
N/A
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
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 Name:
SafeL2
Compiler Version
v0.7.6+commit.7338295f
ZkSolc Version
v1.5.4
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "./Safe.sol";/*** @title SafeL2 - An implementation of the Safe contract that emits additional events on transaction executions.* @notice For a more complete description of the Safe contract, please refer to the main Safe contract `Safe.sol`.* @author Stefan George - @Georgi87* @author Richard Meissner - @rmeissner*/contract SafeL2 is Safe {event SafeMultiSigTransaction(address to,uint256 value,bytes data,Enum.Operation operation,uint256 safeTxGas,uint256 baseGas,uint256 gasPrice,address gasToken,address payable refundReceiver,bytes signatures,// We combine nonce, sender and threshold into one to avoid stack too deep// Dev note: additionalInfo should not contain `bytes`, as this complicates decodingbytes additionalInfo
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "../base/Executor.sol";/*** @title Simulate Transaction Accessor.* @notice Can be used with StorageAccessible to simulate Safe transactions.* @author Richard Meissner - @rmeissner*/contract SimulateTxAccessor is Executor {address private immutable accessorSingleton;constructor() {accessorSingleton = address(this);}/*** @notice Modifier to make a function callable via delegatecall only.* If the function is called via a regular call, it will revert.*/modifier onlyDelegateCall() {require(address(this) != accessorSingleton, "SimulateTxAccessor should only be called via delegatecall");_;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "../common/Enum.sol";/*** @title Executor - A contract that can execute transactions* @author Richard Meissner - @rmeissner*/abstract contract Executor {/*** @notice Executes either a delegatecall or a call with provided parameters.* @dev This method doesn't perform any sanity check of the transaction, such as:* - if the contract at `to` address has code or not* It is the responsibility of the caller to perform such checks.* @param to Destination address.* @param value Ether value.* @param data Data payload.* @param operation Operation type.* @return success boolean flag indicating if the call succeeded.*/function execute(address to,uint256 value,bytes memory data,Enum.Operation operation,uint256 txGas
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "../common/SelfAuthorized.sol";/*** @title Fallback Manager - A contract managing fallback calls made to this contract* @author Richard Meissner - @rmeissner*/abstract contract FallbackManager is SelfAuthorized {event ChangedFallbackHandler(address indexed handler);// keccak256("fallback_manager.handler.address")bytes32 internal constant FALLBACK_HANDLER_STORAGE_SLOT = 0x6c9a6c4a39284e37ed1cf53d337577d14212a4870fb976a4366c693b939918d5;/*** @notice Internal function to set the fallback handler.* @param handler contract to handle fallback calls.*/function internalSetFallbackHandler(address handler) internal {/*If a fallback handler is set to self, then the following attack vector is opened:Imagine we have a function like this:function withdraw() internal authorized {withdrawalAddress.call.value(address(this).balance)("");}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "../common/Enum.sol";import "../common/SelfAuthorized.sol";import "../interfaces/IERC165.sol";interface Guard is IERC165 {function checkTransaction(address to,uint256 value,bytes memory data,Enum.Operation operation,uint256 safeTxGas,uint256 baseGas,uint256 gasPrice,address gasToken,address payable refundReceiver,bytes memory signatures,address msgSender) external;function checkAfterExecution(bytes32 txHash, bool success) external;}abstract contract BaseGuard is Guard {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "../common/Enum.sol";import "../common/SelfAuthorized.sol";import "./Executor.sol";/*** @title Module Manager - A contract managing Safe modules* @notice Modules are extensions with unlimited access to a Safe that can be added to a Safe by its owners.⚠️ WARNING: Modules are a security risk since they can execute arbitrary transactions,so only trusted and audited modules should be added to a Safe. A malicious module cancompletely takeover a Safe.* @author Stefan George - @Georgi87* @author Richard Meissner - @rmeissner*/abstract contract ModuleManager is SelfAuthorized, Executor {event EnabledModule(address indexed module);event DisabledModule(address indexed module);event ExecutionFromModuleSuccess(address indexed module);event ExecutionFromModuleFailure(address indexed module);address internal constant SENTINEL_MODULES = address(0x1);mapping(address => address) internal modules;/**
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "../common/SelfAuthorized.sol";/*** @title OwnerManager - Manages Safe owners and a threshold to authorize transactions.* @dev Uses a linked list to store the owners because the code generate by the solidity compiler* is more efficient than using a dynamic array.* @author Stefan George - @Georgi87* @author Richard Meissner - @rmeissner*/abstract contract OwnerManager is SelfAuthorized {event AddedOwner(address indexed owner);event RemovedOwner(address indexed owner);event ChangedThreshold(uint256 threshold);address internal constant SENTINEL_OWNERS = address(0x1);mapping(address => address) internal owners;uint256 internal ownerCount;uint256 internal threshold;/*** @notice Sets the initial storage of the contract.* @param _owners List of Safe owners.* @param _threshold Number of required confirmations for a Safe transaction.
12345678910111213// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;/*** @title Enum - Collection of enums used in Safe contracts.* @author Richard Meissner - @rmeissner*/abstract contract Enum {enum Operation {Call,DelegateCall}}
123456789101112131415161718// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;/*** @title NativeCurrencyPaymentFallback - A contract that has a fallback to accept native currency payments.* @author Richard Meissner - @rmeissner*/abstract contract NativeCurrencyPaymentFallback {event SafeReceived(address indexed sender, uint256 value);/*** @notice Receive function accepts native currency transactions.* @dev Emits an event with sender and received value.*/receive() external payable {emit SafeReceived(msg.sender, msg.value);}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;/*** @title SecuredTokenTransfer - Secure token transfer.* @author Richard Meissner - @rmeissner*/abstract contract SecuredTokenTransfer {/*** @notice Transfers a token and returns a boolean if it was a success* @dev It checks the return data of the transfer call and returns true if the transfer was successful.* It doesn't check if the `token` address is a contract or not.* @param token Token that should be transferred* @param receiver Receiver to whom the token should be transferred* @param amount The amount of tokens that should be transferred* @return transferred Returns true if the transfer was successful*/function transferToken(address token, address receiver, uint256 amount) internal returns (bool transferred) {// 0xa9059cbb - keccack("transfer(address,uint256)")bytes memory data = abi.encodeWithSelector(0xa9059cbb, receiver, amount);// solhint-disable-next-line no-inline-assemblyassembly {// We write the return value to scratch space.// See https://docs.soliditylang.org/en/v0.7.6/internals/layout_in_memory.html#layout-in-memorylet success := call(sub(gas(), 10000), token, 0, add(data, 0x20), mload(data), 0, 0x20)switch returndatasize()
123456789101112131415161718// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;/*** @title SelfAuthorized - Authorizes current contract to perform actions to itself.* @author Richard Meissner - @rmeissner*/abstract contract SelfAuthorized {function requireSelfCall() private view {require(msg.sender == address(this), "GS031");}modifier authorized() {// Modifiers are copied around during compilation. This is a function call as it minimized the bytecode sizerequireSelfCall();_;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;/*** @title SignatureDecoder - Decodes signatures encoded as bytes* @author Richard Meissner - @rmeissner*/abstract contract SignatureDecoder {/*** @notice Splits signature bytes into `uint8 v, bytes32 r, bytes32 s`.* @dev Make sure to perform a bounds check for @param pos, to avoid out of bounds access on @param signatures* The signature format is a compact form of {bytes32 r}{bytes32 s}{uint8 v}* Compact means uint8 is not padded to 32 bytes.* @param pos Which signature to read.* A prior bounds check of this parameter should be performed, to avoid out of bounds access.* @param signatures Concatenated {r, s, v} signatures.* @return v Recovery ID or Safe signature type.* @return r Output value r of the signature.* @return s Output value s of the signature.*/function signatureSplit(bytes memory signatures, uint256 pos) internal pure returns (uint8 v, bytes32 r, bytes32 s) {// solhint-disable-next-line no-inline-assemblyassembly {let signaturePos := mul(0x41, pos)r := mload(add(signatures, add(signaturePos, 0x20)))s := mload(add(signatures, add(signaturePos, 0x40)))
12345678910111213// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;/*** @title Singleton - Base for singleton contracts (should always be the first super contract)* This contract is tightly coupled to our proxy contract (see `proxies/SafeProxy.sol`)* @author Richard Meissner - @rmeissner*/abstract contract Singleton {// singleton always has to be the first declared variable to ensure the same location as in the Proxy contract.// It should also always be ensured the address is stored alone (uses a full word)address private singleton;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;/*** @title StorageAccessible - A generic base contract that allows callers to access all internal storage.* @notice See https://github.com/gnosis/util-contracts/blob/bb5fe5fb5df6d8400998094fb1b32a178a47c3a1/contracts/StorageAccessible.sol* It removes a method from the original contract not needed for the Safe contracts.* @author Gnosis Developers*/abstract contract StorageAccessible {/*** @notice Reads `length` bytes of storage in the currents contract* @param offset - the offset in the current contract's storage in words to start reading from* @param length - the number of words (32 bytes) of data to read* @return the bytes that were read.*/function getStorageAt(uint256 offset, uint256 length) public view returns (bytes memory) {bytes memory result = new bytes(length * 32);for (uint256 index = 0; index < length; index++) {// solhint-disable-next-line no-inline-assemblyassembly {let word := sload(add(offset, index))mstore(add(add(result, 0x20), mul(index, 0x20)), word)}}return result;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "../../common/Enum.sol";import "../../base/GuardManager.sol";import "../../Safe.sol";/*** @title Debug Transaction Guard - Emits transaction events with extended information.* @dev This guard is only meant as a development tool and example* @author Richard Meissner - @rmeissner*/contract DebugTransactionGuard is BaseGuard {// solhint-disable-next-line payable-fallbackfallback() external {// We don't revert on fallback to avoid issues in case of a Safe upgrade// E.g. The expected check method might change and then the Safe would be locked.}event TransactionDetails(address indexed safe,bytes32 indexed txHash,address to,uint256 value,bytes data,Enum.Operation operation,
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "../../common/Enum.sol";import "../../base/GuardManager.sol";import "../../Safe.sol";/*** @title DelegateCallTransactionGuard - Limits delegate calls to a specific target.* @author Richard Meissner - @rmeissner*/contract DelegateCallTransactionGuard is BaseGuard {address public immutable ALLOWED_TARGET;constructor(address target) {ALLOWED_TARGET = target;}// solhint-disable-next-line payable-fallbackfallback() external {// We don't revert on fallback to avoid issues in case of a Safe upgrade// E.g. The expected check method might change and then the Safe would be locked.}/*** @notice Called by the Safe contract before a transaction is executed.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "../../common/Enum.sol";import "../../base/GuardManager.sol";import "../../Safe.sol";interface ISafe {function getOwners() external view returns (address[] memory);}/*** @title OnlyOwnersGuard - Only allows owners to execute transactions.* @author Richard Meissner - @rmeissner*/contract OnlyOwnersGuard is BaseGuard {ISafe public safe;constructor() {}// solhint-disable-next-line payable-fallbackfallback() external {// We don't revert on fallback to avoid issues in case of a Safe upgrade// E.g. The expected check method might change and then the Safe would be locked.}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "../../common/Enum.sol";import "../../base/GuardManager.sol";import "../../Safe.sol";/*** @title ReentrancyTransactionGuard - Prevents reentrancy into the transaction execution function.* @author Richard Meissner - @rmeissner*/contract ReentrancyTransactionGuard is BaseGuard {bytes32 internal constant GUARD_STORAGE_SLOT = keccak256("reentrancy_guard.guard.struct");struct GuardValue {bool active;}// solhint-disable-next-line payable-fallbackfallback() external {// We don't revert on fallback to avoid issues in case of a Safe upgrade// E.g. The expected check method might change and then the Safe would be locked.}/*** @notice Returns the guard value for the current context.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "../../libraries/SafeStorage.sol";/*** @title Migration - Migrates a Safe contract from 1.3.0 to 1.2.0* @author Richard Meissner - @rmeissner*/contract Migration is SafeStorage {bytes32 private constant DOMAIN_SEPARATOR_TYPEHASH = 0x035aff83d86937d35b32e04f0ddc6ff469290eef2f1b692d8a815c89404d4749;address public immutable migrationSingleton;address public immutable safe120Singleton;constructor(address targetSingleton) {// Singleton address cannot be zero address.require(targetSingleton != address(0), "Invalid singleton address provided");safe120Singleton = targetSingleton;migrationSingleton = address(this);}event ChangedMasterCopy(address singleton);/*** @notice Migrates the Safe to the Singleton contract at `migrationSingleton`.* @dev This can only be called via a delegatecall.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;/*** @title SafeMath* @notice Math operations with safety checks that revert on error (overflow/underflow)*/library SafeMath {/*** @notice Multiplies two numbers, reverts on overflow.* @param a First number* @param b Second number* @return Product of a and b*/function mul(uint256 a, uint256 b) internal pure returns (uint256) {// 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-solidity/pull/522if (a == 0) {return 0;}uint256 c = a * b;require(c / a == b);return c;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "./TokenCallbackHandler.sol";import "../interfaces/ISignatureValidator.sol";import "../Safe.sol";/*** @title Compatibility Fallback Handler - Provides compatibility between pre 1.3.0 and 1.3.0+ Safe contracts.* @author Richard Meissner - @rmeissner*/contract CompatibilityFallbackHandler is TokenCallbackHandler, ISignatureValidator {// keccak256("SafeMessage(bytes message)");bytes32 private constant SAFE_MSG_TYPEHASH = 0x60b3cbf8b4a223d68d641b3b6ddf9a298e7f33710cf3d3a9d1146b5a6150fbca;bytes4 internal constant SIMULATE_SELECTOR = bytes4(keccak256("simulate(address,bytes)"));address internal constant SENTINEL_MODULES = address(0x1);bytes4 internal constant UPDATED_MAGIC_VALUE = 0x1626ba7e;/*** @notice Legacy EIP-1271 signature validation method.* @dev Implementation of ISignatureValidator (see `interfaces/ISignatureValidator.sol`)* @param _data Arbitrary length data signed on the behalf of address(msg.sender).* @param _signature Signature byte array associated with _data.* @return The EIP-1271 magic value.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "../interfaces/ERC1155TokenReceiver.sol";import "../interfaces/ERC721TokenReceiver.sol";import "../interfaces/ERC777TokensRecipient.sol";import "../interfaces/IERC165.sol";/*** @title Default Callback Handler - Handles supported tokens' callbacks, allowing Safes receiving these tokens.* @author Richard Meissner - @rmeissner*/contract TokenCallbackHandler is ERC1155TokenReceiver, ERC777TokensRecipient, ERC721TokenReceiver, IERC165 {/*** @notice Handles ERC1155 Token callback.* return Standardized onERC1155Received return value.*/function onERC1155Received(address, address, uint256, uint256, bytes calldata) external pure override returns (bytes4) {return 0xf23a6e61;}/*** @notice Handles ERC1155 Token batch callback.* return Standardized onERC1155BatchReceived return value.*/function onERC1155BatchReceived(
123456789101112131415161718192021222324// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;// Note: The ERC-165 identifier for this interface is 0x4e2312e0.interface ERC1155TokenReceiver {/*** @notice Handle the receipt of a single ERC1155 token type.* @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeTransferFrom` after thebalance has been updated.* This function MUST return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61) if it acceptsthe transfer.* This function MUST revert if it rejects the transfer.* Return of any other value than the prescribed keccak256 generated value MUST result in the transaction being reverted by the caller.* @param _operator The address which initiated the transfer (i.e. msg.sender).* @param _from The address which previously owned the token.* @param _id The ID of the token being transferred.* @param _value The amount of tokens being transferred.* @param _data Additional data with no specified format.* @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`.*/function onERC1155Received(address _operator,address _from,uint256 _id,uint256 _value,bytes calldata _data
123456789101112131415161718192021// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;/// @dev Note: the ERC-165 identifier for this interface is 0x150b7a02.interface ERC721TokenReceiver {/*** @notice Handle the receipt of an NFT* @dev The ERC721 smart contract calls this function on the recipient* after a `transfer`. This function MAY throw to revert and reject the* transfer. Return of other than the magic value MUST result in the* transaction being reverted.* Note: the contract address is always the message sender.* @param _operator The address which called `safeTransferFrom` function.* @param _from The address which previously owned the token.* @param _tokenId The NFT identifier which is being transferred.* @param _data Additional data with no specified format.* @return `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`.* unless throwing*/function onERC721Received(address _operator, address _from, uint256 _tokenId, bytes calldata _data) external returns (bytes4);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;/*** @title ERC777TokensRecipient* @dev Interface for contracts that will be called with the ERC777 token's `tokensReceived` method.* The contract receiving the tokens must implement this interface in order to receive the tokens.*/interface ERC777TokensRecipient {/*** @dev Called by the ERC777 token contract after a successful transfer or a minting operation.* @param operator The address of the operator performing the transfer or minting operation.* @param from The address of the sender.* @param to The address of the recipient.* @param amount The amount of tokens that were transferred or minted.* @param data Additional data that was passed during the transfer or minting operation.* @param operatorData Additional data that was passed by the operator during the transfer or minting operation.*/function tokensReceived(address operator,address from,address to,uint256 amount,bytes calldata data,bytes calldata operatorData) external;
123456789101112131415// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;/// @notice More details at https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.solinterface IERC165 {/*** @dev Returns true if this contract implements the interface defined by `interfaceId`.* See the corresponding EIP section* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified* to learn more about how these ids are created.** This function call must use less than 30 000 gas.*/function supportsInterface(bytes4 interfaceId) external view returns (bool);}
1234567891011121314151617181920// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;contract ISignatureValidatorConstants {// bytes4(keccak256("isValidSignature(bytes,bytes)")bytes4 internal constant EIP1271_MAGIC_VALUE = 0x20c13b0b;}abstract contract ISignatureValidator is ISignatureValidatorConstants {/*** @notice Legacy EIP1271 method to validate a signature.* @param _data Arbitrary length data signed on the behalf of address(this).* @param _signature Signature byte array associated with _data.** MUST return the bytes4 magic value 0x20c13b0b when function passes.* MUST NOT modify state (using STATICCALL for solc < 0.5, view modifier for solc > 0.5)* MUST allow external calls*/function isValidSignature(bytes memory _data, bytes memory _signature) public view virtual returns (bytes4);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import {SafeStorage} from "../libraries/SafeStorage.sol";interface ISafe {function setFallbackHandler(address handler) external;}/*** @title Migration Contract for Safe Upgrade* @notice This is a generic contract that facilitates Safe and SafeL2 proxy contracts to migrate their singleton address.* The supported target Safe version is immutable and set in the constructor during the deployment of the contract.* This contract also supports migration with fallback handler update.* @author @safe-global/safe-protocol* @dev IMPORTANT: The library is intended to be used with the Safe standard proxy that stores the singleton address* at the storage slot 0. Use at your own risk with custom proxy implementations. The contract will allow invocations* to the migration functions only via delegatecall.*/contract SafeMigration is SafeStorage {/*** @notice Address of this contract*/address public immutable MIGRATION_SINGLETON;/*** @notice Address of the Safe Singleton implementation
123456789101112131415161718192021222324// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;/*** @title SafeStorage - Storage layout of the Safe contracts to be used in libraries.* @dev Should be always the first base contract of a library that is used with a Safe.* @author Richard Meissner - @rmeissner*/contract SafeStorage {// From /common/Singleton.soladdress internal singleton;// From /common/ModuleManager.solmapping(address => address) internal modules;// From /common/OwnerManager.solmapping(address => address) internal owners;uint256 internal ownerCount;uint256 internal threshold;// From /Safe.soluint256 internal nonce;bytes32 internal _deprecatedDomainSeparator;mapping(bytes32 => uint256) internal signedMessages;mapping(address => mapping(bytes32 => uint256)) internal approvedHashes;}
12345678910111213141516171819202122232425// SPDX-License-Identifier: LGPL-3.0-only/* solhint-disable one-contract-per-file */pragma solidity >=0.7.0 <0.9.0;import {SafeStorage} from "../libraries/SafeStorage.sol";import {Enum} from "../common/Enum.sol";interface ISafe {// solhint-disable-next-linefunction VERSION() external view returns (string memory);function setFallbackHandler(address handler) external;}/*** @title Migration Contract for updating a Safe from 1.1.1/1.3.0/1.4.1 versions to a L2 version. Useful when replaying a Safe from a non L2 networkin a L2 network.* @notice This contract facilitates the migration of a Safe contract from version 1.1.1 to 1.3.0/1.4.1 L2, 1.3.0 to 1.3.0L2 or from 1.4.1 to 1.4.1L2* Other versions are not supported* @dev IMPORTANT: The migration will only work with proxies that store the implementation address in the storage slot 0.*/contract SafeToL2Migration is SafeStorage {// Address of this contractaddress public immutable MIGRATION_SINGLETON;/**
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import {SafeStorage} from "../libraries/SafeStorage.sol";/*** @title Safe to L2 Setup Contract* @dev This contract expects the singleton to be the {Safe} by default. Even if there are more* {SafeL2} proxies deployed, the average gas cost on L2s is significantly lower, making the* current design more economically efficient overall.* @notice This contract facilitates the deployment of a Safe to the same address on all networks by* automatically changing the singleton to the L2 version when not on chain ID 1.*/contract SafeToL2Setup is SafeStorage {/*** @dev Address of the contract.* This is used to ensure that the contract is only ever `DELEGATECALL`-ed.*/address private immutable SELF;/*** @notice Event indicating a change of master copy address.* @param singleton New master copy address*/event ChangedMasterCopy(address singleton);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "./SafeStorage.sol";import "../Safe.sol";/*** @title SignMessageLib - Allows to sign messages on-chain by writing the signed message hashes on-chain.* @author Richard Meissner - @rmeissner*/contract SignMessageLib is SafeStorage {// keccak256("SafeMessage(bytes message)");bytes32 private constant SAFE_MSG_TYPEHASH = 0x60b3cbf8b4a223d68d641b3b6ddf9a298e7f33710cf3d3a9d1146b5a6150fbca;event SignMsg(bytes32 indexed msgHash);/*** @notice Marks a message (`_data`) as signed.* @dev Can be verified using EIP-1271 validation method by passing the pre-image of the message hash and empty bytes as the signature.* @param _data Arbitrary length data that should be marked as signed on the behalf of address(this).*/function signMessage(bytes calldata _data) external {bytes32 msgHash = getMessageHash(_data);signedMessages[msgHash] = 1;emit SignMsg(msgHash);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "./base/ModuleManager.sol";import "./base/OwnerManager.sol";import "./base/FallbackManager.sol";import "./base/GuardManager.sol";import "./common/NativeCurrencyPaymentFallback.sol";import "./common/Singleton.sol";import "./common/SignatureDecoder.sol";import "./common/SecuredTokenTransfer.sol";import "./common/StorageAccessible.sol";import "./interfaces/ISignatureValidator.sol";import "./external/SafeMath.sol";/*** @title Safe - A multisignature wallet with support for confirmations using signed messages based on EIP-712.* @dev Most important concepts:* - Threshold: Number of required confirmations for a Safe transaction.* - Owners: List of addresses that control the Safe. They are the only ones that can add/remove owners, change the threshold and* approve transactions. Managed in `OwnerManager`.* - Transaction Hash: Hash of a transaction is calculated using the EIP-712 typed structured data hashing scheme.* - Nonce: Each transaction should have a different nonce to prevent replay attacks.* - Signature: A valid signature of an owner of the Safe for a transaction hash.* - Guard: Guard is a contract that can execute pre- and post- transaction checks. Managed in `GuardManager`.* - Modules: Modules are contracts that can be used to extend the write functionality of a Safe. Managed in `ModuleManager`.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;pragma abicoder v2;import "../../libraries/SafeStorage.sol";struct UserOperation {address sender;uint256 nonce;bytes initCode;bytes callData;uint256 callGasLimit;uint256 verificationGasLimit;uint256 preVerificationGas;uint256 maxFeePerGas;uint256 maxPriorityFeePerGas;bytes paymasterAndData;bytes signature;}interface ISafe {function execTransactionFromModule(address to, uint256 value, bytes memory data, uint8 operation) external returns (bool success);}/// @dev A Dummy 4337 Module/Handler for testing purposes/// ⚠️ ⚠️ ⚠️ DO NOT USE IN PRODUCTION ⚠️ ⚠️ ⚠️
1234567891011121314151617181920212223242526// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "../interfaces/ERC1155TokenReceiver.sol";import "../external/SafeMath.sol";/*** @title ERC1155Token - A test ERC1155 token contract*/contract ERC1155Token {using SafeMath for uint256;// Mapping from token ID to owner balancesmapping(uint256 => mapping(address => uint256)) private _balances;// Mapping from owner to operator approvalsmapping(address => mapping(address => bool)) private _operatorApprovals;/*** @dev Get the specified address' balance for token with specified ID.* @param owner The address of the token holder* @param id ID of the token* @return The owner's balance of the token type requested*/function balanceOf(address owner, uint256 id) public view returns (uint256) {require(owner != address(0), "ERC1155: balance query for the zero address");
1234567891011121314151617{"optimizer": {"enabled": true,"mode": "3"},"outputSelection": {"*": {"*": ["abi"]}},"forceEVMLA": false,"detectMissingLibraries": false,"enableEraVMExtensions": false,"libraries": {}}
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"}],"name":"AddedOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"approvedHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"owner","type":"address"}],"name":"ApproveHash","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"handler","type":"address"}],"name":"ChangedFallbackHandler","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"guard","type":"address"}],"name":"ChangedGuard","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"ChangedThreshold","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"module","type":"address"}],"name":"DisabledModule","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"module","type":"address"}],"name":"EnabledModule","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"txHash","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"payment","type":"uint256"}],"name":"ExecutionFailure","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"module","type":"address"}],"name":"ExecutionFromModuleFailure","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"module","type":"address"}],"name":"ExecutionFromModuleSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"txHash","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"payment","type":"uint256"}],"name":"ExecutionSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"}],"name":"RemovedOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"module","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"enum Enum.Operation","name":"operation","type":"uint8"}],"name":"SafeModuleTransaction","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"enum Enum.Operation","name":"operation","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"safeTxGas","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"baseGas","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"gasPrice","type":"uint256"},{"indexed":false,"internalType":"address","name":"gasToken","type":"address"},{"indexed":false,"internalType":"address payable","name":"refundReceiver","type":"address"},{"indexed":false,"internalType":"bytes","name":"signatures","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"additionalInfo","type":"bytes"}],"name":"SafeMultiSigTransaction","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"address[]","name":"owners","type":"address[]"},{"indexed":false,"internalType":"uint256","name":"threshold","type":"uint256"},{"indexed":false,"internalType":"address","name":"initializer","type":"address"},{"indexed":false,"internalType":"address","name":"fallbackHandler","type":"address"}],"name":"SafeSetup","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"msgHash","type":"bytes32"}],"name":"SignMsg","type":"event"},{"stateMutability":"nonpayable","type":"fallback"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"_threshold","type":"uint256"}],"name":"addOwnerWithThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hashToApprove","type":"bytes32"}],"name":"approveHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"approvedHashes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_threshold","type":"uint256"}],"name":"changeThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"dataHash","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"signatures","type":"bytes"},{"internalType":"uint256","name":"requiredSignatures","type":"uint256"}],"name":"checkNSignatures","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"dataHash","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"signatures","type":"bytes"}],"name":"checkSignatures","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"prevModule","type":"address"},{"internalType":"address","name":"module","type":"address"}],"name":"disableModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"domainSeparator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"module","type":"address"}],"name":"enableModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"enum Enum.Operation","name":"operation","type":"uint8"},{"internalType":"uint256","name":"safeTxGas","type":"uint256"},{"internalType":"uint256","name":"baseGas","type":"uint256"},{"internalType":"uint256","name":"gasPrice","type":"uint256"},{"internalType":"address","name":"gasToken","type":"address"},{"internalType":"address","name":"refundReceiver","type":"address"},{"internalType":"uint256","name":"_nonce","type":"uint256"}],"name":"encodeTransactionData","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"enum Enum.Operation","name":"operation","type":"uint8"},{"internalType":"uint256","name":"safeTxGas","type":"uint256"},{"internalType":"uint256","name":"baseGas","type":"uint256"},{"internalType":"uint256","name":"gasPrice","type":"uint256"},{"internalType":"address","name":"gasToken","type":"address"},{"internalType":"address payable","name":"refundReceiver","type":"address"},{"internalType":"bytes","name":"signatures","type":"bytes"}],"name":"execTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"enum Enum.Operation","name":"operation","type":"uint8"}],"name":"execTransactionFromModule","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"enum Enum.Operation","name":"operation","type":"uint8"}],"name":"execTransactionFromModuleReturnData","outputs":[{"internalType":"bool","name":"success","type":"bool"},{"internalType":"bytes","name":"returnData","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"start","type":"address"},{"internalType":"uint256","name":"pageSize","type":"uint256"}],"name":"getModulesPaginated","outputs":[{"internalType":"address[]","name":"array","type":"address[]"},{"internalType":"address","name":"next","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"offset","type":"uint256"},{"internalType":"uint256","name":"length","type":"uint256"}],"name":"getStorageAt","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"enum Enum.Operation","name":"operation","type":"uint8"},{"internalType":"uint256","name":"safeTxGas","type":"uint256"},{"internalType":"uint256","name":"baseGas","type":"uint256"},{"internalType":"uint256","name":"gasPrice","type":"uint256"},{"internalType":"address","name":"gasToken","type":"address"},{"internalType":"address","name":"refundReceiver","type":"address"},{"internalType":"uint256","name":"_nonce","type":"uint256"}],"name":"getTransactionHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"module","type":"address"}],"name":"isModuleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"prevOwner","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"_threshold","type":"uint256"}],"name":"removeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"handler","type":"address"}],"name":"setFallbackHandler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"guard","type":"address"}],"name":"setGuard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_owners","type":"address[]"},{"internalType":"uint256","name":"_threshold","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"address","name":"fallbackHandler","type":"address"},{"internalType":"address","name":"paymentToken","type":"address"},{"internalType":"uint256","name":"payment","type":"uint256"},{"internalType":"address payable","name":"paymentReceiver","type":"address"}],"name":"setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"signedMessages","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"targetContract","type":"address"},{"internalType":"bytes","name":"calldataPayload","type":"bytes"}],"name":"simulateAndRevert","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"prevOwner","type":"address"},{"internalType":"address","name":"oldOwner","type":"address"},{"internalType":"address","name":"newOwner","type":"address"}],"name":"swapOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
00000000000000000000000000000000000000000000000000000000000000009c4d535b0000000000000000000000000000000000000000000000000000000000000000010006c19437ff25b448f038f7ea0a4c910e0ae9cd8e55f2d199b7916b72eb1e00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x000400000000000200000000030100190000006003300270000006260430019700030000004103550002000000010355000006260030019d00000001002001900000000b0000c13d00000000010000191892001a0000040f0000008001000039000000400010043f0000000001000416000000000001004b000000180000c13d00000001010000390000000402000039000000000012041b0000002001000039000001000010044300000120000004430000062701000041000018930001042e00000000010000190000189400010430001d0000000000020000008004000039000000400040043f000000000001004b0000002a0000613d0000000001000416000000000001004b0000171f0000c13d00000001010000390000000402000039000000000012041b0000002001000039000001000010044300000120000004430000062701000041000018930001042e0000000003000031000000030030008c0000003f0000213d0000000001000416000000000003004b0000005e0000c13d000000800010043f000000000100041400000000020004110000063205200197000006260010009c0000062601008041000000c00110021000000697011001c70000800d020000390000000203000039000006b704000041189218830000040f00000001002001900000050c0000c13d0000171f0000013d0000000201000367000000000501043b000000e002500270000006280050009c0000008d0000813d000006780050009c000001100000813d0000069d0050009c000001d90000813d000006a90020009c000007b00000613d000006aa0020009c000005430000613d000006ab0020009c000005050000c13d0000000002000416000000000002004b0000171f0000c13d000000240230008a000006b80020009c0000171f0000813d0000000401100370000000000101043b0000063201100197000000010010008c000008a10000613d000000000010043f0000000101000039000000200010043f000000000100041400000ec40000013d000000000001004b0000171f0000c13d0000063b01000041000000000201041a000000000002004b0000050c0000613d0000000205000367000006b8013001980000001f0630018f0000006e0000613d000000000705034f0000000008000019000000007907043c0000000008980436000000000018004b0000006a0000c13d000000000006004b0000007b0000613d000000000515034f0000000306600210000000000701043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005104350000000001000411000000600110021000000000001304350000000001000414000000040020008c000002500000c13d00000003030003670000000101000031000006b8021001980000001f0410018f000005350000613d000000000503034f0000000006000019000000005705043c0000000006760436000000000026004b000000880000c13d000005350000013d000006290050009c000001270000813d000006570050009c000001ec0000813d000006640020009c000008170000613d000006650020009c0000076f0000613d000006660020009c000005050000c13d0000000002000416000000000002004b0000171f0000c13d000001040230008a000006b90020009c0000171f0000813d0000000402100370000000000202043b000006460020009c0000171f0000213d0000002404200039000000000034004b0000171f0000213d0000000402200039000000000521034f000000000505043b001800000005001d000006460050009c0000171f0000213d000000180500002900170005005002180000001704400029000000000034004b0000171f0000213d0000002404100370000000000404043b001600000004001d0000004404100370000000000404043b001500000004001d0000006404100370000000000504043b000006460050009c0000171f0000213d0000002404500039000000000034004b0000171f0000213d001300040050003d0000001305100360000000000505043b001400000005001d000006460050009c0000171f0000213d0000001404400029000000000034004b0000171f0000213d000000c403100370000000000303043b000f00000003001d0000008403100370000000000303043b001000000003001d000000a403100370000000000303043b000d00000003001d000000e403100370000000000303043b000e00000003001d0000001704000029000000a003400039000000400030043f0000001805000029000000800050043f0012001f00400193001100200020003d000000000004004b000000e00000613d0000001101100360000000a002000039000000001401043c0000000002420436000000000032004b000000dc0000c13d000000120000006b00000000000304350000000401000039000000000101041a000000000001004b000010e30000c13d000000800100043d000000160010006b000008130000213d000000160000006b000010f80000613d000000000001004b000012f60000c13d0000000103000039000000000030043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d0000001002000029001b06320020019c000000000101043b000000000201041a000006340220019700000001022001bf000000000021041b0000000301000039000000800200043d000000000021041b00000016010000290000000402000039000000000012041b000013fd0000613d000000000100041000000632011001970000001b0010006b000013fa0000c13d000000400100043d00000044021000390000063f03000041000013370000013d000006790050009c000002120000813d000006920020009c000002750000213d000006950020009c000008480000613d000006960020009c000005050000c13d0000000002000416000000000002004b0000171f0000c13d000000240230008a000006b80020009c0000171f0000813d0000000401100370000000000101043b0000000702000039000000200020043f000000000010043f00000040020000390000000001000019189218570000040f00000cba0000013d0000062a0050009c000002310000813d000006410020009c000002960000213d000006440020009c000008770000613d000006450020009c000005050000c13d0000000002000416000000000002004b0000171f0000c13d000000640230008a000006ba0020009c0000171f0000813d0000004402100370000000000202043b0000002403100370000000000503043b0000000401100370000000000401043b0000000001000410000006320110019700000000030004110000063203300197000000000013004b00000eac0000c13d0000063202200197000000020020008c000010240000413d000000000012004b000010240000613d001c00000005001d001b00000004001d001a00000002001d000000000020043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a0000063200100198000013340000c13d0000001c010000290000063201100197001c00000001001d000000020010008c0000134b0000413d0000001b010000290000063201100197001b00000001001d000000000010043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a00000632011001970000001c0010006c000010960000c13d0000001c01000029000000000010043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a001900000001001d0000001a01000029000000000010043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d00000019020000290000063202200197000000000101043b000000000301041a0000063403300197000000000223019f000000000021041b0000001b01000029000000000010043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000201041a00000634022001970000001a022001af000000000021041b0000001c01000029000000000010043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000201041a0000063402200197000000000021041b000000400100043d000006260010009c000006260100804100000040011002100000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000800d02000039000000020300003900000636040000410000001c05000029189218830000040f00000001002001900000171f0000613d000000400100043d000006260010009c000006260100804100000040011002100000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000800d0200003900000002030000390000064d040000410000001a050000290000003b0000013d0000069e0020009c000003850000213d000006a10020009c000008960000613d000006a20020009c000005050000c13d0000000001000416000000000001004b0000171f0000c13d0000800b01000039000000040300003900000000040004150000001d0440008a000000050440021000000638020000411892186c0000040f000000800010043f0000064b01000041000018930001042e000006580020009c0000042b0000213d0000065b0020009c000008a40000613d0000065c0020009c000005050000c13d0000000002000416000000000002004b0000171f0000c13d000000240230008a000006b80020009c0000171f0000813d0000000401100370000000000101043b001c00000001001d00000000010004110000063201100197001b00000001001d000000000010043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a000006320010019800000f3b0000c13d000000400100043d00000044021000390000066003000041000013370000013d0000067a0020009c000004990000213d0000067d0020009c000008b70000613d0000067e0020009c000005050000c13d0000000002000416000000000002004b0000171f0000c13d000000440230008a000006bb0020009c0000171f0000813d0000002402100370000000000202043b001c00000002001d0000000401100370000000000101043b0000000802000039000000200020043f0000063201100197000000000010043f00000040020000390000000001000019189218570000040f000000200010043f0000001c01000029000000000010043f00000000010000190000004002000039189218570000040f00000cba0000013d0000062b0020009c000004f20000213d0000062e0020009c00000c4c0000613d0000062f0020009c000005050000c13d0000000001000416000000000001004b0000171f0000c13d0000800b01000039000000040300003900000000040004150000001d0440008a000000050440021000000638020000411892186c0000040f0000063902000041000000a00020043f000000c00010043f00000000010004100000063201100197000000e00010043f0000006002000039000000800020043f0000010001000039000000400010043f000000a001000039189218570000040f000001000010043f0000063a01000041000018930001042e0000006003300210000006b60330009a000006260010009c0000062601008041000000c001100210000000000131019f189218830000040f0003000000010355000000000301001900000060033002700000001f0530018f000106260030019d0000065304300198000002640000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000002600000c13d000000000005004b000002710000613d000000000141034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000626013001970000000100200190000008420000c13d000008460000013d000006930020009c00000c670000613d000006940020009c000005050000c13d0000000002000416000000000002004b0000171f0000c13d000000240230008a000006b80020009c0000171f0000813d00000000020004100000000003000411000000000223013f0000000401100370000000000101043b000006320020019800000eac0000c13d0000000302000039000000000202041a000000000021004b00000ea20000213d000000000001004b0000102e0000c13d0000063e01000041000000800010043f0000002001000039000000840010043f0000000501000039000000a40010043f0000069801000041000000c40010043f00000640010000410000189400010430000006420020009c00000cb60000613d000006430020009c000005050000c13d0000000002000416000000000002004b0000171f0000c13d000001440230008a000006bc0020009c0000171f0000813d0000002402100370000000000202043b001c00000002001d0000000402100370000000000202043b001b00000002001d0000004402100370000000000202043b000006460020009c0000171f0000213d0000002405200039000000000035004b0000171f0000213d0000000407200039000000000271034f000000000202043b000006460020009c0000171f0000213d0000000005520019000000000035004b0000171f0000213d000006b8052001980000001f0620018f00000080035000390000002007700039000000000771034f0000012408100370000000000808043b001800000008001d0000010408100370000000000808043b001300000008001d000000e408100370000000000808043b001400000008001d000000c408100370000000000808043b001500000008001d000000a408100370000000000808043b001600000008001d0000008408100370000000000808043b001700000008001d0000006401100370000000000101043b001900000001001d000002d50000613d000000000107034f000000001801043c0000000004840436000000000034004b000002d10000c13d000000000006004b000002e20000613d000000000157034f0000000304600210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000400300043d00000000013200490000008001100039000006260010009c00000626010080410000006001100210000006260030009c001a00000003001d000006260200004100000000020340190000004002200210000000000121019f0000000002000414000006260020009c0000062602008041000000c002200210000000000121019f00000635011001c70000801002000039189218880000040f00000001002001900000171f0000613d0000001b0200002900000632032001970000001902000029000000ff0220018f000000000101043b0000001a050000290000008004500039000000000014043500000060015000390000001c04000029000000000041043500000040015000390000000000310435000000200150003900000647030000410000000000310435000000020020008c000010930000813d00000013010000290000063201100197000001400350003900000000001304350000001401000029000006320110019700000120035000390000000000130435000001000150003900000015030000290000000000310435000000e00150003900000016030000290000000000310435000000c00150003900000017030000290000000000310435000000a0015000390000000000210435000001600150003900000018020000290000000000210435000000400200043d000000000121004900000000011204360000018003500039000000400030043f000006260010009c000006260100804100000040011002100000000002020433000006260020009c00000626020080410000006002200210000000000112019f0000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b001c00000001001d000006380100004100000000001004430000000001000414000006260010009c0000062601008041000000c00110021000000648011001c70000800b02000039189218880000040f0000000100200190000018080000613d000000000101043b000000400300043d000000400230003900000000001204350000002001300039000006390200004100000000002104350000000001000410000006320110019700000060023000390000000000120435000000400100043d00000000021200490000000002210436001b00000003001d0000008003300039000000400030043f000006260020009c000006260200804100000040022002100000000001010433000006260010009c00000626010080410000006001100210000000000121019f0000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b0000001b06000029000000a00260003900000649030000410000000000320435000000a1026000390000064a030000410000000000320435000000a2026000390000000000120435000000c2016000390000001c020000290000000000210435000000400400043d00000000014100490000000002140436000000e203600039000000400030043f0000002001000039000000000013043500000102036000390000000005040433000000000053043500000122036000390000000004040433000000000004004b0000111f0000c13d0000000001030019000000000200001900000f780000013d0000069f0020009c00000cbe0000613d000006a00020009c000005050000c13d0000000002000416000000000002004b0000171f0000c13d000000840230008a000006bd0020009c0000171f0000813d0000002402100370000000000202043b001c00000002001d0000000402100370000000000402043b0000004402100370000000000202043b000006460020009c0000171f0000213d0000002406200039000000000036004b0000171f0000213d0000000405200039000000000251034f000000000202043b000006460020009c0000171f0000213d0000000006620019000000000036004b0000171f0000213d0000001f032000390000067403300197000000a003300039000000400030043f0000002003500039000000000531034f000000800020043f000006b8062001980000001f0720018f000000a003600039000003b40000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000038004b000003b00000c13d0000063208400197000000000007004b000003c20000613d000000000465034f0000000305700210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000a00220003900000000000204350000006401100370000000000201043b000000400100043d00000040031000390000001c04000029000000000043043500000020031000390000000000830435000000000300041100000632043001970000000000410435000000ff0520018f000000020050008c000010930000813d0000006002100039000000a003000039000000000032043500000080021000390000000000520435000000a002100039000000800300043d0000000000320435000000c001100039000000800200043d000000000002004b001b00000004001d001a00000008001d001900000005001d000003f30000613d00000000030000190000000004130019000000a005300039000000000505043300000000005404350000002003300039000000000023004b000003e20000413d00000000011200190000001f02200190000003f30000613d0000000003210049000000030120021000000100021000890000000014030434000000000424022f00000000022401cf0000000000230435000000400200043d0000000001210049000006260010009c00000626010080410000006001100210000006260020009c00000626020080410000004002200210000000000121019f0000000002000414000006260020009c0000062602008041000000c002200210000000000121019f00000635011001c70000800d020000390000000103000039001800000003001d000006a304000041189218830000040f00000001002001900000171f0000613d0000001b01000029000000010010008c00000d520000613d0000001b01000029000000000010043f0000000101000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a000006320010019800000d520000613d0000001901000029000000010010008c0000112b0000c13d0000001a01000029000000040010008c0000135e0000613d000000800100043d000006260010009c00000626010080410000006001100210000006a5011001c70000001a020000291892188d0000040f000013590000013d000006590020009c00000d560000613d0000065a0020009c000005050000c13d0000000002000416000000000002004b0000171f0000c13d000000440230008a000006bb0020009c0000171f0000813d00000000020004100000000003000411000000000323013f0000002402100370000000000202043b0000000401100370000000000101043b000006320030019800000eac0000c13d0000063202200197000000010020008c00000eb60000a13d001c00000002001d0000063201100197001b00000001001d000000000010043f0000000101000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a00000632011001970000001c02000029000000000021004b000010680000c13d000000000020043f0000000101000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a001a00000001001d0000001b01000029000000000010043f0000000101000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d0000001a020000290000063202200197000000000101043b000000000301041a0000063403300197000000000223019f000000000021041b0000001c01000029000000000010043f0000000101000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000201041a0000063402200197000000000021041b000000400100043d000006260010009c000006260100804100000040011002100000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000800d0200003900000002030000390000065e040000410000001c050000290000003b0000013d0000067b0020009c00000e180000613d0000067c0020009c000005050000c13d0000000002000416000000000002004b0000171f0000c13d0000000302000039000000000402041a0000067f0040009c0000171f0000813d000000800040043f0000000505400210000000a002500039000000400020043f000000000004004b000004b20000613d000000000005004b000004b20000613d000000000131034f000000a003000039000000001401043c0000000003430436000000000023004b000004ae0000c13d0000000101000039000000000010043f0000000201000039000000200010043f0000068001000041000000000101041a0000063201100197000000010010008c000004d60000613d0000000003000019000000800200043d000000000023004b000010930000813d001c00000003001d0000000502300210000000a0022000390000000000120435000000000010043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d0000001c030000290000000103300039000000000101043b000000000101041a0000063201100197000000010010008c000004bc0000c13d000000400100043d00000020020000390000000002210436000000800300043d00000000003204350000004001100039000000800200043d0000000502200212000004e70000613d00000000030000190000000004130019000000a005300039000000000505043300000000005404350000002003300039000000000023004b000004e00000413d0000000001120019000000400200043d0000000001210049000006260010009c00000626010080410000006001100210000006260020009c00000626020080410000004002200210000000000121019f000018930001042e0000062c0020009c00000e8c0000613d0000062d0020009c000005050000c13d0000000001000416000000000001004b0000171f0000c13d000000c001000039000000400010043f0000000501000039000000800010043f0000063002000041000000a00020043f0000002003000039000000c00030043f000000e00010043f000001000020043f0000063101000041000018930001042e0000000002000416000000000002004b0000171f0000c13d0000063b02000041000000000202041a000000000002004b0000050e0000c13d0000000001000019000018930001042e000006b8053001980000001f0630018f000005170000613d000000000701034f0000000008000019000000007907043c0000000008980436000000000058004b000005130000c13d000000000006004b000005240000613d000000000151034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f00000000001504350000000001000411000000600110021000000000001304350000000001000414000000040020008c0000081c0000c13d00000003030003670000000101000031000006b8021001980000001f0410018f000005350000613d000000000503034f0000000006000019000000005705043c0000000006760436000000000026004b000005310000c13d000000000004004b000008420000613d000000000323034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000008420000013d0000000002000416000000000002004b0000171f0000c13d000000840230008a000006bd0020009c0000171f0000813d0000000402100370000000000202043b001400000002001d0000002402100370000000000202043b000006460020009c0000171f0000213d0000002405200039000000000035004b0000171f0000213d0000000404200039000000000241034f000000000202043b000006460020009c0000171f0000213d0000000005520019000000000035004b0000171f0000213d0000001f052000390000067405500197000000a005500039000000400050043f0000002004400039000000000541034f000000800020043f000006b8062001980000001f0720018f000000a0046000390000056c0000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000048004b000005680000c13d000000000007004b000005790000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000a00220003900000000000204350000004402100370000000000202043b000006460020009c0000171f0000213d0000002405200039000000000035004b0000171f0000213d0000000404200039000000000241034f000000000202043b000006460020009c0000171f0000213d0000000005520019000000000035004b0000171f0000213d0000001f032000390000067403300197000000400500043d00000020075000390000000003370019000000400030043f0000002003400039000000000431034f001100000005001d0000000000250435000006b8052001980000001f0620018f001900000007001d00000000035700190000059f0000613d000000000704034f0000001908000029000000007907043c0000000008980436000000000038004b0000059b0000c13d000000000006004b000005ac0000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000190220002900000000000204350000006401100370000000000101043b001800000001001d000000000001004b0000050c0000613d000000180100002900100041001000cd00000010011000f9000000410010008c0000171f0000c13d00000011010000290000000001010433000000100010006c000010f00000413d0000001101000029001700410010003d001600400010003d0000000001000411000f06320010019b001b00000000001d001c00000000001d0000001c0100002900000041011000c9000000170210002900000019031000290000001601100029000000000501043300000000040304330000000003020433000000ff01300190000005f20000613d000000010010008c000006550000c13d00000632014001970000000f0010006b000007510000613d001a00000004001d000000000010043f0000000801000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b0000001402000029000000000020043f000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a000000000001004b0000001a04000029000007510000c13d0000148f0000013d001a00000004001d000000800100043d000006260010009c000006260100804100000060011002100000000002000414000006260020009c0000062602008041000000c002200210000000000121019f00000681011001c70000801002000039001500000005001d189218880000040f000000150500002900000001002001900000171f0000613d000000000101043b000000140010006c000014680000c13d000000100050006c0000146c0000413d000006b80050009c0000171f0000813d000000200450003900000011010000290000000003010433000000000034004b000014700000213d000000000115001900000020021000390000000005020433000000000045001a0000171f0000413d0000000004450019000000000034004b000014740000213d000000400400043d000006820300004100000000003404350000000403400039000000400500003900000000005304350000004405400039000000800600043d00000000006504350000006405400039000000800600043d000000000006004b000006360000613d00000000070000190000000008570019000000a009700039000000000909043300000000009804350000002007700039000000000067004b000006250000413d00000000055600190000001f06600190000006360000613d0000000007650049000000030560021000000100065000890000000058070434000000000868022f00000000066801cf000000000067043500000024044000390000001a06000029000006320660019700000000033500490000000000340435000000000302043300000000073504360000000002020433000000000002004b000006970000613d0000004001100039000000000300001900000000047300190000000005310019000000000505043300000000005404350000002003300039000000000023004b000006420000413d00000000077200190000001f01200190000006970000613d0000000002170049000000030110021000000100011000890000000043020434001200000004001d000000000313022f00000000011301cf0000000000120435000006980000013d000000400600043d00000020026000390000001f0010008c000006b00000813d0000000000060435000000400020043f00000014030000290000000000320435000000800260003900000000005204350000006002600039000000000042043500000040026000390000000000120435000000400200043d001a00000002001d0000000001260049000000a001100039000006260010009c00000626010080410000006001100210000006260020009c00000626020080410000004002200210000000000121019f0000000002000414000006260020009c0000062602008041000000c002200210000000000121019f0000000102000039189218880000040f000000000301001900000060033002700000062603300197000000200030008c000000200600003900000000060340190000001a04000029000000200740008a00000020056001900000000004570019000006850000613d000000000801034f000000008908043c0000000007970436000000000047004b000006810000c13d0000001f06600190000006920000613d000000000551034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000007160000c13d000014c60000013d001200000007001d000000400100043d001300000001001d00000650010000410000000000100443001500000006001d00000004006004430000000001000414000006260010009c0000062601008041000000c00110021000000651011001c70000800202000039189218880000040f0000000100200190000018080000613d000000000101043b000000000001004b0000171f0000613d00000000010004140000001502000029000000040020008c0000071a0000c13d0000000103000031000007490000013d001200000003001d001a00000004001d000006850100004100000000001204350000003c0160003900000014020000290000000000210435000000400200043d00000000012100490000000001120436001300000006001d0000005c03600039000e00000003001d000000400030043f000006260010009c000006260100804100000040011002100000000002020433000006260020009c00000626020080410000006002200210000000000112019f0000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000801002000039001500000005001d189218880000040f000000150400002900000001002001900000171f0000613d000000000101043b0000000e02000029000000000002043500000013050000290000007c02500039000000400020043f000000dc035000390000000000430435000000bc035000390000001a0400002900000000004304350000001203000029000000fc03300039000000ff0330018f0000009c0450003900000000003404350000000000120435000000400200043d001a00000002001d0000000001250049000000fc01100039000006260010009c00000626010080410000006001100210000006260020009c00000626020080410000004002200210000000000121019f0000000002000414000006260020009c0000062602008041000000c002200210000000000121019f0000000102000039189218880000040f000000000301001900000060033002700000062603300197000000200030008c000000200600003900000000060340190000001a04000029000000200740008a00000020056001900000000004570019000007050000613d000000000801034f000000008908043c0000000007970436000000000047004b000007010000c13d0000001f06600190000007120000613d000000000551034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000014de0000613d000000400100043d000000200110008a0000000004010433000007510000013d00000013050000290000001204500069000006260050009c000006260300004100000000030540190000004003300210000006260040009c00000626040080410000006004400210000000000334019f000006260010009c0000062601008041000000c001100210000000000131019f189218880000040f0000001309000029000000000301001900000060033002700000062603300197000000200030008c0000002006000039000000000603401900000020056001900000000004590019000007380000613d000000000701034f000000007807043c0000000009890436000000000049004b000007340000c13d0000001f06600190000007450000613d000000000551034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000014f60000613d0000001f0030008c0000171f0000a13d000000400100043d00000000020104330000068302200197000006820020009c0000001a04000029000014780000c13d00000632034001970000001b0030006c0000134f0000a13d000000000030043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039001b00000003001d189218880000040f00000001002001900000171f0000613d000000000101043b0000001b03000029000000010030008c0000134f0000613d000000000101041a00000632001001980000134f0000613d0000001c020000290000000102200039001c00000002001d000000180020006c001b00000003001d000005c30000413d0000050c0000013d0000000002000416000000000002004b0000171f0000c13d000000440230008a000006bb0020009c0000171f0000813d0000000402100370000000000202043b0000002404100370000000000404043b000006460040009c0000171f0000213d0000002406400039000000000036004b0000171f0000213d0000000405400039000000000451034f000000000404043b000006460040009c0000171f0000213d0000000006640019000000000036004b0000171f0000213d0000001f034000390000067403300197000000a003300039000000400030043f0000002003500039000000000331034f000000800040043f000000200a00008a0000000005a401700000001f0640018f000000a001500039000007980000613d000000a007000039000000000803034f000000008908043c0000000007970436000000000017004b000007940000c13d0000063202200197000000000006004b000007a60000613d000000000353034f0000000305600210000000000601043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000310435000000a0014000390000000000010435000000800300043d0000000001000414000000040020008c0000103a0000c13d0000000103000039000000030100036700000001020000310000104a0000013d0000000002000416000000000002004b0000171f0000c13d000000440230008a000006bb0020009c0000171f0000813d0000002402100370000000000402043b0000000401100370000000000201043b0000000001000410000006320110019700000000030004110000063203300197000000000013004b00000eac0000c13d0000063202200197000000020020008c000010240000413d000000000012004b000010240000613d001b00000004001d001c00000002001d000000000020043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a0000063200100198000013340000c13d0000068001000041000000000101041a001a00000001001d0000001c01000029000000000010043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d0000001a020000290000063202200197000000000101043b000000000301041a0000063403300197000000000223019f000000000021041b0000000101000039000000000010043f0000000203000039000000200030043f0000068002000041000000000102041a00000634011001970000001c05000029000000000151019f000000000012041b0000000302000039000000000102041a0000000101100039000000000012041b000000400100043d000006260010009c000006260100804100000040011002100000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000800d020000390000064d04000041189218830000040f00000001002001900000171f0000613d0000000401000039000000000201041a0000001b0020006c0000050c0000613d0000000302000039000000000202041a0000001b0020006b000010f60000a13d000000400100043d00000044021000390000069903000041000013370000013d0000000001000416000000000001004b0000171f0000c13d000000050100003900000cba0000013d000006260010009c0000062601008041000000c001100210000006b50030009c000006b5030080410000006003300210000000000113019f000006b60110009a189218830000040f0003000000010355000000000301001900000060033002700000001f0530018f000106260030019d0000065304300198000008320000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000082e0000c13d000000000005004b0000083f0000613d000000000141034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000626013001970000000100200190000008460000613d000006260010009c00000626010080410000006001100210000018930001042e000000600110021000001894000104300000000002000416000000000002004b0000171f0000c13d000000440230008a000006bb0020009c0000171f0000813d0000000402100370000000000202043b0000002404100370000000000404043b00000005064002100000067f0060009c0000171f0000813d000000800060043f000000a005600039000000400050043f000000000006004b000008600000613d000000000131034f000000a003000039000000001601043c0000000003630436000000000053004b0000085c0000c13d000000000004004b0000086b0000613d00000000010000190000000003210019000000000303041a0000000505100210000000a00550003900000000003504350000000101100039000000000041004b000008630000413d000000400200043d00000020010000390000000003120436000000800400043d00000000004304350000004002200039000000800300043d000000000003004b00000f660000c13d0000000001020019000000000200001900000f780000013d0000000002000416000000000002004b0000171f0000c13d000000240230008a000006b80020009c0000171f0000813d00000000020004100000000003000411000000000223013f0000000401100370000000000101043b000006320020019800000eac0000c13d000006320510019800000f830000c13d00000080010000390000065502000041000000000052041b000006260010009c000006260100804100000040011002100000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000800d02000039000000020300003900000656040000410000003b0000013d0000000002000416000000000002004b0000171f0000c13d000000240230008a000006b80020009c0000171f0000813d0000000401100370000000000101043b0000063201100197000000010010008c00000ec00000c13d0000008002000039000000000100001900000ed20000013d0000000002000416000000000002004b0000171f0000c13d000000440230008a000006bb0020009c0000171f0000813d0000002402100370000000000202043b0000000401100370000000000101043b0000063206100197000000010060008c00000ed80000c13d000000000002004b00000ef00000c13d000000400100043d00000044021000390000066303000041000013370000013d000001440230008a000006bc0020009c0000171f0000813d0000002402100370000000000202043b001400000002001d0000000402100370000000000202043b0000004404100370000000000404043b000006460040009c0000171f0000213d001200240040003d000000120030006b0000171f0000213d0000000404400039000000000441034f000000000404043b000c00000004001d000006460040009c0000171f0000213d00000012050000290000000c04500029000000000034004b0000171f0000213d000000c404100370000000000404043b000a00000004001d000000a404100370000000000404043b000900000004001d0000008404100370000000000404043b000b00000004001d0000010404100370000000000504043b000000e404100370000000000604043b0000006404100370000000000704043b0000012404100370000000000404043b000006460040009c0000171f0000213d0000002409400039000000000039004b0000171f0000213d0000000408400039000000000481034f000000000404043b000006460040009c0000171f0000213d0000000009940019000000000039004b0000171f0000213d0000001f034000390000067403300197000000a003300039000000400030043f0000002003800039000000000831034f000000800040043f000006b8094001980000001f0a40018f000000a003900039000008ff0000613d000000a00b000039000000000c08034f00000000cd0c043c000000000bdb043600000000003b004b000008fb0000c13d000706320020019b000800ff0070019300000000000a004b0000090e0000613d000000000298034f0000000307a00210000000000803043300000000087801cf000000000878022f000000000202043b0000010007700089000000000272022f00000000027201cf000000000282019f0000000000230435000000a00240003900000000000204350000000402000039000000000202041a0000000503000039000000000303041a000000400700043d0000002004700039000000000034043500000060047000390000000000240435000000000200041100000632032001970000004002700039001100000003001d0000000000320435000000400300043d000000000234004900000000022304360000008004700039000000400040043f000000a00870003900000014090000290000000000980435000000070800002900000000008404350000000808000029000000020080008c000010930000813d000006320850019700000632066001970000018005700039000400000008001d00000000008504350000016005700039000300000006001d000000000065043500000140057000390000000a06000029000000000065043500000120057000390000000906000029000000000065043500000100057000390000000b060000290000000000650435000000e00570003900000008060000290000000000650435000000c005700039000001600600003900000000006504350000001206100360000001e0017000390000000c050000290000000000510435000006b8015001980006001f005001930000020005700039000500000001001d0000000001150019000009520000613d000000000806034f0000000009050019000000008a08043c0000000009a90436000000000019004b0000094e0000c13d000001a008700039000000060000006b000009610000613d000000050660036000000006090000290000000309900210000000000a010433000000000a9a01cf000000000a9a022f000000000606043b0000010009900089000000000696022f00000000069601cf0000000006a6019f0000000000610435000001c0017000390000000c07000029000000000675001900000000000604350000001f06700039000206b80060019b000000020550002900000000064500490000000000680435000000800600043d0000000005650436000000800600043d000000000006004b000009810000613d00000000070000190000000008570019000000a009700039000000000909043300000000009804350000002007700039000000000067004b000009700000413d00000000055600190000001f06600190000009810000613d0000000007650049000000030560021000000100065000890000000058070434000000000868022f00000000066801cf000000000067043500000000044500490000000000410435000000000103043300000000011504360000000003030433000000000003004b0000099a0000613d000000000400001900000000051400190000000006420019000000000606043300000000006504350000002004400039000000000034004b000009890000413d00000000011300190000001f023001900000099a0000613d0000000003210049000000030120021000000100021000890000000014030434000000000424022f00000000022401cf0000000000230435000000400200043d0000000001210049000006260010009c00000626010080410000006001100210000006260020009c00000626020080410000004002200210000000000121019f0000000002000414000006260020009c0000062602008041000000c002200210000000000121019f00000635011001c70000800d0200003900000001030000390000068604000041189218830000040f00000001002001900000171f0000613d000000400100043d0000000502100029000000120300002900000002033003670000000504000039000000000404041a001c00000004001d000000050000006b000009be0000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b000009ba0000c13d000000060000006b000009cc0000613d000000050330036000000006040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000c01100029000000400200043d0000000001210049000006260010009c00000626010080410000006001100210000006260020009c001b00000002001d00000626020080410000004002200210000000000121019f0000000002000414000006260020009c0000062602008041000000c002200210000000000121019f00000635011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b0000001b0400002900000140024000390000000403000029000000000032043500000120024000390000000303000029000000000032043500000100024000390000000a030000290000000000320435000000e00240003900000009030000290000000000320435000000c0024000390000000b030000290000000000320435000000a002400039000000080300002900000000003204350000008002400039000000000012043500000060014000390000001402000029000000000021043500000040014000390000000702000029000000000021043500000020014000390000064702000041000000000021043500000160014000390000001c020000290000000000210435000000400200043d000000000121004900000000011204360000018003400039000000400030043f000006260010009c000006260100804100000040011002100000000002020433000006260020009c00000626020080410000006002200210000000000112019f0000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b001c00000001001d000006380100004100000000001004430000000001000414000006260010009c0000062601008041000000c00110021000000648011001c70000800b02000039189218880000040f0000000100200190000018080000613d000000000101043b000000400300043d000000400230003900000000001204350000002001300039000006390200004100000000002104350000000001000410000006320110019700000060023000390000000000120435000000400100043d00000000021200490000000002210436001b00000003001d0000008003300039000000400030043f000006260020009c000006260200804100000040022002100000000001010433000006260010009c00000626010080410000006001100210000000000121019f0000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b0000001b05000029000000a00250003900000649030000410000000000320435000000a1025000390000064a030000410000000000320435000000a2025000390000000000120435000000c2015000390000001c020000290000000000210435000000400300043d00000000013100490000000004130436000000e201500039000000400010043f0000000502000039000000000102041a0000000101100039000000000012041b001600000003001d0000000001030433000006260010009c000006260100804100000060011002100000000002000414000006260020009c0000062602008041000000c002200210000000000112019f000006260040009c000f00000004001d00000626020000410000000002044019001000400020021800000010011001af00000635011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b001700000001001d0000000401000039000000000101041a001800000001001d000000000001004b00000e880000613d0000001801000029000e0041001000cd0000000e011000f9000000410010008c0000171f0000c13d000000800100043d0000000e0010006c000010f00000413d000100010000003d0000000004000019000000000300001900000041013000c9000000c0021000390000000006020433000000a0021000390000000005020433000000c1011000390000000007010433000000ff01700190001c00000003001d00000ab80000613d000000010010008c00000b200000c13d0000063201500197000000110010006b00000c1f0000613d001900000005001d001b00000004001d000000000010043f0000000801000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b0000001702000029000000000020043f000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a000000000001004b0000001b04000029000000190500002900000c1f0000c13d0000148f0000013d001a00000006001d001900000005001d001b00000004001d00000016010000290000000001010433000006260010009c000006260100804100000060011002100000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000010011001af00000635011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000170010006c000014680000c13d0000001a020000290000000e0020006c0000146c0000413d000006b80020009c0000171f0000813d000000800200043d0000001a010000290000002003100039000000000023004b000014700000213d000000a0011000390000000004010433000000000034001a0000171f0000413d0000000003340019000000000023004b000014740000213d000000400300043d00000682020000410000000000230435000000040230003900000040040000390000000000420435000000440430003900000016060000290000000005060433000000000054043500000064043000390000000005060433000000000005004b0000000f0900002900000b000000613d000000000600001900000000074600190000000008960019000000000808043300000000008704350000002006600039000000000056004b00000aef0000413d00000000044500190000001f0550019000000b000000613d0000000006540049000000030450021000000100054000890000000047060434000000000757022f00000000055701cf000000000056043500000019050000290000001a060000290000002403300039000006320750019700000000022400490000000000230435000000000201043300000000082404360000000001010433000000000001004b00000b630000613d000000c002600039000000000300001900000000048300190000000005320019000000000505043300000000005404350000002003300039000000000013004b00000b0d0000413d00000000088100190000001f0110019000000b630000613d0000000002180049000000030110021000000100011000890000000043020434001300000004001d000000000313022f00000000011301cf000000000012043500000b640000013d001b00000004001d000000400400043d00000020024000390000001f0010008c00000b7c0000813d0000000000040435000000400020043f00000017030000290000000000320435000000800240003900000000006204350000006002400039000000000052043500000040024000390000000000120435000000400200043d001a00000002001d0000000001240049000000a001100039000006260010009c00000626010080410000006001100210000006260020009c00000626020080410000004002200210000000000121019f0000000002000414000006260020009c0000062602008041000000c002200210000000000121019f0000000102000039189218880000040f000000000301001900000060033002700000062603300197000000200030008c000000200600003900000000060340190000001a04000029000000200740008a0000002005600190000000000457001900000b510000613d000000000801034f000000008908043c0000000007970436000000000047004b00000b4d0000c13d0000001f0660019000000b5e0000613d000000000551034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000000be20000c13d000016b20000013d001300000008001d000000400100043d001500000001001d00000650010000410000000000100443001a00000007001d00000004007004430000000001000414000006260010009c0000062601008041000000c00110021000000651011001c70000800202000039189218880000040f0000000100200190000018080000613d000000000101043b000000000001004b0000171f0000613d00000000010004140000001a02000029000000040020008c00000be70000c13d000000010300003100000c160000013d001300000007001d001a00000006001d001900000005001d000006850100004100000000001204350000003c0140003900000017020000290000000000210435000000400200043d00000000012100490000000001120436001500000004001d0000005c03400039000d00000003001d000000400030043f000006260010009c000006260100804100000040011002100000000002020433000006260020009c00000626020080410000006002200210000000000112019f0000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b0000000d02000029000000000002043500000015050000290000007c02500039000000400020043f000000dc035000390000001a040000290000000000430435000000bc03500039000000190400002900000000004304350000001303000029000000fc03300039000000ff0330018f0000009c0450003900000000003404350000000000120435000000400200043d001a00000002001d0000000001250049000000fc01100039000006260010009c00000626010080410000006001100210000006260020009c00000626020080410000004002200210000000000121019f0000000002000414000006260020009c0000062602008041000000c002200210000000000121019f0000000102000039189218880000040f000000000301001900000060033002700000062603300197000000200030008c000000200600003900000000060340190000001a04000029000000200740008a0000002005600190000000000457001900000bd10000613d000000000801034f000000008908043c0000000007970436000000000047004b00000bcd0000c13d0000001f0660019000000bde0000613d000000000551034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000016ca0000613d000000400100043d000000200110008a00000000050104330000001b0400002900000c1f0000013d00000015050000290000001304500069000006260050009c000006260300004100000000030540190000004003300210000006260040009c00000626040080410000006004400210000000000334019f000006260010009c0000062601008041000000c001100210000000000131019f189218880000040f0000001509000029000000000301001900000060033002700000062603300197000000200030008c000000200600003900000000060340190000002005600190000000000459001900000c050000613d000000000701034f000000007807043c0000000009890436000000000049004b00000c010000c13d0000001f0660019000000c120000613d000000000551034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000016e20000613d0000001f0030008c0000171f0000a13d000000400100043d00000000020104330000068302200197000006820020009c0000001b040000290000001905000029000014780000c13d0000063201500197000000000041004b0000134f0000a13d001b00000001001d000000000010043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b0000001b04000029000000010040008c0000134f0000613d000000000101041a00000632001001980000134f0000613d0000001c030000290000000103300039000000180030006c00000a870000413d0000065501000041000000000101041a001c06320010019c000015d30000c13d0000000b02000029000009c40120003900000006022002100000003f0220011a000000000012004b000000000201a019000001f4012000390000000002000414000000000012004b000016750000813d000000400100043d00000044021000390000069003000041000013370000013d0000000002000416000000000002004b0000171f0000c13d000000240230008a000006b80020009c0000171f0000813d0000000401100370000000000101043b0000000002000410000006320220019700000000030004110000063203300197000000000023004b00000eac0000c13d0000063205100197000000000025004b00000f9d0000c13d0000063e01000041000000800010043f0000002001000039000000840010043f0000000501000039000000a40010043f0000063f01000041000000c40010043f000006400100004100001894000104300000000002000416000000000002004b0000171f0000c13d000000240230008a000006b80020009c0000171f0000813d00000000020004100000000003000411000000000223013f0000000401100370000000000101043b000006320020019800000eac0000c13d0000063201100197000000010010008c00000eb60000a13d001c00000001001d000000000010043f0000000101000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a00000632001001980000106c0000c13d0000066901000041000000000101041a001b00000001001d0000001c01000029000000000010043f0000000101000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d0000001b020000290000063202200197000000000101043b000000000301041a0000063403300197000000000223019f000000000021041b0000000101000039000000000010043f000000200010043f0000066902000041000000000102041a00000634011001970000001c05000029000000000151019f000000000012041b000000400100043d000006260010009c000006260100804100000040011002100000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000800d0200003900000002030000390000069c040000410000003b0000013d0000000001000416000000000001004b0000171f0000c13d0000000401000039000000000101041a000000800010043f0000064b01000041000018930001042e0000000002000416000000000002004b0000171f0000c13d000000840230008a000006bd0020009c0000171f0000813d0000002402100370000000000202043b001c00000002001d0000000402100370000000000402043b0000004402100370000000000202043b000006460020009c0000171f0000213d0000002406200039000000000036004b0000171f0000213d0000000405200039000000000251034f000000000202043b000006460020009c0000171f0000213d0000000006620019000000000036004b0000171f0000213d0000001f032000390000067403300197000000a003300039000000400030043f0000002003500039000000000531034f000000800020043f000006b8062001980000001f0720018f000000a00360003900000ce90000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000038004b00000ce50000c13d0000063208400197000000000007004b00000cf70000613d000000000465034f0000000305700210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000a00220003900000000000204350000006401100370000000000201043b000000400100043d00000040031000390000001c04000029000000000043043500000020031000390000000000830435000000000300041100000632043001970000000000410435000000ff0520018f000000020050008c000010930000813d0000006002100039000000a003000039000000000032043500000080021000390000000000520435000000a002100039000000800300043d0000000000320435000000c001100039000000800200043d000000000002004b001b00000004001d001a00000008001d001900000005001d00000d280000613d00000000030000190000000004130019000000a005300039000000000505043300000000005404350000002003300039000000000023004b00000d170000413d00000000011200190000001f0220019000000d280000613d0000000003210049000000030120021000000100021000890000000014030434000000000424022f00000000022401cf0000000000230435000000400200043d0000000001210049000006260010009c00000626010080410000006001100210000006260020009c00000626020080410000004002200210000000000121019f0000000002000414000006260020009c0000062602008041000000c002200210000000000121019f00000635011001c70000800d020000390000000103000039001800000003001d000006a304000041189218830000040f00000001002001900000171f0000613d0000001b01000029000000010010008c00000d520000613d0000001b01000029000000000010043f0000000101000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a0000063200100198000010fc0000c13d000000400100043d0000004402100039000006a803000041000013370000013d0000000002000416000000000002004b0000171f0000c13d000001440230008a000006bc0020009c0000171f0000813d0000002402100370000000000202043b001c00000002001d0000000402100370000000000202043b001b00000002001d0000004402100370000000000202043b000006460020009c0000171f0000213d0000002404200039000000000034004b0000171f0000213d0000000406200039000000000261034f000000000202043b000006460020009c0000171f0000213d0000000004420019000000000034004b0000171f0000213d000006b8042001980000001f0520018f00000080034000390000002006600039000000000661034f0000012407100370000000000707043b001800000007001d0000010407100370000000000707043b001300000007001d000000e407100370000000000707043b001400000007001d000000c407100370000000000707043b001500000007001d000000a407100370000000000707043b001600000007001d0000008407100370000000000707043b001700000007001d0000006401100370000000000101043b001900000001001d00000d920000613d0000008001000039000000000706034f000000007807043c0000000001810436000000000031004b00000d8e0000c13d000000000005004b00000d9f0000613d000000000146034f0000000304500210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000400300043d00000000013200490000008001100039000006260010009c00000626010080410000006001100210000006260030009c001a00000003001d000006260200004100000000020340190000004002200210000000000121019f0000000002000414000006260020009c0000062602008041000000c002200210000000000121019f00000635011001c70000801002000039189218880000040f00000001002001900000171f0000613d0000001b0200002900000632032001970000001902000029000000ff0220018f000000000101043b0000001a050000290000008004500039000000000014043500000060015000390000001c04000029000000000041043500000040015000390000000000310435000000200150003900000647030000410000000000310435000000020020008c000010930000813d000000130100002900000632011001970000001a04000029000001400340003900000000001304350000001401000029000006320110019700000120034000390000000000130435000001000140003900000015030000290000000000310435000000e00140003900000016030000290000000000310435000000c00140003900000017030000290000000000310435000000a0014000390000000000210435000001600140003900000018020000290000000000210435000000400200043d000000000121004900000000011204360000018003400039000000400030043f0000000002020433189218570000040f001c00000001001d0000800b01000039000000040300003900000000040004150000001d0440008a000000050440021000000638020000411892186c0000040f0000001a04000029000001a00240003900000639030000410000000000320435000001c002400039000000000012043500000000010004100000063201100197000001e0024000390000000000120435000000400300043d000000000132004900000000011304360000020002400039000000400020043f0000000002030433189218570000040f0000001a0400002900000220024000390000064903000041000000000032043500000221024000390000064a0300004100000000003204350000022202400039000000000012043500000242014000390000001c020000290000000000210435000000400200043d000000000121004900000000011204360000026203400039001c00000003001d000000400030043f0000000002020433189218570000040f0000001c020000290000000000120435000000400100043d0000001a02100069000002820220003900000f7b0000013d0000000002000416000000000002004b0000171f0000c13d000000640230008a000006ba0020009c0000171f0000813d0000000402100370000000000202043b001400000002001d0000002402100370000000000202043b000006460020009c0000171f0000213d0000002405200039000000000035004b0000171f0000213d0000000404200039000000000241034f000000000202043b000006460020009c0000171f0000213d0000000005520019000000000035004b0000171f0000213d0000001f052000390000067405500197000000a005500039000000400050043f0000002004400039000000000541034f000000800020043f000006b8062001980000001f0720018f000000a00460003900000e410000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000048004b00000e3d0000c13d000000000007004b00000e4e0000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000a00220003900000000000204350000004402100370000000000202043b000006460020009c0000171f0000213d0000002405200039000000000035004b0000171f0000213d0000000404200039000000000241034f000000000202043b000006460020009c0000171f0000213d0000000005520019000000000035004b0000171f0000213d0000001f032000390000067403300197000000400500043d00000020065000390000000003360019000000400030043f0000002003400039000000000331034f001100000005001d0000000000250435000006b8042001980000001f0520018f001900000006001d000000000146001900000e740000613d000000000603034f0000001907000029000000006806043c0000000007870436000000000017004b00000e700000c13d000000000005004b00000e810000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000190120002900000000000104350000000401000039000000000101041a001800000001001d000000000001004b000010e70000c13d000000400100043d00000044021000390000069103000041000013370000013d0000000002000416000000000002004b0000171f0000c13d000000640230008a000006ba0020009c0000171f0000813d00000000020004100000000003000411000000000323013f0000004402100370000000000402043b0000002402100370000000000202043b0000000401100370000000000101043b000006320030019800000eac0000c13d0000000303000039000000000303041a000000010330008a000000000043004b00000fa80000813d0000063e01000041000000800010043f0000002001000039000000840010043f0000000501000039000000a40010043f0000069901000041000000c40010043f000006400100004100001894000104300000063e01000041000000800010043f0000002001000039000000840010043f0000000501000039000000a40010043f000006b301000041000000c40010043f000006400100004100001894000104300000063e01000041000000800010043f0000002001000039000000840010043f0000000501000039000000a40010043f0000069a01000041000000c40010043f00000640010000410000189400010430000000000010043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000400200043d000000000101043b000000000101041a00000632001001980000000001000039000000010100c039000000010110018f0000000000120435000000400100043d0000000002120049000000200220003900000f7b0000013d001b00000002001d001c00000006001d000000000060043f0000000101000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a00000632001001980000001b020000290000001c06000029000008b10000c13d000000400100043d00000044021000390000066103000041000013370000013d001b00000002001d000006620020009c0000171f0000213d000000400100043d001a00000001001d0000001b02000029000000000521043600000005012002120000000001150019000000400010043f00000f020000613d000000000200003100000002022003670000000003050019000000002402043c0000000003430436000000000013004b00000efe0000c13d001900000005001d0000000101000039001800000001001d000000000001004b000000000060043f000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a0000063201100197000000020010008c000010700000813d000000010300008a00000000020000190000001906000029000000010010008c00000f230000613d0000001a010000290000000001010433000000000013004b000010930000813d000000050130021000000000011600190000000001010433001806320010019b0000001a040000290000000000240435000000400100043d00000020021000390000001803000029000000000032043500000040020000390000000000210435000000400210003900000000030404330000000000320435000000600110003900000000020404330000000502200212000004e70000613d000000000300001900000000041300190000000005630019000000000505043300000000005404350000002003300039000000000023004b00000f330000413d000004e70000013d0000000801000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b0000001c02000029000000000020043f000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b0000000102000039000000000021041b000000400100043d000006260010009c000006260100804100000040011002100000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000800d0200003900000003030000390000065f040000410000001c050000290000001b060000290000003b0000013d00000000040000190000000005240019000000a006400039000000000606043300000000006504350000002004400039000000000034004b00000f670000413d00000000022300190000001f0330019000000f790000613d0000000002320049000000030330021000000100033000890000000004020433000000000434022f00000000033401cf00000000003204350000000002120019000000400100043d0000000002120049000006260020009c00000626020080410000006002200210000006260010009c00000626010080410000004001100210000000000112019f000018930001042e0000064e01000041000000800010043f0000064f01000041000000840010043f00000650010000410000000000100443001c00000005001d00000004005004430000000001000414000006260010009c0000062601008041000000c00110021000000651011001c70000800202000039189218880000040f0000000100200190000018080000613d000000000101043b000000000001004b0000171f0000613d00000000010004140000001c02000029000000040020008c0000109a0000c13d0000000103000031000010c00000013d0000063b01000041000000000051041b0000000001000414000006260010009c0000062601008041000000c0011002100000063c011001c70000800d0200003900000002030000390000063d040000410000003b0000013d0000063202200197000000020020008c000010240000413d001c00000002001d001a00000004001d0000063201100197001b00000001001d000000000010043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a00000632011001970000001c02000029000000000021004b000010960000c13d000000000020043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a001900000001001d0000001b01000029000000000010043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d00000019020000290000063202200197000000000101043b000000000301041a0000063403300197000000000223019f000000000021041b0000001c01000029000000000010043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000201041a0000063402200197000000000021041b0000000302000039000000000102041a000000010110008a000000000012041b000000400100043d000006260010009c000006260100804100000040011002100000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000800d02000039000000020300003900000636040000410000001c05000029189218830000040f00000001002001900000171f0000613d0000000401000039000000000201041a0000001a0020006c0000050c0000613d0000000302000039000000000202041a0000001a0020006b000008130000213d0000001a0000006b000010f80000613d0000001a02000029000000000021041b000000400100043d0000000000210435000000400200043d00000000012100490000002001100039000006260010009c00000626010080410000006001100210000006260020009c00000626020080410000004002200210000000000121019f0000000002000414000011190000013d0000063e01000041000000800010043f0000002001000039000000840010043f0000000501000039000000a40010043f0000066801000041000000c40010043f000006400100004100001894000104300000000402000039000000000012041b000000800010043f0000000001000414000006260010009c0000062601008041000000c00110021000000697011001c70000800d02000039000000010300003900000637040000410000003b0000013d000006260030009c00000626030080410000006003300210000006260010009c0000062601008041000000c001100210000000000131019f00000675011001c71892188d0000040f000000200a00008a000000010320018f000300000001035500000000020100190000006002200270000106260020019d0000062602200197000000000030043f000000200020043f0000000004a201700000001f0520018f0000004003400039000010560000613d0000004006000039000000000701034f000000007807043c0000000006860436000000000036004b000010520000c13d000000000005004b000010630000613d000000000141034f0000000304500210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000006760020009c00000676020080410000006001200210000006770110009a0000189400010430000000400100043d00000044021000390000065d03000041000013370000013d000000400100043d00000044021000390000069b03000041000013370000013d000000000400001900000019060000290000001a020000290000000002020433000000000024004b000010930000813d001c00000004001d000000050240021000000000022600190000000000120435000000000010043f0000000101000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d0000001c040000290000000102400039000000000101043b000000000101041a0000063201100197000000020010008c000010f40000413d0000001b0020006c000000000304001900000000040200190000001906000029000010720000413d00000f190000013d000000010100008a00000000000104350000000000000431000000400100043d00000044021000390000064c03000041000013370000013d000006260010009c0000062601008041000000c00110021000000652011001c7189218880000040f000000000301001900000060033002700000062603300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000080046001bf000010af0000613d0000008007000039000000000801034f000000008908043c0000000007970436000000000047004b000010ab0000c13d000000000005004b000010bc0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000010c90000613d000000200030008c0000171f0000413d000000400100043d0000000002010433000000000002004b000010e10000c13d00000044021000390000065403000041000013370000013d0000001f0430018f0000065302300198000010d20000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000010ce0000c13d000000000004004b000010df0000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000001894000104300000001c05000029000008870000013d000000400100043d00000044021000390000066703000041000013370000013d000000180100002900100041001000cd00000010011000f9000000410010008c0000171f0000c13d00000011010000290000000001010433000000100010006c000011370000813d000000400100043d0000004402100039000006b203000041000013370000013d000000000304001900000f180000013d0000001b0000006b0000110a0000c13d000000400100043d00000044021000390000069803000041000013370000013d0000001901000029000000010010008c000012ea0000c13d0000001a01000029000000040010008c000013cf0000613d000000800100043d000006260010009c00000626010080410000006001100210000006a5011001c70000001a020000291892188d0000040f000013ca0000013d0000001b02000029000000000021041b000000400100043d0000000000210435000000400200043d00000000012100490000002001100039000006260010009c00000626010080410000006001100210000006260020009c00000626020080410000004002200210000000000121019f0000000002000414000006260020009c0000062602008041000000c002200210000000000121019f00000635011001c7000010360000013d000000000500001900000000063500190000000007520019000000000707043300000000007604350000002005500039000000000045004b000011200000413d00000000023400190000001f0340019000000f710000c13d00000f790000013d0000001a01000029000000040010008c0000135e0000613d000000800100043d000006260010009c000006260100804100000060011002100000001c0000006b000013530000c13d000006a5011001c70000001a02000029000013580000013d0000001101000029001700410010003d001600400010003d0000000001000411000f06320010019b001b00000000001d001c00000000001d0000001c0100002900000041011000c9000000170210002900000019031000290000001601100029000000000501043300000000040304330000000003020433000000ff013001900000116d0000613d000000010010008c000011d00000c13d00000632014001970000000f0010006b000012cc0000613d001a00000004001d000000000010043f0000000801000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b0000001402000029000000000020043f000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a000000000001004b0000001a04000029000012cc0000c13d0000148f0000013d001a00000004001d000000800100043d000006260010009c000006260100804100000060011002100000000002000414000006260020009c0000062602008041000000c002200210000000000121019f00000681011001c70000801002000039001500000005001d189218880000040f000000150500002900000001002001900000171f0000613d000000000101043b000000140010006c000014680000c13d000000100050006c0000146c0000413d000006b80050009c0000171f0000813d000000200450003900000011010000290000000003010433000000000034004b000014700000213d000000000115001900000020021000390000000005020433000000000045001a0000171f0000413d0000000004450019000000000034004b000014740000213d000000400400043d000006820300004100000000003404350000000403400039000000400500003900000000005304350000004405400039000000800600043d00000000006504350000006405400039000000800600043d000000000006004b000011b10000613d00000000070000190000000008570019000000a009700039000000000909043300000000009804350000002007700039000000000067004b000011a00000413d00000000055600190000001f06600190000011b10000613d0000000007650049000000030560021000000100065000890000000058070434000000000868022f00000000066801cf000000000067043500000024044000390000001a06000029000006320660019700000000033500490000000000340435000000000302043300000000073504360000000002020433000000000002004b000012120000613d0000004001100039000000000300001900000000047300190000000005310019000000000505043300000000005404350000002003300039000000000023004b000011bd0000413d00000000077200190000001f01200190000012120000613d0000000002170049000000030110021000000100011000890000000043020434001200000004001d000000000313022f00000000011301cf0000000000120435000012130000013d000000400600043d00000020026000390000001f0010008c0000122b0000813d0000000000060435000000400020043f00000014030000290000000000320435000000800260003900000000005204350000006002600039000000000042043500000040026000390000000000120435000000400200043d001a00000002001d0000000001260049000000a001100039000006260010009c00000626010080410000006001100210000006260020009c00000626020080410000004002200210000000000121019f0000000002000414000006260020009c0000062602008041000000c002200210000000000121019f0000000102000039189218880000040f000000000301001900000060033002700000062603300197000000200030008c000000200600003900000000060340190000001a04000029000000200740008a00000020056001900000000004570019000012000000613d000000000801034f000000008908043c0000000007970436000000000047004b000011fc0000c13d0000001f066001900000120d0000613d000000000551034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000012910000c13d0000150e0000013d001200000007001d000000400100043d001300000001001d00000650010000410000000000100443001500000006001d00000004006004430000000001000414000006260010009c0000062601008041000000c00110021000000651011001c70000800202000039189218880000040f0000000100200190000018080000613d000000000101043b000000000001004b0000171f0000613d00000000010004140000001502000029000000040020008c000012950000c13d0000000103000031000012c40000013d001200000003001d001a00000004001d000006850100004100000000001204350000003c0160003900000014020000290000000000210435000000400200043d00000000012100490000000001120436001300000006001d0000005c03600039000e00000003001d000000400030043f000006260010009c000006260100804100000040011002100000000002020433000006260020009c00000626020080410000006002200210000000000112019f0000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000801002000039001500000005001d189218880000040f000000150400002900000001002001900000171f0000613d000000000101043b0000000e02000029000000000002043500000013050000290000007c02500039000000400020043f000000dc035000390000000000430435000000bc035000390000001a0400002900000000004304350000001203000029000000fc03300039000000ff0330018f0000009c0450003900000000003404350000000000120435000000400200043d001a00000002001d0000000001250049000000fc01100039000006260010009c00000626010080410000006001100210000006260020009c00000626020080410000004002200210000000000121019f0000000002000414000006260020009c0000062602008041000000c002200210000000000121019f0000000102000039189218880000040f000000000301001900000060033002700000062603300197000000200030008c000000200600003900000000060340190000001a04000029000000200740008a00000020056001900000000004570019000012800000613d000000000801034f000000008908043c0000000007970436000000000047004b0000127c0000c13d0000001f066001900000128d0000613d000000000551034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000015260000613d000000400100043d000000200110008a0000000004010433000012cc0000013d00000013050000290000001204500069000006260050009c000006260300004100000000030540190000004003300210000006260040009c00000626040080410000006004400210000000000334019f000006260010009c0000062601008041000000c001100210000000000131019f189218880000040f0000001309000029000000000301001900000060033002700000062603300197000000200030008c0000002006000039000000000603401900000020056001900000000004590019000012b30000613d000000000701034f000000007807043c0000000009890436000000000049004b000012af0000c13d0000001f06600190000012c00000613d000000000551034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000100000003001f000300000001035500000001002001900000153e0000613d0000001f0030008c0000171f0000a13d000000400100043d00000000020104330000068302200197000006820020009c0000001a04000029000014780000c13d00000632034001970000001b0030006c0000134f0000a13d000000000030043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039001b00000003001d189218880000040f00000001002001900000171f0000613d000000000101043b0000001b03000029000000010030008c0000134f0000613d000000000101041a00000632001001980000134f0000613d0000001c020000290000000102200039001c00000002001d000000180020006c001b00000003001d0000113e0000413d0000050c0000013d0000001a01000029000000040010008c000013cf0000613d000000800100043d000006260010009c000006260100804100000060011002100000001c0000006b000013c40000c13d000006a5011001c70000001a02000029000013c90000013d00000001040000390000000001000410001906320010019b0000000002000019001c00000002001d0000000501200210000000a00110003900000000010104330000063202100197000000020020008c0000134b0000413d000000190020006c00000000010000390000000101006039000000000024004b0000134b0000613d00000001001001900000134b0000c13d001b00000004001d001a00000002001d000000000020043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000101041a0000063200100198000013340000c13d0000001b01000029000000000010043f0000000201000039000000200010043f0000000001000414000006260010009c0000062601008041000000c00110021000000633011001c70000801002000039189218880000040f00000001002001900000171f0000613d000000000101043b000000000201041a00000634022001970000001a03000029000000000232019f000000000021041b0000001c020000290000000102200039000000800100043d000000000012004b0000000004030019000012fa0000413d000000ee0000013d000000400100043d0000004402100039000006b40300004100000000003204350000002402100039000000050300003900000000003204350000063e020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d00000000012100490000006401100039000006260010009c00000626010080410000006001100210000006260020009c00000626020080410000004002200210000000000121019f0000189400010430000000400100043d00000044021000390000066803000041000013370000013d000000400100043d0000004402100039000006b103000041000013370000013d000006a4011001c700008009020000390000001c030000290000001a040000290000000005000019189218830000040f00030000000103550000006001100270000106260010019d0000000100200190000013700000613d000000400100043d000006260010009c000006260100804100000040011002100000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000800d020000390000000203000039000006a7040000410000001b05000029189218830000040f0000000100200190000013820000c13d0000171f0000013d000000400100043d000006260010009c000006260100804100000040011002100000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000800d020000390000000203000039000006a6040000410000001b05000029189218830000040f0000000100200190001800000000001d0000171f0000613d000000400200043d000000200120003900000001030000310000000004310019000000400040043f0000000000320435000006b8043001980000001f0530018f00000000034100190000000306000367000013930000613d000000000706034f0000000008010019000000007907043c0000000008980436000000000038004b0000138f0000c13d000000000005004b000013a00000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000400300043d0000002004300039000000400500003900000000005404350000001804000029000000000043043500000040043000390000000005020433000000000054043500000060033000390000000002020433000000000002004b000013af0000c13d0000000001000019000013c20000013d000000000400001900000000053400190000000006140019000000000606043300000000006504350000002004400039000000000024004b000013b00000413d00000000013200190000001f02200190000004e80000613d0000000001210049000000030220021000000100022000890000000003010433000000000323022f00000000022301cf000000000021043500000020030000390000000001310019000004e80000013d000006a4011001c700008009020000390000001c030000290000001a040000290000000005000019189218830000040f00030000000103550000006001100270000106260010019d0000000100200190000013e10000613d000000400100043d000006260010009c000006260100804100000040011002100000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000800d020000390000000203000039000006a7040000410000001b05000029189218830000040f0000000100200190000013f30000c13d0000171f0000013d000000400100043d000006260010009c000006260100804100000040011002100000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000800d020000390000000203000039000006a6040000410000001b05000029189218830000040f0000000100200190001800000000001d0000171f0000613d000000400100043d00000018020000290000000000210435000000400200043d00000000012100490000002001100039000004ea0000013d0000063b010000410000001b02000029000000000021041b00000014030000290000001f01300039000006b801100197000000400400043d00000020054000390000000001150019000000400010043f001900000004001d0000000000340435000006b8023001980000001f0330018f001c00000005001d0000000001250019000000130400002900000020044000390000000204400367000014140000613d000000000504034f0000001c06000029000000005705043c0000000006760436000000000016004b000014100000c13d000000000003004b000014210000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000001c02000029000000140120002900000000000104350000000101000039000000000010043f001a00000001001d000000200010043f0000066901000041000000000201041a0000063200200198000014640000c13d0000001503000029001506320030019c000006340220019700000001022001bf000000000021041b0000147b0000c13d0000000f0000006b000014930000c13d000000400100043d00000060021000390000001b030000290000000000320435000000400210003900000015030000290000000000320435000000200210003900000016030000290000000000320435000000800210003900000018030000290000000000320435000000800200003900000000002104350000000002000411000000a0031000390000001701300029000000170000006b0000144e0000613d00000011040000290000000204400367000000004504043c0000000003530436000000000013004b0000144a0000c13d0000063205200197000000120000006b0000000000010435000000400200043d0000000001210049000006260010009c00000626010080410000006001100210000006260020009c00000626020080410000004002200210000000000121019f0000000002000414000006260020009c0000062602008041000000c002200210000000000121019f00000635011001c70000800d02000039000000020300003900000673040000410000003b0000013d000000400100043d00000044021000390000066a03000041000013370000013d000000400100043d0000004402100039000006ad03000041000013370000013d000000400100043d0000004402100039000006b003000041000013370000013d000000400100043d0000004402100039000006af03000041000013370000013d000000400100043d0000004402100039000006ae03000041000013370000013d00000044021000390000068403000041000013370000013d00000650010000410000000000100443000000150100002900000004001004430000000001000414000006260010009c0000062601008041000000c00110021000000651011001c70000800202000039189218880000040f0000000100200190000018080000613d000000000101043b000000000001004b000015560000c13d000000400100043d00000044021000390000066d03000041000013370000013d000000400100043d0000004402100039000006ac03000041000013370000013d0000000e01000029001c06320010019c000014a30000c13d0000066e0100004100000000001004430000000001000414000006260010009c0000062601008041000000c00110021000000648011001c70000800b02000039189218880000040f0000000100200190000018080000613d000000000101043b001c06320010019b0000000d010000290000063202100198000015700000c13d000006710100004100000000001004430000000001000414000006260010009c0000062601008041000000c00110021000000648011001c70000800b02000039189218880000040f0000000100200190000018080000613d000000000101043b000000000001004b00000000030000190000000f0300c0290000000f013000fa0000000002000039000000010200c039000000000021004b0000171f0000c13d0000001c01000029000000040010008c000014340000613d000000400100043d000006260010009c00000626010080410000004001100210000000000003004b000015c50000c13d00000672011001c70000001c02000029000015c90000013d0000001f0430018f0000065302300198000014cf0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000014cb0000c13d000000000004004b000014dc0000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000001894000104300000001f0430018f0000065302300198000014e70000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000014e30000c13d000000000004004b000014f40000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000001894000104300000001f0430018f0000065302300198000014ff0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000014fb0000c13d000000000004004b0000150c0000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000001894000104300000001f0430018f0000065302300198000015170000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000015130000c13d000000000004004b000015240000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000001894000104300000001f0430018f00000653023001980000152f0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b0000152b0000c13d000000000004004b0000153c0000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000001894000104300000001f0430018f0000065302300198000015470000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000015430000c13d000000000004004b000015540000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000001894000104300000001501000029000000040010008c000014320000613d0000001c01000029000006260010009c0000062601008041000000400110021000000019020000290000000002020433000006260020009c00000626020080410000006002200210000000000112019f0000066b011001c700000015020000291892188d0000040f00000000030100190000006003300270000106260030019d00030000000103550000000100200190000014320000c13d000000400100043d00000044021000390000066c03000041000013370000013d000000400300043d00000024013000390000001c04000029000000000041043500000044013000390000000f040000290000000000410435000000400400043d000000000141004900000000011404360000006403300039000000400030043f00000000030104330000066f0330019700000670053001c7000000000051043500000000040404330000000003000414000000040020008c000015880000c13d000000000050043f00000001020000310000000103000039000015b60000013d000006260010009c00000626010080410000004001100210000006260040009c00000626040080410000006004400210000000000114019f000027100330008a000006260030009c0000062603008041000000c003300210000000000113019f189218830000040f001a00000002001d000000000201001900000060022002700000062602200197000000200020008c000000200300003900000000030240190000001f0430018f0000002003300190000015a50000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b000015a10000c13d000000000004004b000015b20000613d000000000531034f0000000304400210000000000603043300000000064601cf000000000646022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000464019f00000000004304350000001a03000029000000010330018f000100000002001f0003000000010355000000000002004b000015bf0000613d000000200020008c000015c10000c13d000000000100043d000000000001004b0000000001000039000000010100c0390000001a0310017f000000000003004b000014340000c13d000000400100043d00000044021000390000068b03000041000013370000013d00000635011001c700008009020000390000001c040000290000000005000019189218830000040f00030000000103550000006001100270000106260010019d0000000100200190000014340000c13d000000400100043d00000044021000390000068c03000041000013370000013d000000400100043d000001440210003900000011030000290000000000320435000001040210003900000004030000290000000000320435000000e40210003900000003030000290000000000320435000000c4021000390000000a030000290000000000320435000000a4021000390000000903000029000000000032043500000084021000390000000b03000029000000000032043500000064021000390000000803000029000000000032043500000024021000390000001403000029000000000032043500000164021000390000000c030000290000000000320435000000440210003900000160030000390000000000320435000006870200004100000000002104350000000402100039000000070300002900000000003204350000018403100039000000050430002900000012050000290000000205500367000000050000006b000016030000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b000015ff0000c13d0000012401100039000000060000006b000016120000613d000000050550036000000006060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000c043000290000000000040435000000020330002900000000022300490000000000210435000000800100043d0000000001130436001b00000001001d000000800100043d000000000001004b000016310000613d00000000020000190000001b050000290000000003520019000000a004200039000000000404043300000000004304350000002002200039000000000012004b0000161f0000413d001b00000051001d0000001f01100190000016310000613d0000001b02100069000000030110021000000100011000890000000043020434001b00000004001d000000000313022f00000000011301cf0000000000120435000000400100043d001a00000001001d000006500100004100000000001004430000001c0100002900000004001004430000000001000414000006260010009c0000062601008041000000c00110021000000651011001c70000800202000039189218880000040f0000000100200190000018080000613d000000000101043b000000000001004b0000171f0000613d00000000010004140000001c02000029000000040020008c00000c3e0000613d0000001a030000290000001b02300069000006260030009c00000626030080410000004003300210000006260020009c00000626020080410000006002200210000000000232019f000006260010009c0000062601008041000000c001100210000000000121019f0000001c02000029189218830000040f00000000030100190000006003300270000106260030019d0003000000010355000000010020019000000c3e0000c13d00000626023001970000001f0420018f0000065303200198000016660000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b000016620000c13d000000000004004b000016730000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000001894000104300000000001000414001b00000001001d000000400200043d00000020012000390000000203100029000000400030043f0000000c030000290000000000320435000000050310002900000012040000290000000204400367000000050000006b000016880000613d000000000504034f0000000006010019000000005705043c0000000006760436000000000036004b000016840000c13d000000060000006b000016960000613d000000050440036000000006050000290000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000c0310002900000000000304350000000a0000006b0000000b030000290000169d0000c13d0000000003000414000009c40330008a0000000804000029000000010040008c000016fa0000c13d0000000704000029000000040040008c0000171c0000613d000006260010009c000006260100804100000040011002100000000002020433000006260020009c00000626020080410000006002200210000000000112019f000006260030009c0000062603008041000000c002300210000000000121019f00000007020000291892188d0000040f000017180000013d0000001f0430018f0000065302300198000016bb0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000016b70000c13d000000000004004b000016c80000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000001894000104300000001f0430018f0000065302300198000016d30000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000016cf0000c13d000000000004004b000016e00000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000001894000104300000001f0430018f0000065302300198000016eb0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000016e70000c13d000000000004004b000016f80000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000001894000104300000000704000029000000040040008c0000171c0000613d0000000002020433000006260020009c00000626020080410000006002200210000006260030009c0000062603008041000000c003300210000000140000006b0000170d0000c13d000006260010009c00000626010080410000004001100210000000000112019f000000000131019f0000000702000029000017170000013d0000004004100210000006880440009a000006460010009c0000068904008041000000000134001900000000012100190000800902000039000000140300002900000007040000290000000005000019189218830000040f000100000002001d00030000000103550000006001100270000106260010019d0000000001000414001b001b00100073000017210000813d000000000100001900001894000104300000000b020000290000000a002001b00000000101000029000000010110c1bf0000000100100190000017440000613d0000000a0000006b001a00000000001d000017480000c13d000000400100043d0000001a020000290000000000210435000000400200043d00000000012100490000002001100039000006260010009c00000626010080410000006001100210000006260020009c00000626020080410000004002200210000000000121019f0000000102000029001b000100200194000017810000613d0000000002000414000006260020009c0000062602008041000000c002200210000000000121019f00000635011001c70000800d0200003900000002030000390000068e040000410000178a0000013d000000400100043d00000044021000390000068a03000041000013370000013d000000040000006b000017570000c13d0000066e0100004100000000001004430000000001000414000006260010009c0000062601008041000000c00110021000000648011001c70000800b02000039189218880000040f0000000100200190000018080000613d000000000101043b000400000001001d000000030000006b000017930000c13d000006710100004100000000001004430000000001000414000006260010009c0000062601008041000000c00110021000000648011001c70000800b02000039189218880000040f0000000100200190000018080000613d000000000101043b0000000a0010006b00000000020100190000000a020040290000001b03000029000000090030002a0000171f0000413d0000001b03000029000000090130002a000018420000c13d00000004010000290000063204100197000000040040008c001a00000000001d0000172a0000613d000000400100043d000006260010009c0000062601008041000000400110021000000672011001c70000000002040019189218830000040f001a00000000001d00030000000103550000006001100270000106260010019d0000000100200190000015cf0000613d0000172a0000013d0000000002000414000006260020009c0000062602008041000000c002200210000000000121019f00000635011001c70000800d0200003900000002030000390000068d040000410000001705000029189218830000040f00000001002001900000171f0000613d0000001c0000006b000017b90000c13d000000400100043d0000001b02000029000013f50000013d0000001b02000029000000090020002a0000171f0000413d0000001b02000029000000090120002a001a00000000001d0000179e0000613d001a000a001000bd0000001a011000f90000000a0010006c0000171f0000c13d00000004010000290000063201100197000000400200043d0000002403200039000000000013043500000044012000390000001a030000290000000000310435000000400300043d000000000131004900000000011304360000006402200039000000400020043f00000000020104330000066f0220019700000670042001c70000000000410435000000000303043300000000020004140000000305000029000000040050008c000018090000c13d000000000040043f000000010200003900000001030000310000000004020019000018360000013d000000400300043d00000024013000390000001b0200002900000000002104350000068f010000410000000000130435001a00000003001d000000040130003900000017020000290000000000210435000000400100043d001900000001001d000006500100004100000000001004430000001c0100002900000004001004430000000001000414000006260010009c0000062601008041000000c00110021000000651011001c70000800202000039189218880000040f0000000100200190000018080000613d000000000101043b000000000001004b0000171f0000613d00000000010004140000001c02000029000000040020008c000017900000613d00000019030000290000001a023000690000004402200039000006260030009c00000626030080410000004003300210000006260020009c00000626020080410000006002200210000000000232019f000006260010009c0000062601008041000000c001100210000000000121019f0000001c02000029189218830000040f00000000030100190000006003300270000106260030019d00030000000103550000000100200190000017900000c13d00000626023001970000001f0420018f0000065303200198000017f90000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b000017f50000c13d000000000004004b000018060000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000060012002100000189400010430000000000001042f000006260010009c00000626010080410000004001100210000006260030009c00000626030080410000006003300210000000000113019f000027100220008a000006260020009c0000062602008041000000c002200210000000000112019f0000000302000029189218830000040f000000000301001900000060033002700000062603300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000018260000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000018220000c13d000000000005004b000018330000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000010420018f000100000003001f0003000000010355000000000003004b0000183f0000613d000000200030008c000015c10000c13d000000000100043d000000000001004b0000000001000039000000010100c039000000000412016f000000000004004b000015c10000613d0000172a0000013d001a0000001200ad0000001a011000f9000000000021004b0000171f0000c13d00000004010000290000063204100197000000040040008c0000172a0000613d000000400100043d0000001a0000006b000017740000613d000006260010009c0000062601008041000000400110021000000635011001c700008009020000390000001a030000290000000005000019189218830000040f0000177b0000013d000000000001042f000006260010009c00000626010080410000004001100210000006260020009c00000626020080410000006002200210000000000112019f0000000002000414000006260020009c0000062602008041000000c002200210000000000112019f00000635011001c70000801002000039189218880000040f00000001002001900000186a0000613d000000000101043b000000000001042d0000000001000019000018940001043000000000050100190000000000200443000000040030008c000018730000a13d000000050140027000000000010100310000000400100443000006260030009c000006260300804100000060013002100000000002000414000006260020009c0000062602008041000000c002200210000000000112019f000006be011001c70000000002050019189218880000040f0000000100200190000018820000613d000000000101043b000000000001042d000000000001042f00001886002104210000000102000039000000000001042d0000000002000019000000000001042d0000188b002104230000000102000039000000000001042d0000000002000019000000000001042d00001890002104250000000102000039000000000001042d0000000002000019000000000001042d0000189200000432000018930001042e000018940001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff0000000200000000000000000000000000000040000001000000000000000000affed0e000000000000000000000000000000000000000000000000000000000e19a9dd900000000000000000000000000000000000000000000000000000000f08a03230000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f8dc5dd800000000000000000000000000000000000000000000000000000000f8dc5dd900000000000000000000000000000000000000000000000000000000ffa1ad7400000000000000000000000000000000000000000000000000000000f08a032300000000000000000000000000000000000000000000000000000000f698da25312e342e310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000c00000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0200000000000000000000000000000000000040000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000f8d49fc529812e9a7c5c50e69c20f0dccc0db8fa95c98bc58cc9a4f1c1299eaf610f7ff2b304ae8903c3de74c60c6ab1f7d6226b3f52c5161905bb5ad4039c939a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b47e79534a245952e8b16893a336b85a3d9ea9fa8c573f3d803afb92a7946921800000000000000000000000000000000000000200000010000000000000000006c9a6c4a39284e37ed1cf53d337577d14212a4870fb976a4366c693b939918d502000000000000000000000000000000000000000000008000000000000000005ac6c46c93c8d0e53714ba3b53db3e7c046da994313d7ed0d192028bc7c228b008c379a0000000000000000000000000000000000000000000000000000000004753343030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000080000000000000000000000000000000000000000000000000000000000000000000000000e75235b700000000000000000000000000000000000000000000000000000000e75235b800000000000000000000000000000000000000000000000000000000e86637db00000000000000000000000000000000000000000000000000000000e19a9dd900000000000000000000000000000000000000000000000000000000e318b52b0000000000000000000000000000000000000000000000000000000100000000bb8310d486368db6bd6f849402fdd73ad53d316b5a4b2644ad6efe0f941286d8020000020000000000000000000000000000000400000000000000000000000019000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000080000000000000000047533230350000000000000000000000000000000000000000000000000000009465fa0c962cc76958e6373a993326400c1c94f8be2fe3a952adfa7f60b2ea2601ffc9a700000000000000000000000000000000000000000000000000000000e6d7a83a000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002400000080000000000000000000000000000000000000000000000000000000000000000000000000ffffffe047533330300000000000000000000000000000000000000000000000000000004a204f620c8c5ccdca3fd54d003badd85ba500436a431f0cbda4f558c93c34c81151116914515bc0891ff9047a6cb32cf902546f83066499bcf8ba33d2353fa2cc2f84520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d8d11f7700000000000000000000000000000000000000000000000000000000d8d11f7800000000000000000000000000000000000000000000000000000000e009cfde00000000000000000000000000000000000000000000000000000000cc2f845200000000000000000000000000000000000000000000000000000000d4d9bdcd4753313033000000000000000000000000000000000000000000000000000000aab4fa2b463f581b2b32cb3b7e3b704b9ce37cc209b5fb4d77e593ace4054276f2a0eb156472d1440255b0d7c1e19cc07115d1051fe605b0dce69acfec884d9c47533033300000000000000000000000000000000000000000000000000000004753313035000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff475331303600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000affed0e000000000000000000000000000000000000000000000000000000000b4faba0900000000000000000000000000000000000000000000000000000000b63e800d47533230300000000000000000000000000000000000000000000000000000004753323033000000000000000000000000000000000000000000000000000000cc69885fda6bcc1a4ace058b4a62bf5e179ea78fd58a1ccd71c22cc9b688792f475331303000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000047533030300000000000000000000000000000000000000000000000000000004753303032000000000000000000000000000000000000000000000000000000938b5f3299a1f3b18e458564efbb950733226014eece26fae19012d850b48d8300000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffa9059cbb00000000000000000000000000000000000000000000000000000000fe173b97ed9aa263236c52fa3eb334d07741add95e972d17352d76816b4aaea300000000000008fc000000000000000000000000000000000000000000000000141df868a6331af528e38c83b7aa03edc19be66e37ae67f9285bf4f8e3c6a1a8000000000000000000000000000000000000000000000000ffffffffffffffe00000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000ffffffbfffffffffffffffffffffffffffffffffffffffc00000000000000000000000005624b25b000000000000000000000000000000000000000000000000000000006a7612020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000934f3a1000000000000000000000000000000000000000000000000000000000934f3a1100000000000000000000000000000000000000000000000000000000a0e67e2b000000000000000000000000000000000000000000000000000000006a761202000000000000000000000000000000000000000000000000000000007d8329740000000000000000000000000000000000000000000000010000000000000000e90b7bceb6e7df5418fb78d8ee546e97c83a08bbccc01a0644d599ccd2a7c2e00200000000000000000000000000000000000000000000a0000000000000000020c13b0b00000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000000475330323400000000000000000000000000000000000000000000000000000019457468657265756d205369676e6564204d6573736167653a0a33320000000066753cd2356569ee081232e3be8909b950e0a76c1f8460c3a5e3c2be32b11bed75f0bb5200000000000000000000000000000000000000000000000000000000fe000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000ffffffff000000000000000047533031330000000000000000000000000000000000000000000000000000004753303132000000000000000000000000000000000000000000000000000000475330313100000000000000000000000000000000000000000000000000000023428b18acfb3ea64b08dc0c1d296ea9c09702c09083ca5272e64d115b687d23442e715f626346e8c54381002da614f62bee8d27386535b2521ec8540898556e93271368000000000000000000000000000000000000000000000000000000004753303130000000000000000000000000000000000000000000000000000000475330303100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000610b592400000000000000000000000000000000000000000000000000000000610b592500000000000000000000000000000000000000000000000000000000694e80c3000000000000000000000000000000000000000000000000000000005624b25b000000000000000000000000000000000000000000000000000000005ae6bd3702000000000000000000000000000000000000200000008000000000000000004753323032000000000000000000000000000000000000000000000000000000475332303100000000000000000000000000000000000000000000000000000047533130310000000000000000000000000000000000000000000000000000004753313032000000000000000000000000000000000000000000000000000000ecdf3a3effea5783a3c4c2140e677577666428d44ed9d474a0b3a4c9943f84402f54bf6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000468721a600000000000000000000000000000000000000000000000000000000468721a7000000000000000000000000000000000000000000000000000000005229073f000000000000000000000000000000000000000000000000000000002f54bf6e000000000000000000000000000000000000000000000000000000003408e470b648d3644f584ed1c2232d53c46d87e693586486ad0d1175f8656013110b714e02000000ffffffff000000000000000000000000000000a0000000000000000000000000ffffffff000000000000000000000000000000a00000000000000000acd2c8702804128fdb0db2bb49f6d127dd0181c13fd45dbfe16de0930e2bd3756895c13664aa4f67288b25d7a21d7aaa34916e355fb9b6fae0a139a9085becb84753313034000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d582f130000000000000000000000000000000000000000000000000000000012fb68e0000000000000000000000000000000000000000000000000000000002d9ad53d47533032350000000000000000000000000000000000000000000000000000004753303237000000000000000000000000000000000000000000000000000000475330323300000000000000000000000000000000000000000000000000000047533032320000000000000000000000000000000000000000000000000000004753303231000000000000000000000000000000000000000000000000000000475330323600000000000000000000000000000000000000000000000000000047533032300000000000000000000000000000000000000000000000000000004753303331000000000000000000000000000000000000000000000000000000475332303400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffebffffffffffffffffffffffffffffffffffffffec0000000000000000000000003d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffec0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80020000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a04a6f159c4212df7a0aa1483e6300a31dc28f8526b58706995a55429841477
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.