Abstract Testnet

Contract

0xCbD3C612F976a84522f13b4CBfD384772113458C
Source Code Source Code

Overview

ETH Balance

0 ETH

More Info

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Amount
Set User Vault A...160537432025-12-16 2:21:2929 days ago1765851689IN
0xCbD3C612...72113458C
0 ETH0.00000210.025
Set Crp Factory160537432025-12-16 2:21:2929 days ago1765851689IN
0xCbD3C612...72113458C
0 ETH0.000002570.025

Latest 6 internal transactions

Parent Transaction Hash Block From To Amount
160537432025-12-16 2:21:2929 days ago1765851689
0xCbD3C612...72113458C
0 ETH
160537432025-12-16 2:21:2929 days ago1765851689
0xCbD3C612...72113458C
0 ETH
160537432025-12-16 2:21:2929 days ago1765851689
0xCbD3C612...72113458C
0 ETH
160537432025-12-16 2:21:2929 days ago1765851689
0xCbD3C612...72113458C
0 ETH
160537252025-12-16 2:20:0929 days ago1765851609
0xCbD3C612...72113458C
0 ETH
160537252025-12-16 2:20:0929 days ago1765851609  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x514f8EaE...4F0A66199
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Vault

Compiler Version
v0.6.12+commit.27d51765

ZkSolc Version
v1.4.0

Optimization Enabled:
Yes with Mode 3

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 8 : Vault.sol
pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;

import "../interfaces/IERC20.sol";
import "../openzeppelin/Ownable.sol";
import "../interfaces/IDSProxy.sol";
import "../libraries/SafeMath.sol";
import "../libraries/Address.sol";
import "../libraries/SafeERC20.sol";
import "../base/Logs.sol";

interface ICRPPool {
    function getController() external view returns (address);

    enum Etypes {
        OPENED,
        CLOSED
    }

    function etype() external view returns (Etypes);
}

interface IDesynOwnable {
    function adminList(address adr) external view returns (bool);
    function getController() external view returns (address);
    function getOwners() external view returns (address[] memory);
    function getOwnerPercentage() external view returns (uint[] memory);
    function allOwnerPercentage() external view returns (uint);
}

interface IUserVault {
    function depositToken(
        address pool,
        uint types,
        address[] calldata poolTokens,
        uint[] calldata tokensAmount
    ) external;
}

interface ICRPFactory {
    function isCrp(address addr) external view returns (bool);
}

/**
 * @author Desyn Labs
 * @title Vault managerFee
 */
contract Vault is Ownable, Logs {
    using SafeMath for uint;
    using Address for address;
    using SafeERC20 for IERC20;

    ICRPFactory crpFactory;
    address public userVault;

    event ManagersClaim(address indexed caller,address indexed pool, address token, uint amount, uint time);
    event ManagerClaim(address indexed caller, address indexed pool, address indexed manager, address token, uint amount, uint time);

    // pool of tokens
    struct PoolTokens {
        address[] tokenList;
        uint[] managerAmount;
        uint[] issueAmount;
        uint[] redeemAmount;
        uint[] perfermanceAmount;
    }

    struct PoolStatus {
        bool couldManagerClaim;
        bool isBlackList;
    }
    
    struct ClaimTokens {
        address[] tokens;
        uint[] amounts;
    }

    // pool tokens
    mapping(address => PoolTokens) poolsTokens;
    mapping(address => PoolStatus) public poolsStatus;

    mapping (address => ClaimTokens) manageHasClaimed;

    // default ratio config
    uint public TOTAL_RATIO = 1000;
    uint public management_portion = 800;
    uint public issuance_portion = 800;
    uint public redemption_portion = 800;
    uint public performance_portion = 800;

    receive() external payable {}

    function depositManagerToken(address[] calldata tokensIn, uint[] calldata amountsIn) external {
        address pool = msg.sender;
        require(crpFactory.isCrp(pool), "ERR_INVALID_POOL_ADDRESS");
        require(tokensIn.length == amountsIn.length, "ERR_TOKEN_LENGTH_NOT_MATCH");
        _depositTokenIM(0, pool, tokensIn, amountsIn);

        poolsStatus[pool].couldManagerClaim = true;
        
        if (_isClosePool(pool)) managerClaim(pool);
    }

    function depositIssueRedeemPToken(
        address[] calldata tokensIn,
        uint[] calldata amountsIn,
        uint[] calldata tokensAmountIR,
        bool isPerfermance
    ) external {
        address pool = msg.sender;
        require(crpFactory.isCrp(pool), "ERR_INVALID_POOL_ADDRESS");
        require(tokensIn.length == amountsIn.length, "ERR_TOKEN_LENGTH_NOT_MATCH");

        isPerfermance
                // I-issuce; M-mamager; R-redeem;p-performance
                ? _depositTokenRP(pool, tokensIn, amountsIn, tokensAmountIR)
                : _depositTokenIM(1, pool, tokensIn, amountsIn);

        poolsStatus[pool].couldManagerClaim = true;

        if (_isClosePool(pool)) managerClaim(pool);   
    }

    function getManagerClaimBool(address pool) external view returns (bool) {
        return poolsStatus[pool].couldManagerClaim;
    }

    function setBlackList(address pool, bool bools) external onlyOwner _logs_ {
        poolsStatus[pool].isBlackList = bools;
    }

    function setUserVaultAdr(address adr) external onlyOwner _logs_ {
        require(adr != address(0), "ERR_INVALID_USERVAULT_ADDRESS");
        userVault = adr;
    }

    function setCrpFactory(address adr) external onlyOwner _logs_ {
        crpFactory = ICRPFactory(adr);
    }

    function claimToken(
        address token,
        address user,
        uint amount
    ) external onlyOwner {
        IERC20(token).safeTransfer(user, amount);
    }

    function claimEther() external payable onlyOwner {
        msg.sender.transfer(address(this).balance);
    }

    function setManagerRatio(uint amount) external onlyOwner _logs_ {
        require(amount <= TOTAL_RATIO, "Maximum limit exceeded");
        management_portion = amount;
    }

    function setIssueRatio(uint amount) external onlyOwner _logs_ {
        require(amount <= TOTAL_RATIO, "Maximum limit exceeded");
        issuance_portion = amount;
    }

    function setRedeemRatio(uint amount) external onlyOwner _logs_ {
        require(amount <= TOTAL_RATIO, "Maximum limit exceeded");
        redemption_portion = amount;
    }

    function setPerfermanceRatio(uint amount) external onlyOwner _logs_{
        performance_portion = amount;
    }

    function managerClaim(address pool) public {
        PoolStatus storage status = poolsStatus[pool];

        if(status.couldManagerClaim){
            require(crpFactory.isCrp(pool), "ERR_INVALID_POOL_ADDRESS");
            address managerAddr = ICRPPool(pool).getController();
            bool isCloseETF = _isClosePool(pool);

            PoolTokens memory tokens = poolsTokens[pool];
            address[] memory poolManageTokens = tokens.tokenList;
            uint len = poolManageTokens.length;
            require(!status.isBlackList, "ERR_POOL_IS_BLACKLIST");
            require(len > 0, "ERR_NOT_MANGER_FEE");
            require(status.couldManagerClaim, "ERR_MANAGER_COULD_NOT_CLAIM");
            status.couldManagerClaim = false;

            uint[] memory managerTokenAmount = new uint[](len);
            uint[] memory issueTokenAmount = new uint[](len);
            uint[] memory redeemTokenAmount = new uint[](len);
            uint[] memory perfermanceTokenAmount = new uint[](len);

            for (uint i; i < len; i++) {
                address t = poolManageTokens[i];
                uint b;
                (b, managerTokenAmount[i], issueTokenAmount[i], redeemTokenAmount[i], perfermanceTokenAmount[i]) = _computeBalance(i, pool);
                if(!isCloseETF) b = b.sub(_getManagerHasClaimed(pool,t));
                if(b != 0) _transferHandle(pool, managerAddr, t, b);
            }
            
            if (isCloseETF) {
                _recordUserVault(pool, poolManageTokens, managerTokenAmount, issueTokenAmount, redeemTokenAmount, perfermanceTokenAmount);
                _clearPool(pool);
            } 
        }  
    }

    function getManagerFeeTypes(address pool) external view returns(PoolTokens memory result){     
        PoolTokens memory tokens = poolsTokens[pool];
        address[] memory poolManageTokens = tokens.tokenList;
        uint len = poolManageTokens.length;

        result.tokenList = tokens.tokenList;
        result.managerAmount = new uint[](len);
        result.issueAmount = new uint[](len);
        result.redeemAmount = new uint[](len);
        result.perfermanceAmount = new uint[](len);

        for(uint i; i< len; i++){
            (,result.managerAmount[i],result.issueAmount[i],result.redeemAmount[i],result.perfermanceAmount[i]) = _computeBalance(i,pool);
        }
    }

    function getUnManagerReward(address pool) external view returns (address[] memory tokensList, uint[] memory amounts) {
        PoolTokens memory tokens = poolsTokens[pool];
        address[] memory poolManageTokens = tokens.tokenList;
        uint len = poolManageTokens.length;

        tokensList = new address[](len);
        amounts = new uint[](len);

        for (uint i; i < len; i++) {
            address t = poolManageTokens[i];
            tokensList[i] = t;
            (amounts[i],,,,) = _computeBalance(i,pool);
            amounts[i] = amounts[i].sub(_getManagerHasClaimed(pool, t));
        }
    }

    function _addTokenInPool(address pool, address tokenAddr) internal {
        PoolTokens storage tokens = poolsTokens[pool];

        tokens.tokenList.push(tokenAddr);
        tokens.managerAmount.push(0);
        tokens.issueAmount.push(0);
        tokens.redeemAmount.push(0);
        tokens.perfermanceAmount.push(0);
    }
    // for old token
    function _updateTokenAmountInPool(uint types, address pool, uint tokenIndex, uint amount) internal {
        PoolTokens storage tokens = poolsTokens[pool];

        if(types == 0) tokens.managerAmount[tokenIndex] = tokens.managerAmount[tokenIndex].add(amount);
        else if(types == 1) tokens.issueAmount[tokenIndex] = tokens.issueAmount[tokenIndex].add(amount);
        else if(types == 2) tokens.redeemAmount[tokenIndex] = tokens.redeemAmount[tokenIndex].add(amount);
        else if(types == 3) tokens.perfermanceAmount[tokenIndex] = tokens.perfermanceAmount[tokenIndex].add(amount);
    }
    // for new token
    function _updateTokenAmountInPool(uint types, address pool, uint amount) internal {
        PoolTokens storage tokens = poolsTokens[pool];
        uint tokenIndex = tokens.tokenList.length - 1;

        if(types == 0) tokens.managerAmount[tokenIndex] = amount;
        else if(types == 1) tokens.issueAmount[tokenIndex] = amount;
        else if(types == 2) tokens.redeemAmount[tokenIndex] = amount;
        else if(types == 3) tokens.perfermanceAmount[tokenIndex] = amount;
    }

    function _depositTokenIM(
        uint types,
        address pool,
        address[] memory tokensIn,
        uint[] memory amountsIn
    ) internal {
        PoolTokens memory tokens = poolsTokens[pool];

        uint len = tokensIn.length;
        for (uint i; i < len; i++) {
            address t = tokensIn[i];
            uint b = amountsIn[i];

            IERC20(t).safeTransferFrom(msg.sender, address(this), b);
            (bool isExit, uint index) = _arrIncludeAddr(tokens.tokenList,t);
            if (isExit) {
                _updateTokenAmountInPool(types,pool,index,b);
            } else { 
                _addTokenInPool(pool,t); 
                _updateTokenAmountInPool(types,pool,b);    
            }
        }
    }

    function _arrIncludeAddr(address[] memory tokens, address target) internal pure returns(bool isInclude, uint index){
        for(uint i; i<tokens.length; i++){
            if(tokens[i] == target){ 
                isInclude = true;
                index = i;
                break;
            }
        }
    }

    function _depositTokenRP(
        address pool,
        address[] calldata tokenIns,
        uint[] calldata tokensAmount,
        uint[] calldata tokensAmountIR
    ) internal {
        address[] memory tokenList = poolsTokens[pool].tokenList;

        uint len = tokensAmount.length;
        for (uint i; i < len; i++) {
            address t = tokenIns[i];
            uint b = tokensAmount[i];
            // uint bIR = tokensAmountIR[i];
            IERC20(t).safeTransferFrom(msg.sender, address(this), b);

            (bool isExit,uint index) = _arrIncludeAddr(tokenList, t);
            if(isExit){
                _updateTokenAmountInPool(2, pool, index, tokensAmountIR[i]);
                _updateTokenAmountInPool(3, pool, index, b.sub(tokensAmountIR[i]));
            } else {
                _addTokenInPool(pool, t);
                _updateTokenAmountInPool(2,pool, tokensAmountIR[i]);
                _updateTokenAmountInPool(3, pool,b.sub(tokensAmountIR[i]));        
            }
        }
    }

    function _isClosePool(address pool) internal view returns (bool) {
        return ICRPPool(pool).etype() == ICRPPool.Etypes.CLOSED;
    }

    function _computeBalance(uint i, address pool)
        internal
        view
        returns (
            uint balance,
            uint bManagerAmount,
            uint bIssueAmount,
            uint bRedeemAmount,
            uint bPerfermanceAmount
        )
    {
        PoolTokens memory tokens = poolsTokens[pool];

        if (tokens.tokenList.length != 0) {
            bManagerAmount = tokens.managerAmount[i].mul(management_portion).div(TOTAL_RATIO);
            bIssueAmount = tokens.issueAmount[i].mul(issuance_portion).div(TOTAL_RATIO);
            bRedeemAmount = tokens.redeemAmount[i].mul(redemption_portion).div(TOTAL_RATIO);
            bPerfermanceAmount = tokens.perfermanceAmount[i].mul(performance_portion).div(TOTAL_RATIO);

            balance = bManagerAmount.add(bIssueAmount).add(bRedeemAmount).add(bPerfermanceAmount);
        }
    }

    function _clearPool(address pool) internal {
        delete poolsTokens[pool];
    }

    function _recordUserVault(
        address pool,
        address[] memory tokenList,
        uint[] memory managerTokenAmount,
        uint[] memory issueTokenAmount,
        uint[] memory redeemTokenAmount,
        uint[] memory perfermanceTokenAmount
    ) internal {
        if (tokenList.length != 0) {
            IUserVault(userVault).depositToken(pool, 0, tokenList, managerTokenAmount);
            IUserVault(userVault).depositToken(pool, 1, tokenList, issueTokenAmount);
            IUserVault(userVault).depositToken(pool, 2, tokenList, redeemTokenAmount);
            IUserVault(userVault).depositToken(pool, 3, tokenList, perfermanceTokenAmount);
        }

    }

    function _transferHandle(
        address pool,
        address managerAddr,
        address t,
        uint balance
    ) internal {
        require(balance != 0, "ERR_ILLEGAL_BALANCE");
        bool isCloseETF = _isClosePool(pool);
        bool isOpenETF = !isCloseETF;

        if(isCloseETF){
            IERC20(t).safeTransfer(userVault, balance);
        }

        // if(isOpenETF && isContractManager){
        if(isOpenETF) {
            address[] memory managerAddressList = IDesynOwnable(pool).getOwners();
            uint[] memory ownerPercentage = IDesynOwnable(pool).getOwnerPercentage();
            uint allOwnerPercentage = IDesynOwnable(pool).allOwnerPercentage();

            for (uint k; k < managerAddressList.length; k++) {
                address reciver = address(managerAddressList[k]).isContract()? IDSProxy(managerAddressList[k]).owner(): managerAddressList[k];
                uint b = balance.mul(ownerPercentage[k]).div(allOwnerPercentage);
                IERC20(t).safeTransfer(reciver, b);
                emit ManagerClaim(msg.sender, pool, reciver,t,b,block.timestamp);
            }
            _updateManageHasClaimed(pool,t,balance);
            emit ManagersClaim(msg.sender, pool, t, balance, block.timestamp);
        }
    }

    function _updateManageHasClaimed(address pool, address token, uint amount) internal {
        ClaimTokens storage claimInfo = manageHasClaimed[pool];
        (bool isExit, uint index) = _arrIncludeAddr(claimInfo.tokens, token);

        if(isExit){
            claimInfo.amounts[index] = claimInfo.amounts[index].add(amount);
        } else{
            claimInfo.tokens.push(token);
            claimInfo.amounts.push(amount);
        }
    }

    function _getManagerHasClaimed(address pool, address token) internal view returns(uint){
        require(!_isClosePool(pool),"ERR_NOT_OPEN_POOL");

        ClaimTokens memory claimInfo = manageHasClaimed[pool];
        (bool isExit,uint index) = _arrIncludeAddr(claimInfo.tokens, token);

        if(isExit) return claimInfo.amounts[index];
        if(!isExit) return 0;
    }
}

// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.6.12;

// Interface declarations

/* solhint-disable func-order */

interface IERC20 {
    // Emitted when the allowance of a spender for an owner is set by a call to approve.
    // Value is the new allowance
    event Approval(address indexed owner, address indexed spender, uint value);

    // Emitted when value tokens are moved from one account (from) to another (to).
    // Note that value may be zero
    event Transfer(address indexed from, address indexed to, uint value);

    // Returns the amount of tokens in existence
    function totalSupply() external view returns (uint);

    // Returns the amount of tokens owned by account
    function balanceOf(address account) external view returns (uint);

    // Returns the decimals of tokens
    function decimals() external view returns (uint8);

    function symbol() external view returns (string memory);

    // Returns the remaining number of tokens that spender will be allowed to spend on behalf of owner
    // through transferFrom. This is zero by default
    // This value changes when approve or transferFrom are called
    function allowance(address owner, address spender) external view returns (uint);

    // Sets amount as the allowance of spender over the caller’s tokens
    // Returns a boolean value indicating whether the operation succeeded
    // Emits an Approval event.
    function approve(address spender, uint amount) external returns (bool);

    // Moves amount tokens from the caller’s account to recipient
    // Returns a boolean value indicating whether the operation succeeded
    // Emits a Transfer event.
    function transfer(address recipient, uint amount) external returns (bool);

    // Moves amount tokens from sender to recipient using the allowance mechanism
    // Amount is then deducted from the caller’s allowance
    // Returns a boolean value indicating whether the operation succeeded
    // Emits a Transfer event
    function transferFrom(
        address sender,
        address recipient,
        uint amount
    ) external returns (bool);
}

pragma solidity >=0.6.0 <0.8.0;

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.6.12;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 5 of 8 : IDSProxy.sol
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.6.12;

interface IDSProxy {
    function owner() external view returns(address);
}

File 6 of 8 : Logs.sol
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.6.12;

contract Logs {
    event LOG_CALL(bytes4 indexed sig, address indexed caller, bytes data) anonymous;

    modifier _logs_() {
        emit LOG_CALL(msg.sig, msg.sender, msg.data);
        _;
    }
}

// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.6.12;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint a, uint b) internal pure returns (uint) {
        uint c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint a, uint b) internal pure returns (uint) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(
        uint a,
        uint b,
        string memory errorMessage
    ) internal pure returns (uint) {
        require(b <= a, errorMessage);
        uint c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint a, uint b) internal pure returns (uint) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint a, uint b) internal pure returns (uint) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(
        uint a,
        uint b,
        string memory errorMessage
    ) internal pure returns (uint) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint a, uint b) internal pure returns (uint) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(
        uint a,
        uint b,
        string memory errorMessage
    ) internal pure returns (uint) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

import {IERC20} from "../interfaces/IERC20.sol";
import {SafeMath} from "./SafeMath.sol";
import {Address} from "./Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint;
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint value
    ) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint value
    ) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    function safeApprove(
        IERC20 token,
        address spender,
        uint value
    ) internal {
        require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance");
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function callOptionalReturn(IERC20 token, bytes memory data) private {
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "SafeERC20: low-level call failed");

        if (returndata.length > 0) {
            // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi"
      ]
    }
  },
  "forceEVMLA": true,
  "libraries": {
    "contracts/libraries/RightsManager.sol": {
      "RightsManager": "0xE9B129681D0Bd9009586Bfb19F15C1dB61Ee9962"
    },
    "contracts/libraries/SmartPoolManager.sol": {
      "SmartPoolManager": "0x12FD7EDC7B0F2c6Fa6BcB80cd2Dd404dBE9AcB96"
    },
    "contracts/libraries/DesynSafeMath.sol": {
      "DesynSafeMath": "0x101ECF6B5F1e4d6ab4f633C1C7820db80922ca24"
    }
  },
  "isSystem": false,
  "forceEvmla": false
}

Contract ABI

API
[{"anonymous":true,"inputs":[{"indexed":true,"internalType":"bytes4","name":"sig","type":"bytes4"},{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"LOG_CALL","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":true,"internalType":"address","name":"manager","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"ManagerClaim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"ManagersClaim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"TOTAL_RATIO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimEther","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokensIn","type":"address[]"},{"internalType":"uint256[]","name":"amountsIn","type":"uint256[]"},{"internalType":"uint256[]","name":"tokensAmountIR","type":"uint256[]"},{"internalType":"bool","name":"isPerfermance","type":"bool"}],"name":"depositIssueRedeemPToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokensIn","type":"address[]"},{"internalType":"uint256[]","name":"amountsIn","type":"uint256[]"}],"name":"depositManagerToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"getManagerClaimBool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"getManagerFeeTypes","outputs":[{"components":[{"internalType":"address[]","name":"tokenList","type":"address[]"},{"internalType":"uint256[]","name":"managerAmount","type":"uint256[]"},{"internalType":"uint256[]","name":"issueAmount","type":"uint256[]"},{"internalType":"uint256[]","name":"redeemAmount","type":"uint256[]"},{"internalType":"uint256[]","name":"perfermanceAmount","type":"uint256[]"}],"internalType":"struct Vault.PoolTokens","name":"result","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"getUnManagerReward","outputs":[{"internalType":"address[]","name":"tokensList","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"issuance_portion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"management_portion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"managerClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"performance_portion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"poolsStatus","outputs":[{"internalType":"bool","name":"couldManagerClaim","type":"bool"},{"internalType":"bool","name":"isBlackList","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redemption_portion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"},{"internalType":"bool","name":"bools","type":"bool"}],"name":"setBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"setCrpFactory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setIssueRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setManagerRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPerfermanceRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setRedeemRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"setUserVaultAdr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"userVault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

0x9c4d535b000000000000000000000000000000000000000000000000000000000000000001001047d6c02cc3a85225cdb72e5f2ca076c58bd0aad3f81b84d7fbf718983e00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x00040000000000020000000003010019000000600330027000000fe6043001970003000000410355000200000001035500000fe60030019d00000001012001900000000b0000c13d00000000010000193f9300360000040f0000008001000039000000400010043f000003e8010000390000000602000039000000000012041b00000320010000390000000702000039000000000012041b0000000802000039000000000012041b0000000902000039000000000012041b0000000a02000039000000000012041b0000000001000416000000000101004b000000340000c13d000000000100041100000fe706100197000000000100041a00000fe801100197000000000161019f000000000010041b00000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000fe9011001c70000800d02000039000000030300003900000fea0400004100000000050000193f933f890000040f0000000101200190000000340000613d00000020010000390000010000100443000001200000044300000feb0100004100003f940001042e000000000100001900003f9500010430001b0000000000020000008006000039000000400060043f000000000101004b000000620000613d000003e8010000390000000602000039000000000012041b00000320010000390000000702000039000000000012041b0000000802000039000000000012041b0000000902000039000000000012041b0000000a02000039000000000012041b0000000001000416000000000101004b00003dac0000c13d000000000100041100000fe706100197000000000100041a00000fe801100197000000000161019f000000000010041b00000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000fe9011001c70000800d02000039000000030300003900000fea0400004100000000050000193f933f890000040f000000010120019000003dac0000613d00000020010000390000010000100443000001200000044300000feb0100004100003f940001042e0000000002000031000000030120008c000000690000213d000000000102004b00003dac0000c13d000000000100001900003f940001042e0000000201000367000000000301043b000000e00430027000000fec0530009c000000cc0000813d000010230530009c000000f10000813d0000102f0540009c000001760000213d000010330540009c000003ce0000613d000010340540009c000005290000613d000010350440009c00003dac0000c13d0000000004000416000000000404004b00003dac0000c13d000000040420008a00000ff4050000410000001f0640008c0000000006000019000000000605201900000ff404400197000000000704004b000000000500801900000ff40440009c000000000506c019000000000405004b00003dac0000613d0000000404100370000000000604043b000000000400041100000fe705400197000000000400041a00000fe704400197000000000454004b000007f40000c13d001b00000006001d0000002004000039000000800040043f0000001f0620018f0000101704300197000000a00020043f0000000503200272000000a00000613d00000000070000190000000508700210000000000981034f000000000909043b000000c00880003900000000009804350000000107700039000000000837004b000000980000413d000000000706004b000000af0000613d0000000503300210000000000131034f0000000306600210000000c003300039000000000703043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000130435000000c0012000390000000000010435000000df01200039000000200200008a000000000121016f000000400200043d000000000121004900000fe60300004100000fe60620009c0000000002038019000000400220021000000fe60610009c00000000010380190000006001100210000000000121019f000000000200041400000fe60620009c0000000002038019000000c002200210000000000121019f00001012011001c70000800d0200003900000002030000393f933f890000040f000000010120019000003dac0000613d0000000a010000390000001b02000029000008710000013d00000fed0530009c000001510000813d0000101b0540009c000002170000213d0000101f0540009c000003d30000613d000010200340009c0000058d0000613d000010210140009c00003dac0000c13d0000000001000416000000000101004b00003dac0000c13d000000000100041100000fe705100197000000000100041a00000fe701100197000000000151004b000007f40000c13d00000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000fe9011001c70000800d02000039000000030300003900000fea0400004100000000060000193f933f890000040f000000010120019000003dac0000613d000000000100041a00000fe801100197000000000010041b000000000100001900003f940001042e000010240540009c000002220000213d000010280540009c000004390000613d000010290540009c000006b00000613d0000102a0440009c00003dac0000c13d0000000004000416000000000404004b00003dac0000c13d000000040420008a00000ff4050000410000001f0640008c0000000006000019000000000605201900000ff404400197000000000704004b000000000500801900000ff40440009c000000000506c019000000000405004b00003dac0000613d0000000404100370000000000604043b000000000400041100000fe705400197000000000400041a00000fe704400197000000000454004b000007f40000c13d001b00000006001d0000002004000039000000800040043f0000001f0620018f0000101704300197000000a00020043f0000000503200272000001210000613d00000000070000190000000508700210000000000981034f000000000909043b000000c00880003900000000009804350000000107700039000000000837004b000001190000413d000000000706004b000001300000613d0000000503300210000000000131034f0000000306600210000000c003300039000000000703043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000130435000000c0012000390000000000010435000000df01200039000000200200008a000000000121016f000000400200043d000000000121004900000fe60300004100000fe60620009c0000000002038019000000400220021000000fe60610009c00000000010380190000006001100210000000000121019f000000000200041400000fe60620009c0000000002038019000000c002200210000000000121019f00001012011001c70000800d0200003900000002030000393f933f890000040f000000010120019000003dac0000613d0000000601000039000000000101041a0000001b02000029000000000112004b0000074f0000213d0000000901000039000008710000013d00000fee0530009c000003960000813d000010180340009c000007940000613d000010190340009c0000078d0000613d0000101a0340009c00003dac0000c13d0000000003000416000000000303004b00003dac0000c13d000000040220008a00000ff4030000410000001f0420008c0000000004000019000000000403201900000ff402200197000000000502004b000000000300801900000ff40220009c000000000304c019000000000203004b00003dac0000613d0000000401100370000000000101043b00000ff50210009c00003dac0000813d00000000001004350000000401000039000000200010043f00000040010000393f933f770000040f000000000101041a000000ff011001900000000001000019000000010100c039000007990000013d000010300340009c0000045c0000613d000010310340009c000006b50000613d000010320340009c00003dac0000c13d0000000003000416000000000303004b00003dac0000c13d000000040320008a00000ff4040000410000007f0530008c0000000005000019000000000504201900000ff403300197000000000603004b000000000400801900000ff40330009c000000000405c019000000000304004b00003dac0000613d0000000403100370000000000303043b001b00000003001d000010080330009c00003dac0000213d0000001b03000029000000230330003900000ff404000041000000000523004b0000000005000019000000000504401900000ff40620019700000ff403300197000000000763004b000000000400a019000000000363013f00000ff40330009c000000000405c019000000000304004b00003dac0000613d0000001b03000029001900040030003d0000001903100360000000000303043b001a00000003001d000010020330009c00003dac0000813d0000001a030000290000000503300210001800000003001d0000002004300039001700000004001d0000001903400029000000000323004b00003dac0000213d0000002403100370000000000303043b001600000003001d000010020330009c00003dac0000813d0000001603000029000000230330003900000ff404000041000000000523004b0000000005000019000000000504401900000ff40620019700000ff403300197000000000763004b000000000400a019000000000363013f00000ff40330009c000000000405c019000000000304004b00003dac0000613d00000016030000290000000403300039000000000431034f000000000404043b001400000004001d000010020440009c00003dac0000813d00000014040000290000000504400210000f00000004001d000e00200040003d0000000e03300029000000000323004b00003dac0000213d0000004403100370000000000303043b000010080430009c00003dac0000213d000000230430003900000ff405000041000000000624004b0000000006000019000000000605401900000ff40720019700000ff404400197000000000874004b000000000500a019000000000474013f00000ff40440009c000000000506c019000000000405004b00003dac0000613d0000000404300039000000000441034f000000000404043b001200000004001d000010020440009c00003dac0000813d00000012040000290000000504400210001100240030003d0000001103400029000000000223004b00003dac0000213d0000006401100370000000000201043b000000000102004b0000000001000019000000010100c039000d00000002001d000000000112004b00003dac0000c13d0000000101000039000a00000001001d000000000101041a00000ffb02000041000000800020043f000000000200041100000fe702200197001500000002001d000000840020043f00000ffc02000041000000000020043900000fe701100197001300000001001d000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001302000029000000040220008c0000109b0000c13d0000000103000031000010c70000013d0000101c0540009c000004cc0000613d0000101d0540009c000006f90000613d0000101e0140009c00003dac0000c13d0000000001000416000000000101004b00003dac0000c13d000000000100041a000007920000013d000010250340009c000005240000613d000010260340009c000007670000613d000010270340009c00003dac0000c13d0000000003000416000000000303004b00003dac0000c13d000000040220008a00000ff4030000410000001f0420008c0000000004000019000000000403201900000ff402200197000000000502004b000000000300801900000ff40220009c000000000304c019000000000203004b00003dac0000613d0000000401100370000000000101043b00130fe70010019b00000ff50110009c00003dac0000813d0000006002000039000000800020043f000000a00020043f000000c00020043f000000e00020043f000001000020043f000001c001000039000000400010043f000001200020043f000001400020043f000001600020043f000001800020043f001200000002001d000001a00020043f000000130100002900000000001004350000000301000039001100000001001d000000200010043f00000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000501043b000000400400043d000000c003400039000000000105041a00000005021002100000000002230019000000400020043f000000a0074000390000000000170435000000000101004b001b00000004001d001a00000005001d000002800000613d001700000007001d001800000002001d001900000003001d000000000050043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b040000290000001a05000029000000190300002900000018060000290000001707000029000000000201041a00000fe70220019700000000032304360000000101100039000000000236004b0000027a0000213d00000000067404360000000101500039000000000201041a0000000503200210000000400700043d00000020087000390000000003380019000000400030043f0000000000270435000000000202004b000002a60000613d001600000003001d001700000008001d001800000007001d001900000006001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b040000290000001a050000290000001906000029000000180700002900000017030000290000001608000029000000000201041a00000000032304360000000101100039000000000238004b000002a10000213d00000000007604350000000201500039000000000201041a0000000503200210000000400600043d00000020076000390000000003370019000000400030043f0000000000260435000000000202004b000002ca0000613d001700000003001d001800000007001d001900000006001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b040000290000001a05000029000000190600002900000018030000290000001707000029000000000201041a00000000032304360000000101100039000000000237004b000002c50000213d000000400140003900000000006104350000000301500039000000000201041a0000000503200210000000400600043d00000020076000390000000003370019000000400030043f0000000000260435000000000202004b000002ef0000613d001700000003001d001800000007001d001900000006001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b040000290000001a05000029000000190600002900000018030000290000001707000029000000000201041a00000000032304360000000101100039000000000237004b000002ea0000213d000000600140003900000000006104350000000401500039000000000201041a0000000503200210000000400500043d00000020065000390000000003360019000000400030043f0000000000250435000000000202004b000003130000613d001800000003001d001900000006001d001a00000005001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b040000290000001a0500002900000019030000290000001806000029000000000201041a00000000032304360000000101100039000000000236004b0000030e0000213d0000008001400039000000000051043500000000010404330000000002010433000000800010043f001000000002001d000010020120009c00003dac0000813d000000400500043d00000010020000290000000006250436000000050320021000000020043000390000000001450019000000400010043f000000000202004b000008a30000c13d000000a00050043f0000000000010435000000c00010043f00000000014100190000000000010435000000e00010043f000000000141001900000000000104350000000002410019000000400020043f000001000010043f000000400100043d00000020020000390000000002210436000000800300043d000000a0040000390000000000420435000000c00210003900000000040304330000000000420435000000e002100039000000000504004b000003430000613d00000000050000190000002003300039000000000603043300000fe70660019700000000026204360000000105500039000000000645004b0000033c0000413d0000000003120049000000200430008a0000004005100039000000a00300043d000000000045043500000000040304330000000005420436000000000604004b000003560000613d000000000705001900000000060000190000002003300039000000000203043300000000052704360000000106600039000000000246004b000000000207001900000000070500190000034e0000413d0000000003150049000000200430008a0000006006100039000000c00300043d0000000000460435000000000403043300000000004504350000004002200039000000000504004b000003670000613d00000000050000190000002003300039000000000603043300000000026204360000000105500039000000000645004b000003610000413d0000000003120049000000200430008a0000008005100039000000e00300043d000000000045043500000000040304330000000005420436000000000604004b0000037a0000613d000000000705001900000000060000190000002003300039000000000203043300000000052704360000000106600039000000000246004b00000000020700190000000007050019000003720000413d0000000003150049000000200330008a000000a004100039000001000100043d0000000000340435000000000301043300000000003504350000004002200039000000000403004b0000038b0000613d00000000040000190000002001100039000000000501043300000000025204360000000104400039000000000534004b000003850000413d000000400100043d000000000212004900000fe60300004100000fe60420009c000000000203801900000fe60410009c000000000103801900000040011002100000006002200210000000000112019f00003f940001042e00000fef0540009c000003a10000213d00000ff20540009c0000079c0000613d00000ff30140009c00003dac0000c13d0000000001000416000000000101004b00003dac0000c13d0000000801000039000007980000013d00000ff00340009c000007fd0000613d00000ff10340009c00003dac0000c13d0000000003000416000000000303004b00003dac0000c13d000000040220008a00000ff4030000410000001f0420008c0000000004000019000000000403201900000ff402200197000000000502004b000000000300801900000ff40220009c000000000304c019000000000203004b00003dac0000613d0000000401100370000000000101043b001b0fe70010019b00000ff50110009c00003dac0000813d000000000100041100000fe705100197000000000100041a00000fe701100197000000000151004b000007f40000c13d0000001b06000029000000000106004b000008740000c13d00000ff601000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f00000ff701000041000000c40010043f00000ff801000041000000e40010043f00000ff90100004100003f95000104300000000001000416000000000101004b00003dac0000c13d0000000601000039000007980000013d0000000004000416000000000404004b00003dac0000c13d000000040420008a00000ff4050000410000003f0640008c0000000006000019000000000605201900000ff404400197000000000704004b000000000500801900000ff40440009c000000000506c019000000000405004b00003dac0000613d0000000404100370000000000404043b001b00000004001d00000ff50440009c00003dac0000813d0000002404100370000000000504043b000000000405004b0000000004000019000000010400c039001a00000005001d000000000445004b00003dac0000c13d000000000400041100000fe705400197000000000400041a00000fe704400197000000000454004b000007f40000c13d0000002004000039000000800040043f0000001f0620018f0000101704300197000000a00020043f0000000503200272000004050000613d00000000070000190000000508700210000000000981034f000000000909043b000000c00880003900000000009804350000000107700039000000000837004b000003fd0000413d000000000706004b000004140000613d0000000503300210000000000131034f0000000306600210000000c003300039000000000703043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000130435000000c0012000390000000000010435000000df01200039000000200200008a000000000121016f000000400200043d000000000121004900000fe60300004100000fe60620009c0000000002038019000000400220021000000fe60610009c00000000010380190000006001100210000000000121019f000000000200041400000fe60620009c0000000002038019000000c002200210000000000121019f00001012011001c70000800d0200003900000002030000393f933f890000040f000000010120019000003dac0000613d0000001b0100002900000000001004350000000401000039000000200010043f00000040010000393f933f770000040f000000000201041a00001022022001970000001a0300006b000001000220c1bf000008710000013d0000000003000416000000000303004b00003dac0000c13d000000040220008a00000ff4030000410000001f0420008c0000000004000019000000000403201900000ff402200197000000000502004b000000000300801900000ff40220009c000000000304c019000000000203004b00003dac0000613d0000000401100370000000000101043b00000ff50210009c00003dac0000813d0000000402000039000000200020043f000000000010043500000040010000393f933f770000040f000000000101041a000000ff021001900000000002000019000000010200c039000000800020043f0000ff00011001900000000001000019000000010100c039000000a00010043f0000102e0100004100003f940001042e0000000003000416000000000303004b00003dac0000c13d000000040320008a00000ff4040000410000003f0530008c0000000005000019000000000504201900000ff403300197000000000603004b000000000400801900000ff40330009c000000000405c019000000000304004b00003dac0000613d0000000403100370000000000303043b000010080430009c00003dac0000213d000000230430003900000ff405000041000000000624004b0000000006000019000000000605401900000ff40720019700000ff404400197000000000874004b000000000500a019000000000474013f00000ff40440009c000000000506c019000000000405004b00003dac0000613d001a00040030003d0000001a03100360000000000303043b001b00000003001d000010020330009c00003dac0000813d0000001b030000290000000503300210001900000003001d0000002004300039001600000004001d0000001a03400029000000000323004b00003dac0000213d0000002403100370000000000303043b000010020430009c00003dac0000813d000000230430003900000ff405000041000000000624004b0000000006000019000000000605401900000ff40720019700000ff404400197000000000874004b000000000500a019000000000474013f00000ff40440009c000000000506c019000000000405004b00003dac0000613d001400040030003d0000001401100360000000000101043b001500000001001d000010020110009c00003dac0000813d00000015010000290000000501100210001300000001001d0000002003100039001200000003001d0000001401300029000000000121004b00003dac0000213d0000000101000039000d00000001001d000000000101041a00000ffb02000041000000800020043f000000000200041100000fe702200197001800000002001d000000840020043f00000ffc02000041000000000020043900000fe701100197001700000001001d000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001702000029000000040220008c00000e190000c13d000000010300003100000e450000013d0000000004000416000000000404004b00003dac0000c13d000000040420008a00000ff4050000410000001f0640008c0000000006000019000000000605201900000ff404400197000000000704004b000000000500801900000ff40440009c000000000506c019000000000405004b00003dac0000613d0000000404100370000000000604043b000000000400041100000fe705400197000000000400041a00000fe704400197000000000454004b000007f40000c13d001b00000006001d0000002004000039000000800040043f0000001f0620018f0000101704300197000000a00020043f0000000503200272000004f40000613d00000000070000190000000508700210000000000981034f000000000909043b000000c00880003900000000009804350000000107700039000000000837004b000004ec0000413d000000000706004b000005030000613d0000000503300210000000000131034f0000000306600210000000c003300039000000000703043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000130435000000c0012000390000000000010435000000df01200039000000200200008a000000000121016f000000400200043d000000000121004900000fe60300004100000fe60620009c0000000002038019000000400220021000000fe60610009c00000000010380190000006001100210000000000121019f000000000200041400000fe60620009c0000000002038019000000c002200210000000000121019f00001012011001c70000800d0200003900000002030000393f933f890000040f000000010120019000003dac0000613d0000000601000039000000000101041a0000001b02000029000000000112004b0000074f0000213d0000000801000039000008710000013d0000000001000416000000000101004b00003dac0000c13d0000000a01000039000007980000013d0000000004000416000000000404004b00003dac0000c13d000000040420008a00000ff4050000410000001f0640008c0000000006000019000000000605201900000ff404400197000000000704004b000000000500801900000ff40440009c000000000506c019000000000405004b00003dac0000613d0000000404100370000000000404043b001b0fe70040019b00000ff50440009c00003dac0000813d000000000400041100000fe705400197000000000400041a00000fe704400197000000000454004b000007f40000c13d0000002004000039001a00000004001d000000800040043f0000001f0620018f0000101704300197000000a00020043f0000000503200272000005540000613d00000000070000190000000508700210000000000981034f000000000909043b000000c00880003900000000009804350000000107700039000000000837004b0000054c0000413d000000000706004b000005630000613d0000000503300210000000000131034f0000000306600210000000c003300039000000000703043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000130435000000c0012000390000000000010435000000df01200039000000200200008a000000000121016f000000400200043d000000000121004900000fe60300004100000fe60620009c0000000002038019000000400220021000000fe60610009c00000000010380190000006001100210000000000121019f000000000200041400000fe60620009c0000000002038019000000c002200210000000000121019f00001012011001c70000800d020000390000000203000039001900000003001d3f933f890000040f000000010120019000003dac0000613d0000001b02000029000000000102004b000008840000c13d000000400100043d00000044021000390000104503000041000000000032043500000024021000390000001d03000039000000000032043500000ff602000041000000000021043500000004021000390000001a030000290000075a0000013d0000000003000416000000000303004b00003dac0000c13d000000040220008a00000ff4030000410000001f0420008c0000000004000019000000000403201900000ff402200197000000000502004b000000000300801900000ff40220009c000000000304c019000000000203004b00003dac0000613d0000000401100370000000000101043b001a0fe70010019b00000ff50110009c00003dac0000813d0000012001000039000000400010043f0000006001000039000000800010043f000000a00010043f000000c00010043f000000e00010043f001600000001001d000001000010043f0000001a0100002900000000001004350000000301000039000d00000001001d000000200010043f00000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000501043b000000400400043d000000c003400039000000000105041a00000005021002100000000002230019000000400020043f000000a0074000390000000000170435000000000101004b001b00000004001d001900000005001d000005e00000613d001500000007001d001700000002001d001800000003001d000000000050043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b040000290000001905000029000000180300002900000017060000290000001507000029000000000201041a00000fe70220019700000000032304360000000101100039000000000236004b000005da0000213d00000000067404360000000101500039000000000201041a0000000503200210000000400700043d00000020087000390000000003380019000000400030043f0000000000270435000000000202004b000006060000613d001400000003001d001500000008001d001700000007001d001800000006001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b0400002900000019050000290000001806000029000000170700002900000015030000290000001408000029000000000201041a00000000032304360000000101100039000000000238004b000006010000213d00000000007604350000000201500039000000000201041a0000000503200210000000400600043d00000020076000390000000003370019000000400030043f0000000000260435000000000202004b0000062a0000613d001500000003001d001700000007001d001800000006001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b040000290000001905000029000000180600002900000017030000290000001507000029000000000201041a00000000032304360000000101100039000000000237004b000006250000213d000000400140003900000000006104350000000301500039000000000201041a0000000503200210000000400600043d00000020076000390000000003370019000000400030043f0000000000260435000000000202004b0000064f0000613d001500000003001d001700000007001d001800000006001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b040000290000001905000029000000180600002900000017030000290000001507000029000000000201041a00000000032304360000000101100039000000000237004b0000064a0000213d000000600140003900000000006104350000000401500039000000000201041a0000000503200210000000400500043d00000020065000390000000003360019000000400030043f0000000000250435000000000202004b000006730000613d001700000003001d001800000006001d001900000005001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b04000029000000190500002900000018030000290000001706000029000000000201041a00000000032304360000000101100039000000000236004b0000066e0000213d000000800140003900000000005104350000000001040433001500000001001d0000000001010433000c00000001001d000010020110009c00003dac0000813d000000400700043d0000000c010000290000000005170436000000050310021000000020043000390000000008470019000000400080043f000000000101004b00000a5b0000c13d00000000000804350000000001480019000000400010043f000000400100043d000000400200003900000000022104360000000004070433000000400310003900000000004304350000006003100039000000000504004b000006980000613d00000000050000190000002007700039000000000607043300000fe70660019700000000036304360000000105500039000000000645004b000006910000413d0000000001130049000000000012043500000000020804330000000001230436000000000302004b000006a50000613d00000000030000190000002008800039000000000408043300000000014104360000000103300039000000000423004b0000069f0000413d000000400200043d000000000121004900000fe60300004100000fe60410009c000000000103801900000fe60420009c000000000203801900000040022002100000006001100210000000000121019f00003f940001042e0000000001000416000000000101004b00003dac0000c13d0000000901000039000007980000013d0000000003000416000000000303004b00003dac0000c13d000000040220008a00000ff4030000410000005f0420008c0000000004000019000000000403201900000ff402200197000000000502004b000000000300801900000ff40220009c000000000304c019000000000203004b00003dac0000613d0000000402100370000000000202043b001b0fe70020019b00000ff50220009c00003dac0000813d0000002402100370000000000302043b00000fe70230019700000fe70330009c00003dac0000213d0000000003000411000000000400041a000000000334013f00000fe703300198000007f40000c13d0000004401100370000000000101043b000000a40020043f000000c40010043f0000004401000039000000800010043f000000e401000039000000400010043f000000a00100043d0000100e011001970000100f011001c7000000a00010043f0000100b0100004100000000001004390000001b01000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000201004b000006f20000613d0000100c0110009c0000088b0000c13d000000400100043d00000044021000390000103d03000041000000000032043500000024021000390000001f03000039000007550000013d0000000004000416000000000404004b00003dac0000c13d000000040420008a00000ff4050000410000001f0640008c0000000006000019000000000605201900000ff404400197000000000704004b000000000500801900000ff40440009c000000000506c019000000000405004b00003dac0000613d0000000404100370000000000604043b000000000400041100000fe705400197000000000400041a00000fe704400197000000000454004b000007f40000c13d001b00000006001d0000002004000039000000800040043f0000001f0620018f0000101704300197000000a00020043f0000000503200272000007210000613d00000000070000190000000508700210000000000981034f000000000909043b000000c00880003900000000009804350000000107700039000000000837004b000007190000413d000000000706004b000007300000613d0000000503300210000000000131034f0000000306600210000000c003300039000000000703043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000130435000000c0012000390000000000010435000000df01200039000000200200008a000000000121016f000000400200043d000000000121004900000fe60300004100000fe60620009c0000000002038019000000400220021000000fe60610009c00000000010380190000006001100210000000000121019f000000000200041400000fe60620009c0000000002038019000000c002200210000000000121019f00001012011001c70000800d0200003900000002030000393f933f890000040f000000010120019000003dac0000613d0000000601000039000000000101041a0000001b02000029000000000112004b000008700000a13d000000400100043d00000044021000390000102d03000041000000000032043500000024021000390000001603000039000000000032043500000ff6020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d0000000001210049000000640110003900000fe60300004100000fe60410009c000000000103801900000fe60420009c000000000203801900000040022002100000006001100210000000000121019f00003f9500010430000000000100041100000fe702100197000000000100041a00000fe701100197000000000121004b000007f40000c13d001b00000002001d0000102b0100004100000000001004390000000001000410000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c70000800a020000393f933f8e0000040f000000010220019000003dae0000613d000000000301043b0000001b01000029000000040110008c000000670000613d00000fe601000041000000400200043d00000fe60420009c00000000020180190000102c01000041000000000403004b000000000100c0190000004002200210000000000112019f000008490000c13d0000001b020000293f933f890000040f0000084e0000013d0000000001000416000000000101004b00003dac0000c13d0000000201000039000000000101041a00000fe701100197000007990000013d0000000001000416000000000101004b00003dac0000c13d0000000701000039000000000101041a000000800010043f000010160100004100003f940001042e0000000004000416000000000404004b00003dac0000c13d000000040420008a00000ff4050000410000001f0640008c0000000006000019000000000605201900000ff404400197000000000704004b000000000500801900000ff40440009c000000000506c019000000000405004b00003dac0000613d0000000404100370000000000404043b001b00000004001d00000ff50440009c00003dac0000813d000000000400041100000fe705400197000000000400041a00000fe704400197000000000454004b000007f40000c13d0000002004000039000000800040043f0000001f0620018f0000101704300197000000a00020043f0000000503200272000007c60000613d00000000070000190000000508700210000000000981034f000000000909043b000000c00880003900000000009804350000000107700039000000000837004b000007be0000413d000000000706004b000007d50000613d0000000503300210000000000131034f0000000306600210000000c003300039000000000703043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000130435000000c0012000390000000000010435000000df01200039000000200200008a000000000121016f000000400200043d000000000121004900000fe60300004100000fe60620009c0000000002038019000000400220021000000fe60610009c00000000010380190000006001100210000000000121019f000000000200041400000fe60620009c0000000002038019000000c002200210000000000121019f00001012011001c70000800d0200003900000002030000393f933f890000040f000000010120019000003dac0000613d0000000101000039000000000201041a00000fe8022001970000001b022001af000008710000013d00000ff601000041000000800010043f0000002001000039000000840010043f000000a40010043f0000104301000041000000c40010043f000010440100004100003f9500010430001b00000006001d0000000003000416000000000303004b00003dac0000c13d000000040220008a00000ff4030000410000001f0420008c0000000004000019000000000403201900000ff402200197000000000502004b000000000300801900000ff40220009c000000000304c019000000000203004b00003dac0000613d0000000401100370000000000101043b001a0fe70010019b00000ff50110009c00003dac0000813d0000001a0100002900000000001004350000000401000039000000200010043f00000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b001900000001001d000000000101041a000000ff01100190000000670000613d0000000101000039001500000001001d000000000101041a000000400300043d00000ffb020000410000000000230435001600000003001d00000004023000390000001a030000290000000000320435000000400200043d001800000002001d00000ffc02000041000000000020043900000fe701100197001700000001001d000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001702000029000000040320008c00000ce30000c13d000000010300003100000d1a0000013d00001012011001c700008009020000390000001b0400002900000000050000193f933f890000040f00030000000103550000000003010019000000600330027000010fe60030019d00000fe6033001970000000102200190000000670000c13d0000001f0430018f0000000502300272000008600000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b000008590000413d000000000504004b0000086e0000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000000701000039000000000021041b000000000100001900003f940001042e00000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000fe9011001c70000800d02000039000000030300003900000fea040000413f933f890000040f000000010120019000003dac0000613d000000000100041a00000fe8011001970000001b011001af000000ee0000013d0000001903000029000000000103041a00000fe801100197000000000121019f000000000013041b000000000100001900003f940001042e000000400100043d000000800600043d000000000306004b0000089b0000613d00000000030000190000000004130019000000a005300039000000000505043300000000005404350000002003300039000000000463004b000008900000413d000000000363004b0000089b0000a13d00000000031600190000000000030435000000400400043d00000000030004140000001b02000029000000040520008c00000d4f0000c13d0000000102000039000000010600003100000d630000013d0000001f0130018f000000000200003100000002022003670000000503300272000008b10000613d000000000700001900000005087002100000000009860019000000000882034f000000000808043b00000000008904350000000107700039000000000837004b000008a90000413d000000000601004b000008b30000613d000000a00050043f000000400500043d000000100600002900000000066504360000000007450019000000400070043f000000000703004b000008c40000613d000000000700001900000005087002100000000009860019000000000882034f000000000808043b00000000008904350000000107700039000000000837004b000008bc0000413d000000000601004b000008c60000613d000000c00050043f000000400500043d000000100600002900000000066504360000000007450019000000400070043f000000000703004b000008d70000613d000000000700001900000005087002100000000009860019000000000882034f000000000808043b00000000008904350000000107700039000000000837004b000008cf0000413d000000000601004b000008d90000613d000000e00050043f000000400500043d000000100600002900000000066504360000000004450019000000400040043f000000000403004b000008ea0000613d000000000400001900000005074002100000000008760019000000000772034f000000000707043b00000000007804350000000104400039000000000734004b000008e20000413d000000000101004b000008ec0000613d000001000050043f000f80100000003d001800000000001d000000400100043d000000a002100039000000400020043f0000008002100039000000120300002900000000003204350000006002100039000000000032043500000040021000390000000000320435000000200210003900000000003204350000000000310435000000130100002900000000001004350000001101000029000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c70000000f020000293f933f8e0000040f000000010220019000003dac0000613d000000000401043b000000400300043d000000c005300039000000000104041a00000005021002100000000002250019000000400020043f001b00000003001d000000a0063000390000000000160435000000000101004b001a00000004001d0000092e0000613d001600000006001d001700000002001d001900000005001d0000000000400435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a04000029000000190300002900000017050000290000001606000029000000000201041a00000fe70220019700000000032304360000000101100039000000000235004b000009280000213d0000001b010000290000000001610436001900000001001d0000000101400039000000000201041a0000000503200210000000400500043d00000020065000390000000003360019000000400030043f0000000000250435000000000202004b000009520000613d001500000003001d001600000006001d001700000005001d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a04000029000000170500002900000016030000290000001506000029000000000201041a00000000032304360000000101100039000000000236004b0000094d0000213d000000190100002900000000005104350000000201400039000000000201041a0000000503200210000000400500043d00000020065000390000000003360019000000400030043f0000000000250435000000000202004b000009750000613d001500000003001d001600000006001d001700000005001d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a04000029000000170500002900000016030000290000001506000029000000000201041a00000000032304360000000101100039000000000236004b000009700000213d0000001b010000290000004001100039001700000001001d00000000005104350000000301400039000000000201041a0000000503200210000000400500043d00000020065000390000000003360019000000400030043f0000000000250435000000000202004b0000099a0000613d001400000003001d001500000006001d001600000005001d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a04000029000000160500002900000015030000290000001406000029000000000201041a00000000032304360000000101100039000000000236004b000009950000213d0000001b01000029000000600b10003900000000005b04350000000401400039000000000201041a0000000503200210000000400400043d00000020054000390000000003350019000000400030043f0000000000240435000000000202004b000009bf0000613d001400000003001d001500000005001d001600000004001d001a0000000b001d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a0b000029000000160400002900000015030000290000001405000029000000000201041a00000000032304360000000101100039000000000235004b000009ba0000213d0000001b010000290000008003100039000000000043043500000000010104330000000001010433000000000101004b000000180d0000290000000501d002100000000004000019000000000600001900000000050000190000000002000019000010040c00004100000a3d0000613d00000019020000290000000004020433000000000204043300000000022d004b000016620000813d0000000602000039000000000202041a000000200610003900000000046400190000000005040433000000000405004b0000000004000019000009e00000613d0000000704000039000000000704041a00000000847500a900000000855400d9000000000575004b000038500000c13d000000400800043d0000004005800039000000400050043f00000020078000390000000000c704350000001a050000390000000000580435000000000902004b00000ddd0000613d00000017070000290000000007070433000000000807043300000000088d004b000016620000813d00000000076700190000000008070433000000000708004b0000000007000019000009f90000613d0000000807000039000000000907041a00000000a79800a900000000a88700d9000000000898004b000038500000c13d000000400800043d0000004009800039000000400090043f00000020098000390000000000c90435000000000058043500000000080b0433000000000908043300000000099d004b000016620000813d00000000086800190000000009080433000000000809004b000000000800001900000a0e0000613d0000000908000039000000000a08041a00000000b8a900a900000000b99800d90000000009a9004b000038500000c13d000000400900043d000000400a9000390000004000a0043f000000200a9000390000000000ca043500000000005904350000000003030433000000000903043300000000099d004b000016620000813d00000000036300190000000006030433000000000306004b000000000300001900000a230000613d0000000a03000039000000000903041a00000000a39600a900000000a66300d9000000000696004b000038500000c13d00000000642400d900000000762700d9000000400700043d0000004009700039000000400090043f00000020097000390000000000c9043500000000005704350000000007460019000000000567004b000000000500001900000001050040390000000105500190000038630000c13d00000000852800d90000000007750019000000000857004b000000000800001900000001080040390000000108800190000038630000c13d00000000322300d9000000010300008a000000000337013f000000000332004b000038630000213d000000a00300043d000000000703043300000000077d004b000016620000813d000000c00700043d000000000807043300000000088d004b000016620000813d000000e00800043d000000000908043300000000099d004b000016620000813d000001000900043d000000000a090433000000000aad004b000016620000813d000000200110003900000000031300190000000007170019000000000919001900000000002904350000000001180019000000000051043500000000006704350000000000430435000000010dd0003900180000000d001d0000001001d0006c000008ef0000413d0000032f0000013d000b00000007001d0000001f0130018f00000000020000310000000202200367000000050330027200000a6a0000613d000000000600001900000005076002100000000008750019000000000772034f000000000707043b00000000007804350000000106600039000000000736004b00000a620000413d000000000501004b00000a6c0000613d000000400600043d0000000c050000290000000005560436001400000006001d0000000004460019000000400040043f000000000403004b00000a7d0000613d000000000400001900000005064002100000000007650019000000000662034f000000000606043b00000000006704350000000104400039000000000634004b00000a750000413d000000000101004b00000a7f0000613d000a80100000003d00000000060000190000000b0700002900000015010000290000000001010433000000000116004b000016620000813d0000000001070433000000000116004b000016620000813d001800000006001d000000050160021000000020031000390000000001730019001300000003001d0000001502300029000000000202043300000fe702200197001200000002001d0000000000210435000000400100043d000000a002100039000000400020043f00000080021000390000001603000029000000000032043500000060021000390000000000320435000000400210003900000000003204350000002002100039000000000032043500000000003104350000001a0100002900000000001004350000000d01000029000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c70000000a020000293f933f8e0000040f000000010220019000003dac0000613d000000000401043b000000400300043d000000c005300039000000000104041a00000005021002100000000002250019000000400020043f001b00000003001d000000a0063000390000000000160435000000000101004b001900000004001d00000ad20000613d001000000006001d001100000002001d001700000005001d0000000000400435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001904000029000000170300002900000011050000290000001006000029000000000201041a00000fe70220019700000000032304360000000101100039000000000235004b00000acc0000213d0000001b010000290000000001610436001700000001001d0000000101400039000000000201041a0000000503200210000000400500043d00000020065000390000000003360019000000400030043f0000000000250435000000000202004b00000af60000613d000f00000003001d001000000006001d001100000005001d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001904000029000000110500002900000010030000290000000f06000029000000000201041a00000000032304360000000101100039000000000236004b00000af10000213d000000170100002900000000005104350000000201400039000000000201041a0000000503200210000000400500043d00000020065000390000000003360019000000400030043f0000000000250435000000000202004b00000b190000613d000f00000003001d001000000006001d001100000005001d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001904000029000000110500002900000010030000290000000f06000029000000000201041a00000000032304360000000101100039000000000236004b00000b140000213d0000001b010000290000004001100039001100000001001d00000000005104350000000301400039000000000201041a0000000503200210000000400500043d00000020065000390000000003360019000000400030043f0000000000250435000000000202004b00000b3e0000613d000e00000003001d000f00000006001d001000000005001d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000190400002900000010050000290000000f030000290000000e06000029000000000201041a00000000032304360000000101100039000000000236004b00000b390000213d0000001b01000029000000600910003900000000005904350000000401400039000000000201041a0000000503200210000000400400043d00000020054000390000000003350019000000400030043f0000000000240435000000000202004b00000b630000613d000e00000003001d000f00000005001d001000000004001d001900000009001d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000190900002900000010040000290000000f030000290000000e05000029000000000201041a00000000032304360000000101100039000000000235004b00000b5e0000213d0000001b010000290000008002100039000000000042043500000000010104330000000001010433000000000101004b0000000001000019000000140a000029000000180b000029000000130c00002900000be30000613d00000017010000290000000003010433000000000103043300000000011b004b000016620000813d0000000601000039000000000101041a0000000003c300190000000004030433000000000304004b000000000300001900000b800000613d0000000703000039000000000503041a00000000635400a900000000644300d9000000000454004b000038500000c13d000000400600043d0000004004600039000000400040043f0000002005600039000010040400004100000000004504350000001a040000390000000000460435000000000701004b00000fa50000613d00000011050000290000000005050433000000000605043300000000066b004b000016620000813d0000000005c500190000000006050433000000000506004b000000000500001900000b9a0000613d0000000805000039000000000705041a00000000857600a900000000866500d9000000000676004b000038500000c13d000000400600043d0000004007600039000000400070043f00000020076000390000100408000041000000000087043500000000004604350000000006090433000000000706043300000000077b004b000016620000813d0000000006c600190000000007060433000000000607004b000000000600001900000bb00000613d0000000906000039000000000806041a00000000968700a900000000977600d9000000000787004b000038500000c13d000000400700043d0000004008700039000000400080043f00000020087000390000100409000041000000000098043500000000004704350000000002020433000000000702043300000000077b004b000016620000813d0000000002c200190000000007020433000000000207004b000000000200001900000bc60000613d0000000a02000039000000000802041a00000000928700a900000000977200d9000000000787004b000038500000c13d00000000731300d900000000751500d9000000400700043d0000004008700039000000400080043f00000020087000390000100409000041000000000098043500000000004704350000000003350019000000000453004b000000000400001900000001040040390000000104400190000038630000c13d00000000541600d900000000121200d90000000001340019000000000341004b000000000300001900000001030040390000000001120019000000000221004b000000000200001900000001020040390000000103300190000038630000c13d0000000102200190000038630000c13d00000000020a043300000000022b004b000016620000813d0000000002ac0019001900000002001d0000000000120435000000400200043d0000100001000041001700000002001d0000000000120435000000400100043d001b00000001001d00000ffc0100004100000000001004390000001a010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001a02000029000000040320008c00000c050000c13d000000010300003100000c3b0000013d0000001b040000290000001703400069000000040530003900000fe60340009c00000fe60600004100000000030600190000000003044019000000400330021000000fe60450009c00000000050680190000006004500210000000000434019f00000fe60310009c0000000001068019000000c001100210000000000141019f3f933f8e0000040f0000001b090000290000000003010019000000600330027000000fe603300197000000200430008c00000000050300190000002005008039000000050450027200000c280000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000746004b00000c200000413d0000001f0550019000000c370000613d0000000504400210000000000641034f00000000044900190000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010220019000000fc40000613d0000001f0130008c00000ff4050000410000000001000019000000000105201900000ff402300197000000000402004b0000000004000019000000000405401900000ff40220009c000000000401c0190000001f01300039000f0020000000920000000f0110017f000000400200043d0000000001210019000000400010043f000000000304004b00003dac0000613d0000000002020433000000020320008c00003dac0000813d000000010220008c00000df60000613d0000004002100039000000400020043f00000020021000390000001603000029000000000032043500000000003104350000001a0100002900000000001004350000000501000039000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000301043b000000400400043d0000006005400039000000000103041a00000005021002100000000002250019000000400020043f00000040074000390000000000170435000000000101004b001b00000004001d00000c8b0000613d001000000007001d001100000002001d001300000005001d001700000003001d0000000000300435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b040000290000001703000029000000130500002900000011060000290000001007000029000000000201041a00000fe70220019700000000052504360000000101100039000000000256004b00000c850000213d00000000057404360000000101300039000000000201041a0000000503200210000000400b00043d000000200ab0003900000000033a0019000000400030043f00000000002b0435000000000202004b00000cb00000613d001000000003001d001100000005001d00130000000b001d00170000000a001d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000170a00002900000000020a00190000001b04000029000000130b00002900000011050000290000001006000029000000000301041a00000000023204360000000101100039000000000326004b00000cab0000213d0000000000b5043500000000010404330000000031010434000000000201004b00000000020000190000000b0700002900000014080000290000001806000029000000120900002900000ccb0000613d000000000400001900000005024002100000000005230019000000000505043300000fe705500197000000000595004b00000cc60000613d0000000104400039000000000214004b000000000200001900000cbb0000413d00000ccb0000013d00000000010b0433000000000114004b000016620000813d00000000012a001900000000020104330000000001080433000000000116004b0000001909000029000016620000813d0000000003090433000000400400043d0000004001400039000000400010043f0000002001400039000010050500004100000000005104350000001e050000390000000000540435000000000523004b00000dfc0000413d0000000001080433000000000116004b000016620000813d0000000001230049000000000019043500000001066000390000000c0160006c00000a820000413d000006870000013d00000018050000290000001603500069000000240630003900000fe60300004100000fe60450009c00000000040300190000000004054019000000400440021000000fe60560009c00000000060380190000006005600210000000000545019f00000fe60410009c0000000001038019000000c001100210000000000151019f3f933f8e0000040f00000018090000290000000003010019000000600330027000000fe603300197000000200430008c000000000503001900000020050080390000001f0450018f000000050550027200000d070000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b00000cff0000413d000000000604004b00000d160000613d0000000505500210000000000651034f00000018055000290000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f0003000000010355000000010220019000000db70000613d00000ff4040000410000001f0130008c0000000001000019000000000104201900000ff402300197000000000502004b000000000400801900000ff40220009c000000000401c0190000001f013000390018002000000092000000180110017f000000400200043d0000000001210019000000400010043f000000000304004b00003dac0000613d0000000002020433000000000302004b0000000003000019000000010300c039000000000332004b00003dac0000c13d001700040010003d000000000202004b00000dd20000613d00000fff020000410000000000210435000000400100043d001600000001001d00000ffc0100004100000000001004390000001a01000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001a02000029000000040220008c00000fdf0000c13d0000000103000031000010160000013d0000000001160019000000000141004900000fe60600004100000fe60540009c0000000004068019000000400440021000000fe60510009c00000000010680190000006001100210000000000141019f00000fe60430009c0000000003068019000000c003300210000000000131019f3f933f890000040f000000010220018f0003000000010355000000600110027000010fe60010019d00000fe60610019700000060030000390000008001000039000000000406004b00000d8a0000613d0000003f01600039000000200300008a000000000131016f000000400300043d0000000001130019000000400010043f0000001f0460018f00000000016304360000000305000367000000050660027200000d7b0000613d000000000700001900000005087002100000000009810019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b00000d730000413d000000000704004b00000d8a0000613d0000000506600210000000000565034f00000000066100190000000304400210000000000706043300000000074701cf000000000747022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000474019f0000000000460435000000000202004b00000d970000c13d000000400100043d00000044021000390000104003000041000000000032043500000ff602000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000075a0000013d0000000002030433000000000302004b000000670000613d00000ff4030000410000001f0420008c0000000004000019000000000403201900000ff402200197000000000502004b000000000300801900000ff40220009c000000000304c019000000000203004b00003dac0000613d0000000001010433000000000201004b0000000002000019000000010200c039000000000221004b00003dac0000c13d000000000101004b000000670000c13d000000400100043d00000064021000390000103e03000041000000000032043500000044021000390000103f03000041000000000032043500000024021000390000002a03000039000038590000013d0000001f0430018f000000050230027200000dc20000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00000dbb0000413d000000000504004b00000dd00000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f950001043000000ff6020000410000000000210435000000200200003900000017030000290000000000230435000000440210003900000ffe030000410000000000320435000000240210003900000018030000390000075a0000013d000000400200043d00000ff60100004100000000001204350000000401200039000000200300003900000000003104350000000001080433000000240320003900000000001304350000004402200039000000000301004b00000fbd0000613d000000000300001900000000042300190000000005730019000000000505043300000000005404350000002003300039000000000413004b00000dea0000413d000000000313004b00000fbd0000a13d0000000003210019000000000003043500000fbd0000013d00000044021000390000100603000041000000000032043500000024021000390000001103000039000007550000013d000000400300043d00000ff60200004100000000002304350000000402300039000000200500003900000000005204350000000002040433000000240430003900000000002404350000004403300039000000000402004b00000e140000613d000000000400001900000000053400190000000006140019000000000606043300000000006504350000002004400039000000000524004b00000e090000413d000000000124004b00000e140000a13d000000000132001900000000000104350000001f012000390000000f02000029000000000121016f000000000113001900000fc10000013d00000fe60200004100000fe60310009c0000000001028019000000c00110021000001036011001c700000017020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c000000000503001900000020050080390000001f0450018f000000050550027200000e320000613d00000000060000190000000507600210000000000871034f000000000808043b000000800770003900000000008704350000000106600039000000000756004b00000e2a0000413d000000000604004b00000e410000613d0000000505500210000000000651034f00000003044002100000008005500039000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000102200190000010460000613d00000ff4020000410000001f0130008c0000000001000019000000000102201900000ff404300197000000000504004b000000000200801900000ff40440009c000000000201c0190000001f01300039000e0020000000920000000e0310017f000000400100043d0000000003130019001700000003001d000000400030043f000000000202004b00003dac0000613d0000000001010433000000000201004b0000000002000019000000010200c039000000000221004b00003dac0000c13d000000000101004b0000107c0000613d00000015020000290000001b0120006b000010830000c13d00000017020000290000001601200029000000400010043f0000001b01000029000000000212043600000019040000290000001f0340018f0000000201000367000000050440027200000e780000613d0000001a050000290000002005500039000000000551034f000000000600001900000005076002100000000008720019000000000775034f000000000707043b00000000007804350000000106600039000000000746004b00000e700000413d000000000303004b00000e7a0000613d00000019022000290000000000020435000000400300043d0000001202300029000000400020043f001600000003001d0000001b02000029000000000223043600000013040000290000001f0340018f000000050440027200000e920000613d00000014050000290000002005500039000000000151034f000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000e8a0000413d000000000103004b00000e940000613d00000013012000290000000000010435000000400100043d000000a002100039000000400020043f000000800210003900000060030000390000000000320435000000600210003900000000003204350000004002100039000000000032043500000020021000390000000000320435001100000003001d0000000000310435000000180100002900000000001004350000000301000039001300000001001d000000200010043f00000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000400300043d000000c004300039001b00000001001d000000000101041a00000005021002100000000002240019000000400020043f001200000003001d000000a003300039001a00000003001d0000000000130435000000000101004b00000ed80000613d001500000002001d001900000004001d0000001b01000029000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b00000019030000290000001504000029000000000201041a00000fe70220019700000000032304360000000101100039000000000234004b00000ed20000213d00000012010000290000001a020000290000000001210436001a00000001001d0000001b010000290000000101100039000000000201041a0000000503200210000000400400043d00000020054000390000000003350019000000400030043f001900000004001d0000000000240435000000000202004b00000efd0000613d001400000003001d001500000005001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b00000015030000290000001404000029000000000201041a00000000032304360000000101100039000000000234004b00000ef80000213d0000001a01000029000000190200002900000000002104350000001b010000290000000201100039000000000201041a0000000503200210000000400400043d00000020054000390000000003350019000000400030043f001a00000004001d0000000000240435000000000202004b00000f210000613d001500000003001d001900000005001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b00000019030000290000001504000029000000000201041a00000000032304360000000101100039000000000234004b00000f1c0000213d000000120100002900000040011000390000001a0200002900000000002104350000001b010000290000000301100039000000000201041a0000000503200210000000400400043d00000020054000390000000003350019000000400030043f001a00000004001d0000000000240435000000000202004b00000f460000613d001500000003001d001900000005001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b00000019030000290000001504000029000000000201041a00000000032304360000000101100039000000000234004b00000f410000213d000000120100002900000060011000390000001a0200002900000000002104350000001b010000290000000401100039000000000201041a0000000503200210000000400400043d00000020054000390000000003350019000000400030043f001b00000004001d0000000000240435000000000202004b00000f6b0000613d001900000003001d001a00000005001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a030000290000001904000029000000000201041a00000000032304360000000101100039000000000234004b00000f660000213d000000120100002900000080011000390000001b02000029000000000021043500000017010000290000000001010433001000000001001d000000000101004b000014e60000c13d000000180100002900000000001004350000000401000039001b00000001001d000000200010043f00000fe603000041000000000100041400000fe60210009c0000000001038019000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0017010000000092000000170220017f00000001022001bf000000000021041b0000100001000041000000400200043d001900000002001d000000000012043500000ffc01000041000000400200043d001a00000002001d000000000010043900000018010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001802000029000000040220008c000018c60000c13d0000000103000031000018fe0000013d000000400200043d00000ff60100004100000000001204350000000401200039000000200300003900000000003104350000000001060433000000240320003900000000001304350000004402200039000000000301004b00000fbd0000613d000000000300001900000000042300190000000006530019000000000606043300000000006404350000002003300039000000000413004b00000fb20000413d000000000313004b00000fbd0000a13d000000000321001900000000000304350000001f01100039000000200300008a000000000131016f0000000001120019000000400200043d00000000012100490000075e0000013d0000001f0430018f000000050230027200000fcf0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00000fc80000413d000000000504004b00000fdd0000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001605000029000000170250006900000fe60300004100000fe60450009c00000000040300190000000004054019000000400440021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f0000001a020000293f933f8e0000040f00000016090000290000000003010019000000600330027000000fe603300197000000200430008c000000000503001900000020050080390000001f0450018f0000000505500272000010030000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b00000ffb0000413d000000000604004b000010120000613d0000000505500210000000000651034f00000016055000290000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000102200190000010610000613d00000ff4020000410000001f0130008c0000000001000019000000000102201900000ff404300197000000000504004b000000000200801900000ff40440009c000000000201c0190000001f01300039000000180310017f000000400100043d0000000003130019001700000003001d000000400030043f000000000202004b00003dac0000613d000000000101043300000ff50110009c00003dac0000813d000010000100004100000017020000290000000000120435000000400100043d001600000001001d00000ffc0100004100000000001004390000001a01000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001a02000029000000040220008c000013900000c13d0000000103000031000013c80000013d0000001f0430018f0000000502300272000010510000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b0000104a0000413d000000000504004b0000105f0000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f00000005023002720000106c0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b000010650000413d000000000504004b0000107a0000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001703000029000000440130003900000ffe02000041000000000021043500000024013000390000001802000039000010890000013d000000170300002900000044013000390000103702000041000000000021043500000024013000390000001a02000039000000000021043500000ff6010000410000000000130435000000040130003900000020020000390000000000210435000000400100043d0000000002130049000000640220003900000fe60300004100000fe60420009c000000000203801900000fe60410009c000000000103801900000040011002100000006002200210000000000112019f00003f950001043000000fe60200004100000fe60310009c0000000001028019000000c00110021000001036011001c700000013020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c000000000503001900000020050080390000001f0450018f0000000505500272000010b40000613d00000000060000190000000507600210000000000871034f000000000808043b000000800770003900000000008704350000000106600039000000000756004b000010ac0000413d000000000604004b000010c30000613d0000000505500210000000000651034f00000003044002100000008005500039000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000102200190000013750000613d00000ff4020000410000001f0130008c0000000001000019000000000102201900000ff404300197000000000504004b000000000200801900000ff40440009c000000000201c0190000001f01300039000b0020000000920000000b0310017f000000400100043d0000000003130019001300000003001d000000400030043f000000000202004b00003dac0000613d0000000001010433000000000201004b0000000002000019000000010200c039000000000221004b00003dac0000c13d000000000101004b000014e20000613d00000014020000290000001a0120006b000014e40000c13d0000001601000029001000240010003d0000000d0100006b000016650000c13d00000013020000290000001701200029000000400010043f0000001a01000029000000000212043600000018040000290000001f0340018f00000002010003670000000504400272000010fe0000613d00000019050000290000002005500039000000000551034f000000000600001900000005076002100000000008720019000000000775034f000000000707043b00000000007804350000000106600039000000000746004b000010f60000413d000000000303004b000011000000613d00000018022000290000000000020435000000400300043d0000000e02300029000000400020043f0000001a02000029001800000003001d00000000022304360000000f040000290000001f0340018f0000000504400272000011160000613d0000001001100360000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b0000110e0000413d000000000103004b000011180000613d0000000f012000290000000000010435000000400100043d000000a002100039000000400020043f000000800210003900000060030000390000000000320435000000600210003900000000003204350000004002100039000000000032043500000020021000390000000000320435001100000003001d0000000000310435000000150100002900000000001004350000000301000039001600000001001d000000200010043f00000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000400300043d000000c004300039001b00000001001d000000000101041a00000005021002100000000002240019000000400020043f001200000003001d000000a003300039001a00000003001d0000000000130435000000000101004b0000115c0000613d001700000002001d001900000004001d0000001b01000029000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b00000019030000290000001704000029000000000201041a00000fe70220019700000000032304360000000101100039000000000234004b000011560000213d00000012010000290000001a020000290000000001210436001a00000001001d0000001b010000290000000101100039000000000201041a0000000503200210000000400400043d00000020054000390000000003350019000000400030043f001900000004001d0000000000240435000000000202004b000011810000613d001400000003001d001700000005001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b00000017030000290000001404000029000000000201041a00000000032304360000000101100039000000000234004b0000117c0000213d0000001a01000029000000190200002900000000002104350000001b010000290000000201100039000000000201041a0000000503200210000000400400043d00000020054000390000000003350019000000400030043f001a00000004001d0000000000240435000000000202004b000011a50000613d001700000003001d001900000005001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b00000019030000290000001704000029000000000201041a00000000032304360000000101100039000000000234004b000011a00000213d000000120100002900000040011000390000001a0200002900000000002104350000001b010000290000000301100039000000000201041a0000000503200210000000400400043d00000020054000390000000003350019000000400030043f001a00000004001d0000000000240435000000000202004b000011ca0000613d001700000003001d001900000005001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b00000019030000290000001704000029000000000201041a00000000032304360000000101100039000000000234004b000011c50000213d000000120100002900000060011000390000001a0200002900000000002104350000001b010000290000000401100039000000000201041a0000000503200210000000400400043d00000020054000390000000003350019000000400030043f001b00000004001d0000000000240435000000000202004b000011ef0000613d001900000003001d001a00000005001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a030000290000001904000029000000000201041a00000000032304360000000101100039000000000234004b000011ea0000213d000000120100002900000080011000390000001b02000029000000000021043500000013010000290000000001010433001000000001001d000000000101004b000016960000613d000f80020000003d001b00000000001d000012040000013d000000000101043b0000001a011000290000001702000029000000000021041b0000001b020000290000000102200039001b00000002001d000000100120006c000016960000813d000000130100002900000000010104330000001b0110006b000016620000813d000000180100002900000000010104330000001b0110006b000016620000813d0000001b01000029000000050110021000000020011000390000001802100029000000130110002900000000010104330000000005020433000000000200041000000fe702200197000000400300043d000000440430003900000000002404350000002402300039000000150400002900000000004204350000006402300039001700000005001d0000000000520435000000400400043d0000000002420049001900000004001d00000000042404360000008402300039000000400020043f00000000020404330000100e0220019700001038022001c7001400000004001d00000000002404350000100b02000041000000000020043900000fe701100197001a00000001001d0000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c70000000f020000293f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000201004b000006f20000613d0000100c0110009c000006f20000613d000000400100043d00000019020000290000000002020433000000000302004b0000124e0000613d0000000003000019000000140600002900000000041300190000000005630019000000000505043300000000005404350000002003300039000000000423004b000012430000413d000000000323004b0000124e0000a13d00000000031200190000000000030435000000400400043d00000000030004140000001a05000029000000040550008c000012560000c13d000000010200003900000001040000310000126b0000013d0000000001120019000000000141004900000fe60240009c00000fe6050000410000000004058019000000400240021000000fe60410009c00000000010580190000006001100210000000000121019f00000fe60230009c0000000003058019000000c002300210000000000121019f0000001a020000293f933f890000040f000000010220018f0003000000010355000000600110027000010fe60010019d00000fe6041001970000008001000039000000000304004b0000001103000029000012900000613d0000003f014000390000000b0110017f000000400300043d0000000001130019000000400010043f000000000143043600000003050003670000000506400272000012810000613d000000000700001900000005087002100000000009810019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b000012790000413d0000001f04400190000012900000613d0000000506600210000000000565034f00000000066100190000000304400210000000000706043300000000074701cf000000000747022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000474019f0000000000460435000000000202004b00000d8c0000613d0000000002030433000000000302004b000012a90000613d0000001f0320008c00000ff4050000410000000003000019000000000305201900000ff402200197000000000402004b0000000004000019000000000405401900000ff40220009c000000000403c019000000000204004b00003dac0000613d0000000001010433000000000201004b0000000002000019000000010200c039000000000221004b00003dac0000c13d000000000101004b00000dad0000613d000000120100002900000000010104330000000021010434000000000301004b0000001a04000029000012b90000613d000000000500001900000005035002100000000003320019000000000303043300000fe703300197000000000343004b000013470000613d0000000105500039000000000315004b000012b00000413d000000150100002900000000001004350000001601000029000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000201043b000000000102041a001400000001001d0000000101100039000000000012041b001900000002001d0000000000200435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001401100029000000000201041a00000fe8022001970000001a022001af000000000021041b00000019010000290000000101100039000000000201041a001a00000002001d0000000102200039000000000021041b0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a01100029000000000001041b00000019010000290000000201100039000000000201041a001a00000002001d0000000102200039000000000021041b0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a01100029000000000001041b00000019010000290000000301100039000000000201041a001a00000002001d0000000102200039000000000021041b0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a01100029000000000001041b00000019010000290000000401100039000000000201041a001a00000002001d0000000102200039000000000021041b0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a01100029000000000001041b000000150100002900000000001004350000001601000029000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a001a0001002000920000000201100039000000000201041a0000001a0220006b000016620000813d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f0000000102200190000011fb0000c13d00003dac0000013d001a00000005001d000000150100002900000000001004350000001601000029000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000000201100039001900000001001d000000000101041a0000001a0110006b000016620000813d00000019010000290000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a01100029000000000301041a0000001702300029000000000332004b000000000300001900000001030040390000000103300190000038630000c13d0000001903000029000000000303041a0000001a0330006b000016620000813d000000000021041b000011ff0000013d0000001f0430018f0000000502300272000013800000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b000013790000413d000000000504004b0000138e0000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f950001043000000016050000290000001702500069000000040220003900000fe60300004100000fe60450009c00000000040300190000000004054019000000400440021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f0000001a020000293f933f8e0000040f00000016090000290000000003010019000000600330027000000fe603300197000000200430008c000000000503001900000020050080390000001f0450018f0000000505500272000013b50000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000013ad0000413d000000000604004b000013c40000613d0000000505500210000000000651034f00000016055000290000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000102200190000014c70000613d00000ff4040000410000001f0130008c0000000001000019000000000104201900000ff402300197000000000502004b000000000400801900000ff40220009c000000000401c0190000001f01300039000000180110017f000000400200043d0000000001210019000000400010043f000000000304004b00003dac0000613d0000000002020433000500000002001d000000020220008c00003dac0000813d000000a002100039000000400020043f000000800210003900000060030000390000000000320435000000600210003900000000003204350000004002100039000000000032043500000020021000390000000000320435000b00000003001d00000000003104350000001a0100002900000000001004350000000301000039000400000001001d000000200010043f00000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000400300043d000000c004300039001700000001001d000000000101041a00000005021002100000000002240019000000400020043f001600000003001d000000a003300039001400000003001d0000000000130435000000000101004b0000141d0000613d001200000002001d001300000004001d0000001701000029000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b00000013030000290000001204000029000000000201041a00000fe70220019700000000032304360000000101100039000000000234004b000014170000213d000000160100002900000014020000290000000001210436001400000001001d00000017010000290000000101100039000000000201041a0000000503200210000000400400043d00000020054000390000000003350019000000400030043f001300000004001d0000000000240435000000000202004b000014420000613d001100000003001d001200000005001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b00000012030000290000001104000029000000000201041a00000000032304360000000101100039000000000234004b0000143d0000213d00000014010000290000001302000029000000000021043500000017010000290000000201100039000000000201041a0000000503200210000000400400043d00000020054000390000000003350019000000400030043f001400000004001d0000000000240435000000000202004b000014660000613d001200000003001d001300000005001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b00000013030000290000001204000029000000000201041a00000000032304360000000101100039000000000234004b000014610000213d000000160100002900000040011000390000001402000029000000000021043500000017010000290000000301100039000000000201041a0000000503200210000000400400043d00000020054000390000000003350019000000400030043f001400000004001d0000000000240435000000000202004b0000148b0000613d001200000003001d001300000005001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b00000013030000290000001204000029000000000201041a00000000032304360000000101100039000000000234004b000014860000213d000000160100002900000060011000390000001402000029000000000021043500000017010000290000000401100039000000000201041a0000000503200210000000400400043d00000020054000390000000003350019000000400030043f001700000004001d0000000000240435000000000202004b000014b00000613d001300000003001d001400000005001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b00000014030000290000001304000029000000000201041a00000000032304360000000101100039000000000234004b000014ab0000213d00000016010000290000008001100039000000170200002900000000002104350000001901000029000000000101041a0000ff00021001900000313e0000c13d00000016020000290000000002020433000600000002001d0000000023020434000100000002001d000300000003001d000000000203004b0000194a0000c13d000000400100043d00000044021000390000104203000041000000000032043500000024021000390000001203000039000007550000013d0000001f0430018f0000000502300272000014d20000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b000014cb0000413d000000000504004b000014e00000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f950001043000000013030000290000107d0000013d0000001303000029000010840000013d000f80020000003d0000000002000019000014ee0000013d000000000021041b0000001b020000290000000102200039000000100120006c00000f740000813d00000017010000290000000001010433001b00000002001d000000000112004b000016620000813d000000160100002900000000010104330000001b0110006b000016620000813d0000001b01000029000000050110021000000020011000390000001602100029000000170110002900000000010104330000000005020433000000000200041000000fe702200197000000400300043d000000440430003900000000002404350000002402300039000000180400002900000000004204350000006402300039001400000005001d0000000000520435000000400400043d0000000002420049001500000004001d00000000042404360000008402300039000000400020043f00000000020404330000100e0220019700001038022001c7001900000004001d00000000002404350000100b02000041000000000020043900000fe701100197001a00000001001d0000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c70000000f020000293f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000201004b000006f20000613d0000100c0110009c000006f20000613d000000400100043d00000015020000290000000006020433000000000306004b0000001a0200002900000019070000290000153a0000613d000000000300001900000000041300190000000005730019000000000505043300000000005404350000002003300039000000000463004b0000152f0000413d000000000363004b0000153a0000a13d00000000031600190000000000030435000000400400043d0000000003000414000000040520008c000015410000c13d00000001040000310000000d02000029000015550000013d0000000001160019000000000141004900000fe60540009c00000fe6050000410000000004058019000000400640021000000fe60410009c00000000010580190000006001100210000000000161019f00000fe60430009c0000000003058019000000c003300210000000000131019f3f933f890000040f000000010220018f0003000000010355000000600110027000010fe60010019d00000fe6041001970000008001000039000000000304004b00000011030000290000157a0000613d0000003f014000390000000e0110017f000000400300043d0000000001130019000000400010043f0000000001430436000000030500036700000005064002720000156b0000613d000000000700001900000005087002100000000009810019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b000015630000413d0000001f044001900000157a0000613d0000000506600210000000000565034f00000000066100190000000304400210000000000706043300000000074701cf000000000747022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000474019f0000000000460435000000000202004b00000d8c0000613d0000000002030433000000000302004b000015930000613d0000001f0320008c00000ff4050000410000000003000019000000000305201900000ff402200197000000000402004b0000000004000019000000000405401900000ff40220009c000000000403c019000000000204004b00003dac0000613d0000000001010433000000000201004b0000000002000019000000010200c039000000000221004b00003dac0000c13d000000000101004b00000dad0000613d000000120100002900000000010104330000000021010434000000000301004b0000001a04000029000015a30000613d000000000500001900000005035002100000000003320019000000000303043300000fe703300197000000000343004b000016350000613d0000000105500039000000000315004b0000159a0000413d000000180100002900000000001004350000001301000029000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000201043b000000000102041a001500000001001d0000000101100039000000000012041b001900000002001d0000000000200435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001501100029000000000201041a00000fe8022001970000001a022001af000000000021041b00000019010000290000000101100039000000000201041a001a00000002001d0000000102200039000000000021041b0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a01100029000000000001041b00000019010000290000000201100039000000000201041a001a00000002001d0000000102200039000000000021041b0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a01100029000000000001041b00000019010000290000000301100039000000000201041a001a00000002001d0000000102200039000000000021041b0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a01100029000000000001041b00000019010000290000000401100039000000000201041a001a00000002001d0000000102200039000000000021041b0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a01100029000000000001041b000000180100002900000000001004350000001301000029000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a001a0001002000920000000101100039000000000201041a0000001a0220006b000016620000813d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a011000290000001402000029000000000021041b000014ea0000013d001a00000005001d000000180100002900000000001004350000001301000029000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000000101100039001900000001001d000000000101041a0000001a0110006b000016620000813d00000019010000290000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a040000290000000001410019000000000301041a0000001402300029000000000332004b000000000300001900000001030040390000000103300190000038630000c13d0000001903000029000000000303041a000000000334004b000014e90000413d000000010100008a00000000000104350000000000000431000000150100002900000000001004350000000301000039001400000001001d000000200010043f00000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000400400043d000f00200040003d000000000201041a00000005032002100000000f03300029000000400030043f000e00000004001d0000000000240435000000000202004b000016940000613d001900000003001d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000000f020000290000001904000029000000000301041a00000fe70330019700000000023204360000000101100039000000000324004b0000168e0000213d0000001a0100006b000016c70000c13d000000150100002900000000001004350000000401000039001a00000001001d000000200010043f00000fe603000041000000000100041400000fe60210009c0000000001038019000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0018010000000092000000180220017f00000001022001bf000000000021041b0000100001000041000000400200043d001900000002001d000000000012043500000ffc01000041000000400200043d001b00000002001d000000000010043900000015010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001502000029000000040220008c000020d60000c13d00000001030000310000210d0000013d0000001b01000029000d00240010003d000c80020000003d001900000000001d000016d20000013d000000000021041b00000019020000290000000102200039001900000002001d0000001a0120006c000016960000813d00000019020000290000001a0120006c000016620000813d00000019010000290000000502100210001700000002001d0000000d022000290000000201000367000000000221034f000000000202043b001b0fe70020019b00000ff50220009c00003dac0000813d00000017030000290000001002300029000000000121034f000000000401043b000000000100041000000fe701100197000000400200043d000000440320003900000000001304350000002401200039000000150300002900000000003104350000006401200039001600000004001d0000000000410435000000400300043d0000000001310049001800000003001d00000000031304360000008401200039000000400010043f00000000010304330000100e0110019700001038011001c7001300000003001d00000000001304350000100b0100004100000000001004390000001b010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c70000000c020000293f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000201004b000006f20000613d0000100c0110009c000006f20000613d000000400100043d00000018020000290000000002020433000000000302004b0000171d0000613d0000000003000019000000130600002900000000041300190000000005630019000000000505043300000000005404350000002003300039000000000423004b000017120000413d000000000323004b0000171d0000a13d00000000031200190000000000030435000000400400043d00000000030004140000001b05000029000000040550008c000017250000c13d00000001040000310000000a020000290000173a0000013d0000000001120019000000000141004900000fe60240009c00000fe6050000410000000004058019000000400240021000000fe60410009c00000000010580190000006001100210000000000121019f00000fe60230009c0000000003058019000000c002300210000000000121019f0000001b020000293f933f890000040f000000010220018f0003000000010355000000600110027000010fe60010019d00000fe60410019700000060030000390000008001000039000000000504004b0000175f0000613d0000003f014000390000000b0110017f000000400300043d0000000001130019000000400010043f000000000143043600000003050003670000000506400272000017500000613d000000000700001900000005087002100000000009810019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b000017480000413d0000001f044001900000175f0000613d0000000506600210000000000565034f00000000066100190000000304400210000000000706043300000000074701cf000000000747022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000474019f0000000000460435000000000202004b00000d8c0000613d0000000002030433000000000302004b000017780000613d0000001f0320008c00000ff4050000410000000003000019000000000305201900000ff402200197000000000402004b0000000004000019000000000405401900000ff40220009c000000000403c019000000000204004b00003dac0000613d0000000001010433000000000201004b0000000002000019000000010200c039000000000221004b00003dac0000c13d000000000101004b00000dad0000613d0000000e010000290000000001010433000000000201004b0000000f030000290000001b04000029000017880000613d000000000500001900000005025002100000000002230019000000000202043300000fe702200197000000000242004b000018540000613d0000000105500039000000000215004b0000177f0000413d000000150100002900000000001004350000001401000029000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000201043b000000000102041a001300000001001d0000000101100039000000000012041b001800000002001d0000000000200435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001301100029000000000201041a00000fe8022001970000001b022001af000000000021041b00000018010000290000000101100039000000000201041a001b00000002001d0000000102200039000000000021041b0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b01100029000000000001041b00000018010000290000000201100039000000000201041a001b00000002001d0000000102200039000000000021041b0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b01100029000000000001041b00000018010000290000000301100039000000000201041a001b00000002001d0000000102200039000000000021041b0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b01100029000000000001041b00000018010000290000000401100039000000000201041a001b00000002001d0000000102200039000000000021041b0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b01100029000000000001041b0000001902000029000000120120006c000016620000813d00000017020000290000001101200029001b00000001001d0000000201100367000000000101043b001800000001001d000000150100002900000000001004350000001401000029000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a00170001002000920000000301100039000000000201041a000000170220006b000016620000813d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b00000017011000290000001802000029000000000021041b0000001b010000290000000201100367000000000401043b000000400200043d0000004001200039000000400010043f0000002001200039000010050300004100000000003104350000001e030000390000000000320435001b00000004001d000000160340006b000021740000413d000000150100002900000000001004350000001401000029000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a00180001002000920000000401100039000000000201041a000000180220006b000016620000813d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d0000001b030000290000001602300069000000000101043b0000001801100029000000000021041b000016cd0000013d001b00000005001d0000001902000029000000120120006c000016620000813d00000017020000290000001101200029001300000001001d0000000201100367000000000101043b001700000001001d000000150100002900000000001004350000001401000029000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000000301100039001800000001001d000000000101041a0000001b0110006b000016620000813d00000018010000290000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b01100029000000000301041a0000001702300029000000000332004b000000000300001900000001030040390000000103300190000038630000c13d0000001803000029000000000303041a0000001b0330006b000016620000813d000000000021041b00000013010000290000000201100367000000000401043b000000400200043d0000004001200039000000400010043f0000002001200039000010050300004100000000003104350000001e030000390000000000320435001700000004001d000000160340006b0000218d0000413d000000150100002900000000001004350000001401000029000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000000401100039001800000001001d000000000101041a0000001b0110006b000016620000813d00000018010000290000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d00000017030000290000001602300069000000000101043b0000001b01100029000000000301041a0000000002230019000000000332004b000000000300001900000001030040390000000103300190000038630000c13d0000001803000029000000000303041a0000001b0330006b000016cc0000413d000016620000013d0000001a050000290000001902500069000000040220003900000fe60300004100000fe60450009c00000000040300190000000004054019000000400440021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f00000018020000293f933f8e0000040f0000001a090000290000000003010019000000600330027000000fe603300197000000200430008c000000000503001900000020050080390000001f0450018f0000000505500272000018eb0000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000018e30000413d000000000604004b000018fa0000613d0000000505500210000000000651034f0000001a055000290000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000102200190000019500000613d00000ff4020000410000001f0130008c0000000001000019000000000102201900000ff404300197000000000504004b000000000200801900000ff40440009c000000000201c0190000001f013000390000000e0310017f000000400100043d0000000003130019000000400030043f000000000202004b00003dac0000613d0000000001010433000000020210008c00003dac0000813d000000010110008c000000670000c13d000000180100002900000000001004350000001b01000029000000200010043f00000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b001900000001001d000000000101041a000000ff01100190000000670000613d0000000101000039001500000001001d000000000101041a000000400300043d00000ffb020000410000000000230435001600000003001d000000040230003900000018030000290000000000320435000000400200043d001b00000002001d00000ffc02000041000000000020043900000fe701100197001a00000001001d000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001a02000029000000040220008c000021c20000c13d0000000103000031000021f90000013d000000ff021001900000196b0000c13d000000400100043d00000044021000390000104103000041000038660000013d0000001f0430018f00000005023002720000195b0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b000019540000413d000000000504004b000019690000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f9500010430000001000200008a000000000121016f0000001902000029000000000012041b0000000301000029000010020110009c00003dac0000813d000000400200043d0000000305000029000000000452043600000005015002100000002003100039000a00000002001d0000000001320019000000400010043f000000000100003100000002011003670000100302500198000019870000613d000000000500001900000005065002100000000007640019000000000661034f000000000606043b00000000006704350000000105500039000000000625004b0000197f0000413d000000000400004b000019890000613d000000400500043d00000003040000290000000004450436000900000005001d0000000005350019000000400050043f000000000502004b0000199a0000613d000000000500001900000005065002100000000007640019000000000661034f000000000606043b00000000006704350000000105500039000000000625004b000019920000413d000000000400004b0000199c0000613d000000400500043d00000003040000290000000004450436000800000005001d0000000005350019000000400050043f000000000502004b000019ad0000613d000000000500001900000005065002100000000007640019000000000661034f000000000606043b00000000006704350000000105500039000000000625004b000019a50000413d000000000400004b000019af0000613d000000400500043d00000003040000290000000004450436000700000005001d0000000003350019000000400030043f000000000302004b000019c00000613d000000000300001900000005053002100000000006540019000000000551034f000000000505043b00000000005604350000000103300039000000000523004b000019b80000413d000000000100004b000019c20000613d000280100000003d000e00000000001d000019ca0000013d0000000e020000290000000102200039000e00000002001d000000030120006c000022630000813d000000060100002900000000010104330000000e0110006b000016620000813d0000000e0100002900000005011002100000002002100039001300000002001d00000006012000290000000001010433000c00000001001d000000400100043d000000a002100039000000400020043f00000080021000390000000b03000029000000000032043500000060021000390000000000320435000000400210003900000000003204350000002002100039000000000032043500000000003104350000001a0100002900000000001004350000000401000029000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700000002020000293f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000400300043d000000c004300039001600000001001d000000000101041a0000000502100210001900000004001d0000000002240019001700000002001d000000400020043f001400000003001d000000a002300039001200000002001d0000000000120435000000000101004b00001a130000613d00000016010000290000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a00000fe702200197000000190300002900000000032304360000000101100039001900000003001d000000170230006b00001a0b0000213d000000140100002900000012020000290000000001210436001200000001001d00000016010000290000000101100039000000000201041a0000000503200210000000400400043d001900200040003d0000001903300029001700000003001d000000400030043f001100000004001d0000000000240435000000000202004b00001a360000613d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a000000190300002900000000032304360000000101100039001900000003001d000000170230006b00001a2f0000213d00000012010000290000001102000029000000000021043500000016010000290000000201100039000000000201041a0000000503200210000000400400043d001900200040003d0000001903300029001700000003001d000000400030043f001100000004001d0000000000240435000000000202004b00001a580000613d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a000000190300002900000000032304360000000101100039001900000003001d000000170230006b00001a510000213d00000014010000290000004001100039001000000001001d0000001102000029000000000021043500000016010000290000000301100039000000000201041a0000000503200210000000400400043d001900200040003d0000001903300029001700000003001d000000400030043f001100000004001d0000000000240435000000000202004b00001a7c0000613d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a000000190300002900000000032304360000000101100039001900000003001d000000170230006b00001a750000213d00000014010000290000006001100039000d00000001001d0000001102000029000000000021043500000016010000290000000401100039000000000201041a0000000503200210000000400400043d001900200040003d0000001903300029001700000003001d000000400030043f001600000004001d0000000000240435000000000202004b00001aa00000613d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a000000190300002900000000032304360000000101100039001900000003001d000000170230006b00001a990000213d000000140100002900000080021000390000001603000029000000000032043500000000010104330000000001010433000000000101004b000f00000000001d000000000300001900000000050000190000000004000019000000000100001900001b230000613d0000001201000029000000000301043300000000010304330000000e0110006b000016620000813d0000000601000039000000000101041a00000013033000290000000004030433000000000304004b000000000300001900001abf0000613d0000000703000039000000000503041a00000000635400a900000000644300d9000000000454004b000038500000c13d000000400600043d0000004004600039000000400040043f0000002005600039000010040400004100000000004504350000001a040000390000000000460435000000000701004b000022f50000613d0000001005000029000000000505043300000000060504330000000e0660006b000016620000813d00000013055000290000000006050433000000000506004b000000000500001900001ad90000613d0000000805000039000000000705041a00000000857600a900000000866500d9000000000676004b000038500000c13d000000400600043d0000004007600039000000400070043f00000020076000390000100408000041000000000087043500000000004604350000000d06000029000000000606043300000000070604330000000e0770006b000016620000813d00000013066000290000000007060433000000000607004b000000000600001900001af00000613d0000000906000039000000000806041a00000000968700a900000000977600d9000000000787004b000038500000c13d000000400700043d0000004008700039000000400080043f0000002008700039000010040900004100000000009804350000000000470435000000000202043300000000070204330000000e0770006b000016620000813d00000013022000290000000007020433000000000207004b000000000200001900001b060000613d0000000a02000039000000000802041a00000000928700a900000000977200d9000000000787004b000038500000c13d00000000731300d900000000751500d9000000400700043d0000004008700039000000400080043f00000020087000390000100409000041000000000098043500000000004704350000000007350019000000000457004b000000000400001900000001040040390000000104400190000038630000c13d00000000641600d900000000211200d90000000002740019000000000642004b00000000060000190000000106004039000f00000021001d0000000f0210006b000000000200001900000001020040390000000106600190000038630000c13d0000000102200190000038630000c13d0000000a0200002900000000020204330000000e0220006b000016620000813d000000090200002900000000020204330000000e0220006b000016620000813d000000080200002900000000020204330000000e0220006b000016620000813d000000070200002900000000020204330000000e0220006b000016620000813d00000013080000290000000a0280002900000009068000290000000707800029000000000017043500000008018000290000000000410435000000000056043500000000003204350000000501000029000000010110008c00001c260000613d000000400200043d0000100001000041001700000002001d0000000000120435000000400100043d001900000001001d00000ffc0100004100000000001004390000001a010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001a02000029000000040220008c00001b5b0000c13d000000010300003100001b910000013d00000019040000290000001702400069000000040220003900000fe60340009c00000fe60500004100000000030500190000000003044019000000400330021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f0000001a020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c00000000050300190000002005008039000000050450027200001b7e0000613d000000000600001900000005076002100000001908700029000000000771034f000000000707043b00000000007804350000000106600039000000000746004b00001b760000413d0000001f0550019000001b8d0000613d0000000504400210000000000641034f00000019044000290000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000102200190000023cd0000613d0000001f0130008c00000ff4050000410000000001000019000000000105201900000ff402300197000000000402004b0000000004000019000000000405401900000ff40220009c000000000401c0190000001f01300039000000180110017f000000400200043d0000000001210019000000400010043f000000000304004b00003dac0000613d0000000002020433000000020320008c00003dac0000813d000000010220008c0000237b0000613d0000004002100039000000400020043f00000020021000390000000b03000029000000000032043500000000003104350000001a0100002900000000001004350000000501000039000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000400300043d0000006004300039001400000001001d000000000101041a0000000502100210001900000004001d0000000002240019001700000002001d000000400020043f001600000003001d0000004002300039001300000002001d0000000000120435000000000101004b00001bde0000613d00000014010000290000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a00000fe702200197000000190300002900000000032304360000000101100039001900000003001d000000170230006b00001bd60000213d000000160100002900000013020000290000000001210436001300000001001d00000014010000290000000101100039000000000201041a0000000503200210000000400500043d001400200050003d0000001403300029001900000003001d000000400030043f001700000005001d0000000000250435000000000202004b00001c000000613d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001402000029000000000301041a00000000023204360000000101100039000000190320006b00001bfb0000213d000000170100002900000013020000290000000000120435000000160100002900000000010104330000000021010434000000000301004b000000000300001900001c1b0000613d00000000040000190000000503400210000000000532001900000000050504330000000c0550014f00000fe70550019800001c150000613d0000000104400039000000000314004b000000000300001900001c0a0000413d00001c1b0000013d00000017010000290000000001010433000000000114004b000016620000813d00000014013000290000000003010433000000400200043d0000004001200039000000400010043f0000002001200039000010050400004100000000004104350000001e0400003900000000004204350000000f0430006b0000237c0000413d000f000f003000710000000f0100006b000019c50000613d000000400200043d0000100001000041001700000002001d0000000000120435000000400100043d001900000001001d00000ffc0100004100000000001004390000001a010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001a02000029000000040220008c00001c440000c13d000000010300003100001c7a0000013d00000019040000290000001702400069000000040220003900000fe60340009c00000fe60500004100000000030500190000000003044019000000400330021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f0000001a020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c00000000050300190000002005008039000000050450027200001c670000613d000000000600001900000005076002100000001908700029000000000771034f000000000707043b00000000007804350000000106600039000000000746004b00001c5f0000413d0000001f0550019000001c760000613d0000000504400210000000000641034f00000019044000290000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000102200190000023970000613d0000001f0130008c00000ff4050000410000000001000019000000000105201900000ff402300197000000000402004b0000000004000019000000000405401900000ff40220009c000000000401c0190000001f01300039000000180210017f000000400100043d0000000002120019001900000002001d000000400020043f000000000204004b00003dac0000613d0000000001010433000000020210008c00003dac0000813d000000010110008c00001cd20000c13d0000000201000039000000000101041a00000fe70110019700000019030000290000002402300039000000000012043500000044013000390000000f020000290000000000210435000000400200043d0000000001210049001600000002001d00000000021204360000006401300039000000400010043f00000000010204330000100e011001970000100f011001c7001900000002001d00000000001204350000100b0100004100000000001004390000000c0100002900000fe701100197001700000001001d0000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000201004b000006f20000613d0000100c0110009c000006f20000613d000000400100043d00000016020000290000000002020433000000000302004b00001cca0000613d000000000300001900000000041300190000001905300029000000000505043300000000005404350000002003300039000000000423004b00001cbf0000413d000000000323004b00001cca0000a13d00000000031200190000000000030435000000400400043d00000000030004140000001705000029000000040550008c00001d800000c13d0000000102000039000000010400003100001d950000013d000010070100004100000019020000290000000000120435000000400100043d001700000001001d00000ffc0100004100000000001004390000001a010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001a02000029000000040220008c00001cee0000c13d0000000301000367000000010300003100001d060000013d00000017040000290000001902400069000000040220003900000fe60340009c00000fe6050000410000000004058019000000400340021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f0000001a020000293f933f8e0000040f0000000003010019000000600330027000010fe60030019d00000fe60330019700030000000103550000000102200190000025840000613d000000400200043d000000050430027200001d120000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00001d0a0000413d0000001f0530019000001d210000613d0000000504400210000000000141034f00000000044200190000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130008c00000ff4060000410000000001000019000000000106201900000ff404300197000000000504004b0000000005000019000000000506401900000ff40440009c000000000501c0190000001f01300039000000180110017f0000000001210019001400000001001d000000400010043f000000000105004b00003dac0000613d0000000001020433000010020410009c00003dac0000813d000000000332001900000000012100190000001f02100039000000000432004b00000ff4070000410000000004000019000000000407401900000ff40220019700000ff405300197000000000652004b00000000060000190000000006072019000000000252013f00000ff40220009c000000000604c019000000000206004b00003dac0000613d0000000002010433000010020420009c00003dac0000813d000000050420021000000020044000390000001405400029000010080650009c00003dac0000213d000000140650006c00003dac0000413d000000400050043f000000140500002900000000002504350000000004140019000000000334004b00003dac0000213d000000000302004b00001d630000613d000000140300002900000000040000190000002001100039000000000501043300000ff50650009c00003dac0000813d000000200330003900000000005304350000000104400039000000000524004b00001d5a0000413d000000400200043d0000100901000041001700000002001d0000000000120435000000400100043d001900000001001d00000ffc0100004100000000001004390000001a010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001a02000029000000040220008c00001dd40000c13d0000000301000367000000010300003100001dec0000013d0000000001120019000000000141004900000fe60240009c00000fe6050000410000000004058019000000400240021000000fe60410009c00000000010580190000006001100210000000000121019f00000fe60230009c0000000003058019000000c002300210000000000121019f00000017020000293f933f890000040f000000010220018f0003000000010355000000600110027000010fe60010019d00000fe60410019700000060030000390000008001000039000000000504004b00001dba0000613d0000003f01400039000000180110017f000000400300043d0000000001130019000000400010043f00000000014304360000000305000367000000050640027200001dab0000613d000000000700001900000005087002100000000009810019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b00001da30000413d0000001f0440019000001dba0000613d0000000506600210000000000565034f00000000066100190000000304400210000000000706043300000000074701cf000000000747022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000474019f0000000000460435000000000202004b00000d8c0000613d0000000002030433000000000302004b000019c50000613d0000001f0320008c00000ff4050000410000000003000019000000000305201900000ff402200197000000000402004b0000000004000019000000000405401900000ff40220009c000000000403c019000000000204004b00003dac0000613d0000000001010433000000000201004b0000000002000019000000010200c039000000000221004b00003dac0000c13d000000000101004b000019c50000c13d00000dad0000013d00000019040000290000001702400069000000040220003900000fe60340009c00000fe6050000410000000004058019000000400340021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f0000001a020000293f933f8e0000040f0000000003010019000000600330027000010fe60030019d00000fe603300197000300000001035500000001022001900000259f0000613d000000400200043d000000050430027200001df80000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00001df00000413d0000001f0530019000001e070000613d0000000504400210000000000141034f00000000044200190000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130008c00000ff4060000410000000001000019000000000106201900000ff404300197000000000504004b0000000005000019000000000506401900000ff40440009c000000000501c0190000001f01300039000000180110017f0000000001210019001300000001001d000000400010043f000000000105004b00003dac0000613d0000000001020433000010020410009c00003dac0000813d000000000332001900000000012100190000001f02100039000000000432004b00000ff4070000410000000004000019000000000407401900000ff40220019700000ff405300197000000000652004b00000000060000190000000006072019000000000252013f00000ff40220009c000000000604c019000000000206004b00003dac0000613d0000000002010433000010020420009c00003dac0000813d000000050420021000000020044000390000001305400029000010080650009c00003dac0000213d000000130650006c00003dac0000413d000000400050043f000000130500002900000000002504350000000004140019000000000334004b00003dac0000213d000000000302004b00001e470000613d0000001303000029000000000400001900000020033000390000002001100039000000000501043300000000005304350000000104400039000000000524004b00001e400000413d000000400200043d0000100a01000041001700000002001d0000000000120435000000400100043d001900000001001d00000ffc0100004100000000001004390000001a010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001a02000029000000040220008c00001e630000c13d000000010300003100001e990000013d00000019040000290000001702400069000000040220003900000fe60340009c00000fe60500004100000000030500190000000003044019000000400330021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f0000001a020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c00000000050300190000002005008039000000050450027200001e860000613d000000000600001900000005076002100000001908700029000000000771034f000000000707043b00000000007804350000000106600039000000000746004b00001e7e0000413d0000001f0550019000001e950000613d0000000504400210000000000641034f00000019044000290000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000102200190000025ba0000613d0000001f0130008c00000ff4050000410000000001000019000000000105201900000ff402300197000000000402004b0000000004000019000000000405401900000ff40220009c000000000401c0190000001f01300039000000180210017f000000400100043d0000000002120019000000400020043f000000000204004b00003dac0000613d00000014020000290000000002020433000000000202004b0000201d0000613d0000000001010433001200000001001d0000000c0100002900160fe70010019b001900000000001d000000190100002900000005011002100000002002100039001100000002001d0000001401200029001700000001001d00000000010104330000100b02000041000000000020043900000fe7011001970000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000201004b00001ecc0000613d0000100c0110009c00001ed30000c13d00000014010000290000000001010433000000190110006b000016620000813d0000001701000029000000000201043300001f400000013d00000014010000290000000001010433000000190110006b000016620000813d00000017010000290000000001010433000000400300043d0000100d02000041000d00000003001d0000000000230435000000400200043d001700000002001d00000ffc02000041000000000020043900000fe701100197001000000001001d0000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001002000029000000040220008c00001ef60000c13d000000010300003100001f2c0000013d00000017040000290000000d02400069000000040220003900000fe60340009c00000fe60500004100000000030500190000000003044019000000400330021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f00000010020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c00000000050300190000002005008039000000050450027200001f190000613d000000000600001900000005076002100000001708700029000000000771034f000000000707043b00000000007804350000000106600039000000000746004b00001f110000413d0000001f0550019000001f280000613d0000000504400210000000000641034f00000017044000290000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000102200190000022480000613d0000001f0130008c00000ff4050000410000000001000019000000000105201900000ff402300197000000000402004b0000000004000019000000000405401900000ff40220009c000000000401c0190000001f01300039000000180210017f000000400100043d0000000002120019000000400020043f000000000204004b00003dac0000613d000000000201043300000ff50120009c00003dac0000813d00000013010000290000000001010433000000190110006b000016620000813d0000001103000029000000130130002900000000010104330000000f341000b90000000f534000fa000000000113004b000038500000c13d000000400500043d0000004001500039000000400010043f0000002003500039000010040100004100000000001304350000001a010000390000000000150435000000400600043d00000044016000390000002407600039000000120800006b000021a80000613d00000fe702200197001100000002001d000000000027043500000012234000fa001000000003001d0000000000310435000000400200043d0000000001210049001700000002001d00000000021204360000006401600039000000400010043f00000000010204330000100e011001970000100f011001c7000d00000002001d00000000001204350000100b01000041000000000010043900000016010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000201004b000006f20000613d0000100c0110009c000006f20000613d000000400100043d00000017020000290000000002020433000000000302004b00001f8d0000613d00000000030000190000000d0600002900000000041300190000000005630019000000000505043300000000005404350000002003300039000000000423004b00001f820000413d000000000323004b00001f8d0000a13d00000000031200190000000000030435000000400400043d00000000030004140000001605000029000000040550008c00001f950000c13d0000000104000031000000150200002900001faa0000013d0000000001120019000000000141004900000fe60240009c00000fe6050000410000000004058019000000400240021000000fe60410009c00000000010580190000006001100210000000000121019f00000fe60230009c0000000003058019000000c002300210000000000121019f00000016020000293f933f890000040f000000010220018f0003000000010355000000600110027000010fe60010019d00000fe604100197000000000104004b0000001b010000290000000b0300002900001fcf0000613d0000003f01400039000000180110017f000000400300043d0000000001130019000000400010043f00000000014304360000000305000367000000050640027200001fc00000613d000000000700001900000005087002100000000009810019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b00001fb80000413d0000001f0440019000001fcf0000613d0000000506600210000000000565034f00000000066100190000000304400210000000000706043300000000074701cf000000000747022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000474019f0000000000460435000000000202004b00000d8c0000613d0000000002030433000000000302004b00001fe80000613d0000001f0320008c00000ff4050000410000000003000019000000000305201900000ff402200197000000000402004b0000000004000019000000000405401900000ff40220009c000000000403c019000000000204004b00003dac0000613d0000000001010433000000000201004b0000000002000019000000010200c039000000000221004b00003dac0000c13d000000000101004b00000dad0000613d00001010010000410000000000100439000000000100041400000fe60210009c00000fe601008041000000c00110021000001011011001c70000800b020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000400200043d0000004003200039000000000013043500000020012000390000001003000029000000000031043500000016010000290000000000120435000000400100043d000000000212004900000fe60310009c00000fe60400004100000000010480190000004001100210000000600220003900000fe60320009c00000000020480190000006002200210000000000112019f000000000200041400000fe60320009c0000000002048019000000c002200210000000000121019f000000000200041100000fe70520019700001012011001c70000800d02000039000000040300003900001013040000410000001a0600002900000011070000293f933f890000040f000000010120019000003dac0000613d0000001902000029001900010020003d00000014010000290000000001010433000000190110006b00001eb30000413d0000001a0100002900000000001004350000000501000039000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000400400043d0000002003400039001600000001001d000000000101041a0000000502100210001700000003001d0000000002230019001900000002001d000000400020043f001400000004001d0000000000140435000000000101004b0000205b0000613d00000016010000290000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001702000029000000000301041a00000fe70330019700000000023204360000000101100039000000190320006b000020450000213d00000014010000290000000001010433000000000201004b0000205b0000613d001900000000001d00000019020000290000000502200210000000170220002900000000020204330000000c0220014f00000fe702200198000020b60000613d0000001902000029001900010020003d000000190210006b000020500000413d0000001602000029000000000102041a001900000001001d0000000101100039000000000012041b0000000000200435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001901100029000000000201041a00000fe8022001970000000c0300002900000fe703300197000000000232019f000000000021041b00000016010000290000000101100039000000000201041a001900000002001d0000000102200039000000000021041b0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b00000019011000290000000f02000029000000000021041b00001010010000410000000000100439000000000100041400000fe60210009c00000fe601008041000000c00110021000001011011001c70000800b020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000400200043d0000004003200039000000000013043500000020012000390000000f0300002900000000003104350000000c0100002900000fe7011001970000000000120435000000400100043d000000000212004900000fe60310009c00000fe60400004100000000010480190000004001100210000000600220003900000fe60320009c00000000020480190000006002200210000000000112019f000000000200041400000fe60320009c0000000002048019000000c002200210000000000121019f000000000200041100000fe70520019700001012011001c70000800d02000039000000030300003900001014040000410000001a060000293f933f890000040f0000000101200190000019c50000c13d00003dac0000013d00000016010000290000000101100039001700000001001d000000000101041a000000190110006b000016620000813d00000017010000290000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001901100029000000000301041a0000000f02300029000000000332004b000000000300001900000001030040390000000103300190000038630000c13d0000001703000029000000000303041a000000190330006b000016620000813d000000000021041b000020860000013d0000001b050000290000001902500069000000040220003900000fe60300004100000fe60450009c00000000040300190000000004054019000000400440021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f00000015020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c000000000503001900000020050080390000001f0450018f0000000505500272000020fa0000613d000000000600001900000005076002100000001b08700029000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000020f20000413d000000000604004b000021090000613d0000000505500210000000000651034f0000001b055000290000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000102200190000021590000613d00000ff4020000410000001f0130008c0000000001000019000000000102201900000ff404300197000000000504004b000000000200801900000ff40440009c000000000201c0190000001f013000390000000b0310017f000000400100043d0000000003130019000000400030043f000000000202004b00003dac0000613d0000000001010433000000020210008c00003dac0000813d000000010110008c000000670000c13d000000150100002900000000001004350000001a01000029000000200010043f00000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b001900000001001d000000000101041a000000ff01100190000000670000613d0000000101000039001600000001001d000000000101041a000000400300043d00000ffb020000410000000000230435001700000003001d000000040230003900000015030000290000000000320435000000400200043d001b00000002001d00000ffc02000041000000000020043900000fe701100197001a00000001001d000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001a02000029000000040220008c000023100000c13d0000000103000031000023470000013d0000001f0430018f0000000502300272000021640000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b0000215d0000413d000000000504004b000021720000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f9500010430000000400300043d00000ff60400004100000000004304350000000404300039000000200500003900000000005404350000000002020433000000240430003900000000002404350000004403300039000000000402004b0000218c0000613d000000000400001900000000053400190000000006140019000000000606043300000000006504350000002004400039000000000524004b000021810000413d000000000124004b0000218c0000a13d00000000013200190000000000010435000021a50000013d000000400300043d00000ff60400004100000000004304350000000404300039000000200500003900000000005404350000000002020433000000240430003900000000002404350000004403300039000000000402004b000021a50000613d000000000400001900000000053400190000000006140019000000000606043300000000006504350000002004400039000000000524004b0000219a0000413d000000000124004b000021a50000a13d000000000132001900000000000104350000001f012000390000000b0200002900000e160000013d00000ff602000041000000000026043500000004026000390000002004000039000000000042043500000000020504330000000000270435000000000402004b000021bd0000613d000000000400001900000000051400190000000006340019000000000606043300000000006504350000002004400039000000000524004b000021b20000413d000000000324004b000021bd0000a13d000000000312001900000000000304350000001f022000390000001803000029000000000232016f000000000121001900000fc10000013d0000001b050000290000001602500069000000240220003900000fe60300004100000fe60450009c00000000040300190000000004054019000000400440021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f0000001a020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c000000000503001900000020050080390000001f0450018f0000000505500272000021e60000613d000000000600001900000005076002100000001b08700029000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000021de0000413d000000000604004b000021f50000613d0000000505500210000000000651034f0000001b055000290000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f000300000001035500000001022001900000222d0000613d00000ff4040000410000001f0130008c0000000001000019000000000104201900000ff402300197000000000502004b000000000400801900000ff40220009c000000000401c0190000001f013000390000000e0110017f000000400200043d0000000001210019000000400010043f000000000304004b00003dac0000613d0000000002020433000000000302004b0000000003000019000000010300c039000000000332004b00003dac0000c13d001a00040010003d000000000202004b000022f00000613d00000fff020000410000000000210435000000400100043d001b00000001001d00000ffc0100004100000000001004390000001801000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001802000029000000040220008c000025d50000c13d00000001030000310000260b0000013d0000001f0430018f0000000502300272000022380000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b000022310000413d000000000504004b000022460000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f0000000502300272000022530000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b0000224c0000413d000000000504004b000022610000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000000501000029000000010110008c000000670000c13d00000006010000290000000001010433000000000101004b000023e80000c13d0000001a0100002900000000001004350000000401000029000000200010043f00000fe603000041000000000100041400000fe60210009c0000000001038019000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a001a00000002001d000000000001041b001b00000001001d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a02100029000000000312004b0000228f0000a13d000000000001041b0000000101100039000000000312004b0000228b0000213d0000001b010000290000000101100039000000000201041a001a00000002001d000000000001041b000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a02100029000000000312004b000022a70000a13d000000000001041b0000000101100039000000000312004b000022a30000213d0000001b010000290000000201100039000000000201041a001a00000002001d000000000001041b000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a02100029000000000312004b000022bf0000a13d000000000001041b0000000101100039000000000312004b000022bb0000213d0000001b010000290000000301100039000000000201041a001a00000002001d000000000001041b000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a02100029000000000312004b000022d70000a13d000000000001041b0000000101100039000000000312004b000022d30000213d0000001b010000290000000401100039000000000201041a001b00000002001d000000000001041b000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b02100029000000000312004b000000670000a13d000000000001041b0000000101100039000000000312004b000022eb0000213d000000670000013d00000ff602000041000000000021043500000020020000390000001a0300002900000dd60000013d000000400200043d00000ff60100004100000000001204350000000401200039000000200300003900000000003104350000000001060433000000240320003900000000001304350000004402200039000000000301004b0000230d0000613d000000000300001900000000042300190000000006530019000000000606043300000000006404350000002003300039000000000413004b000023020000413d000000000313004b0000230d0000a13d000000000321001900000000000304350000001f01100039000000180300002900000fbf0000013d0000001b050000290000001702500069000000240220003900000fe60300004100000fe60450009c00000000040300190000000004054019000000400440021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f0000001a020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c000000000503001900000020050080390000001f0450018f0000000505500272000023340000613d000000000600001900000005076002100000001b08700029000000000771034f000000000707043b00000000007804350000000106600039000000000756004b0000232c0000413d000000000604004b000023430000613d0000000505500210000000000651034f0000001b055000290000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000102200190000023b20000613d00000ff4040000410000001f0130008c0000000001000019000000000104201900000ff402300197000000000502004b000000000400801900000ff40220009c000000000401c0190000001f013000390000000b0110017f000000400200043d0000000001210019000000400010043f000000000304004b00003dac0000613d0000000002020433000000000302004b0000000003000019000000010300c039000000000332004b00003dac0000c13d001a00040010003d000000000202004b000022f00000613d00000fff020000410000000000210435000000400100043d001b00000001001d00000ffc0100004100000000001004390000001501000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001502000029000000040220008c000026710000c13d0000000103000031000026a70000013d00000df60000013d000000400300043d00000ff60400004100000000004304350000000404300039000000200500003900000000005404350000000002020433000000240430003900000000002404350000004403300039000000000402004b000023940000613d000000000400001900000000053400190000000006140019000000000606043300000000006504350000002004400039000000000524004b000023890000413d000000000124004b000023940000a13d000000000132001900000000000104350000001f01200039000000180200002900000e160000013d0000001f0430018f0000000502300272000023a20000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b0000239b0000413d000000000504004b000023b00000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f0000000502300272000023bd0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b000023b60000413d000000000504004b000023cb0000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f0000000502300272000023d80000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b000023d10000413d000000000504004b000023e60000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000000201000039001800000001001d000000000501041a000000400100043d00000044021000390000008003000039001700000003001d00000000003204350000101502000041000000000021043500000004021000390000001a030000290000000000320435000000240310003900000000000304350000008403100039000000060400002900000000040404330000000000430435000000a40310003900190fe70050019b000000000504004b000024070000613d00000000050000190000000106000029000000006706043400000fe70770019700000000037304360000000105500039000000000745004b000024010000413d0000000002230049000000640110003900000000002104350000000a0100002900000000010104330000000002130436001b00000002001d000000000201004b0000241b0000613d00000000020000190000000a030000290000002003300039000a00000003001d00000000030304330000001b040000290000000004340436001b00000004001d0000000102200039000000000312004b000024110000413d000000400100043d001600000001001d00000ffc0100004100000000001004390000001901000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001902000029000000040220008c000024490000613d00000016050000290000001b0250006900000fe60300004100000fe60450009c0000000005038019000000400450021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f00000019020000293f933f890000040f0000000003010019000000600330027000010fe60030019d00000fe60330019700030000000103550000000102200190000026560000613d0000001801000029000000000501041a000000400100043d0000004402100039000000170300002900000000003204350000002402100039000000010300003900000000003204350000101502000041000000000021043500000004021000390000001a0300002900000000003204350000000603000029000000000403043300000084031000390000000000430435000000a40310003900190fe70050019b000000000504004b000024670000613d00000000050000190000000106000029000000006706043400000fe70770019700000000037304360000000105500039000000000745004b000024610000413d000000000223004900000064011000390000000000210435000000090100002900000000010104330000000002130436001b00000002001d000000000201004b0000247b0000613d000000000200001900000009030000290000002003300039000900000003001d00000000030304330000001b040000290000000004340436001b00000004001d0000000102200039000000000312004b000024710000413d000000400100043d001600000001001d00000ffc0100004100000000001004390000001901000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001902000029000000040220008c000024a90000613d00000016050000290000001b0250006900000fe60300004100000fe60450009c0000000005038019000000400450021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f00000019020000293f933f890000040f0000000003010019000000600330027000010fe60030019d00000fe6033001970003000000010355000000010220019000002f820000613d0000001803000029000000000503041a000000400100043d000000440210003900000017040000290000000000420435000000240210003900000000003204350000101502000041000000000021043500000004021000390000001a0300002900000000003204350000000603000029000000000403043300000084031000390000000000430435000000a40310003900190fe70050019b000000000504004b000024c60000613d00000000050000190000000106000029000000006706043400000fe70770019700000000037304360000000105500039000000000745004b000024c00000413d000000000223004900000064011000390000000000210435000000080100002900000000010104330000000002130436001b00000002001d000000000201004b000024da0000613d000000000200001900000008030000290000002003300039000800000003001d00000000030304330000001b040000290000000004340436001b00000004001d0000000102200039000000000312004b000024d00000413d000000400100043d001600000001001d00000ffc0100004100000000001004390000001901000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001902000029000000040220008c000025080000613d00000016050000290000001b0250006900000fe60300004100000fe60450009c0000000005038019000000400450021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f00000019020000293f933f890000040f0000000003010019000000600330027000010fe60030019d00000fe603300197000300000001035500000001022001900000386a0000613d0000001801000029000000000501041a000000400100043d0000004402100039000000170300002900000000003204350000002402100039000000040300002900000000003204350000101502000041000000000021043500000004021000390000001a0300002900000000003204350000000603000029000000000403043300000084031000390000000000430435000000a40310003900190fe70050019b000000000504004b000025270000613d000000000500001900000001070000290000000076070434000100000007001d00000fe70660019700000000036304360000000105500039000000000645004b0000251f0000413d000000000223004900000064011000390000000000210435000000070100002900000000010104330000000002130436001b00000002001d000000000201004b0000253b0000613d000000000200001900000007030000290000002003300039000700000003001d00000000030304330000001b040000290000000004340436001b00000004001d0000000102200039000000000312004b000025310000413d000000400100043d001800000001001d00000ffc0100004100000000001004390000001901000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001902000029000000040220008c0000226a0000613d00000018050000290000001b0250006900000fe60300004100000fe60450009c0000000005038019000000400450021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f00000019020000293f933f890000040f0000000003010019000000600330027000010fe60030019d00000fe603300197000300000001035500000001022001900000226a0000c13d0000001f0430018f0000000502300272000025740000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b0000256d0000413d000000000504004b000025820000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f00000005023002720000258f0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b000025880000413d000000000504004b0000259d0000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f0000000502300272000025aa0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b000025a30000413d000000000504004b000025b80000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f0000000502300272000025c50000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b000025be0000413d000000000504004b000025d30000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001b050000290000001a0250006900000fe60300004100000fe60450009c00000000040300190000000004054019000000400440021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f00000018020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c000000000503001900000020050080390000001f0450018f0000000505500272000025f80000613d000000000600001900000005076002100000001b08700029000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000025f00000413d000000000604004b000026070000613d0000000505500210000000000651034f0000001b055000290000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f000300000001035500000001022001900000263b0000613d00000ff4020000410000001f0130008c0000000001000019000000000102201900000ff404300197000000000504004b000000000200801900000ff40440009c000000000201c0190000001f013000390000000e0310017f000000400100043d0000000003130019001a00000003001d000000400030043f000000000202004b00003dac0000613d000000000101043300000ff50110009c00003dac0000813d00001000010000410000001a020000290000000000120435000000400100043d001b00000001001d00000ffc0100004100000000001004390000001801000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001802000029000000040220008c000026f20000c13d0000000103000031000027290000013d0000001f0430018f0000000502300272000026460000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b0000263f0000413d000000000504004b000026540000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f0000000502300272000026610000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b0000265a0000413d000000000504004b0000266f0000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001b050000290000001a0250006900000fe60300004100000fe60450009c00000000040300190000000004054019000000400440021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f00000015020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c000000000503001900000020050080390000001f0450018f0000000505500272000026940000613d000000000600001900000005076002100000001b08700029000000000771034f000000000707043b00000000007804350000000106600039000000000756004b0000268c0000413d000000000604004b000026a30000613d0000000505500210000000000651034f0000001b055000290000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000102200190000026d70000613d00000ff4020000410000001f0130008c0000000001000019000000000102201900000ff404300197000000000504004b000000000200801900000ff40440009c000000000201c0190000001f013000390000000b0310017f000000400100043d0000000003130019001a00000003001d000000400030043f000000000202004b00003dac0000613d000000000101043300000ff50110009c00003dac0000813d00001000010000410000001a020000290000000000120435000000400100043d001b00000001001d00000ffc0100004100000000001004390000001501000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001502000029000000040220008c00002fb80000c13d000000010300003100002fef0000013d0000001f0430018f0000000502300272000026e20000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b000026db0000413d000000000504004b000026f00000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001b050000290000001a02500069000000040220003900000fe60300004100000fe60450009c00000000040300190000000004054019000000400440021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f00000018020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c000000000503001900000020050080390000001f0450018f0000000505500272000027160000613d000000000600001900000005076002100000001b08700029000000000771034f000000000707043b00000000007804350000000106600039000000000756004b0000270e0000413d000000000604004b000027250000613d0000000505500210000000000651034f0000001b055000290000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f0003000000010355000000010220019000002f9d0000613d00000ff4040000410000001f0130008c0000000001000019000000000104201900000ff402300197000000000502004b000000000400801900000ff40220009c000000000401c0190000001f013000390000000e0110017f000000400200043d0000000001210019000000400010043f000000000304004b00003dac0000613d0000000002020433000500000002001d000000020220008c00003dac0000813d000000a002100039000000400020043f000000800210003900000060030000390000000000320435000000600210003900000000003204350000004002100039000000000032043500000020021000390000000000320435000b00000003001d0000000000310435000000180100002900000000001004350000001301000029000000200010043f00000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000400300043d000000c004300039001600000001001d000000000101041a0000000502100210001b00000004001d0000000002240019001a00000002001d000000400020043f001400000003001d000000a002300039001200000002001d0000000000120435000000000101004b0000277d0000613d0000001601000029000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a00000fe7022001970000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b000027750000213d000000140100002900000012020000290000000001210436001200000001001d00000016010000290000000101100039000000000201041a0000000503200210000000400400043d001b00200040003d0000001b03300029001a00000003001d000000400030043f001100000004001d0000000000240435000000000202004b000027a10000613d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b0000279a0000213d00000012010000290000001102000029000000000021043500000016010000290000000201100039000000000201041a0000000503200210000000400400043d001b00200040003d0000001b03300029001a00000003001d000000400030043f001200000004001d0000000000240435000000000202004b000027c40000613d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b000027bd0000213d000000140100002900000040011000390000001202000029000000000021043500000016010000290000000301100039000000000201041a0000000503200210000000400400043d001b00200040003d0000001b03300029001a00000003001d000000400030043f001200000004001d0000000000240435000000000202004b000027e80000613d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b000027e10000213d000000140100002900000060011000390000001202000029000000000021043500000016010000290000000401100039000000000201041a0000000503200210000000400400043d001b00200040003d0000001b03300029001a00000003001d000000400030043f001600000004001d0000000000240435000000000202004b0000280c0000613d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b000028050000213d00000014010000290000008001100039000000160200002900000000002104350000001901000029000000000101041a0000ff00021001900000313e0000c13d00000014020000290000000002020433000600000002001d0000000023020434000200000002001d000400000003001d000000000203004b000014c00000613d000000ff021001900000194c0000613d000000170110017f0000001902000029000000000012041b0000000401000029000010020110009c00003dac0000813d000000400200043d0000000405000029000000000452043600000005015002100000002003100039000700000002001d0000000001320019000000400010043f000000000100003100000002011003670000100302500198000028390000613d000000000500001900000005065002100000000007640019000000000661034f000000000606043b00000000006704350000000105500039000000000625004b000028310000413d000000000400004b0000283b0000613d000000400500043d00000004040000290000000004450436000800000005001d0000000005350019000000400050043f000000000502004b0000284c0000613d000000000500001900000005065002100000000007640019000000000661034f000000000606043b00000000006704350000000105500039000000000625004b000028440000413d000000000400004b0000284e0000613d000000400500043d00000004040000290000000004450436000900000005001d0000000005350019000000400050043f000000000502004b0000285f0000613d000000000500001900000005065002100000000007640019000000000661034f000000000606043b00000000006704350000000105500039000000000625004b000028570000413d000000000400004b000028610000613d000000400500043d00000004040000290000000004450436000a00000005001d0000000003350019000000400030043f000000000302004b000028720000613d000000000300001900000005053002100000000006540019000000000551034f000000000505043b00000000005604350000000103300039000000000523004b0000286a0000413d000000000100004b000028740000613d000380100000003d000d00000000001d0000287c0000013d0000000d020000290000000102200039000d00000002001d000000040120006c000038a00000813d000000060100002900000000010104330000000d0110006b000016620000813d0000000d0100002900000005011002100000002002100039001600000002001d00000006012000290000000001010433000c00000001001d000000400100043d000000a002100039000000400020043f00000080021000390000000b0300002900000000003204350000006002100039000000000032043500000040021000390000000000320435000000200210003900000000003204350000000000310435000000180100002900000000001004350000001301000029000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700000003020000293f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000400300043d000000c004300039001900000001001d000000000101041a0000000502100210001b00000004001d0000000002240019001a00000002001d000000400020043f001700000003001d000000a002300039001400000002001d0000000000120435000000000101004b000028c50000613d00000019010000290000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a00000fe7022001970000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b000028bd0000213d000000170100002900000014020000290000000001210436001400000001001d00000019010000290000000101100039000000000201041a0000000503200210000000400400043d001b00200040003d0000001b03300029001a00000003001d000000400030043f001200000004001d0000000000240435000000000202004b000028e80000613d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b000028e10000213d00000014010000290000001202000029000000000021043500000019010000290000000201100039000000000201041a0000000503200210000000400400043d001b00200040003d0000001b03300029001a00000003001d000000400030043f001200000004001d0000000000240435000000000202004b0000290a0000613d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b000029030000213d00000017010000290000004001100039001100000001001d0000001202000029000000000021043500000019010000290000000301100039000000000201041a0000000503200210000000400400043d001b00200040003d0000001b03300029001a00000003001d000000400030043f001200000004001d0000000000240435000000000202004b0000292e0000613d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b000029270000213d00000017010000290000006001100039001000000001001d0000001202000029000000000021043500000019010000290000000401100039000000000201041a0000000503200210000000400400043d001b00200040003d0000001b03300029001a00000003001d000000400030043f001900000004001d0000000000240435000000000202004b000029520000613d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b0000294b0000213d000000170100002900000080021000390000001903000029000000000032043500000000010104330000000001010433000000000101004b000f00000000001d0000000003000019000000000500001900000000040000190000000001000019000029d50000613d0000001401000029000000000301043300000000010304330000000d0110006b000016620000813d0000000601000039000000000101041a00000016033000290000000004030433000000000304004b0000000003000019000029710000613d0000000703000039000000000503041a00000000635400a900000000644300d9000000000454004b000038500000c13d000000400600043d0000004004600039000000400040043f0000002005600039000010040400004100000000004504350000001a040000390000000000460435000000000701004b00003aae0000613d0000001105000029000000000505043300000000060504330000000d0660006b000016620000813d00000016055000290000000006050433000000000506004b00000000050000190000298b0000613d0000000805000039000000000705041a00000000857600a900000000866500d9000000000676004b000038500000c13d000000400600043d0000004007600039000000400070043f00000020076000390000100408000041000000000087043500000000004604350000001006000029000000000606043300000000070604330000000d0770006b000016620000813d00000016066000290000000007060433000000000607004b0000000006000019000029a20000613d0000000906000039000000000806041a00000000968700a900000000977600d9000000000787004b000038500000c13d000000400700043d0000004008700039000000400080043f0000002008700039000010040900004100000000009804350000000000470435000000000202043300000000070204330000000d0770006b000016620000813d00000016022000290000000007020433000000000207004b0000000002000019000029b80000613d0000000a02000039000000000802041a00000000928700a900000000977200d9000000000787004b000038500000c13d00000000731300d900000000751500d9000000400700043d0000004008700039000000400080043f00000020087000390000100409000041000000000098043500000000004704350000000007350019000000000457004b000000000400001900000001040040390000000104400190000038630000c13d00000000641600d900000000211200d90000000002740019000000000642004b00000000060000190000000106004039000f00000021001d0000000f0210006b000000000200001900000001020040390000000106600190000038630000c13d0000000102200190000038630000c13d000000070200002900000000020204330000000d0220006b000016620000813d000000080200002900000000020204330000000d0220006b000016620000813d000000090200002900000000020204330000000d0220006b000016620000813d0000000a0200002900000000020204330000000d0220006b000016620000813d0000001608000029000000070280002900000008068000290000000a07800029000000000017043500000009018000290000000000410435000000000056043500000000003204350000000501000029000000010110008c00002ad80000613d000000400200043d0000100001000041001a00000002001d0000000000120435000000400100043d001b00000001001d00000ffc01000041000000000010043900000018010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001802000029000000040220008c00002a0d0000c13d000000010300003100002a430000013d0000001b040000290000001a02400069000000040220003900000fe60340009c00000fe60500004100000000030500190000000003044019000000400330021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f00000018020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c00000000050300190000002005008039000000050450027200002a300000613d000000000600001900000005076002100000001b08700029000000000771034f000000000707043b00000000007804350000000106600039000000000746004b00002a280000413d0000001f0550019000002a3f0000613d0000000504400210000000000641034f0000001b044000290000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010220019000003ac90000613d0000001f0130008c00000ff4050000410000000001000019000000000105201900000ff402300197000000000402004b0000000004000019000000000405401900000ff40220009c000000000401c0190000001f013000390000000e0110017f000000400200043d0000000001210019000000400010043f000000000304004b00003dac0000613d0000000002020433000000020320008c00003dac0000813d000000010220008c00000df60000613d0000004002100039000000400020043f00000020021000390000000b0300002900000000003204350000000000310435000000180100002900000000001004350000000501000039000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000400300043d0000006004300039001700000001001d000000000101041a0000000502100210001b00000004001d0000000002240019001a00000002001d000000400020043f001900000003001d0000004002300039001600000002001d0000000000120435000000000101004b00002a900000613d00000017010000290000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a00000fe7022001970000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b00002a880000213d000000190100002900000016020000290000000001210436001600000001001d00000017010000290000000101100039000000000201041a0000000503200210000000400500043d001700200050003d0000001703300029001b00000003001d000000400030043f001a00000005001d0000000000250435000000000202004b00002ab20000613d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001702000029000000000301041a000000000232043600000001011000390000001b0320006b00002aad0000213d0000001a0100002900000016020000290000000000120435000000190100002900000000010104330000000021010434000000000301004b000000000300001900002acd0000613d00000000040000190000000503400210000000000532001900000000050504330000000c0550014f00000fe70550019800002ac70000613d0000000104400039000000000314004b000000000300001900002abc0000413d00002acd0000013d0000001a010000290000000001010433000000000114004b000016620000813d00000017013000290000000003010433000000400200043d0000004001200039000000400010043f0000002001200039000010050400004100000000004104350000001e0400003900000000004204350000000f0430006b00003ae40000413d000f000f003000710000000f0100006b000028770000613d000000400200043d0000100001000041001a00000002001d0000000000120435000000400100043d001b00000001001d00000ffc01000041000000000010043900000018010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001802000029000000040220008c00002af60000c13d000000010300003100002b2c0000013d0000001b040000290000001a02400069000000040220003900000fe60340009c00000fe60500004100000000030500190000000003044019000000400330021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f00000018020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c00000000050300190000002005008039000000050450027200002b190000613d000000000600001900000005076002100000001b08700029000000000771034f000000000707043b00000000007804350000000106600039000000000746004b00002b110000413d0000001f0550019000002b280000613d0000000504400210000000000641034f0000001b044000290000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010220019000003aff0000613d0000001f0130008c00000ff4050000410000000001000019000000000105201900000ff402300197000000000402004b0000000004000019000000000405401900000ff40220009c000000000401c0190000001f013000390000000e0210017f000000400100043d0000000002120019001b00000002001d000000400020043f000000000204004b00003dac0000613d0000000001010433000000020210008c00003dac0000813d000000010110008c00002b840000c13d0000000201000039000000000101041a00000fe7011001970000001b030000290000002402300039000000000012043500000044013000390000000f020000290000000000210435000000400200043d0000000001210049001900000002001d00000000021204360000006401300039000000400010043f00000000010204330000100e011001970000100f011001c7001b00000002001d00000000001204350000100b0100004100000000001004390000000c0100002900000fe701100197001a00000001001d0000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000201004b000006f20000613d0000100c0110009c000006f20000613d000000400100043d00000019020000290000000002020433000000000302004b00002b7c0000613d000000000300001900000000041300190000001b05300029000000000505043300000000005404350000002003300039000000000423004b00002b710000413d000000000323004b00002b7c0000a13d00000000031200190000000000030435000000400400043d00000000030004140000001a05000029000000040550008c00002ba00000c13d0000000102000039000000010400003100002bb50000013d00001007010000410000001b020000290000000000120435000000400100043d001a00000001001d00000ffc01000041000000000010043900000018010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001802000029000000040220008c00002bf40000c13d0000000301000367000000010300003100002c0c0000013d0000000001120019000000000141004900000fe60240009c00000fe6050000410000000004058019000000400240021000000fe60410009c00000000010580190000006001100210000000000121019f00000fe60230009c0000000003058019000000c002300210000000000121019f0000001a020000293f933f890000040f000000010220018f0003000000010355000000600110027000010fe60010019d00000fe60410019700000060030000390000008001000039000000000504004b00002bda0000613d0000003f014000390000000e0110017f000000400300043d0000000001130019000000400010043f00000000014304360000000305000367000000050640027200002bcb0000613d000000000700001900000005087002100000000009810019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b00002bc30000413d0000001f0440019000002bda0000613d0000000506600210000000000565034f00000000066100190000000304400210000000000706043300000000074701cf000000000747022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000474019f0000000000460435000000000202004b00000d8c0000613d0000000002030433000000000302004b000028770000613d0000001f0320008c00000ff4050000410000000003000019000000000305201900000ff402200197000000000402004b0000000004000019000000000405401900000ff40220009c000000000403c019000000000204004b00003dac0000613d0000000001010433000000000201004b0000000002000019000000010200c039000000000221004b00003dac0000c13d000000000101004b000028770000c13d00000dad0000013d0000001a040000290000001b02400069000000040220003900000fe60340009c00000fe6050000410000000004058019000000400340021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f00000018020000293f933f8e0000040f0000000003010019000000600330027000010fe60030019d00000fe6033001970003000000010355000000010220019000003b1a0000613d000000400200043d000000050430027200002c180000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00002c100000413d0000001f0530019000002c270000613d0000000504400210000000000141034f00000000044200190000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130008c00000ff4060000410000000001000019000000000106201900000ff404300197000000000504004b0000000005000019000000000506401900000ff40440009c000000000501c0190000001f013000390000000e0110017f0000000001210019001700000001001d000000400010043f000000000105004b00003dac0000613d0000000001020433000010020410009c00003dac0000813d000000000332001900000000012100190000001f02100039000000000432004b00000ff4070000410000000004000019000000000407401900000ff40220019700000ff405300197000000000652004b00000000060000190000000006072019000000000252013f00000ff40220009c000000000604c019000000000206004b00003dac0000613d0000000002010433000010020420009c00003dac0000813d000000050420021000000020044000390000001705400029000010080650009c00003dac0000213d000000170650006c00003dac0000413d000000400050043f000000170500002900000000002504350000000004140019000000000334004b00003dac0000213d000000000302004b00002c690000613d000000170300002900000000040000190000002001100039000000000501043300000ff50650009c00003dac0000813d000000200330003900000000005304350000000104400039000000000524004b00002c600000413d000000400200043d0000100901000041001a00000002001d0000000000120435000000400100043d001b00000001001d00000ffc01000041000000000010043900000018010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001802000029000000040220008c00002c860000c13d0000000301000367000000010300003100002c9e0000013d0000001b040000290000001a02400069000000040220003900000fe60340009c00000fe6050000410000000004058019000000400340021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f00000018020000293f933f8e0000040f0000000003010019000000600330027000010fe60030019d00000fe6033001970003000000010355000000010220019000003b350000613d000000400200043d000000050430027200002caa0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00002ca20000413d0000001f0530019000002cb90000613d0000000504400210000000000141034f00000000044200190000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130008c00000ff4060000410000000001000019000000000106201900000ff404300197000000000504004b0000000005000019000000000506401900000ff40440009c000000000501c0190000001f013000390000000e0110017f0000000001210019001600000001001d000000400010043f000000000105004b00003dac0000613d0000000001020433000010020410009c00003dac0000813d000000000332001900000000012100190000001f02100039000000000432004b00000ff4070000410000000004000019000000000407401900000ff40220019700000ff405300197000000000652004b00000000060000190000000006072019000000000252013f00000ff40220009c000000000604c019000000000206004b00003dac0000613d0000000002010433000010020420009c00003dac0000813d000000050420021000000020044000390000001605400029000010080650009c00003dac0000213d000000160650006c00003dac0000413d000000400050043f000000160500002900000000002504350000000004140019000000000334004b00003dac0000213d000000000302004b00002cf90000613d0000001603000029000000000400001900000020033000390000002001100039000000000501043300000000005304350000000104400039000000000524004b00002cf20000413d000000400200043d0000100a01000041001a00000002001d0000000000120435000000400100043d001b00000001001d00000ffc01000041000000000010043900000018010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001802000029000000040220008c00002d150000c13d000000010300003100002d4b0000013d0000001b040000290000001a02400069000000040220003900000fe60340009c00000fe60500004100000000030500190000000003044019000000400330021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f00000018020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c00000000050300190000002005008039000000050450027200002d380000613d000000000600001900000005076002100000001b08700029000000000771034f000000000707043b00000000007804350000000106600039000000000746004b00002d300000413d0000001f0550019000002d470000613d0000000504400210000000000641034f0000001b044000290000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010220019000003b500000613d0000001f0130008c00000ff4050000410000000001000019000000000105201900000ff402300197000000000402004b0000000004000019000000000405401900000ff40220009c000000000401c0190000001f013000390000000e0210017f000000400100043d0000000002120019000000400020043f000000000204004b00003dac0000613d00000017020000290000000002020433000000000202004b00002ecd0000613d0000000001010433001400000001001d0000000c0100002900190fe70010019b001a00000000001d0000001a0100002900000005011002100000002002100039001200000002001d0000001701200029001b00000001001d00000000010104330000100b02000041000000000020043900000fe7011001970000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000201004b00002d7e0000613d0000100c0110009c00002d850000c13d000000170100002900000000010104330000001a0110006b000016620000813d0000001b01000029000000000201043300002df20000013d000000170100002900000000010104330000001a0110006b000016620000813d0000001b010000290000000001010433000000400300043d0000100d02000041001000000003001d0000000000230435000000400200043d001b00000002001d00000ffc02000041000000000020043900000fe701100197001100000001001d0000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001102000029000000040220008c00002da80000c13d000000010300003100002dde0000013d0000001b040000290000001002400069000000040220003900000fe60340009c00000fe60500004100000000030500190000000003044019000000400330021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f00000011020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c00000000050300190000002005008039000000050450027200002dcb0000613d000000000600001900000005076002100000001b08700029000000000771034f000000000707043b00000000007804350000000106600039000000000746004b00002dc30000413d0000001f0550019000002dda0000613d0000000504400210000000000641034f0000001b044000290000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010220019000003b6b0000613d0000001f0130008c00000ff4050000410000000001000019000000000105201900000ff402300197000000000402004b0000000004000019000000000405401900000ff40220009c000000000401c0190000001f013000390000000e0210017f000000400100043d0000000002120019000000400020043f000000000204004b00003dac0000613d000000000201043300000ff50120009c00003dac0000813d000000160100002900000000010104330000001a0110006b000016620000813d0000001203000029000000160130002900000000010104330000000f341000b90000000f534000fa000000000113004b000038500000c13d000000400500043d0000004001500039000000400010043f0000002003500039000010040100004100000000001304350000001a010000390000000000150435000000400600043d00000044016000390000002407600039000000140800006b00003b860000613d00000fe702200197001200000002001d000000000027043500000014234000fa001100000003001d0000000000310435000000400200043d0000000001210049001000000002001d00000000021204360000006401600039000000400010043f00000000010204330000100e011001970000100f011001c7001b00000002001d00000000001204350000100b01000041000000000010043900000019010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000201004b000006f20000613d0000100c0110009c000006f20000613d000000400100043d00000010020000290000000002020433000000000302004b00002e3e0000613d000000000300001900000000041300190000001b05300029000000000505043300000000005404350000002003300039000000000423004b00002e330000413d000000000323004b00002e3e0000a13d00000000031200190000000000030435000000400400043d00000000030004140000001905000029000000040550008c00002e460000c13d0000000104000031000000150200002900002e5b0000013d0000000001120019000000000141004900000fe60240009c00000fe6050000410000000004058019000000400240021000000fe60410009c00000000010580190000006001100210000000000121019f00000fe60230009c0000000003058019000000c002300210000000000121019f00000019020000293f933f890000040f000000010220018f0003000000010355000000600110027000010fe60010019d00000fe6041001970000008001000039000000000304004b0000000b0300002900002e800000613d0000003f014000390000000e0110017f000000400300043d0000000001130019000000400010043f00000000014304360000000305000367000000050640027200002e710000613d000000000700001900000005087002100000000009810019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b00002e690000413d0000001f0440019000002e800000613d0000000506600210000000000565034f00000000066100190000000304400210000000000706043300000000074701cf000000000747022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000474019f0000000000460435000000000202004b00000d8c0000613d0000000002030433000000000302004b00002e990000613d0000001f0320008c00000ff4050000410000000003000019000000000305201900000ff402200197000000000402004b0000000004000019000000000405401900000ff40220009c000000000403c019000000000204004b00003dac0000613d0000000001010433000000000201004b0000000002000019000000010200c039000000000221004b00003dac0000c13d000000000101004b00000dad0000613d00001010010000410000000000100439000000000100041400000fe60210009c00000fe601008041000000c00110021000001011011001c70000800b020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000400200043d0000004003200039000000000013043500000020012000390000001103000029000000000031043500000019010000290000000000120435000000400100043d000000000212004900000fe60310009c00000fe60400004100000000010480190000004001100210000000600220003900000fe60320009c00000000020480190000006002200210000000000112019f000000000200041400000fe60320009c0000000002048019000000c002200210000000000121019f00001012011001c70000800d02000039000000040300003900001013040000410000001805000029000000000605001900000012070000293f933f890000040f000000010120019000003dac0000613d0000001a02000029001a00010020003d000000170100002900000000010104330000001a0110006b00002d650000413d000000180100002900000000001004350000000501000039000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000301043b000000400500043d001a00200050003d000000000103041a00000005021002100000001a02200029001b00000002001d000000400020043f001600000005001d0000000000150435000000000101004b001900000003001d001700010030003d00002f0b0000613d00000019010000290000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a02000029000000000301041a00000fe703300197000000000232043600000001011000390000001b0320006b00002ef50000213d00000016010000290000000001010433000000000201004b00002f0b0000613d001b00000000001d0000001b0200002900000005022002100000001a0220002900000000020204330000000c0220014f00000fe70220019800002f640000613d0000001b02000029001b00010020003d0000001b0210006b00002f000000413d0000001902000029000000000102041a001b00000001001d0000000101100039000000000012041b0000000000200435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b01100029000000000201041a00000fe8022001970000000c0300002900000fe703300197000000000232019f000000000021041b0000001702000029000000000102041a001b00000001001d0000000101100039000000000012041b0000000000200435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b011000290000000f02000029000000000021041b00001010010000410000000000100439000000000100041400000fe60210009c00000fe601008041000000c00110021000001011011001c70000800b020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000400200043d0000004003200039000000000013043500000020012000390000000f0300002900000000003104350000000c0100002900000fe7011001970000000000120435000000400100043d000000000212004900000fe60310009c00000fe60400004100000000010480190000004001100210000000600220003900000fe60320009c00000000020480190000006002200210000000000112019f000000000200041400000fe60320009c0000000002048019000000c002200210000000000121019f00001012011001c70000800d0200003900000003030000390000101404000041000000180500002900000000060500193f933f890000040f0000000101200190000028770000c13d00003dac0000013d0000001701000029000000000101041a0000001b0110006b000016620000813d00000017010000290000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b01100029000000000301041a0000000f02300029000000000332004b000000000300001900000001030040390000000103300190000038630000c13d0000001703000029000000000303041a0000001b0330006b000016620000813d000000000021041b00002f350000013d0000001f0430018f000000050230027200002f8d0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00002f860000413d000000000504004b00002f9b0000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f000000050230027200002fa80000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00002fa10000413d000000000504004b00002fb60000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001b050000290000001a02500069000000040220003900000fe60300004100000fe60450009c00000000040300190000000004054019000000400440021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f00000015020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c000000000503001900000020050080390000001f0450018f000000050550027200002fdc0000613d000000000600001900000005076002100000001b08700029000000000771034f000000000707043b00000000007804350000000106600039000000000756004b00002fd40000413d000000000604004b00002feb0000613d0000000505500210000000000651034f0000001b055000290000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000102200190000038850000613d00000ff4040000410000001f0130008c0000000001000019000000000104201900000ff402300197000000000502004b000000000400801900000ff40220009c000000000401c0190000001f013000390000000b0110017f000000400200043d0000000001210019000000400010043f000000000304004b00003dac0000613d0000000002020433000500000002001d000000020220008c00003dac0000813d000000a002100039000000400020043f000000800210003900000060030000390000000000320435000000600210003900000000003204350000004002100039000000000032043500000020021000390000000000320435000800000003001d0000000000310435000000150100002900000000001004350000000301000039000300000001001d000000200010043f00000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000400300043d000000c004300039001400000001001d000000000101041a0000000502100210001b00000004001d0000000002240019001a00000002001d000000400020043f001700000003001d000000a002300039001300000002001d0000000000120435000000000101004b000030440000613d0000001401000029000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a00000fe7022001970000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b0000303c0000213d000000170100002900000013020000290000000001210436001300000001001d00000014010000290000000101100039000000000201041a0000000503200210000000400400043d001b00200040003d0000001b03300029001a00000003001d000000400030043f001200000004001d0000000000240435000000000202004b000030680000613d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b000030610000213d00000013010000290000001202000029000000000021043500000014010000290000000201100039000000000201041a0000000503200210000000400400043d001b00200040003d0000001b03300029001a00000003001d000000400030043f001300000004001d0000000000240435000000000202004b0000308b0000613d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b000030840000213d000000170100002900000040011000390000001302000029000000000021043500000014010000290000000301100039000000000201041a0000000503200210000000400400043d001b00200040003d0000001b03300029001a00000003001d000000400030043f001300000004001d0000000000240435000000000202004b000030af0000613d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b000030a80000213d000000170100002900000060011000390000001302000029000000000021043500000014010000290000000401100039000000000201041a0000000503200210000000400400043d001b00200040003d0000001b03300029001a00000003001d000000400030043f001400000004001d0000000000240435000000000202004b000030d30000613d000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b000030cc0000213d00000017010000290000008001100039000000140200002900000000002104350000001901000029000000000101041a0000ff00021001900000313e0000c13d00000017020000290000000002020433000600000002001d0000000023020434000700000002001d000400000003001d000000000203004b000014c00000613d000000ff021001900000194c0000613d000000180110017f0000001902000029000000000012041b0000000401000029000010020110009c00003dac0000813d000000400200043d0000000405000029000000000452043600000005015002100000002003100039000a00000002001d0000000001320019000000400010043f000000000100003100000002011003670000100302500198000031000000613d000000000500001900000005065002100000000007640019000000000661034f000000000606043b00000000006704350000000105500039000000000625004b000030f80000413d000000000400004b000031020000613d000000400500043d00000004040000290000000004450436000c00000005001d0000000005350019000000400050043f000000000502004b000031130000613d000000000500001900000005065002100000000007640019000000000661034f000000000606043b00000000006704350000000105500039000000000625004b0000310b0000413d000000000400004b000031150000613d000000400500043d00000004040000290000000004450436000d00000005001d0000000005350019000000400050043f000000000502004b000031260000613d000000000500001900000005065002100000000007640019000000000661034f000000000606043b00000000006704350000000105500039000000000625004b0000311e0000413d000000000400004b000031280000613d000000400500043d00000004040000290000000004450436000e00000005001d0000000003350019000000400030043f000000000302004b000031390000613d000000000300001900000005053002100000000006540019000000000551034f000000000505043b00000000005604350000000103300039000000000523004b000031310000413d000000000100004b0000313b0000613d000280100000003d000f00000000001d0000314a0000013d000000400100043d00000044021000390000103903000041000000000032043500000024021000390000001503000039000007550000013d0000000f020000290000000102200039000f00000002001d000000040120006c00003b9e0000813d000000060100002900000000010104330000000f0110006b000016620000813d0000000f0100002900000005011002100000002002100039001700000002001d00000006012000290000000001010433000900000001001d000000400100043d000000a002100039000000400020043f0000008002100039000000080300002900000000003204350000006002100039000000000032043500000040021000390000000000320435000000200210003900000000003204350000000000310435000000150100002900000000001004350000000301000029000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700000002020000293f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000400300043d000000c004300039001900000001001d000000000101041a0000000502100210001b00000004001d0000000002240019001a00000002001d000000400020043f001800000003001d000000a002300039001400000002001d0000000000120435000000000101004b000031930000613d00000019010000290000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a00000fe7022001970000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b0000318b0000213d000000180100002900000014020000290000000001210436001400000001001d00000019010000290000000101100039000000000201041a0000000503200210000000400400043d001b00200040003d0000001b03300029001a00000003001d000000400030043f001300000004001d0000000000240435000000000202004b000031b60000613d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b000031af0000213d00000014010000290000001302000029000000000021043500000019010000290000000201100039000000000201041a0000000503200210000000400400043d001b00200040003d0000001b03300029001a00000003001d000000400030043f001300000004001d0000000000240435000000000202004b000031d80000613d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b000031d10000213d00000018010000290000004001100039001200000001001d0000001302000029000000000021043500000019010000290000000301100039000000000201041a0000000503200210000000400400043d001b00200040003d0000001b03300029001a00000003001d000000400030043f001300000004001d0000000000240435000000000202004b000031fc0000613d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b000031f50000213d00000018010000290000006001100039001100000001001d0000001302000029000000000021043500000019010000290000000401100039000000000201041a0000000503200210000000400400043d001b00200040003d0000001b03300029001a00000003001d000000400030043f001900000004001d0000000000240435000000000202004b000032200000613d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a0000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b000032190000213d000000180100002900000080021000390000001903000029000000000032043500000000010104330000000001010433000000000101004b001000000000001d0000000003000019000000000500001900000000040000190000000001000019000032a30000613d0000001401000029000000000301043300000000010304330000000f0110006b000016620000813d0000000601000039000000000101041a00000017033000290000000004030433000000000304004b00000000030000190000323f0000613d0000000703000039000000000503041a00000000635400a900000000644300d9000000000454004b000038500000c13d000000400600043d0000004004600039000000400040043f0000002005600039000010040400004100000000004504350000001a040000390000000000460435000000000701004b00003daf0000613d0000001205000029000000000505043300000000060504330000000f0660006b000016620000813d00000017055000290000000006050433000000000506004b0000000005000019000032590000613d0000000805000039000000000705041a00000000857600a900000000866500d9000000000676004b000038500000c13d000000400600043d0000004007600039000000400070043f00000020076000390000100408000041000000000087043500000000004604350000001106000029000000000606043300000000070604330000000f0770006b000016620000813d00000017066000290000000007060433000000000607004b0000000006000019000032700000613d0000000906000039000000000806041a00000000968700a900000000977600d9000000000787004b000038500000c13d000000400700043d0000004008700039000000400080043f0000002008700039000010040900004100000000009804350000000000470435000000000202043300000000070204330000000f0770006b000016620000813d00000017022000290000000007020433000000000207004b0000000002000019000032860000613d0000000a02000039000000000802041a00000000928700a900000000977200d9000000000787004b000038500000c13d00000000731300d900000000751500d9000000400700043d0000004008700039000000400080043f00000020087000390000100409000041000000000098043500000000004704350000000007350019000000000457004b000000000400001900000001040040390000000104400190000038630000c13d00000000641600d900000000211200d90000000002740019000000000642004b00000000060000190000000106004039001000000021001d000000100210006b000000000200001900000001020040390000000106600190000038630000c13d0000000102200190000038630000c13d0000000a0200002900000000020204330000000f0220006b000016620000813d0000000c0200002900000000020204330000000f0220006b000016620000813d0000000d0200002900000000020204330000000f0220006b000016620000813d0000000e0200002900000000020204330000000f0220006b000016620000813d00000017080000290000000a028000290000000c068000290000000e0780002900000000001704350000000d018000290000000000410435000000000056043500000000003204350000000501000029000000010110008c000033a60000613d000000400200043d0000100001000041001a00000002001d0000000000120435000000400100043d001b00000001001d00000ffc01000041000000000010043900000015010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001502000029000000040220008c000032db0000c13d0000000103000031000033110000013d0000001b040000290000001a02400069000000040220003900000fe60340009c00000fe60500004100000000030500190000000003044019000000400330021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f00000015020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c000000000503001900000020050080390000000504500272000032fe0000613d000000000600001900000005076002100000001b08700029000000000771034f000000000707043b00000000007804350000000106600039000000000746004b000032f60000413d0000001f055001900000330d0000613d0000000504400210000000000641034f0000001b044000290000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010220019000003dca0000613d0000001f0130008c00000ff4050000410000000001000019000000000105201900000ff402300197000000000402004b0000000004000019000000000405401900000ff40220009c000000000401c0190000001f013000390000000b0110017f000000400200043d0000000001210019000000400010043f000000000304004b00003dac0000613d0000000002020433000000020320008c00003dac0000813d000000010220008c00003de50000613d0000004002100039000000400020043f0000002002100039000000080300002900000000003204350000000000310435000000150100002900000000001004350000000501000039000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000400300043d0000006004300039001800000001001d000000000101041a0000000502100210001b00000004001d0000000002240019001a00000002001d000000400020043f001900000003001d0000004002300039001700000002001d0000000000120435000000000101004b0000335e0000613d00000018010000290000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a00000fe7022001970000001b0300002900000000032304360000000101100039001b00000003001d0000001a0230006b000033560000213d000000190100002900000017020000290000000001210436001700000001001d00000018010000290000000101100039000000000201041a0000000503200210000000400500043d001800200050003d0000001803300029001b00000003001d000000400030043f001a00000005001d0000000000250435000000000202004b000033800000613d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001802000029000000000301041a000000000232043600000001011000390000001b0320006b0000337b0000213d0000001a0100002900000017020000290000000000120435000000190100002900000000010104330000000021010434000000000301004b00000000030000190000339b0000613d0000000004000019000000050340021000000000053200190000000005050433000000090550014f00000fe705500198000033950000613d0000000104400039000000000314004b00000000030000190000338a0000413d0000339b0000013d0000001a010000290000000001010433000000000114004b000016620000813d00000018013000290000000003010433000000400200043d0000004001200039000000400010043f0000002001200039000010050400004100000000004104350000001e040000390000000000420435000000100430006b00003de60000413d0010001000300071000000100100006b000031450000613d000000400200043d0000100001000041001a00000002001d0000000000120435000000400100043d001b00000001001d00000ffc01000041000000000010043900000015010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001502000029000000040220008c000033c40000c13d0000000103000031000033fa0000013d0000001b040000290000001a02400069000000040220003900000fe60340009c00000fe60500004100000000030500190000000003044019000000400330021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f00000015020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c000000000503001900000020050080390000000504500272000033e70000613d000000000600001900000005076002100000001b08700029000000000771034f000000000707043b00000000007804350000000106600039000000000746004b000033df0000413d0000001f05500190000033f60000613d0000000504400210000000000641034f0000001b044000290000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010220019000003dff0000613d0000001f0130008c00000ff4050000410000000001000019000000000105201900000ff402300197000000000402004b0000000004000019000000000405401900000ff40220009c000000000401c0190000001f013000390000000b0210017f000000400100043d0000000002120019001b00000002001d000000400020043f000000000204004b00003dac0000613d0000000001010433000000020210008c00003dac0000813d000000010110008c000034520000c13d0000000201000039000000000101041a00000fe7011001970000001b0300002900000024023000390000000000120435000000440130003900000010020000290000000000210435000000400200043d0000000001210049001900000002001d00000000021204360000006401300039000000400010043f00000000010204330000100e011001970000100f011001c7001b00000002001d00000000001204350000100b010000410000000000100439000000090100002900000fe701100197001a00000001001d0000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000201004b000006f20000613d0000100c0110009c000006f20000613d000000400100043d00000019020000290000000002020433000000000302004b0000344a0000613d000000000300001900000000041300190000001b05300029000000000505043300000000005404350000002003300039000000000423004b0000343f0000413d000000000323004b0000344a0000a13d00000000031200190000000000030435000000400400043d00000000030004140000001a05000029000000040550008c0000346e0000c13d00000001020000390000000104000031000034830000013d00001007010000410000001b020000290000000000120435000000400100043d001a00000001001d00000ffc01000041000000000010043900000015010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001502000029000000040220008c000034c20000c13d00000003010003670000000103000031000034da0000013d0000000001120019000000000141004900000fe60240009c00000fe6050000410000000004058019000000400240021000000fe60410009c00000000010580190000006001100210000000000121019f00000fe60230009c0000000003058019000000c002300210000000000121019f0000001a020000293f933f890000040f000000010220018f0003000000010355000000600110027000010fe60010019d00000fe60410019700000060030000390000008001000039000000000504004b000034a80000613d0000003f014000390000000b0110017f000000400300043d0000000001130019000000400010043f000000000143043600000003050003670000000506400272000034990000613d000000000700001900000005087002100000000009810019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b000034910000413d0000001f04400190000034a80000613d0000000506600210000000000565034f00000000066100190000000304400210000000000706043300000000074701cf000000000747022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000474019f0000000000460435000000000202004b00000d8c0000613d0000000002030433000000000302004b000031450000613d0000001f0320008c00000ff4050000410000000003000019000000000305201900000ff402200197000000000402004b0000000004000019000000000405401900000ff40220009c000000000403c019000000000204004b00003dac0000613d0000000001010433000000000201004b0000000002000019000000010200c039000000000221004b00003dac0000c13d000000000101004b000031450000c13d00000dad0000013d0000001a040000290000001b02400069000000040220003900000fe60340009c00000fe6050000410000000004058019000000400340021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f00000015020000293f933f8e0000040f0000000003010019000000600330027000010fe60030019d00000fe6033001970003000000010355000000010220019000003e1a0000613d000000400200043d0000000504300272000034e60000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000034de0000413d0000001f05300190000034f50000613d0000000504400210000000000141034f00000000044200190000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130008c00000ff4060000410000000001000019000000000106201900000ff404300197000000000504004b0000000005000019000000000506401900000ff40440009c000000000501c0190000001f013000390000000b0110017f0000000001210019001800000001001d000000400010043f000000000105004b00003dac0000613d0000000001020433000010020410009c00003dac0000813d000000000332001900000000012100190000001f02100039000000000432004b00000ff4070000410000000004000019000000000407401900000ff40220019700000ff405300197000000000652004b00000000060000190000000006072019000000000252013f00000ff40220009c000000000604c019000000000206004b00003dac0000613d0000000002010433000010020420009c00003dac0000813d000000050420021000000020044000390000001805400029000010080650009c00003dac0000213d000000180650006c00003dac0000413d000000400050043f000000180500002900000000002504350000000004140019000000000334004b00003dac0000213d000000000302004b000035370000613d000000180300002900000000040000190000002001100039000000000501043300000ff50650009c00003dac0000813d000000200330003900000000005304350000000104400039000000000524004b0000352e0000413d000000400200043d0000100901000041001a00000002001d0000000000120435000000400100043d001b00000001001d00000ffc01000041000000000010043900000015010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001502000029000000040220008c000035540000c13d000000030100036700000001030000310000356c0000013d0000001b040000290000001a02400069000000040220003900000fe60340009c00000fe6050000410000000004058019000000400340021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f00000015020000293f933f8e0000040f0000000003010019000000600330027000010fe60030019d00000fe6033001970003000000010355000000010220019000003e350000613d000000400200043d0000000504300272000035780000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000035700000413d0000001f05300190000035870000613d0000000504400210000000000141034f00000000044200190000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130008c00000ff4060000410000000001000019000000000106201900000ff404300197000000000504004b0000000005000019000000000506401900000ff40440009c000000000501c0190000001f013000390000000b0110017f0000000001210019001700000001001d000000400010043f000000000105004b00003dac0000613d0000000001020433000010020410009c00003dac0000813d000000000332001900000000012100190000001f02100039000000000432004b00000ff4070000410000000004000019000000000407401900000ff40220019700000ff405300197000000000652004b00000000060000190000000006072019000000000252013f00000ff40220009c000000000604c019000000000206004b00003dac0000613d0000000002010433000010020420009c00003dac0000813d000000050420021000000020044000390000001705400029000010080650009c00003dac0000213d000000170650006c00003dac0000413d000000400050043f000000170500002900000000002504350000000004140019000000000334004b00003dac0000213d000000000302004b000035c70000613d0000001703000029000000000400001900000020033000390000002001100039000000000501043300000000005304350000000104400039000000000524004b000035c00000413d000000400200043d0000100a01000041001a00000002001d0000000000120435000000400100043d001b00000001001d00000ffc01000041000000000010043900000015010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001502000029000000040220008c000035e30000c13d0000000103000031000036190000013d0000001b040000290000001a02400069000000040220003900000fe60340009c00000fe60500004100000000030500190000000003044019000000400330021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f00000015020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c000000000503001900000020050080390000000504500272000036060000613d000000000600001900000005076002100000001b08700029000000000771034f000000000707043b00000000007804350000000106600039000000000746004b000035fe0000413d0000001f05500190000036150000613d0000000504400210000000000641034f0000001b044000290000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010220019000003e500000613d0000001f0130008c00000ff4050000410000000001000019000000000105201900000ff402300197000000000402004b0000000004000019000000000405401900000ff40220009c000000000401c0190000001f013000390000000b0210017f000000400100043d0000000002120019000000400020043f000000000204004b00003dac0000613d00000018020000290000000002020433000000000202004b0000379b0000613d0000000001010433001400000001001d000000090100002900190fe70010019b001a00000000001d0000001a0100002900000005011002100000002002100039001300000002001d0000001801200029001b00000001001d00000000010104330000100b02000041000000000020043900000fe7011001970000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000201004b0000364c0000613d0000100c0110009c000036530000c13d000000180100002900000000010104330000001a0110006b000016620000813d0000001b010000290000000002010433000036c00000013d000000180100002900000000010104330000001a0110006b000016620000813d0000001b010000290000000001010433000000400300043d0000100d02000041001100000003001d0000000000230435000000400200043d001b00000002001d00000ffc02000041000000000020043900000fe701100197001200000001001d0000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001202000029000000040220008c000036760000c13d0000000103000031000036ac0000013d0000001b040000290000001102400069000000040220003900000fe60340009c00000fe60500004100000000030500190000000003044019000000400330021000000fe60420009c00000000020580190000006002200210000000000232019f00000fe60310009c0000000001058019000000c001100210000000000121019f00000012020000293f933f8e0000040f0000000003010019000000600330027000000fe603300197000000200430008c000000000503001900000020050080390000000504500272000036990000613d000000000600001900000005076002100000001b08700029000000000771034f000000000707043b00000000007804350000000106600039000000000746004b000036910000413d0000001f05500190000036a80000613d0000000504400210000000000641034f0000001b044000290000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010220019000003e6b0000613d0000001f0130008c00000ff4050000410000000001000019000000000105201900000ff402300197000000000402004b0000000004000019000000000405401900000ff40220009c000000000401c0190000001f013000390000000b0210017f000000400100043d0000000002120019000000400020043f000000000204004b00003dac0000613d000000000201043300000ff50120009c00003dac0000813d000000170100002900000000010104330000001a0110006b000016620000813d00000013030000290000001701300029000000000101043300000010341000b900000010534000fa000000000113004b000038500000c13d000000400500043d0000004001500039000000400010043f0000002003500039000010040100004100000000001304350000001a010000390000000000150435000000400600043d00000044016000390000002407600039000000140800006b00003e860000613d00000fe702200197001300000002001d000000000027043500000014234000fa001200000003001d0000000000310435000000400200043d0000000001210049001100000002001d00000000021204360000006401600039000000400010043f00000000010204330000100e011001970000100f011001c7001b00000002001d00000000001204350000100b01000041000000000010043900000019010000290000000400100443000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000201004b000006f20000613d0000100c0110009c000006f20000613d000000400100043d00000011020000290000000002020433000000000302004b0000370c0000613d000000000300001900000000041300190000001b05300029000000000505043300000000005404350000002003300039000000000423004b000037010000413d000000000323004b0000370c0000a13d00000000031200190000000000030435000000400400043d00000000030004140000001905000029000000040550008c000037140000c13d00000001040000310000001602000029000037290000013d0000000001120019000000000141004900000fe60240009c00000fe6050000410000000004058019000000400240021000000fe60410009c00000000010580190000006001100210000000000121019f00000fe60230009c0000000003058019000000c002300210000000000121019f00000019020000293f933f890000040f000000010220018f0003000000010355000000600110027000010fe60010019d00000fe6041001970000008001000039000000000304004b00000008030000290000374e0000613d0000003f014000390000000b0110017f000000400300043d0000000001130019000000400010043f0000000001430436000000030500036700000005064002720000373f0000613d000000000700001900000005087002100000000009810019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b000037370000413d0000001f044001900000374e0000613d0000000506600210000000000565034f00000000066100190000000304400210000000000706043300000000074701cf000000000747022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000474019f0000000000460435000000000202004b00000d8c0000613d0000000002030433000000000302004b000037670000613d0000001f0320008c00000ff4050000410000000003000019000000000305201900000ff402200197000000000402004b0000000004000019000000000405401900000ff40220009c000000000403c019000000000204004b00003dac0000613d0000000001010433000000000201004b0000000002000019000000010200c039000000000221004b00003dac0000c13d000000000101004b00000dad0000613d00001010010000410000000000100439000000000100041400000fe60210009c00000fe601008041000000c00110021000001011011001c70000800b020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000400200043d0000004003200039000000000013043500000020012000390000001203000029000000000031043500000019010000290000000000120435000000400100043d000000000212004900000fe60310009c00000fe60400004100000000010480190000004001100210000000600220003900000fe60320009c00000000020480190000006002200210000000000112019f000000000200041400000fe60320009c0000000002048019000000c002200210000000000121019f00001012011001c70000800d02000039000000040300003900001013040000410000001505000029000000000605001900000013070000293f933f890000040f000000010120019000003dac0000613d0000001a02000029001a00010020003d000000180100002900000000010104330000001a0110006b000036330000413d000000150100002900000000001004350000000501000039000000200010043f000000000100041400000fe60210009c00000fe601008041000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000301043b000000400500043d001a00200050003d000000000103041a00000005021002100000001a02200029001b00000002001d000000400020043f001700000005001d0000000000150435000000000101004b001900000003001d001800010030003d000037d90000613d00000019010000290000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a02000029000000000301041a00000fe703300197000000000232043600000001011000390000001b0320006b000037c30000213d00000017010000290000000001010433000000000201004b000037d90000613d001b00000000001d0000001b0200002900000005022002100000001a022000290000000002020433000000090220014f00000fe702200198000038320000613d0000001b02000029001b00010020003d0000001b0210006b000037ce0000413d0000001902000029000000000102041a001b00000001001d0000000101100039000000000012041b0000000000200435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b01100029000000000201041a00000fe802200197000000090300002900000fe703300197000000000232019f000000000021041b0000001802000029000000000102041a001b00000001001d0000000101100039000000000012041b0000000000200435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b011000290000001002000029000000000021041b00001010010000410000000000100439000000000100041400000fe60210009c00000fe601008041000000c00110021000001011011001c70000800b020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000400200043d00000040032000390000000000130435000000200120003900000010030000290000000000310435000000090100002900000fe7011001970000000000120435000000400100043d000000000212004900000fe60310009c00000fe60400004100000000010480190000004001100210000000600220003900000fe60320009c00000000020480190000006002200210000000000112019f000000000200041400000fe60320009c0000000002048019000000c002200210000000000121019f00001012011001c70000800d0200003900000003030000390000101404000041000000150500002900000000060500193f933f890000040f0000000101200190000031450000c13d00003dac0000013d0000001801000029000000000101041a0000001b0110006b000016620000813d00000018010000290000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b01100029000000000301041a0000001002300029000000000332004b000000000300001900000001030040390000000103300190000038630000c13d0000001803000029000000000303041a0000001b0330006b000016620000813d000000000021041b000038030000013d000000400100043d00000064021000390000103a03000041000000000032043500000044021000390000103b03000041000000000032043500000024021000390000002103000039000000000032043500000ff6020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d000000000121004900000084011000390000075e0000013d000000400100043d00000044021000390000103c03000041000000000032043500000024021000390000001b03000039000007550000013d0000001f0430018f0000000502300272000038750000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b0000386e0000413d000000000504004b000038830000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f0000000502300272000038900000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b000038890000413d000000000504004b0000389e0000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000000501000029000000010110008c000000670000c13d00000006010000290000000001010433000000000101004b00003a280000613d0000000201000039001a00000001001d000000000501041a000000400100043d00000044021000390000008003000039001900000003001d000000000032043500001015020000410000000000210435000000040210003900000018030000290000000000320435000000240310003900000000000304350000008403100039000000060400002900000000040404330000000000430435000000a40310003900170fe70050019b000000000504004b000038c60000613d00000000050000190000000206000029000000006706043400000fe70770019700000000037304360000000105500039000000000745004b000038c00000413d000000000223004900000064011000390000000000210435000000070100002900000000010104330000000002130436001b00000002001d000000000201004b000038da0000613d000000000200001900000007030000290000002003300039000700000003001d00000000030304330000001b040000290000000004340436001b00000004001d0000000102200039000000000312004b000038d00000413d000000400100043d001600000001001d00000ffc0100004100000000001004390000001701000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001702000029000000040220008c000039080000613d00000016050000290000001b0250006900000fe60300004100000fe60450009c0000000005038019000000400450021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f00000017020000293f933f890000040f0000000003010019000000600330027000010fe60030019d00000fe6033001970003000000010355000000010220019000003e9e0000613d0000001a01000029000000000501041a000000400100043d000000440210003900000019030000290000000000320435000000240210003900000001030000390000000000320435000010150200004100000000002104350000000402100039000000180300002900000000003204350000000603000029000000000403043300000084031000390000000000430435000000a40310003900170fe70050019b000000000504004b000039260000613d00000000050000190000000206000029000000006706043400000fe70770019700000000037304360000000105500039000000000745004b000039200000413d000000000223004900000064011000390000000000210435000000080100002900000000010104330000000002130436001b00000002001d000000000201004b0000393a0000613d000000000200001900000008030000290000002003300039000800000003001d00000000030304330000001b040000290000000004340436001b00000004001d0000000102200039000000000312004b000039300000413d000000400100043d001600000001001d00000ffc0100004100000000001004390000001701000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001702000029000000040220008c000039680000613d00000016050000290000001b0250006900000fe60300004100000fe60450009c0000000005038019000000400450021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f00000017020000293f933f890000040f0000000003010019000000600330027000010fe60030019d00000fe6033001970003000000010355000000010220019000003eb90000613d0000001a03000029000000000503041a000000400100043d00000044021000390000001904000029000000000042043500000024021000390000000000320435000010150200004100000000002104350000000402100039000000180300002900000000003204350000000603000029000000000403043300000084031000390000000000430435000000a40310003900170fe70050019b000000000504004b000039850000613d00000000050000190000000206000029000000006706043400000fe70770019700000000037304360000000105500039000000000745004b0000397f0000413d000000000223004900000064011000390000000000210435000000090100002900000000010104330000000002130436001b00000002001d000000000201004b000039990000613d000000000200001900000009030000290000002003300039000900000003001d00000000030304330000001b040000290000000004340436001b00000004001d0000000102200039000000000312004b0000398f0000413d000000400100043d001600000001001d00000ffc0100004100000000001004390000001701000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001702000029000000040220008c000039c70000613d00000016050000290000001b0250006900000fe60300004100000fe60450009c0000000005038019000000400450021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f00000017020000293f933f890000040f0000000003010019000000600330027000010fe60030019d00000fe6033001970003000000010355000000010220019000003ed40000613d0000001a01000029000000000501041a000000400100043d000000440210003900000019030000290000000000320435000000240210003900000013030000290000000000320435000010150200004100000000002104350000000402100039000000180300002900000000003204350000000603000029000000000403043300000084031000390000000000430435000000a403100039001a0fe70050019b000000000504004b000039e60000613d000000000500001900000002070000290000000076070434000200000007001d00000fe70660019700000000036304360000000105500039000000000645004b000039de0000413d0000000002230049000000640110003900000000002104350000000a0100002900000000010104330000000002130436001b00000002001d000000000201004b000039fa0000613d00000000020000190000000a030000290000002003300039000a00000003001d00000000030304330000001b040000290000000004340436001b00000004001d0000000102200039000000000312004b000039f00000413d000000400100043d001900000001001d00000ffc0100004100000000001004390000001a01000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001a02000029000000040220008c00003a280000613d00000019050000290000001b0250006900000fe60300004100000fe60450009c0000000005038019000000400450021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f0000001a020000293f933f890000040f0000000003010019000000600330027000010fe60030019d00000fe6033001970003000000010355000000010220019000003eef0000613d000000180100002900000000001004350000001301000029000000200010043f00000fe603000041000000000100041400000fe60210009c0000000001038019000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a001a00000002001d000000000001041b001b00000001001d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a02100029000000000312004b00003a4d0000a13d000000000001041b0000000101100039000000000312004b00003a490000213d0000001b010000290000000101100039000000000201041a001a00000002001d000000000001041b000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a02100029000000000312004b00003a650000a13d000000000001041b0000000101100039000000000312004b00003a610000213d0000001b010000290000000201100039000000000201041a001a00000002001d000000000001041b000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a02100029000000000312004b00003a7d0000a13d000000000001041b0000000101100039000000000312004b00003a790000213d0000001b010000290000000301100039000000000201041a001a00000002001d000000000001041b000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a02100029000000000312004b00003a950000a13d000000000001041b0000000101100039000000000312004b00003a910000213d0000001b010000290000000401100039000000000201041a001b00000002001d000000000001041b000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b02100029000000000312004b000000670000a13d000000000001041b0000000101100039000000000312004b00003aa90000213d000000670000013d000000400200043d00000ff60100004100000000001204350000000401200039000000200300003900000000003104350000000001060433000000240320003900000000001304350000004402200039000000000301004b00003ac60000613d000000000300001900000000042300190000000006530019000000000606043300000000006404350000002003300039000000000413004b00003abb0000413d000000000313004b00003ac60000a13d000000000321001900000000000304350000001f011000390000000e0300002900000fbf0000013d0000001f0430018f000000050230027200003ad40000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003acd0000413d000000000504004b00003ae20000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f9500010430000000400300043d00000ff60400004100000000004304350000000404300039000000200500003900000000005404350000000002020433000000240430003900000000002404350000004403300039000000000402004b00003afc0000613d000000000400001900000000053400190000000006140019000000000606043300000000006504350000002004400039000000000524004b00003af10000413d000000000124004b00003afc0000a13d000000000132001900000000000104350000001f012000390000000e0200002900000e160000013d0000001f0430018f000000050230027200003b0a0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003b030000413d000000000504004b00003b180000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f000000050230027200003b250000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003b1e0000413d000000000504004b00003b330000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f000000050230027200003b400000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003b390000413d000000000504004b00003b4e0000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f000000050230027200003b5b0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003b540000413d000000000504004b00003b690000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f000000050230027200003b760000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003b6f0000413d000000000504004b00003b840000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f950001043000000ff602000041000000000026043500000004026000390000002004000039000000000042043500000000020504330000000000270435000000000402004b00003b9b0000613d000000000400001900000000051400190000000006340019000000000606043300000000006504350000002004400039000000000524004b00003b900000413d000000000324004b00003b9b0000a13d000000000312001900000000000304350000001f022000390000000e03000029000021bf0000013d0000000501000029000000010110008c000000670000c13d00000006010000290000000001010433000000000101004b00003d260000613d0000000201000039001a00000001001d000000000501041a000000400100043d00000044021000390000008003000039001900000003001d000000000032043500001015020000410000000000210435000000040210003900000015030000290000000000320435000000240310003900000000000304350000008403100039000000060400002900000000040404330000000000430435000000a40310003900180fe70050019b000000000504004b00003bc40000613d00000000050000190000000706000029000000006706043400000fe70770019700000000037304360000000105500039000000000745004b00003bbe0000413d0000000002230049000000640110003900000000002104350000000a0100002900000000010104330000000002130436001b00000002001d000000000201004b00003bd80000613d00000000020000190000000a030000290000002003300039000a00000003001d00000000030304330000001b040000290000000004340436001b00000004001d0000000102200039000000000312004b00003bce0000413d000000400100043d001700000001001d00000ffc0100004100000000001004390000001801000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001802000029000000040220008c00003c060000613d00000017050000290000001b0250006900000fe60300004100000fe60450009c0000000005038019000000400450021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f00000018020000293f933f890000040f0000000003010019000000600330027000010fe60030019d00000fe6033001970003000000010355000000010220019000003f0a0000613d0000001a01000029000000000501041a000000400100043d000000440210003900000019030000290000000000320435000000240210003900000001030000390000000000320435000010150200004100000000002104350000000402100039000000150300002900000000003204350000000603000029000000000403043300000084031000390000000000430435000000a40310003900180fe70050019b000000000504004b00003c240000613d00000000050000190000000706000029000000006706043400000fe70770019700000000037304360000000105500039000000000745004b00003c1e0000413d0000000002230049000000640110003900000000002104350000000c0100002900000000010104330000000002130436001b00000002001d000000000201004b00003c380000613d00000000020000190000000c030000290000002003300039000c00000003001d00000000030304330000001b040000290000000004340436001b00000004001d0000000102200039000000000312004b00003c2e0000413d000000400100043d001700000001001d00000ffc0100004100000000001004390000001801000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001802000029000000040220008c00003c660000613d00000017050000290000001b0250006900000fe60300004100000fe60450009c0000000005038019000000400450021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f00000018020000293f933f890000040f0000000003010019000000600330027000010fe60030019d00000fe6033001970003000000010355000000010220019000003f250000613d0000001a03000029000000000503041a000000400100043d00000044021000390000001904000029000000000042043500000024021000390000000000320435000010150200004100000000002104350000000402100039000000150300002900000000003204350000000603000029000000000403043300000084031000390000000000430435000000a40310003900180fe70050019b000000000504004b00003c830000613d00000000050000190000000706000029000000006706043400000fe70770019700000000037304360000000105500039000000000745004b00003c7d0000413d0000000002230049000000640110003900000000002104350000000d0100002900000000010104330000000002130436001b00000002001d000000000201004b00003c970000613d00000000020000190000000d030000290000002003300039000d00000003001d00000000030304330000001b040000290000000004340436001b00000004001d0000000102200039000000000312004b00003c8d0000413d000000400100043d001700000001001d00000ffc0100004100000000001004390000001801000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001802000029000000040220008c00003cc50000613d00000017050000290000001b0250006900000fe60300004100000fe60450009c0000000005038019000000400450021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f00000018020000293f933f890000040f0000000003010019000000600330027000010fe60030019d00000fe6033001970003000000010355000000010220019000003f400000613d0000001a01000029000000000501041a000000400100043d000000440210003900000019030000290000000000320435000000240210003900000003030000290000000000320435000010150200004100000000002104350000000402100039000000150300002900000000003204350000000603000029000000000403043300000084031000390000000000430435000000a403100039001a0fe70050019b000000000504004b00003ce40000613d000000000500001900000007070000290000000076070434000700000007001d00000fe70660019700000000036304360000000105500039000000000645004b00003cdc0000413d0000000002230049000000640110003900000000002104350000000e0100002900000000010104330000000002130436001b00000002001d000000000201004b00003cf80000613d00000000020000190000000e030000290000002003300039000e00000003001d00000000030304330000001b040000290000000004340436001b00000004001d0000000102200039000000000312004b00003cee0000413d000000400100043d001900000001001d00000ffc0100004100000000001004390000001a01000029000000040010044300000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000000ffd011001c700008002020000393f933f8e0000040f000000010220019000003dae0000613d000000000101043b000000000101004b00003dac0000613d00000000010004140000001a02000029000000040220008c00003d260000613d00000019050000290000001b0250006900000fe60300004100000fe60450009c0000000005038019000000400450021000000fe60520009c00000000020380190000006002200210000000000242019f00000fe60410009c0000000001038019000000c001100210000000000121019f0000001a020000293f933f890000040f0000000003010019000000600330027000010fe60030019d00000fe6033001970003000000010355000000010220019000003f5b0000613d000000150100002900000000001004350000000301000029000000200010043f00000fe603000041000000000100041400000fe60210009c0000000001038019000000c00110021000000ffa011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b000000000201041a001a00000002001d000000000001041b001b00000001001d0000000000100435000000000100041400000fe60210009c00000fe601008041000000c00110021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a02100029000000000312004b00003d4b0000a13d000000000001041b0000000101100039000000000312004b00003d470000213d0000001b010000290000000101100039000000000201041a001a00000002001d000000000001041b000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a02100029000000000312004b00003d630000a13d000000000001041b0000000101100039000000000312004b00003d5f0000213d0000001b010000290000000201100039000000000201041a001a00000002001d000000000001041b000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a02100029000000000312004b00003d7b0000a13d000000000001041b0000000101100039000000000312004b00003d770000213d0000001b010000290000000301100039000000000201041a001a00000002001d000000000001041b000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001a02100029000000000312004b00003d930000a13d000000000001041b0000000101100039000000000312004b00003d8f0000213d0000001b010000290000000401100039000000000201041a001b00000002001d000000000001041b000000000010043500000fe601000041000000000200041400000fe60320009c0000000002018019000000c00120021000001001011001c700008010020000393f933f8e0000040f000000010220019000003dac0000613d000000000101043b0000001b02100029000000000312004b000000670000a13d000000000001041b0000000101100039000000000312004b00003da70000213d000000670000013d000000000100001900003f9500010430000000000001042f000000400200043d00000ff60100004100000000001204350000000401200039000000200300003900000000003104350000000001060433000000240320003900000000001304350000004402200039000000000301004b00003dc70000613d000000000300001900000000042300190000000006530019000000000606043300000000006404350000002003300039000000000413004b00003dbc0000413d000000000313004b00003dc70000a13d000000000321001900000000000304350000001f011000390000000b0300002900000fbf0000013d0000001f0430018f000000050230027200003dd50000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003dce0000413d000000000504004b00003de30000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f950001043000000df60000013d000000400300043d00000ff60400004100000000004304350000000404300039000000200500003900000000005404350000000002020433000000240430003900000000002404350000004403300039000000000402004b000021a50000613d000000000400001900000000053400190000000006140019000000000606043300000000006504350000002004400039000000000524004b00003df30000413d000000000124004b000021a50000a13d00000000013200190000000000010435000021a50000013d0000001f0430018f000000050230027200003e0a0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003e030000413d000000000504004b00003e180000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f000000050230027200003e250000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003e1e0000413d000000000504004b00003e330000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f000000050230027200003e400000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003e390000413d000000000504004b00003e4e0000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f000000050230027200003e5b0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003e540000413d000000000504004b00003e690000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f000000050230027200003e760000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003e6f0000413d000000000504004b00003e840000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f950001043000000ff602000041000000000026043500000004026000390000002004000039000000000042043500000000020504330000000000270435000000000402004b00003e9b0000613d000000000400001900000000051400190000000006340019000000000606043300000000006504350000002004400039000000000524004b00003e900000413d000000000324004b00003e9b0000a13d000000000312001900000000000304350000001f022000390000000b03000029000021bf0000013d0000001f0430018f000000050230027200003ea90000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003ea20000413d000000000504004b00003eb70000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f000000050230027200003ec40000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003ebd0000413d000000000504004b00003ed20000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f000000050230027200003edf0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003ed80000413d000000000504004b00003eed0000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f000000050230027200003efa0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003ef30000413d000000000504004b00003f080000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f000000050230027200003f150000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003f0e0000413d000000000504004b00003f230000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f000000050230027200003f300000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003f290000413d000000000504004b00003f3e0000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f000000050230027200003f4b0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003f440000413d000000000504004b00003f590000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f95000104300000001f0430018f000000050230027200003f660000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000625004b00003f5f0000413d000000000504004b00003f740000613d00000003044002100000000502200210000000000502043300000000054501cf000000000545022f000000000121034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000003f9500010430000000000001042f00000fe602000041000000000300041400000fe60430009c000000000302801900000fe60410009c00000000010280190000006001100210000000c002300210000000000112019f00001012011001c700008010020000393f933f8e0000040f000000010220019000003f870000613d000000000101043b000000000001042d000000000100001900003f950001043000003f8c002104210000000102000039000000000001042d0000000002000019000000000001042d00003f91002104230000000102000039000000000001042d0000000002000019000000000001042d00003f930000043200003f940001042e00003f95000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000008000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000020000000000000000000000000000004000000100000000000000000068092bd90000000000000000000000000000000000000000000000000000000093782db000000000000000000000000000000000000000000000000000000000c1e576220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000edb12ade00000000000000000000000000000000000000000000000000000000edb12adf00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000c1e5762200000000000000000000000000000000000000000000000000000000d89b16818000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000000200000000000000000000000000000000000040000000000000000000000000dc19e842000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b8302000002000000000000000000000000000000240000000000000000000000004552525f494e56414c49445f504f4f4c5f4144445245535300000000000000003018205f0000000000000000000000000000000000000000000000000000000073a9855c000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000001000000000000000007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff536166654d6174683a206469766973696f6e206279207a65726f000000000000536166654d6174683a207375627472616374696f6e206f766572666c6f7700004552525f4e4f545f4f50454e5f504f4f4c000000000000000000000000000000a0e67e2b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff309a042c00000000000000000000000000000000000000000000000000000000d29986c100000000000000000000000000000000000000000000000000000000e03fe177bb050a40ea1b3ecd64121a3fa063a94b6d404b2f45c64697555efe0ec5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708da5cb5b0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffa9059cbb00000000000000000000000000000000000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000200000000000000000000000000000000000000000000000000000000000000589269304a5775087fef7422dd5076938901ab1fa82e920b6de707864f198e601bf0129823b56213a46996bc874ce50b318995cae2bbdcd2000933d36012547d9155dae7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000800000000000000000ffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000093782db0000000000000000000000000000000000000000000000000000000009daafec700000000000000000000000000000000000000000000000000000000c0fcb1660000000000000000000000000000000000000000000000000000000071bb41a80000000000000000000000000000000000000000000000000000000071bb41a90000000000000000000000000000000000000000000000000000000089a612e5000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000068092bd9000000000000000000000000000000000000000000000000000000006fd4ba9c00000000000000000000000000000000000000000000000000000000715018a6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff36e4c87f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000545274e900000000000000000000000000000000000000000000000000000000545274ea0000000000000000000000000000000000000000000000000000000055291dbd00000000000000000000000000000000000000000000000000000000598797ad0000000000000000000000000000000000000000000000000000000036e4c87f0000000000000000000000000000000000000000000000000000000037dfe11400000000000000000000000000000000000000000000000000000000483e19489cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3900000000000008fc0000000000000000000000000000000000000000000000004d6178696d756d206c696d6974206578636565646564000000000000000000000000000000000000000000000000000000000040000000800000000000000000000000000000000000000000000000000000000000000000000000000bac7b80000000000000000000000000000000000000000000000000000000000bac7b8100000000000000000000000000000000000000000000000000000000125bfb66000000000000000000000000000000000000000000000000000000001483d99d000000000000000000000000000000000000000000000000000000000417c5f5000000000000000000000000000000000000000000000000000000000922f29d000000000000000000000000000000000000000000000000000000000b6b3b2a00000000000000000000000000000000000000240000008000000000000000004552525f544f4b454e5f4c454e4754485f4e4f545f4d4154434800000000000023b872dd000000000000000000000000000000000000000000000000000000004552525f504f4f4c5f49535f424c41434b4c49535400000000000000000000007700000000000000000000000000000000000000000000000000000000000000536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005361666545524332303a2063616c6c20746f206e6f6e2d636f6e7472616374006f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65644552525f4d414e414745525f434f554c445f4e4f545f434c41494d00000000004552525f4e4f545f4d414e4745525f46454500000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000008000000000000000004552525f494e56414c49445f555345525641554c545f414444524553530000005df98f330d11aa075e9c27abcce191646759e1ec590732ebf1060fc92d9c79fb

Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
0xCbD3C612F976a84522f13b4CBfD384772113458C
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.