Token
Gigaverse - Items ()
ERC-1155
Overview
Max Total Supply
0
Holders
3
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
GameItems
Compiler Version
v0.8.28+commit.7893614a
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import {IERC1155} from "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import {ERC1155} from "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import {MANAGER_ROLE, MINTER_ROLE, GAME_LOGIC_CONTRACT_ROLE, DEPLOYER_ROLE} from "../constants/RoleConstants.sol"; import {IS_SOULBOUND_CID, NAME_CID, PLAYER_CID, ID_CID, BALANCE_CID, CONTRACT_URI_CID, BASE_URI_CID, BASE_NAME_CID, MAX_SUPPLY_CID, IS_RECYCLABLE_CID, BURN_COUNT_CID, MINT_COUNT_CID, OWNER_CID} from "../constants/ColumnConstants.sol"; import {IGameItems, ID} from "./IGameItems.sol"; import {GameRegistryConsumer} from "../core/GameRegistryConsumer.sol"; import {IERC1155UpdateHandler} from "./IERC1155UpdateHandler.sol"; import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import {DataTable} from "../db/DataTable.sol"; /** @title ERC1155 contract for Game Items */ contract GameItems is DataTable, IGameItems, ERC1155 { /** TYPES **/ struct TypeInfo { bool recyclable; uint256 mints; uint256 burns; uint256 maxSupply; } /** MEMBERS **/ /// @notice Handler for before update events address public updateHandler; /** EVENTS **/ /// @notice Emitted when contractURI has changed event ContractURIUpdated(string uri); /** ERRORS **/ /// @notice maxSupply needs to be higher than minted error MaxSupplyTooLow(uint256 needed, uint256 actual); /// @notice Token type has not been defined error NonExistentTokenId(uint256); /// @notice Amount to mint exceeds max supply error NotEnoughSupply(uint256 needed, uint256 actual); /** * Initializer function for upgradeable contract */ constructor(address gameRegistryAddress) DataTable(gameRegistryAddress, ID) ERC1155("") {} function initialize() external override onlyRole(DEPLOYER_ROLE) { initializeTable("Gigaverse - Items", ID); } /** EXTERNAL **/ /** * Sets the current contractURI for the contract * * @param _uri New contract URI */ function setContractURI(string calldata _uri) public onlyRole(MANAGER_ROLE) { _setTableStringValue(CONTRACT_URI_CID, _uri); emit ContractURIUpdated(_uri); } function owner() public view override returns (address) { return getTableAddressValue(OWNER_CID); } /** * @return Contract metadata URI for the NFT contract, used by NFT marketplaces to display collection inf */ function contractURI() public view returns (string memory) { return getTableStringValue(CONTRACT_URI_CID); } function setBaseTokenName(string memory baseTokenName) external onlyRole(MANAGER_ROLE) { _setTableStringValue(BASE_NAME_CID, baseTokenName); } function getType(uint256 id) public view returns (TypeInfo memory) { uint256 maxSupply = getDocUint256Value(id, MAX_SUPPLY_CID); bool recyclable = getDocBoolValue(id, IS_RECYCLABLE_CID); uint256 mints = getDocUint256Value(id, MINT_COUNT_CID); uint256 burns = getDocUint256Value(id, BURN_COUNT_CID); return TypeInfo(recyclable, mints, burns, maxSupply); } /** * Sets a mintable token type up * * @param id Id of the token type to setup * @param maxSupply Max Supply of the stoken * @param recyclable Whether or not burns put tokens back into the pool to be minted again */ function setType( uint256 id, uint256 maxSupply, bool recyclable ) public onlyRole(MANAGER_ROLE) { TypeInfo memory typeData = getType(id); if (typeData.mints > maxSupply) { revert MaxSupplyTooLow(typeData.mints, maxSupply); } _setDocUint256Value(id, MAX_SUPPLY_CID, maxSupply); _setDocBoolValue(id, IS_RECYCLABLE_CID, recyclable); } function setTokenName(uint256 id, string memory name) public onlyRole(MANAGER_ROLE) { _setDocStringValue(id, NAME_CID, name); } function setSoulBound(uint256 id, bool soulBound) public onlyRole(MANAGER_ROLE) { _setDocBoolValue(id, IS_SOULBOUND_CID, soulBound); } function setTypeAndName( uint256 id, uint256 maxSupply, bool recyclable, string memory name ) external onlyRole(MANAGER_ROLE) { setType(id, maxSupply, recyclable); setTokenName(id, name); } /** * Mints a ERC1155 token * * @param to Recipient of the token * @param id Id of token to mint * @param amount Quantity of token to mint */ function mint( address to, uint256 id, uint256 amount ) external override onlyRole(MINTER_ROLE) whenNotPaused { _safeMint(to, id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) external onlyRole(MINTER_ROLE) whenNotPaused { _mintBatch(to, ids, amounts, data); } function mintBatch( address to, uint256[] memory ids, uint256[] memory amounts ) external onlyRole(MINTER_ROLE) whenNotPaused { _mintBatch(to, ids, amounts, ""); } /** * Burn a token - any payment / game logic should be handled in the game contract. * * @param from Account to burn from * @param id Id of the token to burn * @param amount Quantity to burn */ function burn( address from, uint256 id, uint256 amount ) external override onlyRole(GAME_LOGIC_CONTRACT_ROLE) whenNotPaused { _incrementAmount(id, BURN_COUNT_CID, amount); require(balanceOf(from, id) >= amount, "Not enough balance"); _burn(from, id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) external onlyRole(GAME_LOGIC_CONTRACT_ROLE) whenNotPaused { _burnBatch(from, ids, amounts); } function setUri(string memory newUri) external onlyRole(MANAGER_ROLE) { _setTableStringValue(BASE_URI_CID, newUri); } function uri(uint256 /*id*/) public view override returns (string memory) { return getTableStringValue(BASE_URI_CID); } /** * @param id Id of the type to get data for * * @return How many of the given token id have been minted */ function minted( uint256 id ) external view virtual override(IGameItems) returns (uint256) { return getDocUint256Value(id, MINT_COUNT_CID); } /** * Sets the before token transfer handler * * @param handlerAddress Address to the transfer hook handler contract */ function setUpdateHandler( address handlerAddress ) external onlyRole(MANAGER_ROLE) { updateHandler = handlerAddress; } function supportsInterface( bytes4 interfaceId ) public view virtual override( ERC1155, IERC165 ) returns (bool) { return interfaceId == type(IERC1155).interfaceId || ERC1155(this).supportsInterface(interfaceId) || interfaceId == type(IGameItems).interfaceId; } /** @return Token name for the given tokenId */ function tokenName( uint256 tokenId ) public view virtual returns (string memory) { if (hasDocStringValue(tokenId, NAME_CID)) { // If token has a name trait set, use that return getDocStringValue(tokenId, NAME_CID); } else { return string(abi.encodePacked(getTableStringValue(BASE_NAME_CID), tokenId)); } } function getAccountTokenKey(address account, uint256 id) public pure returns (uint256) { return uint256(keccak256(abi.encodePacked(account, id))); } function balanceOf(address account, uint256 id) public view override(ERC1155, IERC1155) returns (uint256) { return getDocUint256Value(getAccountTokenKey(account, id), BALANCE_CID); } /*** INTERNAL ***/ // Executes the mint with appropriate checks and locking function _safeMint(address to, uint256 id, uint256 amount) internal { //TypeInfo memory typeData = getType(id); //if (typeData.recyclable) { // uint256 needed = typeData.mints - typeData.burns + amount; // if (needed > typeData.maxSupply) { // revert NotEnoughSupply(needed, typeData.maxSupply); // } //} else { uint256 maxSupply = getDocUint256Value(id, MAX_SUPPLY_CID); uint256 needed = getDocUint256Value(id, MINT_COUNT_CID) + amount; if (needed > maxSupply) { revert NotEnoughSupply(needed, maxSupply); } //} _incrementAmount(id, MINT_COUNT_CID, amount); _mint(to, id, amount, ""); } /** * @notice Additional checks to prevent transfer of soulbound items, locked tokems, etc. */ function _update( address from, address to, uint256[] memory ids, uint256[] memory amounts ) internal virtual override( ERC1155 ) { address operator = msg.sender; if (updateHandler != address(0)) { IERC1155UpdateHandler handlerRef = IERC1155UpdateHandler( updateHandler ); handlerRef.update( address(this), from, to, ids, amounts ); } for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; if (getDocBoolValue(id, IS_SOULBOUND_CID) && from != address(0) && to != address(0)) { revert("Soulbound token cannot be transferred"); } uint256 amount = amounts[i]; if (from != address(0)) { _decrementAmount(getAccountTokenKey(from, id), BALANCE_CID, amount); } if (to != address(0)) { uint256 accountKey = getAccountTokenKey(to, id); _incrementAmount(accountKey, BALANCE_CID, amount); if (getDocAddressValue(accountKey, PLAYER_CID) == address(0)) { _setDocAddressValue(accountKey, PLAYER_CID, to); _setDocUint256Value(accountKey, ID_CID, id); } } } if (ids.length == 1) { emit TransferSingle(operator, from, to, ids[0], amounts[0]); } else { emit TransferBatch(operator, from, to, ids, amounts); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC-1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[ERC]. */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` amount of tokens of type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the value of tokens of token type `id` owned by `account`. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch( address[] calldata accounts, uint256[] calldata ids ) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the zero address. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers a `value` amount of tokens of type `id` from `from` to `to`. * * WARNING: This function can potentially allow a reentrancy attack when transferring tokens * to an untrusted contract, when invoking {onERC1155Received} on the receiver. * Ensure to follow the checks-effects-interactions pattern and consider employing * reentrancy guards when interacting with untrusted contracts. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `value` amount. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom(address from, address to, uint256 id, uint256 value, bytes calldata data) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * WARNING: This function can potentially allow a reentrancy attack when transferring tokens * to an untrusted contract, when invoking {onERC1155BatchReceived} on the receiver. * Ensure to follow the checks-effects-interactions pattern and consider employing * reentrancy guards when interacting with untrusted contracts. * * Emits either a {TransferSingle} or a {TransferBatch} event, depending on the length of the array arguments. * * Requirements: * * - `ids` and `values` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.20; import {IERC1155} from "./IERC1155.sol"; import {IERC1155MetadataURI} from "./extensions/IERC1155MetadataURI.sol"; import {ERC1155Utils} from "./utils/ERC1155Utils.sol"; import {Context} from "../../utils/Context.sol"; import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol"; import {Arrays} from "../../utils/Arrays.sol"; import {IERC1155Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 */ abstract contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI, IERC1155Errors { using Arrays for uint256[]; using Arrays for address[]; mapping(uint256 id => mapping(address account => uint256)) private _balances; mapping(address account => mapping(address operator => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the ERC]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256 /* id */) public view virtual returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. */ function balanceOf(address account, uint256 id) public view virtual returns (uint256) { return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch( address[] memory accounts, uint256[] memory ids ) public view virtual returns (uint256[] memory) { if (accounts.length != ids.length) { revert ERC1155InvalidArrayLength(ids.length, accounts.length); } uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts.unsafeMemoryAccess(i), ids.unsafeMemoryAccess(i)); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 id, uint256 value, bytes memory data) public virtual { address sender = _msgSender(); if (from != sender && !isApprovedForAll(from, sender)) { revert ERC1155MissingApprovalForAll(sender, from); } _safeTransferFrom(from, to, id, value, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory values, bytes memory data ) public virtual { address sender = _msgSender(); if (from != sender && !isApprovedForAll(from, sender)) { revert ERC1155MissingApprovalForAll(sender, from); } _safeBatchTransferFrom(from, to, ids, values, data); } /** * @dev Transfers a `value` amount of tokens of type `id` from `from` to `to`. Will mint (or burn) if `from` * (or `to`) is the zero address. * * Emits a {TransferSingle} event if the arrays contain one element, and {TransferBatch} otherwise. * * Requirements: * * - If `to` refers to a smart contract, it must implement either {IERC1155Receiver-onERC1155Received} * or {IERC1155Receiver-onERC1155BatchReceived} and return the acceptance magic value. * - `ids` and `values` must have the same length. * * NOTE: The ERC-1155 acceptance check is not performed in this function. See {_updateWithAcceptanceCheck} instead. */ function _update(address from, address to, uint256[] memory ids, uint256[] memory values) internal virtual { if (ids.length != values.length) { revert ERC1155InvalidArrayLength(ids.length, values.length); } address operator = _msgSender(); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids.unsafeMemoryAccess(i); uint256 value = values.unsafeMemoryAccess(i); if (from != address(0)) { uint256 fromBalance = _balances[id][from]; if (fromBalance < value) { revert ERC1155InsufficientBalance(from, fromBalance, value, id); } unchecked { // Overflow not possible: value <= fromBalance _balances[id][from] = fromBalance - value; } } if (to != address(0)) { _balances[id][to] += value; } } if (ids.length == 1) { uint256 id = ids.unsafeMemoryAccess(0); uint256 value = values.unsafeMemoryAccess(0); emit TransferSingle(operator, from, to, id, value); } else { emit TransferBatch(operator, from, to, ids, values); } } /** * @dev Version of {_update} that performs the token acceptance check by calling * {IERC1155Receiver-onERC1155Received} or {IERC1155Receiver-onERC1155BatchReceived} on the receiver address if it * contains code (eg. is a smart contract at the moment of execution). * * IMPORTANT: Overriding this function is discouraged because it poses a reentrancy risk from the receiver. So any * update to the contract state after this function would break the check-effect-interaction pattern. Consider * overriding {_update} instead. */ function _updateWithAcceptanceCheck( address from, address to, uint256[] memory ids, uint256[] memory values, bytes memory data ) internal virtual { _update(from, to, ids, values); if (to != address(0)) { address operator = _msgSender(); if (ids.length == 1) { uint256 id = ids.unsafeMemoryAccess(0); uint256 value = values.unsafeMemoryAccess(0); ERC1155Utils.checkOnERC1155Received(operator, from, to, id, value, data); } else { ERC1155Utils.checkOnERC1155BatchReceived(operator, from, to, ids, values, data); } } } /** * @dev Transfers a `value` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `value` amount. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom(address from, address to, uint256 id, uint256 value, bytes memory data) internal { if (to == address(0)) { revert ERC1155InvalidReceiver(address(0)); } if (from == address(0)) { revert ERC1155InvalidSender(address(0)); } (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value); _updateWithAcceptanceCheck(from, to, ids, values, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. * - `ids` and `values` must have the same length. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory values, bytes memory data ) internal { if (to == address(0)) { revert ERC1155InvalidReceiver(address(0)); } if (from == address(0)) { revert ERC1155InvalidSender(address(0)); } _updateWithAcceptanceCheck(from, to, ids, values, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the ERC]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the values in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates a `value` amount of tokens of type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint(address to, uint256 id, uint256 value, bytes memory data) internal { if (to == address(0)) { revert ERC1155InvalidReceiver(address(0)); } (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value); _updateWithAcceptanceCheck(address(0), to, ids, values, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `values` must have the same length. * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch(address to, uint256[] memory ids, uint256[] memory values, bytes memory data) internal { if (to == address(0)) { revert ERC1155InvalidReceiver(address(0)); } _updateWithAcceptanceCheck(address(0), to, ids, values, data); } /** * @dev Destroys a `value` amount of tokens of type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `value` amount of tokens of type `id`. */ function _burn(address from, uint256 id, uint256 value) internal { if (from == address(0)) { revert ERC1155InvalidSender(address(0)); } (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value); _updateWithAcceptanceCheck(from, address(0), ids, values, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `value` amount of tokens of type `id`. * - `ids` and `values` must have the same length. */ function _burnBatch(address from, uint256[] memory ids, uint256[] memory values) internal { if (from == address(0)) { revert ERC1155InvalidSender(address(0)); } _updateWithAcceptanceCheck(from, address(0), ids, values, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the zero address. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { if (operator == address(0)) { revert ERC1155InvalidOperator(address(0)); } _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Creates an array in memory with only one value for each of the elements provided. */ function _asSingletonArrays( uint256 element1, uint256 element2 ) private pure returns (uint256[] memory array1, uint256[] memory array2) { assembly ("memory-safe") { // Load the free memory pointer array1 := mload(0x40) // Set array length to 1 mstore(array1, 1) // Store the single element at the next word after the length (where content starts) mstore(add(array1, 0x20), element1) // Repeat for next array locating it right after the first array array2 := add(array1, 0x40) mstore(array2, 1) mstore(add(array2, 0x20), element2) // Update the free memory pointer by pointing after the second array mstore(0x40, add(array2, 0x40)) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; // Pauser Role - Can pause the game bytes32 constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); // Minter Role - Can mint items, NFTs, and ERC20 currency bytes32 constant MINTER_ROLE = keccak256("MINTER_ROLE"); // Manager Role - Can manage the shop, loot tables, and other game data bytes32 constant MANAGER_ROLE = keccak256("MANAGER_ROLE"); // Depoloyer Role - Can Deploy new Systems bytes32 constant DEPLOYER_ROLE = keccak256("DEPLOYER_ROLE"); // Game Logic Contract - Contract that executes game logic and accesses other systems bytes32 constant GAME_LOGIC_CONTRACT_ROLE = keccak256("GAME_LOGIC_CONTRACT_ROLE"); // For functions callable from game server bytes32 constant SERVER_JUDGE_ROLE = keccak256("SERVER_JUDGE_ROLE");
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; uint256 constant NAME_CID = uint256(keccak256("name")); uint256 constant DESCRIPTION_CID = uint256(keccak256("description")); uint256 constant LEVEL_CID = uint256(keccak256("level")); uint256 constant IS_NOOB_CID = uint256(keccak256("is_noob")); uint256 constant NOOB_TOKEN_CID = uint256(keccak256("noob_tokend_id")); uint256 constant GIGA_NAME_TOKENDID_CID = uint256(keccak256("giganame_tokend_id")); uint256 constant IS_GIGA_NAME_CID = uint256(keccak256("is_giga_name")); uint256 constant GAME_ITEM_ID_CID = uint256(keccak256("game_item_id")); uint256 constant UINT256_CID = uint256(keccak256("int256")); uint256 constant ETH_MINT_PRICE_CID = uint256(keccak256("eth_mint_price")); uint256 constant NEXT_DOCID_CID = uint256(keccak256("next_token_id")); uint256 constant ID_CID = uint256(keccak256("id")); uint256 constant BASE_NAME_CID = uint256(keccak256("base_name")); uint256 constant BASE_URI_CID = uint256(keccak256("base_uri")); uint256 constant LAST_TRANSFER_TIME_CID = uint256(keccak256("last_transfer_time")); uint256 constant OWNER_CID = uint256(keccak256("owner")); uint256 constant INITIALIZED_CID = uint256(keccak256("initialized")); uint256 constant MAX_SUPPLY_CID = uint256(keccak256("max_supply")); uint256 constant ADDRESS_CID = uint256(keccak256("address")); uint256 constant IS_SOULBOUND_CID = uint256(keccak256("soulbound")); uint256 constant TIME_BETWEEN_CID = uint256(keccak256("time_between")); uint256 constant TIMESTAMP_CID = uint256(keccak256("timestamp")); uint256 constant IMG_URL_CID = uint256(keccak256("img_url")); uint256 constant PLAYER_CID = uint256(keccak256("player")); uint256 constant MINT_COUNT_CID = uint256(keccak256("mint_count")); uint256 constant CONTRACT_URI_CID = uint256(keccak256("contract_uri")); uint256 constant IS_RECYCLABLE_CID = uint256(keccak256("is_recyclable")); uint256 constant BURN_COUNT_CID = uint256(keccak256("burn_count")); uint256 constant BALANCE_CID = uint256(keccak256("balance")); uint256 constant ICON_URL_CID = uint256(keccak256("icon_url")); uint256 constant DUNGEON_ID_CID = uint256(keccak256("dungeon_id")); uint256 constant ENERGY_CID = uint256(keccak256("energy")); uint256 constant IS_CANCELLED_CID = uint256(keccak256("is_cancelled")); uint256 constant SPRITE_SHEET_URL_CID = uint256(keccak256("sprite_sheet_url")); uint256 constant IMPORT_AMOUNT_CID = uint256(keccak256("import_amount")); uint256 constant EXPORT_AMOUNT_CID = uint256(keccak256("export_amount")); uint256 constant EXPORT_LICENSE_CID = uint256(keccak256("export_license"));
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import {IERC1155} from "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; uint256 constant ID = uint256(keccak256("game.gigaverse.gameitems")); interface IGameItems is IERC1155 { /** * Mints a ERC1155 token * * @param to Recipient of the token * @param id Id of token to mint * @param amount Quantity of token to mint */ function mint(address to, uint256 id, uint256 amount) external; /** * Burn a token - any payment / game logic should be handled in the game contract. * * @param from Account to burn from * @param id Id of the token to burn * @param amount Quantity to burn */ function burn(address from, uint256 id, uint256 amount) external; /** * @param id Id of the type to get data for * * @return How many of the given token id have been minted */ function minted(uint256 id) external view returns (uint256); function burnBatch(address from, uint256[] memory ids, uint256[] memory amounts) external; }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.13; import {ReentrancyGuard} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import {PAUSER_ROLE, MANAGER_ROLE} from "../constants/RoleConstants.sol"; import {ISystem} from "./ISystem.sol"; import {IGameRegistry, IERC165} from "./IGameRegistry.sol"; import {IDataStore, ID as DATA_STORE_ID} from "../db/IDataStore.sol"; import {DEPLOYER_ROLE} from "../constants/RoleConstants.sol"; /** @title Contract that lets a child contract access the GameRegistry contract */ abstract contract GameRegistryConsumer is ReentrancyGuard, ISystem { /// @notice Whether or not the contract is paused bool private _paused; /// @notice Reference to the game registry that this contract belongs to IGameRegistry internal _gameRegistry; /// @notice Id for the system/component uint256 private _id; /** EVENTS **/ /// @dev Emitted when the pause is triggered by `account`. event Paused(address account); /// @dev Emitted when the pause is lifted by `account`. event Unpaused(address account); /** ERRORS **/ /// @notice Not authorized to perform action error MissingRole(address account, bytes32 expectedRole); /** MODIFIERS **/ /// @notice Modifier to verify a user has the appropriate role to call a given function modifier onlyRole(bytes32 role) { _checkRole(role, msg.sender); _; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** ERRORS **/ /// @notice Error if the game registry specified is invalid error InvalidGameRegistry(); /** SETUP **/ /** @return ID for this system */ function getId() public view override returns (uint256) { return _id; } /** * Pause/Unpause the contract * * @param shouldPause Whether or pause or unpause */ function setPaused(bool shouldPause) external onlyRole(PAUSER_ROLE) { if (shouldPause) { _pause(); } else { _unpause(); } } /** * @dev Returns true if the contract OR the GameRegistry is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused || _gameRegistry.paused(); } /** * Sets the GameRegistry contract address for this contract * * @param gameRegistryAddress Address for the GameRegistry contract */ function setGameRegistry( address gameRegistryAddress ) external onlyRole(MANAGER_ROLE) { _gameRegistry = IGameRegistry(gameRegistryAddress); if (gameRegistryAddress == address(0)) { revert InvalidGameRegistry(); } } /** @return GameRegistry contract for this contract */ function getGameRegistry() external view returns (IGameRegistry) { return _gameRegistry; } /** INTERNAL **/ /** * @dev Returns `true` if `account` has been granted `role`. */ function _hasAccessRole( bytes32 role, address account ) internal view returns (bool) { return _gameRegistry.hasAccessRole(role, account); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!_gameRegistry.hasAccessRole(role, account)) { revert MissingRole(account, role); } } /** @return Returns the dataStore for this contract */ function _dataStore() internal view returns (IDataStore) { return IDataStore(_getSystem(DATA_STORE_ID)); } /** @return Address for a given system */ function _getSystem(uint256 systemId) internal view returns (address) { return _gameRegistry.getSystem(systemId); } /** PAUSABLE **/ /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual { require(_paused == false, "Pausable: not paused"); _paused = true; emit Paused(msg.sender); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual { require(_paused == true, "Pausable: not paused"); _paused = false; emit Unpaused(msg.sender); } function initialize() external virtual onlyRole(DEPLOYER_ROLE) { } /** * Constructor for this contract * * @param gameRegistryAddress Address of the GameRegistry contract * @param id Id of the system/component */ constructor( address gameRegistryAddress, uint256 id ) { _gameRegistry = IGameRegistry(gameRegistryAddress); if (gameRegistryAddress == address(0)) { revert InvalidGameRegistry(); } _paused = true; _id = id; } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; interface IERC1155UpdateHandler { /** @dev Emitted when a transfer is updated * Update hook for GameItems. Performs any trait checks needed before transfer * * @param tokenContract Token contract address * @param from From address * @param to To address * @param ids Ids to transfer * @param values Values to transfer */ function update( address tokenContract, address from, address to, uint256[] memory ids, uint256[] memory values ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[ERC]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import {DataStore, ID as DATA_STORE_ID} from "./DataStore.sol"; import {DEPLOYER_ROLE} from "../constants/RoleConstants.sol"; import {NAME_CID, ADDRESS_CID, ID_CID, NEXT_DOCID_CID, OWNER_CID} from "../constants/ColumnConstants.sol"; import {GameRegistryConsumer} from "../core/GameRegistryConsumer.sol"; contract DataTable is GameRegistryConsumer { error AlreadyInitialized(); bool private _initialized; constructor(address gameRegistryAddress, uint256 ID) GameRegistryConsumer(gameRegistryAddress, ID) {} function owner() public view virtual returns (address) { return getTableAddressValue(OWNER_CID); } function name() public view virtual returns (string memory) { return getTableStringValue(NAME_CID); } function initializeTable(string memory nameToSet, uint256 id) internal { if (_initialized) { revert AlreadyInitialized(); } _setTableAddressValue(ADDRESS_CID, address(this)); _setTableAddressValue(OWNER_CID, msg.sender); _setTableStringValue(NAME_CID, nameToSet); _setTableUint256Value(ID_CID, id); _initialized = true; } function getTableId() public virtual view returns (uint256) { return getId(); } function _getAndIncrementAutoIncId() internal returns (uint256) { uint256 currentId = getTableUint256Value(NEXT_DOCID_CID); _setTableUint256Value(NEXT_DOCID_CID, currentId + 1); return currentId + 1; } function _incrementAmount(uint256 docId, uint256 columnId, uint256 amount) internal { uint256 currentAmount = getDocUint256Value(docId, columnId); _setDocUint256Value(docId, columnId, currentAmount + amount); } function _decrementAmount(uint256 docId, uint256 columnId, uint256 amount) internal { uint256 currentAmount = getDocUint256Value(docId, columnId); _setDocUint256Value(docId, columnId, currentAmount - amount); } function _setTableStringValue(uint256 columnId, string memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setString(getTableId(), 0, columnId, value); } function _setTableUint256Value(uint256 columnId, uint256 value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setUint256(getTableId(), 0, columnId, value); } function _setTableAddressValue(uint256 columnId, address value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddress(getTableId(), 0, columnId, value); } function _setTableBoolValue(uint256 columnId, bool value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setBool(getTableId(), 0, columnId, value); } function _setTableAdddressValue(uint256 columnId, address value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddress(getTableId(), 0, columnId, value); } function _setTableUint256ArrayValue(uint256 columnId, uint256[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setUint256ArrayValue(getTableId(), 0, columnId, value); } function _setTableBoolArrayValue(uint256 columnId, bool[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setBoolArrayValue(getTableId(), 0, columnId, value); } function _setTableAddressArrayValue(uint256 columnId, address[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddressArrayValue(getTableId(), 0, columnId, value); } function _setDocAddressArrayValue(uint256 docId, uint256 columnId, address[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddressArrayValue(getTableId(), docId, columnId, value); } function _setDocBoolArrayValue(uint256 docId, uint256 columnId, bool[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setBoolArrayValue(getTableId(), docId, columnId, value); } function _setDocStringValue(uint256 docId, uint256 columnId, string memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setString(getTableId(), docId, columnId, value); } function _setDocUint256Value(uint256 docId, uint256 columnId, uint256 value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setUint256(getTableId(), docId, columnId, value); } function _setDocUint256ArrayValue(uint256 docId, uint256 columnId, uint256[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setUint256ArrayValue(getTableId(), docId, columnId, value); } function _setDocBoolValue(uint256 docId, uint256 columnId, bool value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setBool(getTableId(), docId, columnId, value); } function _setDocAddressValue(uint256 docId, uint256 columnId, address value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddress(getTableId(), docId, columnId, value); } function getTableBoolValue(uint256 columnId) public view returns (bool) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getBool(getTableId(), 0, columnId); } function getTableUint256Value(uint256 columnId) public view returns (uint256) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getUint256(getTableId(), 0, columnId); } function getTableStringValue(uint256 columnId) public view returns (string memory) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getString(getTableId(), 0, columnId); } function getTableAddressValue(uint256 columnId) public view returns (address) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getAddress(getTableId(), 0, columnId); } function getTableUint256ArrayValue(uint256 columnId) public view returns (uint256[] memory) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getUint256Array(getTableId(), 0, columnId); } function getDocUint256ArrayValue(uint256 docId, uint256 columnId) public view returns (uint256[] memory) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getUint256Array(getTableId(), docId, columnId); } function getDocStringValue(uint256 docId, uint256 columnId) public view returns (string memory) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getString(getTableId(), docId, columnId); } function getDocUint256Value(uint256 docId, uint256 columnId) public view returns (uint256) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getUint256(getTableId(), docId, columnId); } function getDocBoolValue(uint256 docId, uint256 columnId) public view returns (bool) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getBool(getTableId(), docId, columnId); } function getDocAddressValue(uint256 docId, uint256 columnId) public view returns (address) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getAddress(getTableId(), docId, columnId); } function hasDocStringValue(uint256 docId, uint256 columnId) public view returns (bool) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).hasStringValue(getTableId(), docId, columnId); } function hasDocValue(uint256 docId, uint256 columnId) public view returns (bool) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).hasValue(getTableId(), docId, columnId); } function getPlayerDocId(address player) public pure returns (uint256) { return uint256(uint160(player)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.20; import {IERC1155} from "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[ERC]. */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC1155/utils/ERC1155Utils.sol) pragma solidity ^0.8.20; import {IERC1155Receiver} from "../IERC1155Receiver.sol"; import {IERC1155Errors} from "../../../interfaces/draft-IERC6093.sol"; /** * @dev Library that provide common ERC-1155 utility functions. * * See https://eips.ethereum.org/EIPS/eip-1155[ERC-1155]. * * _Available since v5.1._ */ library ERC1155Utils { /** * @dev Performs an acceptance check for the provided `operator` by calling {IERC1155-onERC1155Received} * on the `to` address. The `operator` is generally the address that initiated the token transfer (i.e. `msg.sender`). * * The acceptance call is not executed and treated as a no-op if the target address doesn't contain code (i.e. an EOA). * Otherwise, the recipient must implement {IERC1155Receiver-onERC1155Received} and return the acceptance magic value to accept * the transfer. */ function checkOnERC1155Received( address operator, address from, address to, uint256 id, uint256 value, bytes memory data ) internal { if (to.code.length > 0) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, value, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { // Tokens rejected revert IERC1155Errors.ERC1155InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { // non-IERC1155Receiver implementer revert IERC1155Errors.ERC1155InvalidReceiver(to); } else { assembly ("memory-safe") { revert(add(32, reason), mload(reason)) } } } } } /** * @dev Performs a batch acceptance check for the provided `operator` by calling {IERC1155-onERC1155BatchReceived} * on the `to` address. The `operator` is generally the address that initiated the token transfer (i.e. `msg.sender`). * * The acceptance call is not executed and treated as a no-op if the target address doesn't contain code (i.e. an EOA). * Otherwise, the recipient must implement {IERC1155Receiver-onERC1155Received} and return the acceptance magic value to accept * the transfer. */ function checkOnERC1155BatchReceived( address operator, address from, address to, uint256[] memory ids, uint256[] memory values, bytes memory data ) internal { if (to.code.length > 0) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, values, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { // Tokens rejected revert IERC1155Errors.ERC1155InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { // non-IERC1155Receiver implementer revert IERC1155Errors.ERC1155InvalidReceiver(to); } else { assembly ("memory-safe") { revert(add(32, reason), mload(reason)) } } } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/Arrays.sol) // This file was procedurally generated from scripts/generate/templates/Arrays.js. pragma solidity ^0.8.20; import {Comparators} from "./Comparators.sol"; import {SlotDerivation} from "./SlotDerivation.sol"; import {StorageSlot} from "./StorageSlot.sol"; import {Math} from "./math/Math.sol"; /** * @dev Collection of functions related to array types. */ library Arrays { using SlotDerivation for bytes32; using StorageSlot for bytes32; /** * @dev Sort an array of uint256 (in memory) following the provided comparator function. * * This function does the sorting "in place", meaning that it overrides the input. The object is returned for * convenience, but that returned value can be discarded safely if the caller has a memory pointer to the array. * * NOTE: this function's cost is `O(n · log(n))` in average and `O(n²)` in the worst case, with n the length of the * array. Using it in view functions that are executed through `eth_call` is safe, but one should be very careful * when executing this as part of a transaction. If the array being sorted is too large, the sort operation may * consume more gas than is available in a block, leading to potential DoS. * * IMPORTANT: Consider memory side-effects when using custom comparator functions that access memory in an unsafe way. */ function sort( uint256[] memory array, function(uint256, uint256) pure returns (bool) comp ) internal pure returns (uint256[] memory) { _quickSort(_begin(array), _end(array), comp); return array; } /** * @dev Variant of {sort} that sorts an array of uint256 in increasing order. */ function sort(uint256[] memory array) internal pure returns (uint256[] memory) { sort(array, Comparators.lt); return array; } /** * @dev Sort an array of address (in memory) following the provided comparator function. * * This function does the sorting "in place", meaning that it overrides the input. The object is returned for * convenience, but that returned value can be discarded safely if the caller has a memory pointer to the array. * * NOTE: this function's cost is `O(n · log(n))` in average and `O(n²)` in the worst case, with n the length of the * array. Using it in view functions that are executed through `eth_call` is safe, but one should be very careful * when executing this as part of a transaction. If the array being sorted is too large, the sort operation may * consume more gas than is available in a block, leading to potential DoS. * * IMPORTANT: Consider memory side-effects when using custom comparator functions that access memory in an unsafe way. */ function sort( address[] memory array, function(address, address) pure returns (bool) comp ) internal pure returns (address[] memory) { sort(_castToUint256Array(array), _castToUint256Comp(comp)); return array; } /** * @dev Variant of {sort} that sorts an array of address in increasing order. */ function sort(address[] memory array) internal pure returns (address[] memory) { sort(_castToUint256Array(array), Comparators.lt); return array; } /** * @dev Sort an array of bytes32 (in memory) following the provided comparator function. * * This function does the sorting "in place", meaning that it overrides the input. The object is returned for * convenience, but that returned value can be discarded safely if the caller has a memory pointer to the array. * * NOTE: this function's cost is `O(n · log(n))` in average and `O(n²)` in the worst case, with n the length of the * array. Using it in view functions that are executed through `eth_call` is safe, but one should be very careful * when executing this as part of a transaction. If the array being sorted is too large, the sort operation may * consume more gas than is available in a block, leading to potential DoS. * * IMPORTANT: Consider memory side-effects when using custom comparator functions that access memory in an unsafe way. */ function sort( bytes32[] memory array, function(bytes32, bytes32) pure returns (bool) comp ) internal pure returns (bytes32[] memory) { sort(_castToUint256Array(array), _castToUint256Comp(comp)); return array; } /** * @dev Variant of {sort} that sorts an array of bytes32 in increasing order. */ function sort(bytes32[] memory array) internal pure returns (bytes32[] memory) { sort(_castToUint256Array(array), Comparators.lt); return array; } /** * @dev Performs a quick sort of a segment of memory. The segment sorted starts at `begin` (inclusive), and stops * at end (exclusive). Sorting follows the `comp` comparator. * * Invariant: `begin <= end`. This is the case when initially called by {sort} and is preserved in subcalls. * * IMPORTANT: Memory locations between `begin` and `end` are not validated/zeroed. This function should * be used only if the limits are within a memory array. */ function _quickSort(uint256 begin, uint256 end, function(uint256, uint256) pure returns (bool) comp) private pure { unchecked { if (end - begin < 0x40) return; // Use first element as pivot uint256 pivot = _mload(begin); // Position where the pivot should be at the end of the loop uint256 pos = begin; for (uint256 it = begin + 0x20; it < end; it += 0x20) { if (comp(_mload(it), pivot)) { // If the value stored at the iterator's position comes before the pivot, we increment the // position of the pivot and move the value there. pos += 0x20; _swap(pos, it); } } _swap(begin, pos); // Swap pivot into place _quickSort(begin, pos, comp); // Sort the left side of the pivot _quickSort(pos + 0x20, end, comp); // Sort the right side of the pivot } } /** * @dev Pointer to the memory location of the first element of `array`. */ function _begin(uint256[] memory array) private pure returns (uint256 ptr) { assembly ("memory-safe") { ptr := add(array, 0x20) } } /** * @dev Pointer to the memory location of the first memory word (32bytes) after `array`. This is the memory word * that comes just after the last element of the array. */ function _end(uint256[] memory array) private pure returns (uint256 ptr) { unchecked { return _begin(array) + array.length * 0x20; } } /** * @dev Load memory word (as a uint256) at location `ptr`. */ function _mload(uint256 ptr) private pure returns (uint256 value) { assembly { value := mload(ptr) } } /** * @dev Swaps the elements memory location `ptr1` and `ptr2`. */ function _swap(uint256 ptr1, uint256 ptr2) private pure { assembly { let value1 := mload(ptr1) let value2 := mload(ptr2) mstore(ptr1, value2) mstore(ptr2, value1) } } /// @dev Helper: low level cast address memory array to uint256 memory array function _castToUint256Array(address[] memory input) private pure returns (uint256[] memory output) { assembly { output := input } } /// @dev Helper: low level cast bytes32 memory array to uint256 memory array function _castToUint256Array(bytes32[] memory input) private pure returns (uint256[] memory output) { assembly { output := input } } /// @dev Helper: low level cast address comp function to uint256 comp function function _castToUint256Comp( function(address, address) pure returns (bool) input ) private pure returns (function(uint256, uint256) pure returns (bool) output) { assembly { output := input } } /// @dev Helper: low level cast bytes32 comp function to uint256 comp function function _castToUint256Comp( function(bytes32, bytes32) pure returns (bool) input ) private pure returns (function(uint256, uint256) pure returns (bool) output) { assembly { output := input } } /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * NOTE: The `array` is expected to be sorted in ascending order, and to * contain no repeated elements. * * IMPORTANT: Deprecated. This implementation behaves as {lowerBound} but lacks * support for repeated elements in the array. The {lowerBound} function should * be used instead. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { uint256 low = 0; uint256 high = array.length; if (high == 0) { return 0; } while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds towards zero (it does integer division with truncation). if (unsafeAccess(array, mid).value > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && unsafeAccess(array, low - 1).value == element) { return low - 1; } else { return low; } } /** * @dev Searches an `array` sorted in ascending order and returns the first * index that contains a value greater or equal than `element`. If no such index * exists (i.e. all values in the array are strictly less than `element`), the array * length is returned. Time complexity O(log n). * * See C++'s https://en.cppreference.com/w/cpp/algorithm/lower_bound[lower_bound]. */ function lowerBound(uint256[] storage array, uint256 element) internal view returns (uint256) { uint256 low = 0; uint256 high = array.length; if (high == 0) { return 0; } while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds towards zero (it does integer division with truncation). if (unsafeAccess(array, mid).value < element) { // this cannot overflow because mid < high unchecked { low = mid + 1; } } else { high = mid; } } return low; } /** * @dev Searches an `array` sorted in ascending order and returns the first * index that contains a value strictly greater than `element`. If no such index * exists (i.e. all values in the array are strictly less than `element`), the array * length is returned. Time complexity O(log n). * * See C++'s https://en.cppreference.com/w/cpp/algorithm/upper_bound[upper_bound]. */ function upperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { uint256 low = 0; uint256 high = array.length; if (high == 0) { return 0; } while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds towards zero (it does integer division with truncation). if (unsafeAccess(array, mid).value > element) { high = mid; } else { // this cannot overflow because mid < high unchecked { low = mid + 1; } } } return low; } /** * @dev Same as {lowerBound}, but with an array in memory. */ function lowerBoundMemory(uint256[] memory array, uint256 element) internal pure returns (uint256) { uint256 low = 0; uint256 high = array.length; if (high == 0) { return 0; } while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds towards zero (it does integer division with truncation). if (unsafeMemoryAccess(array, mid) < element) { // this cannot overflow because mid < high unchecked { low = mid + 1; } } else { high = mid; } } return low; } /** * @dev Same as {upperBound}, but with an array in memory. */ function upperBoundMemory(uint256[] memory array, uint256 element) internal pure returns (uint256) { uint256 low = 0; uint256 high = array.length; if (high == 0) { return 0; } while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds towards zero (it does integer division with truncation). if (unsafeMemoryAccess(array, mid) > element) { high = mid; } else { // this cannot overflow because mid < high unchecked { low = mid + 1; } } } return low; } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeAccess(address[] storage arr, uint256 pos) internal pure returns (StorageSlot.AddressSlot storage) { bytes32 slot; assembly ("memory-safe") { slot := arr.slot } return slot.deriveArray().offset(pos).getAddressSlot(); } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeAccess(bytes32[] storage arr, uint256 pos) internal pure returns (StorageSlot.Bytes32Slot storage) { bytes32 slot; assembly ("memory-safe") { slot := arr.slot } return slot.deriveArray().offset(pos).getBytes32Slot(); } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeAccess(uint256[] storage arr, uint256 pos) internal pure returns (StorageSlot.Uint256Slot storage) { bytes32 slot; assembly ("memory-safe") { slot := arr.slot } return slot.deriveArray().offset(pos).getUint256Slot(); } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeMemoryAccess(address[] memory arr, uint256 pos) internal pure returns (address res) { assembly { res := mload(add(add(arr, 0x20), mul(pos, 0x20))) } } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeMemoryAccess(bytes32[] memory arr, uint256 pos) internal pure returns (bytes32 res) { assembly { res := mload(add(add(arr, 0x20), mul(pos, 0x20))) } } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeMemoryAccess(uint256[] memory arr, uint256 pos) internal pure returns (uint256 res) { assembly { res := mload(add(add(arr, 0x20), mul(pos, 0x20))) } } /** * @dev Helper to set the length of an dynamic array. Directly writing to `.length` is forbidden. * * WARNING: this does not clear elements if length is reduced, of initialize elements if length is increased. */ function unsafeSetLength(address[] storage array, uint256 len) internal { assembly ("memory-safe") { sstore(array.slot, len) } } /** * @dev Helper to set the length of an dynamic array. Directly writing to `.length` is forbidden. * * WARNING: this does not clear elements if length is reduced, of initialize elements if length is increased. */ function unsafeSetLength(bytes32[] storage array, uint256 len) internal { assembly ("memory-safe") { sstore(array.slot, len) } } /** * @dev Helper to set the length of an dynamic array. Directly writing to `.length` is forbidden. * * WARNING: this does not clear elements if length is reduced, of initialize elements if length is increased. */ function unsafeSetLength(uint256[] storage array, uint256 len) internal { assembly ("memory-safe") { sstore(array.slot, len) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at, * consider using {ReentrancyGuardTransient} instead. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant NOT_ENTERED = 1; uint256 private constant ENTERED = 2; uint256 private _status; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); constructor() { _status = NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be NOT_ENTERED if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail _status = ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * Defines a system the game engine */ interface ISystem { /** @return The ID for the system. Ex: a uint256 casted keccak256 hash */ function getId() external view returns (uint256); function initialize() external; }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; // @title Interface the game's ACL / Management Layer interface IGameRegistry is IERC165 { /** * @dev Returns `true` if `account` has been granted `role`. * @param role The role to query * @param account The address to query */ function hasAccessRole( bytes32 role, address account ) external view returns (bool); /** * @return Whether or not the registry is paused */ function paused() external view returns (bool); /** * Registers a system by id * * @param systemId Id of the system * @param systemAddress Address of the system contract */ function registerSystem(uint256 systemId, address systemAddress, bool isGameLogicContract) external; /** * @param systemId Id of the system * @return System based on an id */ function getSystem(uint256 systemId) external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; uint256 constant ID = uint256(keccak256("game.gigaverse.datastore")); interface IDataStore { enum ColumnType { NONE, UINT256, INT256, BOOL, ADDRESS, BYTES32, STRING, UINT256_ARRAY } event ValueSet(uint256 indexed tableId, uint256 indexed docId, uint256 indexed colId, bytes32 value); event StringValueSet(uint256 indexed tableId, uint256 indexed docId, uint256 indexed colId, string value); event ArrayValueSet(uint256 indexed tableId, uint256 indexed docId, uint256 indexed colId, bytes32[] value); event ColumnTypeSet(uint256 indexed colId, ColumnType columnType); function setValue(uint256 tableId, uint256 docId, uint256 colId, bytes32 value) external; function getValue(uint256 tableId, uint256 docId, uint256 colId) external view returns (bytes32); function setColumnType(uint256 colId, ColumnType columnType) external; function getColumnType(uint256 colId) external view returns (ColumnType); // Type-specific setters function setUint256(uint256 tableId, uint256 docId, uint256 colId, uint256 value) external; function setInt256(uint256 tableId, uint256 docId, uint256 colId, int256 value) external; function setBool(uint256 tableId, uint256 docId, uint256 colId, bool value) external; function setAddress(uint256 tableId, uint256 docId, uint256 colId, address value) external; function setBytes32(uint256 tableId, uint256 docId, uint256 colId, bytes32 value) external; function setString(uint256 tableId, uint256 docId, uint256 colId, string memory value) external; // Type-specific getters function getUint256(uint256 tableId, uint256 docId, uint256 colId) external view returns (uint256); function getInt256(uint256 tableId, uint256 docId, uint256 colId) external view returns (int256); function getBool(uint256 tableId, uint256 docId, uint256 colId) external view returns (bool); function getAddress(uint256 tableId, uint256 docId, uint256 colId) external view returns (address); function getBytes32(uint256 tableId, uint256 docId, uint256 colId) external view returns (bytes32); function getString(uint256 tableId, uint256 docId, uint256 colId) external view returns (string memory); function deleteValue(uint256 tableId, uint256 docId, uint256 colId) external; function hasValue(uint256 tableId, uint256 docId, uint256 colId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./DataTypes.sol"; import {IDataStore, ID} from "./IDataStore.sol"; import {GameRegistryConsumer} from "../core/GameRegistryConsumer.sol"; import {GAME_LOGIC_CONTRACT_ROLE} from "../constants/RoleConstants.sol"; contract DataStore is IDataStore, GameRegistryConsumer { using DataTypes for *; mapping(uint256 => mapping(uint256 => bytes32)) public datastore; mapping(uint256 => mapping(uint256 => bytes32[])) public arrayStore; mapping(uint256 => mapping(uint256 => string)) private stringStore; mapping(uint256 => bytes32) public columnTypes; constructor(address gameRegistryAddress) GameRegistryConsumer(gameRegistryAddress, ID) {} function generateKey(uint256 docId, uint256 colId) public pure returns (uint256) { return uint256(keccak256(abi.encodePacked(docId, colId))); } function generateArrayKey (uint256 docId, uint256 colId) public pure returns (uint256) { return uint256(keccak256(abi.encodePacked(docId, colId, "__array"))); } function setValue(uint256 tableId, uint256 docId, uint256 colId, bytes32 value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { datastore[tableId][uint256(keccak256(abi.encodePacked(docId, colId)))] = value; emit ValueSet(tableId, docId, colId, value); } function setArrayValue(uint256 tableId, uint256 docId, uint256 colId, bytes32[] memory value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { arrayStore[tableId][generateArrayKey(docId, colId)] = value; emit ArrayValueSet(tableId, docId, colId, value); } function setUint256ArrayValue(uint256 tableId, uint256 docId, uint256 colId, uint256[] memory value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { require (getColumnType(colId) == IDataStore.ColumnType.UINT256, "Column is not UINT256ARRAY"); bytes32[] memory packedValues = new bytes32[](value.length); for (uint256 i = 0; i < value.length; i++) { packedValues[i] = value[i].packUint256(); } setArrayValue(tableId, docId, colId, packedValues); } function setBoolArrayValue(uint256 tableId, uint256 docId, uint256 colId, bool[] memory value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { require (getColumnType(colId) == IDataStore.ColumnType.BOOL, "Column is not BOOLARRAY"); bytes32[] memory packedValues = new bytes32[](value.length); for (uint256 i = 0; i < value.length; i++) { packedValues[i] = value[i].packBool(); } setArrayValue(tableId, docId, colId, packedValues); } function setAddressArrayValue(uint256 tableId, uint256 docId, uint256 colId, address[] memory value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { require (getColumnType(colId) == IDataStore.ColumnType.ADDRESS, "Column is not ADDRESSARRAY"); bytes32[] memory packedValues = new bytes32[](value.length); for (uint256 i = 0; i < value.length; i++) { packedValues[i] = value[i].packAddress(); } setArrayValue(tableId, docId, colId, packedValues); } function getUint256Array(uint256 tableId, uint256 docId, uint256 colId) public view returns (uint256[] memory) { require (getColumnType(colId) == IDataStore.ColumnType.UINT256, "Column is not UINT256"); bytes32[] memory byteArray = arrayStore[tableId][generateArrayKey(docId, colId)]; uint256[] memory uintArray = new uint256[](byteArray.length); for (uint256 i = 0; i < byteArray.length; i++) { uintArray[i] = byteArray[i].unpackUint256(); } return uintArray; } function getBoolArray(uint256 tableId, uint256 docId, uint256 colId) public view returns (bool[] memory) { require (getColumnType(colId) == IDataStore.ColumnType.BOOL, "Column is not BOOL"); bytes32[] memory byteArray = arrayStore[tableId][generateArrayKey(docId, colId)]; bool[] memory boolArray = new bool[](byteArray.length); for (uint256 i = 0; i < byteArray.length; i++) { boolArray[i] = byteArray[i].unpackBool(); } return boolArray; } function getAddressArray(uint256 tableId, uint256 docId, uint256 colId) public view returns (address[] memory) { require (getColumnType(colId) == IDataStore.ColumnType.ADDRESS, "Column is not ADDRESS"); bytes32[] memory byteArray = arrayStore[tableId][generateArrayKey(docId, colId)]; address[] memory addressArray = new address[](byteArray.length); for (uint256 i = 0; i < byteArray.length; i++) { addressArray[i] = byteArray[i].unpackAddress(); } return addressArray; } function getValue(uint256 tableId, uint256 docId, uint256 colId) public view returns (bytes32) { return datastore[tableId][uint256(keccak256(abi.encodePacked(docId, colId)))]; } function setColumnType(uint256 colId, IDataStore.ColumnType columnType) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { require(!isColumnTypeSet(colId), "Column type already set"); columnTypes[colId] = bytes32(uint256(columnType)); emit ColumnTypeSet(colId, columnType); } function isColumnTypeSet(uint256 colId) public view returns (bool) { return columnTypes[colId] != bytes32(0); } function getColumnType(uint256 colId) public view returns (IDataStore.ColumnType) { bytes32 typeValue = columnTypes[colId]; require(typeValue != bytes32(0), "Column type not set"); return IDataStore.ColumnType(uint8(uint256(typeValue))); } // Type-specific setters function setUint256(uint256 tableId, uint256 docId, uint256 colId, uint256 value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.UINT256, "Column is not UINT256"); setValue(tableId, docId, colId, value.packUint256()); } function setInt256(uint256 tableId, uint256 docId, uint256 colId, int256 value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.INT256, "Column is not INT256"); setValue(tableId, docId, colId, value.packInt256()); } function setBool(uint256 tableId, uint256 docId, uint256 colId, bool value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.BOOL, "Column is not BOOL"); setValue(tableId, docId, colId, value.packBool()); } function setAddress(uint256 tableId, uint256 docId, uint256 colId, address value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.ADDRESS, "Column is not ADDRESS"); setValue(tableId, docId, colId, value.packAddress()); } function setBytes32(uint256 tableId, uint256 docId, uint256 colId, bytes32 value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.BYTES32, "Column is not BYTES32"); setValue(tableId, docId, colId, value); } function setString(uint256 tableId, uint256 docId, uint256 colId, string memory value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.STRING, "Column is not STRING"); uint256 key = generateKey(docId, colId); stringStore[tableId][key] = value; emit StringValueSet(tableId, docId, colId, value); } function deleteValue(uint256 tableId, uint256 docId, uint256 colId) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ uint256 key = generateKey(docId, colId); delete datastore[tableId][key]; } // Type-specific getters function getUint256(uint256 tableId, uint256 docId, uint256 colId) public view returns (uint256) { require(getColumnType(colId) == IDataStore.ColumnType.UINT256, "Column is not UINT256"); return getValue(tableId, docId, colId).unpackUint256(); } function getInt256(uint256 tableId, uint256 docId, uint256 colId) public view returns (int256) { require(getColumnType(colId) == IDataStore.ColumnType.INT256, "Column is not INT256"); return getValue(tableId, docId, colId).unpackInt256(); } function getBool(uint256 tableId, uint256 docId, uint256 colId) public view returns (bool) { require(getColumnType(colId) == IDataStore.ColumnType.BOOL, "Column is not BOOL"); return getValue(tableId, docId, colId).unpackBool(); } function getAddress(uint256 tableId, uint256 docId, uint256 colId) public view returns (address) { require(getColumnType(colId) == IDataStore.ColumnType.ADDRESS, "Column is not ADDRESS"); return getValue(tableId, docId, colId).unpackAddress(); } function getBytes32(uint256 tableId, uint256 docId, uint256 colId) public view returns (bytes32) { require(getColumnType(colId) == IDataStore.ColumnType.BYTES32, "Column is not BYTES32"); return getValue(tableId, docId, colId); } function getString(uint256 tableId, uint256 docId, uint256 colId) public view returns (string memory) { require(getColumnType(colId) == IDataStore.ColumnType.STRING, "Column is not STRING"); uint256 key = generateKey(docId, colId); return stringStore[tableId][key]; } function hasValue(uint256 tableId, uint256 docId, uint256 colId) public view returns (bool) { uint256 key = generateKey(docId, colId); return datastore[tableId][key] != bytes32(0); } function hasStringValue(uint256 tableId, uint256 docId, uint256 colId) public view returns (bool) { uint256 key = generateKey(docId, colId); return keccak256(bytes(stringStore[tableId][key])) != keccak256(bytes("")); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @dev Interface that must be implemented by smart contracts in order to receive * ERC-1155 token transfers. */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC-1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC-1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/Comparators.sol) pragma solidity ^0.8.20; /** * @dev Provides a set of functions to compare values. * * _Available since v5.1._ */ library Comparators { function lt(uint256 a, uint256 b) internal pure returns (bool) { return a < b; } function gt(uint256 a, uint256 b) internal pure returns (bool) { return a > b; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/SlotDerivation.sol) // This file was procedurally generated from scripts/generate/templates/SlotDerivation.js. pragma solidity ^0.8.20; /** * @dev Library for computing storage (and transient storage) locations from namespaces and deriving slots * corresponding to standard patterns. The derivation method for array and mapping matches the storage layout used by * the solidity language / compiler. * * See https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays[Solidity docs for mappings and dynamic arrays.]. * * Example usage: * ```solidity * contract Example { * // Add the library methods * using StorageSlot for bytes32; * using SlotDerivation for bytes32; * * // Declare a namespace * string private constant _NAMESPACE = "<namespace>" // eg. OpenZeppelin.Slot * * function setValueInNamespace(uint256 key, address newValue) internal { * _NAMESPACE.erc7201Slot().deriveMapping(key).getAddressSlot().value = newValue; * } * * function getValueInNamespace(uint256 key) internal view returns (address) { * return _NAMESPACE.erc7201Slot().deriveMapping(key).getAddressSlot().value; * } * } * ``` * * TIP: Consider using this library along with {StorageSlot}. * * NOTE: This library provides a way to manipulate storage locations in a non-standard way. Tooling for checking * upgrade safety will ignore the slots accessed through this library. * * _Available since v5.1._ */ library SlotDerivation { /** * @dev Derive an ERC-7201 slot from a string (namespace). */ function erc7201Slot(string memory namespace) internal pure returns (bytes32 slot) { assembly ("memory-safe") { mstore(0x00, sub(keccak256(add(namespace, 0x20), mload(namespace)), 1)) slot := and(keccak256(0x00, 0x20), not(0xff)) } } /** * @dev Add an offset to a slot to get the n-th element of a structure or an array. */ function offset(bytes32 slot, uint256 pos) internal pure returns (bytes32 result) { unchecked { return bytes32(uint256(slot) + pos); } } /** * @dev Derive the location of the first element in an array from the slot where the length is stored. */ function deriveArray(bytes32 slot) internal pure returns (bytes32 result) { assembly ("memory-safe") { mstore(0x00, slot) result := keccak256(0x00, 0x20) } } /** * @dev Derive the location of a mapping element from the key. */ function deriveMapping(bytes32 slot, address key) internal pure returns (bytes32 result) { assembly ("memory-safe") { mstore(0x00, and(key, shr(96, not(0)))) mstore(0x20, slot) result := keccak256(0x00, 0x40) } } /** * @dev Derive the location of a mapping element from the key. */ function deriveMapping(bytes32 slot, bool key) internal pure returns (bytes32 result) { assembly ("memory-safe") { mstore(0x00, iszero(iszero(key))) mstore(0x20, slot) result := keccak256(0x00, 0x40) } } /** * @dev Derive the location of a mapping element from the key. */ function deriveMapping(bytes32 slot, bytes32 key) internal pure returns (bytes32 result) { assembly ("memory-safe") { mstore(0x00, key) mstore(0x20, slot) result := keccak256(0x00, 0x40) } } /** * @dev Derive the location of a mapping element from the key. */ function deriveMapping(bytes32 slot, uint256 key) internal pure returns (bytes32 result) { assembly ("memory-safe") { mstore(0x00, key) mstore(0x20, slot) result := keccak256(0x00, 0x40) } } /** * @dev Derive the location of a mapping element from the key. */ function deriveMapping(bytes32 slot, int256 key) internal pure returns (bytes32 result) { assembly ("memory-safe") { mstore(0x00, key) mstore(0x20, slot) result := keccak256(0x00, 0x40) } } /** * @dev Derive the location of a mapping element from the key. */ function deriveMapping(bytes32 slot, string memory key) internal pure returns (bytes32 result) { assembly ("memory-safe") { let length := mload(key) let begin := add(key, 0x20) let end := add(begin, length) let cache := mload(end) mstore(end, slot) result := keccak256(begin, add(length, 0x20)) mstore(end, cache) } } /** * @dev Derive the location of a mapping element from the key. */ function deriveMapping(bytes32 slot, bytes memory key) internal pure returns (bytes32 result) { assembly ("memory-safe") { let length := mload(key) let begin := add(key, 0x20) let end := add(begin, length) let cache := mload(end) mstore(end, slot) result := keccak256(begin, add(length, 0x20)) mstore(end, cache) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.20; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC-1967 implementation slot: * ```solidity * contract ERC1967 { * // Define the slot. Alternatively, use the SlotDerivation library to derive the slot. * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(newImplementation.code.length > 0); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * TIP: Consider using this library along with {SlotDerivation}. */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct Int256Slot { int256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `Int256Slot` with member `value` located at `slot`. */ function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { assembly ("memory-safe") { r.slot := store.slot } } /** * @dev Returns a `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { assembly ("memory-safe") { r.slot := store.slot } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol) pragma solidity ^0.8.20; import {Panic} from "../Panic.sol"; import {SafeCast} from "./SafeCast.sol"; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an success flag (no overflow). */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an success flag (no overflow). */ function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an success flag (no overflow). */ function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a success flag (no division by zero). */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero). */ function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant. * * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone. * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute * one branch when needed, making this function more expensive. */ function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) { unchecked { // branchless ternary works because: // b ^ (a ^ b) == a // b ^ 0 == b return b ^ ((a ^ b) * SafeCast.toUint(condition)); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return ternary(a > b, a, b); } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return ternary(a < b, a, b); } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. Panic.panic(Panic.DIVISION_BY_ZERO); } // The following calculation ensures accurate ceiling division without overflow. // Since a is non-zero, (a - 1) / b will not overflow. // The largest possible result occurs when (a - 1) / b is type(uint256).max, // but the largest value we can obtain is type(uint256).max - 1, which happens // when a = type(uint256).max and b = 1. unchecked { return SafeCast.toUint(a > 0) * ((a - 1) / b + 1); } } /** * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * * Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2²⁵⁶ + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0. if (denominator <= prod1) { Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW)); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv ≡ 1 mod 2⁴. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2⁸ inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶ inverse *= 2 - denominator * inverse; // inverse mod 2³² inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴ inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸ inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶ // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is // less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @dev Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0); } /** * @dev Calculate the modular multiplicative inverse of a number in Z/nZ. * * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0. * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible. * * If the input value is not inversible, 0 is returned. * * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}. */ function invMod(uint256 a, uint256 n) internal pure returns (uint256) { unchecked { if (n == 0) return 0; // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version) // Used to compute integers x and y such that: ax + ny = gcd(a, n). // When the gcd is 1, then the inverse of a modulo n exists and it's x. // ax + ny = 1 // ax = 1 + (-y)n // ax ≡ 1 (mod n) # x is the inverse of a modulo n // If the remainder is 0 the gcd is n right away. uint256 remainder = a % n; uint256 gcd = n; // Therefore the initial coefficients are: // ax + ny = gcd(a, n) = n // 0a + 1n = n int256 x = 0; int256 y = 1; while (remainder != 0) { uint256 quotient = gcd / remainder; (gcd, remainder) = ( // The old remainder is the next gcd to try. remainder, // Compute the next remainder. // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd // where gcd is at most n (capped to type(uint256).max) gcd - remainder * quotient ); (x, y) = ( // Increment the coefficient of a. y, // Decrement the coefficient of n. // Can overflow, but the result is casted to uint256 so that the // next value of y is "wrapped around" to a value between 0 and n - 1. x - y * int256(quotient) ); } if (gcd != 1) return 0; // No inverse exists. return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative. } } /** * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`. * * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that * `a**(p-2)` is the modular multiplicative inverse of a in Fp. * * NOTE: this function does NOT check that `p` is a prime greater than `2`. */ function invModPrime(uint256 a, uint256 p) internal view returns (uint256) { unchecked { return Math.modExp(a, p - 2, p); } } /** * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m) * * Requirements: * - modulus can't be zero * - underlying staticcall to precompile must succeed * * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make * sure the chain you're using it on supports the precompiled contract for modular exponentiation * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, * the underlying function will succeed given the lack of a revert, but the result may be incorrectly * interpreted as 0. */ function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) { (bool success, uint256 result) = tryModExp(b, e, m); if (!success) { Panic.panic(Panic.DIVISION_BY_ZERO); } return result; } /** * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m). * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying * to operate modulo 0 or if the underlying precompile reverted. * * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack * of a revert, but the result may be incorrectly interpreted as 0. */ function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) { if (m == 0) return (false, 0); assembly ("memory-safe") { let ptr := mload(0x40) // | Offset | Content | Content (Hex) | // |-----------|------------|--------------------------------------------------------------------| // | 0x00:0x1f | size of b | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x20:0x3f | size of e | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x40:0x5f | size of m | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x60:0x7f | value of b | 0x<.............................................................b> | // | 0x80:0x9f | value of e | 0x<.............................................................e> | // | 0xa0:0xbf | value of m | 0x<.............................................................m> | mstore(ptr, 0x20) mstore(add(ptr, 0x20), 0x20) mstore(add(ptr, 0x40), 0x20) mstore(add(ptr, 0x60), b) mstore(add(ptr, 0x80), e) mstore(add(ptr, 0xa0), m) // Given the result < m, it's guaranteed to fit in 32 bytes, // so we can use the memory scratch space located at offset 0. success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20) result := mload(0x00) } } /** * @dev Variant of {modExp} that supports inputs of arbitrary length. */ function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) { (bool success, bytes memory result) = tryModExp(b, e, m); if (!success) { Panic.panic(Panic.DIVISION_BY_ZERO); } return result; } /** * @dev Variant of {tryModExp} that supports inputs of arbitrary length. */ function tryModExp( bytes memory b, bytes memory e, bytes memory m ) internal view returns (bool success, bytes memory result) { if (_zeroBytes(m)) return (false, new bytes(0)); uint256 mLen = m.length; // Encode call args in result and move the free memory pointer result = abi.encodePacked(b.length, e.length, mLen, b, e, m); assembly ("memory-safe") { let dataPtr := add(result, 0x20) // Write result on top of args to avoid allocating extra memory. success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen) // Overwrite the length. // result.length > returndatasize() is guaranteed because returndatasize() == m.length mstore(result, mLen) // Set the memory pointer after the returned data. mstore(0x40, add(dataPtr, mLen)) } } /** * @dev Returns whether the provided byte array is zero. */ function _zeroBytes(bytes memory byteArray) private pure returns (bool) { for (uint256 i = 0; i < byteArray.length; ++i) { if (byteArray[i] != 0) { return false; } } return true; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * This method is based on Newton's method for computing square roots; the algorithm is restricted to only * using integer operations. */ function sqrt(uint256 a) internal pure returns (uint256) { unchecked { // Take care of easy edge cases when a == 0 or a == 1 if (a <= 1) { return a; } // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between // the current value as `ε_n = | x_n - sqrt(a) |`. // // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is // bigger than any uint256. // // By noticing that // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)` // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar // to the msb function. uint256 aa = a; uint256 xn = 1; if (aa >= (1 << 128)) { aa >>= 128; xn <<= 64; } if (aa >= (1 << 64)) { aa >>= 64; xn <<= 32; } if (aa >= (1 << 32)) { aa >>= 32; xn <<= 16; } if (aa >= (1 << 16)) { aa >>= 16; xn <<= 8; } if (aa >= (1 << 8)) { aa >>= 8; xn <<= 4; } if (aa >= (1 << 4)) { aa >>= 4; xn <<= 2; } if (aa >= (1 << 2)) { xn <<= 1; } // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1). // // We can refine our estimation by noticing that the middle of that interval minimizes the error. // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2). // This is going to be our x_0 (and ε_0) xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2) // From here, Newton's method give us: // x_{n+1} = (x_n + a / x_n) / 2 // // One should note that: // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a // = ((x_n² + a) / (2 * x_n))² - a // = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a // = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²) // = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²) // = (x_n² - a)² / (2 * x_n)² // = ((x_n² - a) / (2 * x_n))² // ≥ 0 // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n // // This gives us the proof of quadratic convergence of the sequence: // ε_{n+1} = | x_{n+1} - sqrt(a) | // = | (x_n + a / x_n) / 2 - sqrt(a) | // = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) | // = | (x_n - sqrt(a))² / (2 * x_n) | // = | ε_n² / (2 * x_n) | // = ε_n² / | (2 * x_n) | // // For the first iteration, we have a special case where x_0 is known: // ε_1 = ε_0² / | (2 * x_0) | // ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2))) // ≤ 2**(2*e-4) / (3 * 2**(e-1)) // ≤ 2**(e-3) / 3 // ≤ 2**(e-3-log2(3)) // ≤ 2**(e-4.5) // // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n: // ε_{n+1} = ε_n² / | (2 * x_n) | // ≤ (2**(e-k))² / (2 * 2**(e-1)) // ≤ 2**(2*e-2*k) / 2**e // ≤ 2**(e-2*k) xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5) -- special case, see above xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9) -- general case with k = 4.5 xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18) -- general case with k = 9 xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36) -- general case with k = 18 xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72) -- general case with k = 36 xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144) -- general case with k = 72 // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either // sqrt(a) or sqrt(a) + 1. return xn - SafeCast.toUint(xn > a / xn); } } /** * @dev Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; uint256 exp; unchecked { exp = 128 * SafeCast.toUint(value > (1 << 128) - 1); value >>= exp; result += exp; exp = 64 * SafeCast.toUint(value > (1 << 64) - 1); value >>= exp; result += exp; exp = 32 * SafeCast.toUint(value > (1 << 32) - 1); value >>= exp; result += exp; exp = 16 * SafeCast.toUint(value > (1 << 16) - 1); value >>= exp; result += exp; exp = 8 * SafeCast.toUint(value > (1 << 8) - 1); value >>= exp; result += exp; exp = 4 * SafeCast.toUint(value > (1 << 4) - 1); value >>= exp; result += exp; exp = 2 * SafeCast.toUint(value > (1 << 2) - 1); value >>= exp; result += exp; result += SafeCast.toUint(value > 1); } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; uint256 isGt; unchecked { isGt = SafeCast.toUint(value > (1 << 128) - 1); value >>= isGt * 128; result += isGt * 16; isGt = SafeCast.toUint(value > (1 << 64) - 1); value >>= isGt * 64; result += isGt * 8; isGt = SafeCast.toUint(value > (1 << 32) - 1); value >>= isGt * 32; result += isGt * 4; isGt = SafeCast.toUint(value > (1 << 16) - 1); value >>= isGt * 16; result += isGt * 2; result += SafeCast.toUint(value > (1 << 8) - 1); } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; library DataTypes { // Pack and unpack uint256 function packUint256(uint256 value) internal pure returns (bytes32) { return bytes32(value); } function unpackUint256(bytes32 packed) internal pure returns (uint256) { return uint256(packed); } // Pack and unpack int256 function packInt256(int256 value) internal pure returns (bytes32) { return bytes32(uint256(value)); } function unpackInt256(bytes32 packed) internal pure returns (int256) { return int256(uint256(packed)); } // Pack and unpack address function packAddress(address value) internal pure returns (bytes32) { return bytes32(uint256(uint160(value))); } function unpackAddress(bytes32 packed) internal pure returns (address) { return address(uint160(uint256(packed))); } // Pack and unpack bool function packBool(bool value) internal pure returns (bytes32) { return bytes32(uint256(value ? 1 : 0)); } function unpackBool(bytes32 packed) internal pure returns (bool) { return uint256(packed) == 1; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol) pragma solidity ^0.8.20; /** * @dev Helper library for emitting standardized panic codes. * * ```solidity * contract Example { * using Panic for uint256; * * // Use any of the declared internal constants * function foo() { Panic.GENERIC.panic(); } * * // Alternatively * function foo() { Panic.panic(Panic.GENERIC); } * } * ``` * * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil]. * * _Available since v5.1._ */ // slither-disable-next-line unused-state library Panic { /// @dev generic / unspecified error uint256 internal constant GENERIC = 0x00; /// @dev used by the assert() builtin uint256 internal constant ASSERT = 0x01; /// @dev arithmetic underflow or overflow uint256 internal constant UNDER_OVERFLOW = 0x11; /// @dev division or modulo by zero uint256 internal constant DIVISION_BY_ZERO = 0x12; /// @dev enum conversion error uint256 internal constant ENUM_CONVERSION_ERROR = 0x21; /// @dev invalid encoding in storage uint256 internal constant STORAGE_ENCODING_ERROR = 0x22; /// @dev empty array pop uint256 internal constant EMPTY_ARRAY_POP = 0x31; /// @dev array out of bounds access uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32; /// @dev resource error (too large allocation or too large array) uint256 internal constant RESOURCE_ERROR = 0x41; /// @dev calling invalid internal function uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51; /// @dev Reverts with a panic code. Recommended to use with /// the internal constants with predefined codes. function panic(uint256 code) internal pure { assembly ("memory-safe") { mstore(0x00, 0x4e487b71) mstore(0x20, code) revert(0x1c, 0x24) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol) // This file was procedurally generated from scripts/generate/templates/SafeCast.js. pragma solidity ^0.8.20; /** * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such 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 SafeCast { /** * @dev Value doesn't fit in an uint of `bits` size. */ error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value); /** * @dev An int value doesn't fit in an uint of `bits` size. */ error SafeCastOverflowedIntToUint(int256 value); /** * @dev Value doesn't fit in an int of `bits` size. */ error SafeCastOverflowedIntDowncast(uint8 bits, int256 value); /** * @dev An uint value doesn't fit in an int of `bits` size. */ error SafeCastOverflowedUintToInt(uint256 value); /** * @dev Returns the downcasted uint248 from uint256, reverting on * overflow (when the input is greater than largest uint248). * * Counterpart to Solidity's `uint248` operator. * * Requirements: * * - input must fit into 248 bits */ function toUint248(uint256 value) internal pure returns (uint248) { if (value > type(uint248).max) { revert SafeCastOverflowedUintDowncast(248, value); } return uint248(value); } /** * @dev Returns the downcasted uint240 from uint256, reverting on * overflow (when the input is greater than largest uint240). * * Counterpart to Solidity's `uint240` operator. * * Requirements: * * - input must fit into 240 bits */ function toUint240(uint256 value) internal pure returns (uint240) { if (value > type(uint240).max) { revert SafeCastOverflowedUintDowncast(240, value); } return uint240(value); } /** * @dev Returns the downcasted uint232 from uint256, reverting on * overflow (when the input is greater than largest uint232). * * Counterpart to Solidity's `uint232` operator. * * Requirements: * * - input must fit into 232 bits */ function toUint232(uint256 value) internal pure returns (uint232) { if (value > type(uint232).max) { revert SafeCastOverflowedUintDowncast(232, value); } return uint232(value); } /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits */ function toUint224(uint256 value) internal pure returns (uint224) { if (value > type(uint224).max) { revert SafeCastOverflowedUintDowncast(224, value); } return uint224(value); } /** * @dev Returns the downcasted uint216 from uint256, reverting on * overflow (when the input is greater than largest uint216). * * Counterpart to Solidity's `uint216` operator. * * Requirements: * * - input must fit into 216 bits */ function toUint216(uint256 value) internal pure returns (uint216) { if (value > type(uint216).max) { revert SafeCastOverflowedUintDowncast(216, value); } return uint216(value); } /** * @dev Returns the downcasted uint208 from uint256, reverting on * overflow (when the input is greater than largest uint208). * * Counterpart to Solidity's `uint208` operator. * * Requirements: * * - input must fit into 208 bits */ function toUint208(uint256 value) internal pure returns (uint208) { if (value > type(uint208).max) { revert SafeCastOverflowedUintDowncast(208, value); } return uint208(value); } /** * @dev Returns the downcasted uint200 from uint256, reverting on * overflow (when the input is greater than largest uint200). * * Counterpart to Solidity's `uint200` operator. * * Requirements: * * - input must fit into 200 bits */ function toUint200(uint256 value) internal pure returns (uint200) { if (value > type(uint200).max) { revert SafeCastOverflowedUintDowncast(200, value); } return uint200(value); } /** * @dev Returns the downcasted uint192 from uint256, reverting on * overflow (when the input is greater than largest uint192). * * Counterpart to Solidity's `uint192` operator. * * Requirements: * * - input must fit into 192 bits */ function toUint192(uint256 value) internal pure returns (uint192) { if (value > type(uint192).max) { revert SafeCastOverflowedUintDowncast(192, value); } return uint192(value); } /** * @dev Returns the downcasted uint184 from uint256, reverting on * overflow (when the input is greater than largest uint184). * * Counterpart to Solidity's `uint184` operator. * * Requirements: * * - input must fit into 184 bits */ function toUint184(uint256 value) internal pure returns (uint184) { if (value > type(uint184).max) { revert SafeCastOverflowedUintDowncast(184, value); } return uint184(value); } /** * @dev Returns the downcasted uint176 from uint256, reverting on * overflow (when the input is greater than largest uint176). * * Counterpart to Solidity's `uint176` operator. * * Requirements: * * - input must fit into 176 bits */ function toUint176(uint256 value) internal pure returns (uint176) { if (value > type(uint176).max) { revert SafeCastOverflowedUintDowncast(176, value); } return uint176(value); } /** * @dev Returns the downcasted uint168 from uint256, reverting on * overflow (when the input is greater than largest uint168). * * Counterpart to Solidity's `uint168` operator. * * Requirements: * * - input must fit into 168 bits */ function toUint168(uint256 value) internal pure returns (uint168) { if (value > type(uint168).max) { revert SafeCastOverflowedUintDowncast(168, value); } return uint168(value); } /** * @dev Returns the downcasted uint160 from uint256, reverting on * overflow (when the input is greater than largest uint160). * * Counterpart to Solidity's `uint160` operator. * * Requirements: * * - input must fit into 160 bits */ function toUint160(uint256 value) internal pure returns (uint160) { if (value > type(uint160).max) { revert SafeCastOverflowedUintDowncast(160, value); } return uint160(value); } /** * @dev Returns the downcasted uint152 from uint256, reverting on * overflow (when the input is greater than largest uint152). * * Counterpart to Solidity's `uint152` operator. * * Requirements: * * - input must fit into 152 bits */ function toUint152(uint256 value) internal pure returns (uint152) { if (value > type(uint152).max) { revert SafeCastOverflowedUintDowncast(152, value); } return uint152(value); } /** * @dev Returns the downcasted uint144 from uint256, reverting on * overflow (when the input is greater than largest uint144). * * Counterpart to Solidity's `uint144` operator. * * Requirements: * * - input must fit into 144 bits */ function toUint144(uint256 value) internal pure returns (uint144) { if (value > type(uint144).max) { revert SafeCastOverflowedUintDowncast(144, value); } return uint144(value); } /** * @dev Returns the downcasted uint136 from uint256, reverting on * overflow (when the input is greater than largest uint136). * * Counterpart to Solidity's `uint136` operator. * * Requirements: * * - input must fit into 136 bits */ function toUint136(uint256 value) internal pure returns (uint136) { if (value > type(uint136).max) { revert SafeCastOverflowedUintDowncast(136, value); } return uint136(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { if (value > type(uint128).max) { revert SafeCastOverflowedUintDowncast(128, value); } return uint128(value); } /** * @dev Returns the downcasted uint120 from uint256, reverting on * overflow (when the input is greater than largest uint120). * * Counterpart to Solidity's `uint120` operator. * * Requirements: * * - input must fit into 120 bits */ function toUint120(uint256 value) internal pure returns (uint120) { if (value > type(uint120).max) { revert SafeCastOverflowedUintDowncast(120, value); } return uint120(value); } /** * @dev Returns the downcasted uint112 from uint256, reverting on * overflow (when the input is greater than largest uint112). * * Counterpart to Solidity's `uint112` operator. * * Requirements: * * - input must fit into 112 bits */ function toUint112(uint256 value) internal pure returns (uint112) { if (value > type(uint112).max) { revert SafeCastOverflowedUintDowncast(112, value); } return uint112(value); } /** * @dev Returns the downcasted uint104 from uint256, reverting on * overflow (when the input is greater than largest uint104). * * Counterpart to Solidity's `uint104` operator. * * Requirements: * * - input must fit into 104 bits */ function toUint104(uint256 value) internal pure returns (uint104) { if (value > type(uint104).max) { revert SafeCastOverflowedUintDowncast(104, value); } return uint104(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits */ function toUint96(uint256 value) internal pure returns (uint96) { if (value > type(uint96).max) { revert SafeCastOverflowedUintDowncast(96, value); } return uint96(value); } /** * @dev Returns the downcasted uint88 from uint256, reverting on * overflow (when the input is greater than largest uint88). * * Counterpart to Solidity's `uint88` operator. * * Requirements: * * - input must fit into 88 bits */ function toUint88(uint256 value) internal pure returns (uint88) { if (value > type(uint88).max) { revert SafeCastOverflowedUintDowncast(88, value); } return uint88(value); } /** * @dev Returns the downcasted uint80 from uint256, reverting on * overflow (when the input is greater than largest uint80). * * Counterpart to Solidity's `uint80` operator. * * Requirements: * * - input must fit into 80 bits */ function toUint80(uint256 value) internal pure returns (uint80) { if (value > type(uint80).max) { revert SafeCastOverflowedUintDowncast(80, value); } return uint80(value); } /** * @dev Returns the downcasted uint72 from uint256, reverting on * overflow (when the input is greater than largest uint72). * * Counterpart to Solidity's `uint72` operator. * * Requirements: * * - input must fit into 72 bits */ function toUint72(uint256 value) internal pure returns (uint72) { if (value > type(uint72).max) { revert SafeCastOverflowedUintDowncast(72, value); } return uint72(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { if (value > type(uint64).max) { revert SafeCastOverflowedUintDowncast(64, value); } return uint64(value); } /** * @dev Returns the downcasted uint56 from uint256, reverting on * overflow (when the input is greater than largest uint56). * * Counterpart to Solidity's `uint56` operator. * * Requirements: * * - input must fit into 56 bits */ function toUint56(uint256 value) internal pure returns (uint56) { if (value > type(uint56).max) { revert SafeCastOverflowedUintDowncast(56, value); } return uint56(value); } /** * @dev Returns the downcasted uint48 from uint256, reverting on * overflow (when the input is greater than largest uint48). * * Counterpart to Solidity's `uint48` operator. * * Requirements: * * - input must fit into 48 bits */ function toUint48(uint256 value) internal pure returns (uint48) { if (value > type(uint48).max) { revert SafeCastOverflowedUintDowncast(48, value); } return uint48(value); } /** * @dev Returns the downcasted uint40 from uint256, reverting on * overflow (when the input is greater than largest uint40). * * Counterpart to Solidity's `uint40` operator. * * Requirements: * * - input must fit into 40 bits */ function toUint40(uint256 value) internal pure returns (uint40) { if (value > type(uint40).max) { revert SafeCastOverflowedUintDowncast(40, value); } return uint40(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { if (value > type(uint32).max) { revert SafeCastOverflowedUintDowncast(32, value); } return uint32(value); } /** * @dev Returns the downcasted uint24 from uint256, reverting on * overflow (when the input is greater than largest uint24). * * Counterpart to Solidity's `uint24` operator. * * Requirements: * * - input must fit into 24 bits */ function toUint24(uint256 value) internal pure returns (uint24) { if (value > type(uint24).max) { revert SafeCastOverflowedUintDowncast(24, value); } return uint24(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { if (value > type(uint16).max) { revert SafeCastOverflowedUintDowncast(16, value); } return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits */ function toUint8(uint256 value) internal pure returns (uint8) { if (value > type(uint8).max) { revert SafeCastOverflowedUintDowncast(8, value); } return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { if (value < 0) { revert SafeCastOverflowedIntToUint(value); } return uint256(value); } /** * @dev Returns the downcasted int248 from int256, reverting on * overflow (when the input is less than smallest int248 or * greater than largest int248). * * Counterpart to Solidity's `int248` operator. * * Requirements: * * - input must fit into 248 bits */ function toInt248(int256 value) internal pure returns (int248 downcasted) { downcasted = int248(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(248, value); } } /** * @dev Returns the downcasted int240 from int256, reverting on * overflow (when the input is less than smallest int240 or * greater than largest int240). * * Counterpart to Solidity's `int240` operator. * * Requirements: * * - input must fit into 240 bits */ function toInt240(int256 value) internal pure returns (int240 downcasted) { downcasted = int240(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(240, value); } } /** * @dev Returns the downcasted int232 from int256, reverting on * overflow (when the input is less than smallest int232 or * greater than largest int232). * * Counterpart to Solidity's `int232` operator. * * Requirements: * * - input must fit into 232 bits */ function toInt232(int256 value) internal pure returns (int232 downcasted) { downcasted = int232(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(232, value); } } /** * @dev Returns the downcasted int224 from int256, reverting on * overflow (when the input is less than smallest int224 or * greater than largest int224). * * Counterpart to Solidity's `int224` operator. * * Requirements: * * - input must fit into 224 bits */ function toInt224(int256 value) internal pure returns (int224 downcasted) { downcasted = int224(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(224, value); } } /** * @dev Returns the downcasted int216 from int256, reverting on * overflow (when the input is less than smallest int216 or * greater than largest int216). * * Counterpart to Solidity's `int216` operator. * * Requirements: * * - input must fit into 216 bits */ function toInt216(int256 value) internal pure returns (int216 downcasted) { downcasted = int216(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(216, value); } } /** * @dev Returns the downcasted int208 from int256, reverting on * overflow (when the input is less than smallest int208 or * greater than largest int208). * * Counterpart to Solidity's `int208` operator. * * Requirements: * * - input must fit into 208 bits */ function toInt208(int256 value) internal pure returns (int208 downcasted) { downcasted = int208(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(208, value); } } /** * @dev Returns the downcasted int200 from int256, reverting on * overflow (when the input is less than smallest int200 or * greater than largest int200). * * Counterpart to Solidity's `int200` operator. * * Requirements: * * - input must fit into 200 bits */ function toInt200(int256 value) internal pure returns (int200 downcasted) { downcasted = int200(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(200, value); } } /** * @dev Returns the downcasted int192 from int256, reverting on * overflow (when the input is less than smallest int192 or * greater than largest int192). * * Counterpart to Solidity's `int192` operator. * * Requirements: * * - input must fit into 192 bits */ function toInt192(int256 value) internal pure returns (int192 downcasted) { downcasted = int192(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(192, value); } } /** * @dev Returns the downcasted int184 from int256, reverting on * overflow (when the input is less than smallest int184 or * greater than largest int184). * * Counterpart to Solidity's `int184` operator. * * Requirements: * * - input must fit into 184 bits */ function toInt184(int256 value) internal pure returns (int184 downcasted) { downcasted = int184(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(184, value); } } /** * @dev Returns the downcasted int176 from int256, reverting on * overflow (when the input is less than smallest int176 or * greater than largest int176). * * Counterpart to Solidity's `int176` operator. * * Requirements: * * - input must fit into 176 bits */ function toInt176(int256 value) internal pure returns (int176 downcasted) { downcasted = int176(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(176, value); } } /** * @dev Returns the downcasted int168 from int256, reverting on * overflow (when the input is less than smallest int168 or * greater than largest int168). * * Counterpart to Solidity's `int168` operator. * * Requirements: * * - input must fit into 168 bits */ function toInt168(int256 value) internal pure returns (int168 downcasted) { downcasted = int168(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(168, value); } } /** * @dev Returns the downcasted int160 from int256, reverting on * overflow (when the input is less than smallest int160 or * greater than largest int160). * * Counterpart to Solidity's `int160` operator. * * Requirements: * * - input must fit into 160 bits */ function toInt160(int256 value) internal pure returns (int160 downcasted) { downcasted = int160(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(160, value); } } /** * @dev Returns the downcasted int152 from int256, reverting on * overflow (when the input is less than smallest int152 or * greater than largest int152). * * Counterpart to Solidity's `int152` operator. * * Requirements: * * - input must fit into 152 bits */ function toInt152(int256 value) internal pure returns (int152 downcasted) { downcasted = int152(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(152, value); } } /** * @dev Returns the downcasted int144 from int256, reverting on * overflow (when the input is less than smallest int144 or * greater than largest int144). * * Counterpart to Solidity's `int144` operator. * * Requirements: * * - input must fit into 144 bits */ function toInt144(int256 value) internal pure returns (int144 downcasted) { downcasted = int144(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(144, value); } } /** * @dev Returns the downcasted int136 from int256, reverting on * overflow (when the input is less than smallest int136 or * greater than largest int136). * * Counterpart to Solidity's `int136` operator. * * Requirements: * * - input must fit into 136 bits */ function toInt136(int256 value) internal pure returns (int136 downcasted) { downcasted = int136(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(136, value); } } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits */ function toInt128(int256 value) internal pure returns (int128 downcasted) { downcasted = int128(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(128, value); } } /** * @dev Returns the downcasted int120 from int256, reverting on * overflow (when the input is less than smallest int120 or * greater than largest int120). * * Counterpart to Solidity's `int120` operator. * * Requirements: * * - input must fit into 120 bits */ function toInt120(int256 value) internal pure returns (int120 downcasted) { downcasted = int120(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(120, value); } } /** * @dev Returns the downcasted int112 from int256, reverting on * overflow (when the input is less than smallest int112 or * greater than largest int112). * * Counterpart to Solidity's `int112` operator. * * Requirements: * * - input must fit into 112 bits */ function toInt112(int256 value) internal pure returns (int112 downcasted) { downcasted = int112(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(112, value); } } /** * @dev Returns the downcasted int104 from int256, reverting on * overflow (when the input is less than smallest int104 or * greater than largest int104). * * Counterpart to Solidity's `int104` operator. * * Requirements: * * - input must fit into 104 bits */ function toInt104(int256 value) internal pure returns (int104 downcasted) { downcasted = int104(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(104, value); } } /** * @dev Returns the downcasted int96 from int256, reverting on * overflow (when the input is less than smallest int96 or * greater than largest int96). * * Counterpart to Solidity's `int96` operator. * * Requirements: * * - input must fit into 96 bits */ function toInt96(int256 value) internal pure returns (int96 downcasted) { downcasted = int96(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(96, value); } } /** * @dev Returns the downcasted int88 from int256, reverting on * overflow (when the input is less than smallest int88 or * greater than largest int88). * * Counterpart to Solidity's `int88` operator. * * Requirements: * * - input must fit into 88 bits */ function toInt88(int256 value) internal pure returns (int88 downcasted) { downcasted = int88(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(88, value); } } /** * @dev Returns the downcasted int80 from int256, reverting on * overflow (when the input is less than smallest int80 or * greater than largest int80). * * Counterpart to Solidity's `int80` operator. * * Requirements: * * - input must fit into 80 bits */ function toInt80(int256 value) internal pure returns (int80 downcasted) { downcasted = int80(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(80, value); } } /** * @dev Returns the downcasted int72 from int256, reverting on * overflow (when the input is less than smallest int72 or * greater than largest int72). * * Counterpart to Solidity's `int72` operator. * * Requirements: * * - input must fit into 72 bits */ function toInt72(int256 value) internal pure returns (int72 downcasted) { downcasted = int72(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(72, value); } } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits */ function toInt64(int256 value) internal pure returns (int64 downcasted) { downcasted = int64(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(64, value); } } /** * @dev Returns the downcasted int56 from int256, reverting on * overflow (when the input is less than smallest int56 or * greater than largest int56). * * Counterpart to Solidity's `int56` operator. * * Requirements: * * - input must fit into 56 bits */ function toInt56(int256 value) internal pure returns (int56 downcasted) { downcasted = int56(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(56, value); } } /** * @dev Returns the downcasted int48 from int256, reverting on * overflow (when the input is less than smallest int48 or * greater than largest int48). * * Counterpart to Solidity's `int48` operator. * * Requirements: * * - input must fit into 48 bits */ function toInt48(int256 value) internal pure returns (int48 downcasted) { downcasted = int48(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(48, value); } } /** * @dev Returns the downcasted int40 from int256, reverting on * overflow (when the input is less than smallest int40 or * greater than largest int40). * * Counterpart to Solidity's `int40` operator. * * Requirements: * * - input must fit into 40 bits */ function toInt40(int256 value) internal pure returns (int40 downcasted) { downcasted = int40(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(40, value); } } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits */ function toInt32(int256 value) internal pure returns (int32 downcasted) { downcasted = int32(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(32, value); } } /** * @dev Returns the downcasted int24 from int256, reverting on * overflow (when the input is less than smallest int24 or * greater than largest int24). * * Counterpart to Solidity's `int24` operator. * * Requirements: * * - input must fit into 24 bits */ function toInt24(int256 value) internal pure returns (int24 downcasted) { downcasted = int24(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(24, value); } } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits */ function toInt16(int256 value) internal pure returns (int16 downcasted) { downcasted = int16(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(16, value); } } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits */ function toInt8(int256 value) internal pure returns (int8 downcasted) { downcasted = int8(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(8, value); } } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive if (value > uint256(type(int256).max)) { revert SafeCastOverflowedUintToInt(value); } return int256(value); } /** * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump. */ function toUint(bool b) internal pure returns (uint256 u) { assembly ("memory-safe") { u := iszero(iszero(b)) } } }
{ "viaIR": false, "codegen": "yul", "remappings": [ "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", "@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/", "erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "forge-zksync-std/=lib/forge-zksync-std/src/", "halmos-cheatcodes/=lib/openzeppelin-contracts-upgradeable/lib/halmos-cheatcodes/src/", "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/", "openzeppelin-contracts/=lib/openzeppelin-contracts/" ], "evmVersion": "cancun", "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "optimizer": { "enabled": true, "mode": "3", "fallback_to_optimizing_for_size": false, "disable_system_request_memoization": true }, "metadata": {}, "libraries": {}, "enableEraVMExtensions": false, "forceEVMLA": false }
[{"inputs":[{"internalType":"address","name":"gameRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC1155InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC1155InvalidApprover","type":"error"},{"inputs":[{"internalType":"uint256","name":"idsLength","type":"uint256"},{"internalType":"uint256","name":"valuesLength","type":"uint256"}],"name":"ERC1155InvalidArrayLength","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC1155InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC1155InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC1155InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC1155MissingApprovalForAll","type":"error"},{"inputs":[],"name":"InvalidGameRegistry","type":"error"},{"inputs":[{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"MaxSupplyTooLow","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"expectedRole","type":"bytes32"}],"name":"MissingRole","type":"error"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"NonExistentTokenId","type":"error"},{"inputs":[{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"NotEnoughSupply","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"ContractURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getAccountTokenKey","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocAddressValue","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocBoolValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocStringValue","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocUint256ArrayValue","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocUint256Value","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGameRegistry","outputs":[{"internalType":"contract IGameRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"player","type":"address"}],"name":"getPlayerDocId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableAddressValue","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableBoolValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTableId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableStringValue","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableUint256ArrayValue","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableUint256Value","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getType","outputs":[{"components":[{"internalType":"bool","name":"recyclable","type":"bool"},{"internalType":"uint256","name":"mints","type":"uint256"},{"internalType":"uint256","name":"burns","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"internalType":"struct GameItems.TypeInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"hasDocStringValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"hasDocValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenName","type":"string"}],"name":"setBaseTokenName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"gameRegistryAddress","type":"address"}],"name":"setGameRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"shouldPause","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bool","name":"soulBound","type":"bool"}],"name":"setSoulBound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"name","type":"string"}],"name":"setTokenName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"bool","name":"recyclable","type":"bool"}],"name":"setType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"bool","name":"recyclable","type":"bool"},{"internalType":"string","name":"name","type":"string"}],"name":"setTypeAndName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"handlerAddress","type":"address"}],"name":"setUpdateHandler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"updateHandler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001001359f805d5671451451a2ad5780926390dc0c15215ce37ec562ea68f101d00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000b5f84708957e5628c363709ae1d4cb346081fbf6
Deployed Bytecode
0x0003000000000002000a000000000002000000000401034f00020000000103550000006003100270000012a80030019d0000008001000039000000400010043f000012a80330019700000001002001900000002b0000c13d000000040030008c0000004d0000413d000000000134034f000000000204043b000000e002200270000012b50020009c0000004f0000a13d000012b60020009c000000d60000a13d000012b70020009c0000017f0000a13d000012b80020009c0000032d0000a13d000012b90020009c000003b20000213d000012bc0020009c0000079d0000613d000012bd0020009c0000004d0000c13d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000012ab0010009c0000004d0000213d0000002402400370000000000202043b4a9d36710000040f000006950000013d0000000002000416000000000002004b0000004d0000c13d0000001f02300039000012a9022001970000008002200039000000400020043f0000001f0530018f000012aa0630019800000080026000390000003b0000613d000000000704034f000000007807043c0000000001810436000000000021004b000000370000c13d000000000005004b000000480000613d000000000164034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000200030008c0000004d0000413d000000800100043d000012ab0010009c0000006b0000a13d000000000100001900004a9f00010430000012d70020009c000000740000213d000012e70020009c000000fe0000213d000012ef0020009c0000022f0000213d000012f30020009c000004c90000613d000012f40020009c000003eb0000613d000012f50020009c0000004d0000c13d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b00001344001001980000004d0000c13d0000134502100197000013460020009c000010a50000c13d00000080010000390000000102000039000000010220018f0000104d0000013d000000400200043d000012ac0020009c000000f30000a13d000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f00010430000012d80020009c000001270000213d000012e00020009c0000024d0000213d000012e40020009c000004e40000613d000012e50020009c000003f90000613d000012e60020009c0000004d0000c13d000000440030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000000402400370000000000202043b000013060020009c0000004d0000213d0000002305200039000000000035004b0000004d0000813d0000000405200039000000000554034f000000000605043b000013060060009c0000006e0000213d00000005056002100000003f0750003900001325077001970000130c0070009c0000006e0000213d0000008007700039000000400070043f000000800060043f00000024022000390000000005250019000000000035004b0000004d0000213d000000000006004b000000a60000613d000000a006000039000000000724034f000000000707043b000012ab0070009c0000004d0000213d00000000067604360000002002200039000000000052004b0000009e0000413d0000002402400370000000000202043b000013060020009c0000004d0000213d0000002305200039000000000035004b000000000600001900001315060080410000131505500197000000000005004b00000000070000190000131507004041000013150050009c000000000706c019000000000007004b0000004d0000c13d0000000405200039000000000554034f000000000605043b000013060060009c0000006e0000213d00000005076002100000003f057000390000132508500197000000400500043d0000000008850019000000000058004b00000000090000390000000109004039000013060080009c0000006e0000213d00000001009001900000006e0000c13d000000400080043f0000000008650436000800000008001d00000024022000390000000007270019000000000037004b0000004d0000213d000000000006004b00001dea0000c13d000000800300043d000000000003004b0000000004000019000000000200001900001df80000613d00001f160000013d000012c80020009c000001e60000213d000012d00020009c000003700000213d000012d40020009c000007f70000613d000012d50020009c000002530000613d000012d60020009c0000004d0000c13d0000000001000416000000000001004b0000004d0000c13d0000000101000039000000000201041a000012fe01000041000000800010043f000012ff01000041000000840010043f00000000010004140000000802200270000012ab02200197000000040020008c00000f150000c13d0000000103000031000000200030008c0000002004000039000000000403401900000f390000013d000012ab001001980000002003200039000000400030043f00000000000204350000000102000039000000000020041b000002150000c13d0000131b01000041000000000010043f000012fa0100004100004a9f00010430000012e80020009c0000025b0000213d000012ec0020009c000004ff0000613d000012ed0020009c000004160000613d000012ee0020009c0000004d0000c13d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000a00000002001d000000000012004b0000004d0000c13d0000000101000039000000000201041a000012f601000041000000800010043f0000133e01000041000000840010043f0000000001000411000012ab01100197000900000001001d000000a40010043f00000000010004140000000802200270000012ab02200197000000040020008c000010b20000c13d0000000103000031000000200030008c00000020040000390000000004034019000010d60000013d000012d90020009c0000031c0000213d000012dd0020009c000005230000613d000012de0020009c000004200000613d000012df0020009c0000004d0000c13d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000201043b000013060020009c0000004d0000213d0000002301200039000000000031004b0000004d0000813d0000000405200039000000000154034f000000000101043b000013060010009c0000006e0000213d0000001f0610003900001349066001970000003f0660003900001349066001970000130c0060009c0000006e0000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b0000004d0000213d0000002002500039000000000324034f00001349041001980000001f0510018f000000a002400039000001590000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000001550000c13d000000000005004b000001660000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000101000039000000000201041a000000400500043d000012f60100004100000000001504350000000401500039000013190300004100000000003104350000000001000411000012ab031001970000002401500039000900000003001d000000000031043500000000010004140000000802200270000012ab02200197000000040020008c000016aa0000c13d0000000103000031000000200030008c00000020040000390000000004034019000016d60000013d000012c10020009c0000034c0000213d000012c50020009c000007370000613d000012c60020009c000004970000613d000012c70020009c0000004d0000c13d000000840030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000002401400370000000000101043b000800000001001d0000000401400370000000000101043b000a00000001001d0000004401400370000000000201043b000000000002004b0000000001000039000000010100c039000900000002001d000000000012004b0000004d0000c13d0000006401400370000000000201043b000013060020009c0000004d0000213d0000002301200039000000000031004b0000004d0000813d0000000405200039000000000154034f000000000101043b000013060010009c0000006e0000213d0000001f0610003900001349066001970000003f0660003900001349066001970000130c0060009c0000006e0000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b0000004d0000213d0000002002500039000000000324034f00001349041001980000001f0510018f000000a002400039000001bf0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000001bb0000c13d000000000005004b000001cc0000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000101000039000000000201041a000000400400043d000012f60100004100000000001404350000000401400039000013190300004100000000003104350000000001000411000012ab03100197000700000004001d0000002401400039000500000003001d000000000031043500000000010004140000000802200270000012ab02200197000000040020008c000019b50000c13d0000000103000031000000200030008c00000020040000390000000004034019000019de0000013d000012c90020009c000003910000213d000012cd0020009c0000080f0000613d000012ce0020009c0000069c0000613d000012cf0020009c0000004d0000c13d000000640030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000002401400370000000000101043b000900000001001d0000000401400370000000000101043b000a00000001001d0000004401400370000000000201043b000000000002004b0000000001000039000000010100c039000800000002001d000000000012004b0000004d0000c13d0000000101000039000000000201041a000012f601000041000000800010043f0000131901000041000000840010043f0000000001000411000012ab03100197000000a40030043f00000000010004140000000802200270000012ab02200197000000040020008c000700000003001d000012230000c13d0000000103000031000000200030008c00000020040000390000000004034019000012470000013d000000000302041a000012ad033001970000000801100210000012ae01100197000000000131019f00000001011001bf000000000012041b000012af010000410000000202000039000000000012041b0000000601000039000000000201041a000000010320019000000001022002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000043004b000003da0000613d000012b301000041000000000010043f0000002201000039000000040010043f000012b40100004100004a9f00010430000012f00020009c0000059a0000613d000012f10020009c000004380000613d000012f20020009c0000004d0000c13d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000a00000001001d0000000101000039000000000201041a000012fe01000041000000800010043f000012ff01000041000000840010043f00000000010004140000000802200270000012ab02200197000000040020008c00000c690000c13d0000000103000031000000200030008c0000002004000039000000000403401900000c8d0000013d000012e10020009c000005ad0000613d000012e20020009c0000044d0000613d000012e30020009c0000004d0000c13d0000000001000416000000000001004b0000004d0000c13d0000000201000039000000000101041a000000800010043f000013100100004100004a9e0001042e000012e90020009c000005d10000613d000012ea0020009c000004550000613d000012eb0020009c0000004d0000c13d000000a40030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000a00000001001d000012ab0010009c0000004d0000213d0000002401400370000000000101043b000900000001001d000012ab0010009c0000004d0000213d0000004401400370000000000101043b000013060010009c0000004d0000213d0000002302100039000000000032004b0000004d0000813d0000000402100039000000000224034f000000000502043b000013060050009c0000006e0000213d00000005025002100000003f0620003900001325066001970000130c0060009c0000006e0000213d0000008006600039000000400060043f000000800050043f00000024011000390000000002120019000000000032004b0000004d0000213d000000000005004b000002920000613d0000008005000039000000000614034f000000000606043b000000200550003900000000006504350000002001100039000000000021004b0000028b0000413d0000006401400370000000000101043b000013060010009c0000004d0000213d0000002302100039000000000032004b000000000500001900001315050080410000131502200197000000000002004b00000000060000190000131506004041000013150020009c000000000605c019000000000006004b0000004d0000c13d0000000402100039000000000224034f000000000202043b000013060020009c0000006e0000213d00000005052002100000003f065000390000132506600197000000400700043d0000000006670019000800000007001d000000000076004b00000000070000390000000107004039000013060060009c0000006e0000213d00000001007001900000006e0000c13d000000400060043f0000000806000029000000000026043500000024011000390000000005150019000000000035004b0000004d0000213d000000000002004b000002c50000613d0000000802000029000000000614034f000000000606043b000000200220003900000000006204350000002001100039000000000051004b000002be0000413d0000008401400370000000000201043b000013060020009c0000004d0000213d0000002301200039000000000031004b000000000500001900001315050080410000131501100197000000000001004b00000000060000190000131506004041000013150010009c000000000605c019000000000006004b0000004d0000c13d0000000405200039000000000154034f000000000101043b000013060010009c0000006e0000213d0000001f0710003900001349077001970000003f077000390000134907700197000000400800043d0000000007780019000700000008001d000000000087004b00000000080000390000000108004039000013060070009c0000006e0000213d00000001008001900000006e0000c13d0000002408200039000000400070043f000000070200002900000000021204360000000007810019000000000037004b0000004d0000213d0000002003500039000000000434034f00001349051001980000001f0610018f0000000003520019000002fb0000613d000000000704034f0000000008020019000000007907043c0000000008980436000000000038004b000002f70000c13d000000000006004b000003080000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000000112001900000000000104350000000a01000029000612ab0010019b0000000002000411000000060020006b0000261c0000c13d0000000901000029000012ab00100198000007f50000613d000000060000006b00001b5d0000613d00000080030000390000000a010000290000000902000029000000080400002900000007050000294a9d41d40000040f000000000100001900004a9e0001042e000012da0020009c0000068d0000613d000012db0020009c0000046d0000613d000012dc0020009c0000004d0000c13d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000002401400370000000000201043b0000000401400370000000000101043b4a9d359a0000040f000006950000013d000012be0020009c0000071f0000613d000012bf0020009c000004840000613d000012c00020009c0000004d0000c13d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000012ab0010009c0000004d0000213d0000002402400370000000000202043b000a00000002001d000012ab0020009c0000004d0000213d000000000010043f0000000501000039000000200010043f000000400200003900000000010000194a9d4a7e0000040f0000000a020000294a9d36610000040f000000000101041a000000ff00100190000004520000013d000012c20020009c0000078a0000613d000012c30020009c000004b20000613d000012c40020009c0000004d0000c13d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000a00000001001d000012ab0010009c0000004d0000213d0000000101000039000000000201041a000012f601000041000000800010043f0000131901000041000000840010043f0000000001000411000012ab03100197000000a40030043f00000000010004140000000802200270000012ab02200197000000040020008c000900000003001d000011e10000c13d0000000103000031000000200030008c00000020040000390000000004034019000012050000013d000012d10020009c000008280000613d000012d20020009c000006b40000613d000012d30020009c0000004d0000c13d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000002401400370000000000101043b000900000001001d0000000401400370000000000101043b000a00000001001d0000000101000039000000000201041a000012fe01000041000000800010043f000012ff01000041000000840010043f00000000010004140000000802200270000012ab02200197000000040020008c00000f560000c13d0000000103000031000000200030008c0000002004000039000000000403401900000f7a0000013d000012ca0020009c000008520000613d000012cb0020009c000007040000613d000012cc0020009c0000004d0000c13d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000002401400370000000000101043b000900000001001d0000000401400370000000000101043b000a00000001001d0000000101000039000000000201041a000012fe01000041000000800010043f000012ff01000041000000840010043f00000000010004140000000802200270000012ab02200197000000040020008c00000fc20000c13d0000000103000031000000200030008c0000002004000039000000000403401900000fe60000013d000012ba0020009c000007a70000613d000012bb0020009c0000004d0000c13d000000640030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000a00000001001d000012ab0010009c0000004d0000213d0000004401400370000000000101043b000700000001001d0000002401400370000000000101043b000800000001001d0000000101000039000000000201041a000012f601000041000000800010043f000012f701000041000000840010043f0000000001000411000012ab01100197000900000001001d000000a40010043f00000000010004140000000802200270000012ab02200197000000040020008c0000119a0000c13d0000000103000031000000200030008c00000020040000390000000004034019000011be0000013d000000200020008c000003e50000413d000000000010043f000012b0030000410000001f022000390000000502200270000012b10220009a000000000003041b0000000103300039000000000023004b000003e10000413d000000000001041b000000200100003900000100001004430000012000000443000012b20100004100004a9e0001042e000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000012ab0010009c0000004d0000213d0000002402400370000000000202043b4a9d36710000040f4a9d34100000040f000006950000013d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b4a9d30d70000040f0000000032010434000000000002004b0000000002000039000000010200c039000000400400043d00000000022404360000000003030433000000000032043500000040021000390000000002020433000000400340003900000000002304350000006001100039000000000101043300000060024000390000000000120435000012a80040009c000012a80400804100000040014002100000133b011001c700004a9e0001042e000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000012ab0010009c0000004d0000213d000008580000013d000000240030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000000402400370000000000202043b000a00000002001d0000000102000039000000000202041a000012fe03000041000000800030043f000012ff03000041000000840030043f00000000030004140000000802200270000012ab02200197000000040020008c000008960000c13d0000000103000031000000200030008c00000020040000390000000004034019000008ba0000013d000000240030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000000102000039000000000202041a000012fe03000041000000800030043f000012ff03000041000000840030043f00000000030004140000000802200270000012ab02200197000000040020008c000009310000c13d0000000103000031000000200030008c00000020040000390000000004034019000009550000013d0000000001000416000000000001004b0000004d0000c13d4a9d33990000040f000000000001004b0000000001000039000000010100c039000006950000013d000000240030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000000402400370000000000202043b000a00000002001d0000000102000039000000000202041a000012fe03000041000000800030043f000012ff03000041000000840030043f00000000030004140000000802200270000012ab02200197000000040020008c000009d50000c13d0000000103000031000000200030008c00000020040000390000000004034019000009f90000013d0000000001000416000000000001004b0000004d0000c13d0000000101000039000000000201041a000012f601000041000000800010043f0000133101000041000000840010043f0000000001000411000012ab01100197000a00000001001d000000a40010043f00000000010004140000000802200270000012ab02200197000000040020008c0000085b0000c13d0000000103000031000000200030008c000000200400003900000000040340190000087f0000013d0000000002000416000000000002004b0000004d0000c13d0000000102000039000000000202041a000012fe03000041000000800030043f000012ff03000041000000840030043f00000000030004140000000802200270000012ab02200197000000040020008c00000a790000c13d0000000103000031000000200030008c0000002004000039000000000403401900000a9d0000013d000000440030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000002402400370000000000202043b000900000002001d0000000402400370000000000202043b000a00000002001d0000000102000039000000000202041a000012fe03000041000000800030043f000012ff03000041000000840030043f00000000030004140000000802200270000012ab02200197000000040020008c00000b1d0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000b410000013d0000000001000416000000000001004b0000004d0000c13d00000000010300194a9d30690000040f000a00000001001d000900000002001d000800000003001d00000000010004114a9d36990000040f4a9d37a50000040f000000400100043d000700000001001d00000020020000394a9d30480000040f000000070400002900000000000404350000000a01000029000000090200002900000008030000294a9d382f0000040f000000000100001900004a9e0001042e000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000002401400370000000000501043b0000000401400370000000000301043b0000000101000039000000000201041a000012fe01000041000000800010043f000012ff01000041000000840010043f00000000010004140000000802200270000012ab02200197000000040020008c000a00000003001d000900000005001d00000cab0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000ccf0000013d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000002401400370000000000501043b0000000401400370000000000301043b0000000101000039000000000201041a000012fe01000041000000800010043f000012ff01000041000000840010043f00000000010004140000000802200270000012ab02200197000000040020008c000a00000003001d000900000005001d00000d1c0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000d400000013d000000640030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000a00000001001d000012ab0010009c0000004d0000213d0000004401400370000000000101043b000700000001001d0000002401400370000000000101043b000800000001001d0000000101000039000000000201041a000012f601000041000000800010043f0000133d01000041000000840010043f0000000001000411000012ab03100197000000a40030043f00000000010004140000000802200270000012ab02200197000000040020008c000900000003001d000010f80000c13d0000000103000031000000200030008c000000200400003900000000040340190000111c0000013d000000640030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000a00000001001d000012ab0010009c0000004d0000213d0000002401400370000000000101043b000013060010009c0000004d0000213d0000002302100039000000000032004b0000004d0000813d0000000402100039000000000224034f000000000502043b000013060050009c0000006e0000213d00000005025002100000003f0620003900001325066001970000130c0060009c0000006e0000213d0000008006600039000000400060043f000000800050043f00000024011000390000000002120019000000000032004b0000004d0000213d000000000005004b0000054f0000613d0000008005000039000000000614034f000000000606043b000000200550003900000000006504350000002001100039000000000021004b000005480000413d0000004401400370000000000101043b000013060010009c0000004d0000213d0000002302100039000000000032004b000000000500001900001315050080410000131502200197000000000002004b00000000060000190000131506004041000013150020009c000000000605c019000000000006004b0000004d0000c13d0000000402100039000000000224034f000000000202043b000013060020009c0000006e0000213d00000005052002100000003f065000390000132506600197000000400700043d0000000006670019000900000007001d000000000076004b00000000070000390000000107004039000013060060009c0000006e0000213d00000001007001900000006e0000c13d000000400060043f0000000906000029000000000026043500000024011000390000000005150019000000000035004b0000004d0000213d000000000002004b000005820000613d0000000902000029000000000314034f000000000303043b000000200220003900000000003204350000002001100039000000000051004b0000057b0000413d0000000101000039000000000201041a000000400400043d000012f60100004100000000001404350000000401400039000012f70300004100000000003104350000000001000411000012ab03100197000800000004001d0000002401400039000600000003001d000000000031043500000000010004140000000802200270000012ab02200197000000040020008c00001e260000c13d0000000103000031000000200030008c0000002004000039000000000403401900001e4f0000013d0000000002000416000000000002004b0000004d0000c13d0000000102000039000000000202041a000012fe03000041000000800030043f000012ff03000041000000840030043f00000000030004140000000802200270000012ab02200197000000040020008c00000bc20000c13d0000000103000031000000200030008c0000002004000039000000000403401900000be60000013d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000a00000001001d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000900000002001d000000000012004b0000004d0000c13d0000000101000039000000000201041a000012f601000041000000800010043f0000131901000041000000840010043f0000000001000411000012ab03100197000000a40030043f00000000010004140000000802200270000012ab02200197000000040020008c000800000003001d000011330000c13d0000000103000031000000200030008c00000020040000390000000004034019000011570000013d000000840030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000a00000001001d000012ab0010009c0000004d0000213d0000002401400370000000000101043b000013060010009c0000004d0000213d0000002302100039000000000032004b0000004d0000813d0000000402100039000000000224034f000000000502043b000013060050009c0000006e0000213d00000005025002100000003f0620003900001325066001970000130c0060009c0000006e0000213d0000008006600039000000400060043f000000800050043f00000024011000390000000002120019000000000032004b0000004d0000213d000000000005004b000005fd0000613d0000008005000039000000000614034f000000000606043b000000200550003900000000006504350000002001100039000000000021004b000005f60000413d0000004401400370000000000101043b000013060010009c0000004d0000213d0000002302100039000000000032004b000000000500001900001315050080410000131502200197000000000002004b00000000060000190000131506004041000013150020009c000000000605c019000000000006004b0000004d0000c13d0000000402100039000000000224034f000000000202043b000013060020009c0000006e0000213d00000005052002100000003f065000390000132506600197000000400700043d0000000006670019000900000007001d000000000076004b00000000070000390000000107004039000013060060009c0000006e0000213d00000001007001900000006e0000c13d000000400060043f0000000906000029000000000026043500000024011000390000000005150019000000000035004b0000004d0000213d000000000002004b000006300000613d0000000902000029000000000614034f000000000606043b000000200220003900000000006204350000002001100039000000000051004b000006290000413d0000006401400370000000000201043b000013060020009c0000004d0000213d0000002301200039000000000031004b000000000500001900001315050080410000131501100197000000000001004b00000000060000190000131506004041000013150010009c000000000605c019000000000006004b0000004d0000c13d0000000405200039000000000154034f000000000101043b000013060010009c0000006e0000213d0000001f0710003900001349077001970000003f077000390000134907700197000000400800043d0000000007780019000800000008001d000000000087004b00000000080000390000000108004039000013060070009c0000006e0000213d00000001008001900000006e0000c13d0000002408200039000000400070043f000000080200002900000000021204360000000007810019000000000037004b0000004d0000213d0000002003500039000000000434034f00001349051001980000001f0610018f0000000003520019000006660000613d000000000704034f0000000008020019000000007907043c0000000008980436000000000038004b000006620000c13d000000000006004b000006730000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000000112001900000000000104350000000101000039000000000201041a000000400400043d000012f601000041000000000014043500000004014000390000133d0300004100000000003104350000000001000411000012ab03100197000700000004001d0000002401400039000500000003001d000000000031043500000000010004140000000802200270000012ab02200197000000040020008c0000247c0000c13d0000000103000031000000200030008c00000020040000390000000004034019000024a50000013d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b4a9d34d50000040f000000400200043d0000000000120435000012a80020009c000012a80200804100000040012002100000130f011001c700004a9e0001042e000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000a00000001001d0000000101000039000000000201041a000012fe01000041000000800010043f000012ff01000041000000840010043f00000000010004140000000802200270000012ab02200197000000040020008c00000d5e0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000d820000013d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000201043b000013060020009c0000004d0000213d0000002301200039000000000031004b0000004d0000813d0000000405200039000000000154034f000000000101043b000013060010009c0000006e0000213d0000001f0610003900001349066001970000003f0660003900001349066001970000130c0060009c0000006e0000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b0000004d0000213d0000002002500039000000000324034f00001349041001980000001f0510018f000000a002400039000006de0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000006da0000c13d000000000005004b000006eb0000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000101000039000000000201041a000000400500043d000012f60100004100000000001504350000000401500039000013190300004100000000003104350000000001000411000012ab031001970000002401500039000900000003001d000000000031043500000000010004140000000802200270000012ab02200197000000040020008c000016fc0000c13d0000000103000031000000200030008c00000020040000390000000004034019000017280000013d000000440030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000002402400370000000000202043b000900000002001d0000000402400370000000000202043b000a00000002001d0000000102000039000000000202041a000012fe03000041000000800030043f000012ff03000041000000840030043f00000000030004140000000802200270000012ab02200197000000040020008c00000d9f0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000dc30000013d000000240030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000000402400370000000000202043b000a00000002001d0000000102000039000000000202041a000012fe03000041000000800030043f000012ff03000041000000840030043f00000000030004140000000802200270000012ab02200197000000040020008c00000e3e0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000e620000013d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000a00000001001d0000002401400370000000000201043b000013060020009c0000004d0000213d0000002301200039000000000031004b0000004d0000813d0000000405200039000000000154034f000000000101043b000013060010009c0000006e0000213d0000001f0610003900001349066001970000003f0660003900001349066001970000130c0060009c0000006e0000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b0000004d0000213d0000002002500039000000000324034f00001349041001980000001f0510018f000000a002400039000007640000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000007600000c13d000000000005004b000007710000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000101000039000000000201041a000000400500043d000012f60100004100000000001504350000000401500039000013190300004100000000003104350000000001000411000012ab031001970000002401500039000800000003001d000000000031043500000000010004140000000802200270000012ab02200197000000040020008c0000174e0000c13d0000000103000031000000200030008c000000200400003900000000040340190000177a0000013d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000a00000001001d000012ab0010009c0000004d0000213d00000000010004114a9d371f0000040f0000000701000039000000000201041a0000131c022001970000000a022001af000000000021041b000000000100001900004a9e0001042e0000000001000416000000000001004b0000004d0000c13d0000000101000039000000000101041a0000000801100270000012ab01100197000000800010043f000013100100004100004a9e0001042e000000a40030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000a00000001001d000012ab0010009c0000004d0000213d0000002401400370000000000101043b000900000001001d000012ab0010009c0000004d0000213d0000006401400370000000000101043b000800000001001d0000004401400370000000000101043b000700000001001d0000008401400370000000000201043b000013060020009c0000004d0000213d0000002301200039000000000031004b0000004d0000813d0000000405200039000000000154034f000000000101043b000013060010009c0000006e0000213d0000001f0710003900001349077001970000003f0770003900001349077001970000130c0070009c0000006e0000213d00000024022000390000008007700039000000400070043f000000800010043f0000000002210019000000000032004b0000004d0000213d0000002002500039000000000324034f00001349041001980000001f0510018f000000a002400039000007e10000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000007dd0000c13d000000000005004b000007ee0000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a001100039000000000001043500000000020004110000000a0020006b00001af40000c13d000000090000006b00001b5b0000c13d0000134201000041000008240000013d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000301043b0000000101000039000000000201041a000012fe01000041000000800010043f000012ff01000041000000840010043f00000000010004140000000802200270000012ab02200197000000040020008c000a00000003001d0000100a0000c13d0000000103000031000000200030008c000000200400003900000000040340190000102e0000013d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000a00000001001d000012ab0010009c0000004d0000213d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000900000002001d000000000012004b0000004d0000c13d0000000a0000006b000013000000c13d0000132801000041000000000010043f000000040000043f000012b40100004100004a9f00010430000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000013060010009c0000004d0000213d0000002302100039000000000032004b0000004d0000813d000900040010003d0000000902400360000000000202043b000a00000002001d000013060020009c0000004d0000213d0000000a01100029000800240010003d000000080030006b0000004d0000213d0000000101000039000000000201041a000012f601000041000000800010043f0000131901000041000000840010043f0000000001000411000012ab03100197000000a40030043f00000000010004140000000802200270000012ab02200197000000040020008c000700000003001d0000149e0000c13d0000000103000031000000200030008c00000020040000390000000004034019000014c20000013d0000000001000416000000000001004b0000004d0000c13d0000000701000039000000000101041a000012ab01100197000000800010043f000013100100004100004a9e0001042e000012a80010009c000012a801008041000000c001100210000012f8011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000086f0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000086b0000c13d000000000006004b0000087c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000010510000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b0000004d0000c13d000000000002004b000013310000c13d0000130a01000041000000000010043f0000000a01000029000000040010043f0000133101000041000000240010043f0000130b0100004100004a9f00010430000012a80030009c000012a803008041000000c00130021000001311011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008aa0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000008a60000c13d000000000006004b000008b70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000105d0000613d0000001f02400039000000600420018f00000080024001bf000900000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000012ab0020009c0000004d0000213d0000000205000039000000000505041a0000132406000041000000090a00002900000000006a043500000084064001bf0000000000560435000000c4054000390000000a060000290000000000650435000000a40440003900000000000404350000000004000414000000040020008c000008e00000613d0000004001a00210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000112a80030019d000012a8033001970000000100200190000015180000613d000000090a00002900001349053001980000001f0630018f00000000045a0019000008ea0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000008e60000c13d000000000006004b000008f70000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001349011001970000000002a10019000000000012004b00000000010000390000000101004039000013060020009c0000006e0000213d00000001001001900000006e0000c13d000000400020043f000013140030009c0000004d0000213d000000200030008c0000004d0000413d00000009010000290000000001010433000013060010009c0000004d0000213d000000090330002900000009011000290000001f04100039000000000034004b0000000005000019000013150500804100001315044001970000131506300197000000000764013f000000000064004b00000000040000190000131504004041000013150070009c000000000405c019000000000004004b0000004d0000c13d0000000015010434000013060050009c0000006e0000213d00000005045002100000003f0640003900001325066001970000000006260019000013060060009c0000006e0000213d000000400060043f00000000005204350000000004140019000000000034004b0000004d0000213d000000000005004b00000e3a0000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b0000092b0000413d00000e3a0000013d000012a80030009c000012a803008041000000c00130021000001311011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009450000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009410000c13d000000000006004b000009520000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000010690000613d0000001f02400039000000600420018f00000080024001bf000a00000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000012ab0020009c0000004d0000213d0000000205000039000000000505041a00001312060000410000000a0a00002900000000006a043500000084064001bf0000000000560435000000c4054000390000132a060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c0000097b0000613d0000004001a00210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000112a80030019d000012a8033001970000000100200190000015240000613d0000000a0a00002900001349053001980000001f0630018f00000000025a0019000009850000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000028004b000009810000c13d000000000006004b000009920000613d000000000151034f0000000305600210000000000602043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001204350000001f0130003900001349011001970000000002a10019000000000012004b00000000010000390000000101004039000013060020009c0000006e0000213d00000001001001900000006e0000c13d000000400020043f000013140030009c0000004d0000213d000000200030008c0000004d0000413d0000000a010000290000000001010433000013060010009c0000004d0000213d0000000a063000290000000a011000290000001f03100039000000000063004b0000000005000019000013150500804100001315033001970000131507600197000000000873013f000000000073004b00000000030000190000131503004041000013150080009c000000000305c019000000000003004b0000004d0000c13d0000000031010434000013060010009c0000006e0000213d0000001f0510003900001349055001970000003f0550003900001349055001970000000005250019000013060050009c0000006e0000213d000000400050043f00000000051204360000000007310019000000000067004b0000004d0000213d00001349061001970000001f0410018f000000000053004b000020340000813d000000000006004b00000c650000613d00000000084300190000000007450019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000009ce0000c13d00000c650000013d000012a80030009c000012a803008041000000c00130021000001311011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009e90000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009e50000c13d000000000006004b000009f60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000010750000613d0000001f02400039000000600420018f00000080024001bf000900000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000012ab0020009c0000004d0000213d0000000205000039000000000505041a0000131206000041000000090a00002900000000006a043500000084064001bf0000000000560435000000c4054000390000000a060000290000000000650435000000a40440003900000000000404350000000004000414000000040020008c00000a1f0000613d0000004001a00210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000112a80030019d000012a8033001970000000100200190000015300000613d000000090a00002900001349053001980000001f0630018f00000000025a001900000a290000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000028004b00000a250000c13d000000000006004b00000a360000613d000000000151034f0000000305600210000000000602043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001204350000001f0130003900001349011001970000000002a10019000000000012004b00000000010000390000000101004039000013060020009c0000006e0000213d00000001001001900000006e0000c13d000000400020043f000013140030009c0000004d0000213d000000200030008c0000004d0000413d00000009010000290000000001010433000013060010009c0000004d0000213d000000090630002900000009011000290000001f03100039000000000063004b0000000005000019000013150500804100001315033001970000131507600197000000000873013f000000000073004b00000000030000190000131503004041000013150080009c000000000305c019000000000003004b0000004d0000c13d0000000031010434000013060010009c0000006e0000213d0000001f0510003900001349055001970000003f0550003900001349055001970000000005250019000013060050009c0000006e0000213d000000400050043f00000000051204360000000007310019000000000067004b0000004d0000213d00001349061001970000001f0410018f000000000053004b0000203e0000813d000000000006004b00000c650000613d00000000084300190000000007450019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000a720000c13d00000c650000013d000012a80030009c000012a803008041000000c00130021000001311011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000a8d0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000a890000c13d000000000006004b00000a9a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000010810000613d0000001f02400039000000600420018f00000080024001bf000a00000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000012ab0020009c0000004d0000213d0000000205000039000000000505041a00001312060000410000000a0a00002900000000006a043500000084064001bf0000000000560435000000c40540003900001313060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c00000ac30000613d0000004001a00210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000112a80030019d000012a80330019700000001002001900000153c0000613d0000000a0a00002900001349053001980000001f0630018f00000000025a001900000acd0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000028004b00000ac90000c13d000000000006004b00000ada0000613d000000000151034f0000000305600210000000000602043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001204350000001f0130003900001349011001970000000002a10019000000000012004b00000000010000390000000101004039000013060020009c0000006e0000213d00000001001001900000006e0000c13d000000400020043f000013140030009c0000004d0000213d000000200030008c0000004d0000413d0000000a010000290000000001010433000013060010009c0000004d0000213d0000000a063000290000000a011000290000001f03100039000000000063004b0000000005000019000013150500804100001315033001970000131507600197000000000873013f000000000073004b00000000030000190000131503004041000013150080009c000000000305c019000000000003004b0000004d0000c13d0000000031010434000013060010009c0000006e0000213d0000001f0510003900001349055001970000003f0550003900001349055001970000000005250019000013060050009c0000006e0000213d000000400050043f00000000051204360000000007310019000000000067004b0000004d0000213d00001349061001970000001f0410018f000000000053004b000020480000813d000000000006004b00000c650000613d00000000084300190000000007450019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000b160000c13d00000c650000013d000012a80030009c000012a803008041000000c00130021000001311011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000b310000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000b2d0000c13d000000000006004b00000b3e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000108d0000613d0000001f02400039000000600420018f00000080024001bf000800000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000012ab0020009c0000004d0000213d0000000205000039000000000505041a0000131206000041000000080a00002900000000006a043500000084064001bf0000000000560435000000c40540003900000009060000290000000000650435000000a4044000390000000a0500002900000000005404350000000004000414000000040020008c00000b680000613d0000004001a00210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000112a80030019d000012a8033001970000000100200190000015480000613d000000080a00002900001349053001980000001f0630018f00000000025a001900000b720000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000028004b00000b6e0000c13d000000000006004b00000b7f0000613d000000000151034f0000000305600210000000000602043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001204350000001f0130003900001349011001970000000002a10019000000000012004b00000000010000390000000101004039000013060020009c0000006e0000213d00000001001001900000006e0000c13d000000400020043f000013140030009c0000004d0000213d000000200030008c0000004d0000413d00000008010000290000000001010433000013060010009c0000004d0000213d000000080630002900000008011000290000001f03100039000000000063004b0000000005000019000013150500804100001315033001970000131507600197000000000873013f000000000073004b00000000030000190000131503004041000013150080009c000000000305c019000000000003004b0000004d0000c13d0000000031010434000013060010009c0000006e0000213d0000001f0510003900001349055001970000003f0550003900001349055001970000000005250019000013060050009c0000006e0000213d000000400050043f00000000051204360000000007310019000000000067004b0000004d0000213d00001349061001970000001f0410018f000000000053004b000020520000813d000000000006004b00000c650000613d00000000084300190000000007450019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000bbb0000c13d00000c650000013d000012a80030009c000012a803008041000000c00130021000001311011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000bd60000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000bd20000c13d000000000006004b00000be30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000010990000613d0000001f02400039000000600420018f00000080024001bf000a00000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000012ab0020009c0000004d0000213d0000000205000039000000000505041a00001312060000410000000a0a00002900000000006a043500000084064001bf0000000000560435000000c40540003900001317060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c00000c0c0000613d0000004001a00210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000112a80030019d000012a8033001970000000100200190000015540000613d0000000a0a00002900001349053001980000001f0630018f00000000025a001900000c160000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000028004b00000c120000c13d000000000006004b00000c230000613d000000000151034f0000000305600210000000000602043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001204350000001f0130003900001349011001970000000002a10019000000000012004b00000000010000390000000101004039000013060020009c0000006e0000213d00000001001001900000006e0000c13d000000400020043f000013140030009c0000004d0000213d000000200030008c0000004d0000413d0000000a010000290000000001010433000013060010009c0000004d0000213d0000000a063000290000000a011000290000001f03100039000000000063004b0000000005000019000013150500804100001315033001970000131507600197000000000873013f000000000073004b00000000030000190000131503004041000013150080009c000000000305c019000000000003004b0000004d0000c13d0000000031010434000013060010009c0000006e0000213d0000001f0510003900001349055001970000003f0550003900001349055001970000000005250019000013060050009c0000006e0000213d000000400050043f00000000051204360000000007310019000000000067004b0000004d0000213d00001349061001970000001f0410018f000000000053004b0000205c0000813d000000000006004b00000c650000613d00000000084300190000000007450019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000c5f0000c13d000000000004004b000020720000613d0000000007050019000020680000013d000012a80010009c000012a801008041000000c00110021000001311011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000c7d0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000c790000c13d000000000006004b00000c8a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000010ec0000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000012ab0020009c0000004d0000213d0000000203000039000000000303041a00001300040000410000000905000029000000000045043500000084041001bf0000000000340435000000c4031000390000000a040000290000000000430435000000a40310003900000000000304350000000003000414000000040020008c0000134d0000c13d0000000001150019000000400010043f000000090200002900000000020204330000104d0000013d000012a80010009c000012a801008041000000c00110021000001311011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000cbf0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000cbb0000c13d000000000006004b00000ccc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000116a0000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000012ab0020009c0000004d0000213d0000000203000039000000000303041a0000131f040000410000000805000029000000000045043500000084041001bf0000000000340435000000c40310003900000009040000290000000000430435000000a4031000390000000a0400002900000000004304350000000003000414000000040020008c000010000000613d000012a80030009c000012a803008041000000c0013002100000004003500210000000000131019f000012fd011001c74a9d4a980000040f000000080b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000d000000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000cfc0000c13d000000000006004b00000d0d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000000fbb0000c13d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d170000c13d00002b010000013d000012a80010009c000012a801008041000000c00110021000001311011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000d300000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000d2c0000c13d000000000006004b00000d3d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000011760000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000012ab0020009c0000004d0000213d0000000203000039000000000303041a0000132f040000410000000805000029000000000045043500000084041001bf0000000000340435000000c40310003900000009040000290000000000430435000000a4031000390000000a0400002900000000004304350000000003000414000000040020008c0000137b0000c13d0000000001150019000000400010043f00000008020000290000104a0000013d000012a80010009c000012a801008041000000c00110021000001311011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000d720000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000d6e0000c13d000000000006004b00000d7f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000011820000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000012ab0020009c0000004d0000213d0000000203000039000000000303041a0000131f040000410000000905000029000000000045043500000084041001bf0000000000340435000000c4031000390000000a040000290000000000430435000000a40310003900000000000304350000000003000414000000040020008c000013a90000c13d0000000001150019000000400010043f0000000902000029000010030000013d000012a80030009c000012a803008041000000c00130021000001311011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000db30000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000daf0000c13d000000000006004b00000dc00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000118e0000613d0000001f02400039000000600420018f00000080024001bf000800000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000012ab0020009c0000004d0000213d0000000205000039000000000505041a0000132406000041000000080a00002900000000006a043500000084064001bf0000000000560435000000c40540003900000009060000290000000000650435000000a4044000390000000a0500002900000000005404350000000004000414000000040020008c00000dea0000613d0000004001a00210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000112a80030019d000012a8033001970000000100200190000016090000613d000000080a00002900001349053001980000001f0630018f00000000045a001900000df40000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000df00000c13d000000000006004b00000e010000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001349011001970000000002a10019000000000012004b00000000010000390000000101004039000013060020009c0000006e0000213d00000001001001900000006e0000c13d000000400020043f000013140030009c0000004d0000213d000000200030008c0000004d0000413d00000008010000290000000001010433000013060010009c0000004d0000213d000000080330002900000008011000290000001f04100039000000000034004b0000000005000019000013150500804100001315044001970000131506300197000000000764013f000000000064004b00000000040000190000131504004041000013150070009c000000000405c019000000000004004b0000004d0000c13d0000000015010434000013060050009c0000006e0000213d00000005045002100000003f0640003900001325066001970000000006260019000013060060009c0000006e0000213d000000400060043f00000000005204350000000004140019000000000034004b0000004d0000213d000000000005004b00000e3a0000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b00000e350000413d000000400100043d000a00000001001d4a9d305a0000040f000020770000013d000012a80030009c000012a803008041000000c00130021000001311011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000e520000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000e4e0000c13d000000000006004b00000e5f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000011d50000613d0000001f02400039000000600420018f00000080024001bf000900000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000012ab0020009c0000004d0000213d0000000205000039000000000505041a00001316060000410000000907000029000000000067043500000084064001bf0000000000560435000000c40540003900001317060000410000000000650435000000a4054000390000000a0600002900000000006504350000000005000414000000040020008c000013d80000c13d0000000002470019000800000002001d000000400020043f00000009020000290000000005020433000000000005004b0000000002000039000000010200c039000000000025004b0000004d0000c13d0000000102000039000000000202041a000012fe060000410000000807000029000000000067043500000004067001bf000012ff0700004100000000007604350000000802200270000012ab02200197000000000005004b000017ac0000c13d0000000005000414000000040020008c00001a060000c13d0000000802400029000900000002001d000000400020043f00000008020000290000000002020433000012ab0020009c0000004d0000213d0000000204000039000000000404041a00000009070000290000004405700039000013180600004100000000006504350000131205000041000000000057043500000004057000390000000000450435000000240470003900000000000404350000000004000414000000040020008c00000eb80000613d00000009010000290000004001100210000012a80040009c000012a804008041000000c003400210000000000131019f000012fd011001c74a9d4a980000040f0000006003100270000112a80030019d000012a803300197000000010020019000001b5f0000613d00001349053001980000001f0630018f000000090450002900000ec20000613d000000000701034f0000000908000029000000007907043c0000000008980436000000000048004b00000ebe0000c13d000000000006004b00000ecf0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001349041001970000000901400029000000000041004b00000000040000390000000104004039000013060010009c0000006e0000213d00000001004001900000006e0000c13d000000400010043f000013140030009c0000004d0000213d000000200030008c0000004d0000413d00000009040000290000000004040433000013060040009c0000004d0000213d000000090630002900000009034000290000001f04300039000000000064004b0000000005000019000013150500804100001315044001970000131507600197000000000874013f000000000074004b00000000040000190000131504004041000013150080009c000000000405c019000000000004004b0000004d0000c13d0000000054030434000013060040009c0000006e0000213d0000001f0340003900001349033001970000003f0330003900001349033001970000000003130019000013060030009c0000006e0000213d000000400030043f00000000034104360000000007540019000000000067004b0000004d0000213d00001349074001970000001f0640018f000000000035004b000026550000813d000000000007004b00000f110000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00000f0b0000c13d000000000006004b0000266b0000613d0000000008030019000026610000013d000012a80010009c000012a801008041000000c00110021000001311011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000f290000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000f250000c13d000000000006004b00000f360000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000012170000613d0000001f01400039000000600110018f00000080021001bf000a00000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000012ab0020009c0000004d0000213d0000000203000039000000000303041a0000132f040000410000000a05000029000000000045043500000084041001bf0000000000340435000000c40310003900001330040000410000000000430435000000a40310003900000000000304350000000003000414000000040020008c000014070000c13d0000000001150019000000400010043f0000000a020000290000104a0000013d000012a80010009c000012a801008041000000c00110021000001311011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000f6a0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000f660000c13d000000000006004b00000f770000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000125d0000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000012ab0020009c0000004d0000213d0000000203000039000000000303041a00001329040000410000000805000029000000000045043500000084041001bf0000000000340435000000c40310003900000009040000290000000000430435000000a4031000390000000a0400002900000000004304350000000003000414000000040020008c000010000000613d000012a80030009c000012a803008041000000c0013002100000004003500210000000000131019f000012fd011001c74a9d4a980000040f000000080b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000fab0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000fa70000c13d000000000006004b00000fb80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000166e0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000010020000813d0000004d0000013d000012a80010009c000012a801008041000000c00110021000001311011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000fd60000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000fd20000c13d000000000006004b00000fe30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000012690000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000012ab0020009c0000004d0000213d0000000203000039000000000303041a00001316040000410000000805000029000000000045043500000084041001bf0000000000340435000000c40310003900000009040000290000000000430435000000a4031000390000000a0400002900000000004304350000000003000414000000040020008c000014360000c13d0000000001150019000000400010043f00000008020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b0000004d0000c13d0000104d0000013d000012a80010009c000012a801008041000000c00110021000001311011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000101e0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000101a0000c13d000000000006004b0000102b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000012750000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000012ab0020009c0000004d0000213d0000000203000039000000000303041a0000132f040000410000000905000029000000000045043500000084041001bf0000000000340435000000c4031000390000000a040000290000000000430435000000a40310003900000000000304350000000003000414000000040020008c000014640000c13d0000000001150019000000400010043f00000009020000290000000002020433000012ab0020009c0000004d0000213d000000000021043500000040011002100000130f011001c700004a9e0001042e0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010580000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010640000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010700000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000107c0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010880000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010940000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010a00000c13d00002b010000013d0000134701000041000000800010043f000a00000002001d000000840020043f00000000010004140000000002000410000000040020008c000012810000c13d0000000103000031000000200030008c00000020040000390000000004034019000012a50000013d000012a80010009c000012a801008041000000c001100210000012f8011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000010c60000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000010c20000c13d000000000006004b000010d30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000012b80000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c0000004d0000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b0000004d0000c13d000000000003004b000015600000c13d0000130a01000041000000000010043f0000000901000029000000040010043f0000133e01000041000000240010043f0000130b0100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010f30000c13d00002b010000013d000012a80010009c000012a801008041000000c001100210000012f8011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000110c0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000011080000c13d000000000006004b000011190000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000012c40000613d0000001f01400039000000600110018f00000080021001bf000600000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000000000002004b0000000003000039000000010300c039000000000032004b0000004d0000c13d000000000002004b000015820000c13d0000130a01000041000000000010043f0000000901000029000000040010043f0000133d01000041000000240010043f0000130b0100004100004a9f00010430000012a80010009c000012a801008041000000c001100210000012f8011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000011470000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000011430000c13d000000000006004b000011540000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000012d00000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000000000002004b0000000003000039000000010300c039000000000032004b0000004d0000c13d000000000002004b000015ac0000c13d0000130a01000041000000000010043f0000000801000029000012580000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011710000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000117d0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011890000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011950000c13d00002b010000013d000012a80010009c000012a801008041000000c001100210000012f8011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000011ae0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000011aa0000c13d000000000006004b000011bb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000012dc0000613d0000001f01400039000000600110018f00000080021001bf000600000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000000000002004b0000000003000039000000010300c039000000000032004b0000004d0000c13d000000000002004b000016210000c13d0000130a01000041000000000010043f0000000901000029000000040010043f000012f701000041000000240010043f0000130b0100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011dc0000c13d00002b010000013d000012a80010009c000012a801008041000000c001100210000012f8011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000011f50000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000011f10000c13d000000000006004b000012020000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000012e80000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c0000004d0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b000016570000c13d0000130a01000041000000000010043f0000000901000029000012580000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000121e0000c13d00002b010000013d000012a80010009c000012a801008041000000c001100210000012f8011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000012370000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000012330000c13d000000000006004b000012440000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000012f40000613d0000001f01400039000000600110018f00000080021001bf000000400020043f000000200030008c0000004d0000413d000000800400043d000000000004004b0000000005000039000000010500c039000000000054004b0000004d0000c13d000000000004004b0000167a0000c13d0000130a01000041000000000010043f0000000701000029000000040010043f0000131901000041000000240010043f0000130b0100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012640000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012700000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000127c0000c13d00002b010000013d000012a80010009c000012a801008041000000c00110021000001311011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000012950000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000012910000c13d000000000006004b000012a20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000014920000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c0000004d0000413d000000800300043d000000000003004b0000000002000039000000010200c039000000000023004b0000004d0000c13d000000000003004b000000690000c13d0000000a02000029000013480020009c00000000020000390000000102006039000000690000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012bf0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012cb0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012d70000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012e30000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012ef0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012fb0000c13d00002b010000013d0000000001000411000000000010043f0000000501000039000000200010043f0000000001000414000012a80010009c000012a801008041000000c0011002100000130d011001c700008010020000394a9d4a980000040f00000001002001900000004d0000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000012a80010009c000012a801008041000000c0011002100000130d011001c700008010020000394a9d4a980000040f00000001002001900000004d0000613d000000000101043b000000000201041a0000134a022001970000000903000029000000000232019f000000000021041b000000400100043d0000000000310435000012a80010009c000012a80100804100000040011002100000000002000414000012a80020009c000012a802008041000000c002200210000000000112019f00001326011001c70000800d020000390000000303000039000013270400004100000000050004110000000a06000029000018ca0000013d000000c002100039000000400020043f000000110200003900000009040000290000000000240435000000a002100039000013320100004100000000001204350000000301000039000000000101041a000000ff00100190000015140000c13d000800000002001d0000000101000039000000000201041a000000400b00043d000012fe0100004100000000001b04350000000401b00039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c000018300000c13d00000020040000390000185b0000013d000012a80030009c000012a803008041000000c0013002100000004003500210000000000131019f000012fd011001c74a9d4a980000040f000000090b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000013640000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000013600000c13d000000000006004b000013710000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000015760000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000004d0000413d00000ca80000013d000012a80030009c000012a803008041000000c0013002100000004003500210000000000131019f000012fd011001c74a9d4a980000040f000000080b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000013920000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000138e0000c13d000000000006004b0000139f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000015fd0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000d5c0000813d0000004d0000013d000012a80030009c000012a803008041000000c0013002100000004003500210000000000131019f000012fd011001c74a9d4a980000040f000000090b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000013c00000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000013bc0000c13d000000000006004b000013cd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000016150000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000004d0000413d0000000902000029000010030000013d000012a80050009c000012a805008041000000c0015002100000004003700210000000000131019f000012fd011001c74a9d4a980000040f000000090b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000013ef0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000013eb0000c13d000000000006004b000013fc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000164b0000613d0000001f02400039000000600420018f0000000002b40019000800000002001d000000400020043f000000200030008c00000e7f0000813d0000004d0000013d000012a80030009c000012a803008041000000c0013002100000004003500210000000000131019f000012fd011001c74a9d4a980000040f0000000a0b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000141e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000141a0000c13d000000000006004b0000142b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000016620000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000004d0000413d0000000a020000290000104a0000013d000012a80030009c000012a803008041000000c0013002100000004003500210000000000131019f000012fd011001c74a9d4a980000040f000000080b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000144d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000014490000c13d000000000006004b0000145a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000016920000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000010020000813d0000004d0000013d000012a80030009c000012a803008041000000c0013002100000004003500210000000000131019f000012fd011001c74a9d4a980000040f000000090b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000147b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000014770000c13d000000000006004b000014880000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000169e0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000010490000813d0000004d0000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014990000c13d00002b010000013d000012a80010009c000012a801008041000000c001100210000012f8011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000014b20000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000014ae0000c13d000000000006004b000014bf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000017a00000613d0000001f01400039000000600110018f00000080021001bf000600000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b0000004d0000c13d000000000002004b000012550000613d0000000a020000290000001f022000390000134902200197000700000002001d0000003f0220003900001349022001970000000602200029000013060020009c0000006e0000213d000000400020043f0000000a02000029000000060500002900000000002504350000000802000029000000000020007c0000004d0000213d0000000a0200002900001349042001980005001f00200193000000a001100039000400000004001d000800000001001d000000000141001900000009020000290000002002200039000300000002001d0000000202200367000014f30000613d000000000402034f0000000805000029000000004604043c0000000005650436000000000015004b000014ef0000c13d000000050000006b000015010000613d000000040220036000000005040000290000000304400210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f000000000021043500000008020000290000000a0120002900000000000104350000000101000039000000000201041a000000400400043d000012fe010000410000000000140435000900000004001d0000000401400039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c00001d020000c13d000000200400003900001d2b0000013d0000133301000041000000000010043f000012fa0100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000151f0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000152b0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015370000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015430000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000154f0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000155b0000c13d00002b010000013d0000000103000039000000000303041a000000ff0430018f0000000a0000006b000018b90000c13d000000000004004b000018cf0000613d0000134a023001970000000103000039000000000023041b0000000002000411000000000021043500000040011002100000000002000414000012a80020009c000012a802008041000000c002200210000000000112019f00001326011001c70000800d020000390000134004000041000018ca0000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000157d0000c13d00002b010000013d0000000102000039000000000202041a000000ff0020019000001b1c0000c13d000012f9030000410000000604000029000000000034043500000000030004140000000802200270000012ab02200197000000040020008c00001a720000c13d000000a001100039000900000001001d000000400010043f00000006010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b00001b1b0000c13d0000000101000039000000000201041a000012fe0100004100000009030000290000000001130436000600000001001d00000004013001bf000012ff03000041000000000031043500000000010004140000000802200270000012ab02200197000000040020008c00001b820000c13d00000020010000390000000602000029000000400020043f00001bb10000013d0000000102000039000000000202041a000012fe030000410000000704000029000000000034043500000084031001bf000012ff04000041000000000043043500000000030004140000000802200270000012ab02200197000000040020008c000018dd0000c13d000000a001100039000000400010043f00000007010000290000000001010433000800000001001d000012ab0010009c0000004d0000213d0000000201000039000000000101041a000700000001001d00001302010000410000000000100443000000080100002900000004001004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000002f960000613d000000000101043b000000000001004b0000004d0000613d000000400300043d00000064013000390000000902000029000000000021043500000044013000390000133702000041000000000021043500000024013000390000000a02000029000000000021043500001321010000410000000000130435000a00000003001d00000004013000390000000702000029000000000021043500000000010004140000000802000029000000040020008c000015f60000613d0000000a02000029000012a80020009c000012a8020080410000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c700000008020000294a9d4a930000040f0000006003100270000112a80030019d000000010020019000001e6b0000613d0000000a01000029000013060010009c0000006e0000213d0000000a01000029000000400010043f000000000100001900004a9e0001042e0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016040000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016100000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000161c0000c13d00002b010000013d0000000102000039000000000202041a000000ff0020019000001b1c0000c13d000012f9030000410000000604000029000000000034043500000000030004140000000802200270000012ab02200197000000040020008c00001aad0000c13d000000a001100039000900000001001d000000400010043f00000006010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b00001b1b0000c13d0000000101000039000000000201041a000012fe0100004100000009030000290000000001130436000600000001001d00000004013001bf000012ff03000041000000000031043500000000010004140000000802200270000012ab02200197000000040020008c00001bc90000c13d00000020010000390000000602000029000000400020043f00001bf80000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016520000c13d00002b010000013d0000000a030000290000000801300210000012ae011001970000000104000039000000000204041a0000131a02200197000000000112019f000000000014041b000000000003004b000000fa0000613d000018cd0000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016690000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016750000c13d00002b010000013d00000100041001bf000000400040043f0000000000020435000000e0021000390000000000020435000000c0021000390000000000020435000000a00110003900000000000104350000000101000039000000000201041a000000400b00043d000012fe0100004100000000001b04350000000401b00039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c0000190b0000c13d0000002004000039000019360000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016990000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016a50000c13d00002b010000013d000012a80050009c000012a80300004100000000030540190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f0000130b011001c7000a00000005001d4a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0b0000290000000a05700029000016c50000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000016c10000c13d000000000006004b000016d20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000199d0000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000a00000002001d000013060020009c0000006e0000213d00000001001001900000006e0000c13d0000000a01000029000000400010043f000000200030008c0000004d0000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b000012130000613d0000000101000039000000000201041a000012fe010000410000000a0400002900000000001404350000000401400039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c00001c100000c13d000000200400003900001c390000013d000012a80050009c000012a80300004100000000030540190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f0000130b011001c7000a00000005001d4a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0b0000290000000a05700029000017170000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000017130000c13d000000000006004b000017240000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000019a90000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000a00000002001d000013060020009c0000006e0000213d00000001001001900000006e0000c13d0000000a01000029000000400010043f000000200030008c0000004d0000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b000012130000613d0000000101000039000000000201041a000012fe010000410000000a0400002900000000001404350000000401400039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c00001c800000c13d000000200400003900001ca90000013d000012a80050009c000012a80300004100000000030540190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f0000130b011001c7000900000005001d4a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090b0000290000000905700029000017690000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000017650000c13d000000000006004b000017760000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000019fa0000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000900000002001d000013060020009c0000006e0000213d00000001001001900000006e0000c13d0000000901000029000000400010043f000000200030008c0000004d0000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b000011660000613d0000000101000039000000000201041a000012fe01000041000000090400002900000000001404350000000401400039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c00001d790000c13d000000200400003900001da20000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017a70000c13d00002b010000013d0000000005000414000000040020008c00001a360000c13d0000000802400029000900000002001d000000400020043f00000008020000290000000002020433000012ab0020009c0000004d0000213d0000000204000039000000000404041a000000090700002900000044057000390000131706000041000000000065043500000024057000390000000a06000029000000000065043500001312050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c000017d30000613d00000009010000290000004001100210000012a80040009c000012a804008041000000c003400210000000000131019f000012fd011001c74a9d4a980000040f0000006003100270000112a80030019d000012a803300197000000010020019000001b6b0000613d00001349053001980000001f0630018f0000000904500029000017dd0000613d000000000701034f0000000908000029000000007907043c0000000008980436000000000048004b000017d90000c13d000000000006004b000017ea0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001349041001970000000901400029000000000041004b00000000040000390000000104004039000013060010009c0000006e0000213d00000001004001900000006e0000c13d000000400010043f000013140030009c0000004d0000213d000000200030008c0000004d0000413d00000009040000290000000004040433000013060040009c0000004d0000213d000000090630002900000009034000290000001f04300039000000000064004b0000000005000019000013150500804100001315044001970000131507600197000000000874013f000000000074004b00000000040000190000131504004041000013150080009c000000000405c019000000000004004b0000004d0000c13d0000000043030434000013060030009c0000006e0000213d0000001f0530003900001349055001970000003f0550003900001349055001970000000005150019000013060050009c0000006e0000213d000000400050043f00000000053104360000000007430019000000000067004b0000004d0000213d00001349063001970000001f0230018f000000000054004b000026840000813d000000000006004b0000182c0000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000018260000c13d000000000002004b0000269a0000613d0000000007050019000026900000013d000012a800b0009c000012a80300004100000000030b40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c700070000000b001d4a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000070b00002900000007057000290000184b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000018470000c13d000000000006004b000018580000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001a660000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000013060010009c0000006e0000213d00000001002001900000006e0000c13d000000400010043f000000200030008c0000004d0000413d00000000010b0433000700000001001d000012ab0010009c0000004d0000213d0000000201000039000000000101041a000600000001001d00001302010000410000000000100443000000070100002900000004001004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000002f960000613d000000000101043b000000000001004b0000004d0000613d0000000001000410000012ab01100197000000400300043d00000064023000390000000000120435000000440130003900001334020000410000000000210435000013350100004100000000001304350000000401300039000400000001001d00000006020000290000000000210435000500000003001d0000002401300039000000000001043500000000010004140000000702000029000000040020008c000018a30000613d0000000502000029000012a80020009c000012a8020080410000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c700000007020000294a9d4a930000040f0000006003100270000112a80030019d00000001002001900000222b0000613d0000000501000029000013060010009c0000006e0000213d0000000503000029000000400030043f0000000101000039000000000201041a000012fe010000410000000000130435000012ff010000410000000403000029000000000013043500000000010004140000000802200270000012ab02200197000000040020008c000022fb0000c13d0000000103000031000000200030008c00000020040000390000000004034019000023240000013d000000000004004b000018cf0000c13d0000134a0230019700000001022001bf0000000103000039000000000023041b0000000002000411000000000021043500000040011002100000000002000414000012a80020009c000012a802008041000000c002200210000000000112019f00001326011001c70000800d020000390000133f040000414a9d4a930000040f00000001002001900000004d0000613d000000000100001900004a9e0001042e000012fc03000041000000000031043500000084032001bf00000020040000390000000000430435000000c40320003900001341040000410000000000430435000000a402200039000000140300003900000000003204350000004001100210000012fd011001c700004a9f00010430000012a80030009c000012a803008041000000c00130021000000007030000290000004003300210000000000131019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000018f40000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000018f00000c13d000000000006004b000019010000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001aa10000613d0000001f01400039000000600110018f0000000701100029000000400010043f000000200030008c000015bb0000813d0000004d0000013d000012a800b0009c000012a80300004100000000030b40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c700070000000b001d4a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000070b0000290000000705700029000019260000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000019220000c13d000000000006004b000019330000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001adc0000613d0000001f01400039000000600110018f0000000004b10019000000000014004b00000000020000390000000102004039000700000004001d000013060040009c0000006e0000213d00000001002001900000006e0000c13d0000000702000029000000400020043f000000200030008c0000004d0000413d00000000020b0433000012ab0020009c0000004d0000213d0000000204000039000000000404041a000000070700002900000044057000390000131d06000041000000000065043500000024057000390000000a06000029000000000065043500001300050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c000019830000613d0000000701000029000012a80010009c000012a8010080410000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000019710000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b0000196d0000c13d000000000006004b0000197e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001e1a0000613d0000001f01400039000000600110018f0000000701100029000600000001001d000013060010009c0000006e0000213d0000000601000029000000400010043f000000200030008c0000004d0000413d00000007010000290000000001010433000500000001001d0000000101000039000000000201041a000012fe01000041000000060400002900000000001404350000000401400039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c0000208d0000c13d0000002004000039000020b60000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019a40000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019b00000c13d00002b010000013d0000000703000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f0000130b011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000019ce0000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000019ca0000c13d000000000006004b000019db0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001ae80000613d0000001f01400039000000600110018f0000000702100029000000000012004b00000000010000390000000101004039000600000002001d000013060020009c0000006e0000213d00000001001001900000006e0000c13d0000000601000029000000400010043f000000200030008c0000004d0000413d00000007010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b00001cf00000c13d0000130a01000041000000000010043f0000000501000029000012580000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a010000c13d00002b010000013d000012a80050009c000012a805008041000000c0015002100000000803000029000800000003001d0000004003300210000000000113019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080570002900001a1e0000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b00001a1a0000c13d000000000006004b00001a2b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001b2b0000613d0000001f02400039000000600220018f0000000802200029000900000002001d000000400020043f000000200030008c00000e980000813d0000004d0000013d000012a80050009c000012a805008041000000c0015002100000000803000029000800000003001d0000004003300210000000000113019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080570002900001a4e0000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b00001a4a0000c13d000000000006004b00001a5b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001b370000613d0000001f02400039000000600220018f0000000802200029000900000002001d000000400020043f000000200030008c000017b20000813d0000004d0000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a6d0000c13d00002b010000013d000012a80030009c000012a803008041000000c00130021000000006030000290000004003300210000000000131019f000012fa011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060570002900001a890000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00001a850000c13d000000000006004b00001a960000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001b430000613d0000001f01400039000000600110018f0000000601100029000900000001001d000000400010043f000000200030008c0000004d0000413d000015910000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001aa80000c13d00002b010000013d000012a80030009c000012a803008041000000c00130021000000006030000290000004003300210000000000131019f000012fa011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060570002900001ac40000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00001ac00000c13d000000000006004b00001ad10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001b4f0000613d0000001f01400039000000600110018f0000000601100029000900000001001d000000400010043f000000200030008c000016300000813d0000004d0000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ae30000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001aef0000c13d00002b010000013d0000000a01000029000000000010043f0000000501000039000000200010043f0000000001000414000012a80010009c000012a801008041000000c0011002100000130d011001c700008010020000394a9d4a980000040f00000001002001900000004d0000613d000000000101043b0000000002000411000012ab02200197000000000020043f000000200010043f0000000001000414000012a80010009c000012a801008041000000c0011002100000130d011001c700008010020000394a9d4a980000040f00000001002001900000004d0000613d000000000101043b000000000101041a000000ff00100190000007f30000c13d0000130e01000041000000000010043f0000000001000411000000040010043f0000000a01000029000000240010043f0000130b0100004100004a9f00010430000600090000002d00000006030000290000004401300039000012fb020000410000000000210435000000240130003900000010020000390000000000210435000012fc0100004100000000001304350000000401300039000000200200003900000000002104350000004001300210000012fd011001c700004a9f000104300000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b320000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b3e0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b4a0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b560000c13d00002b010000013d0000000a0000006b00001b770000c13d0000133c01000041000008240000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b660000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b720000c13d00002b010000013d000000070100002900000008020000294a9d48550000040f0000000003010019000000000402001900000080050000390000000a0100002900000009020000294a9d41d40000040f000000000100001900004a9e0001042e000012a80010009c000012a801008041000000c0011002100000000903000029000900000003001d0000004003300210000000000113019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090570002900001b9a0000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b00001b960000c13d000000000006004b00001ba70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001e780000613d0000001f01400039000000600110018f0000000902100029000600000002001d000000400020043f000000200030008c0000004d0000413d00000009020000290000000002020433000012ab0020009c0000004d0000213d0000000203000039000000000303041a00001300040000410000000605000029000000000045043500000004045001bf000000000034043500000044035000390000131d0400004100000000004304350000002403500039000000080400002900000000004304350000000003000414000000040020008c00001f1c0000c13d0000000601100029000900000001001d000000400010043f00001f4b0000013d000012a80010009c000012a801008041000000c0011002100000000903000029000900000003001d0000004003300210000000000113019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090570002900001be10000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b00001bdd0000c13d000000000006004b00001bee0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001e840000613d0000001f01400039000000600110018f0000000902100029000600000002001d000000400020043f000000200030008c0000004d0000413d00000009020000290000000002020433000012ab0020009c0000004d0000213d0000000203000039000000000303041a00001300040000410000000605000029000000000045043500000004045001bf00000000003404350000004403500039000013010400004100000000004304350000002403500039000000080400002900000000004304350000000003000414000000040020008c00001f840000c13d0000000601100029000900000001001d000000400010043f00001fb30000013d0000000a03000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0570002900001c290000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b00001c250000c13d000000000006004b00001c360000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001e900000613d0000001f01400039000000600110018f0000000a01100029000013060010009c0000006e0000213d000000400010043f000000200030008c0000004d0000413d0000000a010000290000000001010433000a00000001001d000012ab0010009c0000004d0000213d0000000201000039000000000101041a000900000001001d000013020100004100000000001004430000000a0100002900000004001004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000002f960000613d000000000101043b000000000001004b0000004d0000613d000000400500043d00000064015000390000008002000039000000000021043500000044015000390000131802000041000000000021043500001322010000410000000000150435000000040150003900000009020000290000000000210435000000240150003900000000000104350000008402500039000000800100043d000000000012043500001349041001970000001f0310018f000900000005001d000000a402500039000000a10020008c000024fd0000413d000000000004004b00001c7b0000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c00001c750000c13d000000000003004b000025130000613d000000a0040000390000000005020019000025090000013d0000000a03000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0570002900001c990000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b00001c950000c13d000000000006004b00001ca60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001e9c0000613d0000001f01400039000000600110018f0000000a01100029000013060010009c0000006e0000213d000000400010043f000000200030008c0000004d0000413d0000000a010000290000000001010433000a00000001001d000012ab0010009c0000004d0000213d0000000201000039000000000101041a000900000001001d000013020100004100000000001004430000000a0100002900000004001004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000002f960000613d000000000101043b000000000001004b0000004d0000613d000000400500043d00000064015000390000008002000039000000000021043500000044015000390000132a02000041000000000021043500001322010000410000000000150435000000040150003900000009020000290000000000210435000000240150003900000000000104350000008402500039000000800100043d000000000012043500001349041001970000001f0310018f000900000005001d000000a402500039000000a10020008c0000253b0000413d000000000004004b00001ceb0000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c00001ce50000c13d000000000003004b000025510000613d000000a0040000390000000005020019000025470000013d0000000101000039000000000201041a0000000605000029000000240150003900000005040000290000000000410435000012f601000041000000000015043500000004015000390000131904000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c00001ea80000c13d000000200400003900001ed10000013d0000000903000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090570002900001d1b0000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b00001d170000c13d000000000006004b00001d280000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001efd0000613d0000001f01400039000000600210018f0000000901200029000000000021004b00000000020000390000000102004039000013060010009c0000006e0000213d00000001002001900000006e0000c13d000000400010043f000000200030008c0000004d0000413d00000009010000290000000001010433000900000001001d000012ab0010009c0000004d0000213d0000000201000039000000000101041a000200000001001d00001302010000410000000000100443000000090100002900000004001004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000002f960000613d000000000101043b000000000001004b0000004d0000613d000000400500043d00000064015000390000008002000039000000000021043500000044015000390000131302000041000000000021043500001322010000410000000001150436000100000001001d00000004015000390000000202000029000000000021043500000024015000390000000000010435000000060100002900000000010104330000008402500039000000000012043500001349041001970000001f0310018f000600000005001d000000a402500039000000080020006b000025730000813d000000000004004b00001d750000613d00000008063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c00001d6f0000c13d000000000003004b0000258a0000613d00000000050200190000257f0000013d0000000903000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090570002900001d920000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b00001d8e0000c13d000000000006004b00001d9f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001f090000613d0000001f01400039000000600110018f0000000901100029000013060010009c0000006e0000213d000000400010043f000000200030008c0000004d0000413d00000009010000290000000001010433000900000001001d000012ab0010009c0000004d0000213d0000000201000039000000000101041a000800000001001d00001302010000410000000000100443000000090100002900000004001004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000002f960000613d000000000101043b000000000001004b0000004d0000613d000000400500043d00000064015000390000008002000039000000000021043500000044015000390000131702000041000000000021043500000024015000390000000a020000290000000000210435000013220100004100000000001504350000000401500039000000080200002900000000002104350000008402500039000000800100043d000000000012043500001349041001970000001f0310018f000a00000005001d000000a402500039000000a10020008c000025de0000413d000000000004004b00001de50000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c00001ddf0000c13d000000000003004b000025f40000613d000000a0040000390000000005020019000025ea0000013d0000000003050019000000000624034f000000000606043b000000200330003900000000006304350000002002200039000000000072004b00001deb0000413d0000000002050433000000800300043d000000000023004b00001f150000c13d000013060020009c0000006e0000213d00000005032002100000003f043000390000133905400197000000400400043d000700000004001d0000000004450019000000000054004b00000000050000390000000105004039000013060040009c0000006e0000213d00000001005001900000006e0000c13d000000400040043f00000007040000290000000002240436000600000002001d0000001f0230018f000000000003004b00001e120000613d00000006040000290000000003340019000000001501043c0000000004540436000000000034004b00001e0e0000c13d000000000002004b000000800100043d000000000001004b000022380000c13d000000400100043d000a00000001001d000000070200002900000e3c0000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e210000c13d00002b010000013d0000000803000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f0000130b011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080570002900001e3f0000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b00001e3b0000c13d000000000006004b00001e4c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000020810000613d0000001f01400039000000600110018f0000000802100029000000000012004b00000000010000390000000101004039000700000002001d000013060020009c0000006e0000213d00000001001001900000006e0000c13d0000000701000029000000400010043f000000200030008c0000004d0000413d00000008010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b000023dd0000c13d0000130a01000041000000000010043f0000000601000029000011d00000013d000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e730000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e7f0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e8b0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e970000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ea30000c13d00002b010000013d0000000603000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f0000130b011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060570002900001ec10000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00001ebd0000c13d000000000006004b00001ece0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000021a80000613d0000001f01400039000000600110018f0000000601100029000013060010009c0000006e0000213d000000400010043f000000200030008c0000004d0000413d00000006020000290000000002020433000000000002004b0000000004000039000000010400c039000000000042004b0000004d0000c13d000000000002004b000019f60000613d0000130c0010009c0000006e0000213d0000008002100039000000400020043f00000060021000390000000000020435000000400210003900000000000204350000002002100039000000000002043500000000000104350000000101000039000000000201041a000000400400043d000012fe010000410000000000140435000700000004001d0000000401400039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c0000272c0000c13d0000002004000039000027550000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001f040000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001f100000c13d00002b010000013d00000000040200190000133801000041000000000010043f000000040040043f000000240030043f0000130b0100004100004a9f00010430000012a80030009c000012a803008041000000c0013002100000000603000029000600000003001d0000004003300210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060570002900001f340000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00001f300000c13d000000000006004b00001f410000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000022130000613d0000001f01400039000000600110018f0000000601100029000900000001001d000000400010043f000000200030008c0000004d0000413d00000006010000290000000001010433000500000001001d0000000101000039000000000201041a000012fe0100004100000009030000290000000001130436000600000001001d00000004013001bf000012ff03000041000000000031043500000000010004140000000802200270000012ab02200197000000040020008c000021b40000c13d00000020010000390000000602000029000000400020043f00000009020000290000000002020433000012ab0020009c0000004d0000213d0000000203000039000000000303041a00001300040000410000000605000029000000000045043500000004045001bf00000000003404350000004403500039000013200400004100000000004304350000002403500039000000080400002900000000004304350000000003000414000000040020008c000023a10000c13d0000000601100029000900000001001d000000400010043f00000006010000290000000001010433000000070010002a00002d6b0000413d0000000701100029000000050010006c000023eb0000a13d0000134302000041000000000020043f000000040010043f0000000501000029000000240010043f0000130b0100004100004a9f00010430000012a80030009c000012a803008041000000c0013002100000000603000029000600000003001d0000004003300210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060570002900001f9c0000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00001f980000c13d000000000006004b00001fa90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000221f0000613d0000001f01400039000000600110018f0000000601100029000900000001001d000000400010043f000000200030008c0000004d0000413d00000006010000290000000002010433000600000002001d000000070020002a00002d6b0000413d0000000101000039000000000201041a000012fe010000410000000903000029000000000113043600000004033001bf000012ff04000041000000000043043500000000030004140000000802200270000012ab02200197000000040020008c000021e40000c13d000000400010043f00000009010000290000000001010433000900000001001d000012ab0010009c0000004d0000213d0000000201000039000000000101041a000500000001001d00001302010000410000000000100443000000090100002900000004001004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000002f960000613d000000000101043b000000000001004b0000004d0000613d00000006020000290000000701200029000000400300043d0000006402300039000000000012043500000044013000390000130102000041000000000021043500000024013000390000000802000029000000000021043500001304010000410000000001130436000400000001001d000600000003001d00000004013000390000000502000029000000000021043500000000010004140000000902000029000000040020008c000020030000613d0000000602000029000012a80020009c000012a8020080410000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c700000009020000294a9d4a930000040f0000006003100270000112a80030019d0000000100200190000027d70000613d0000000601000029000013060010009c0000006e0000213d0000000603000029000000400030043f0000000a0100002900000060011002100000000402000029000000000012043500000034013000390000000802000029000000000021043500000034010000390000000000130435000013070030009c0000006e0000213d00000006020000290000006001200039000000400010043f0000000401000029000012a80010009c000012a80100804100000040011002100000000002020433000012a80020009c000012a8020080410000006002200210000000000112019f0000000002000414000012a80020009c000012a802008041000000c002200210000000000112019f00001308011001c700008010020000394a9d4a980000040f00000001002001900000004d0000613d000000000101043b4a9d34100000040f000000070010006c000028aa0000813d000000400100043d000000440210003900001309030000410000000000320435000000240210003900000012030000390000289f0000013d0000000007650019000000000006004b000020650000613d00000000080300190000000009050019000000008a0804340000000009a90436000000000079004b000020390000c13d000020650000013d0000000007650019000000000006004b000020650000613d00000000080300190000000009050019000000008a0804340000000009a90436000000000079004b000020430000c13d000020650000013d0000000007650019000000000006004b000020650000613d00000000080300190000000009050019000000008a0804340000000009a90436000000000079004b0000204d0000c13d000020650000013d0000000007650019000000000006004b000020650000613d00000000080300190000000009050019000000008a0804340000000009a90436000000000079004b000020570000c13d000020650000013d0000000007650019000000000006004b000020650000613d00000000080300190000000009050019000000008a0804340000000009a90436000000000079004b000020610000c13d000000000004004b000020720000613d00000000036300190000000304400210000000000607043300000000064601cf000000000646022f00000000030304330000010004400089000000000343022f00000000034301cf000000000363019f000000000037043500000000015100190000000000010435000000400100043d000a00000001001d4a9d30130000040f0000000a020000290000000001210049000012a80010009c000012a8010080410000006001100210000012a80020009c000012a8020080410000004002200210000000000121019f00004a9e0001042e0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020880000c13d00002b010000013d0000000603000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000020a60000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000020a20000c13d000000000006004b000020b30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000237d0000613d0000001f01400039000000600110018f0000000602100029000700000002001d000013060020009c0000006e0000213d0000000702000029000000400020043f000000200030008c0000004d0000413d00000006020000290000000002020433000012ab0020009c0000004d0000213d0000000204000039000000000404041a000000070700002900000044057000390000131e06000041000000000065043500000024057000390000000a0600002900000000006504350000131f050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c000020ff0000613d0000000701000029000012a80010009c000012a8010080410000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000020ed0000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000020e90000c13d000000000006004b000020fa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000027140000613d0000001f01400039000000600110018f0000000702100029000600000002001d000013060020009c0000006e0000213d0000000602000029000000400020043f000000200030008c0000004d0000413d00000007020000290000000004020433000000000004004b0000000002000039000000010200c039000700000004001d000000000024004b0000004d0000c13d0000000102000039000000000202041a000012fe04000041000000060500002900000000004504350000000404500039000012ff05000041000000000054043500000000040004140000000802200270000012ab02200197000000040020008c000021470000613d0000000601000029000012a80010009c000012a8010080410000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000021350000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000021310000c13d000000000006004b000021420000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000028dc0000613d0000001f01400039000000600110018f0000000602100029000400000002001d000013060020009c0000006e0000213d0000000402000029000000400020043f000000200030008c0000004d0000413d00000006020000290000000002020433000012ab0020009c0000004d0000213d0000000204000039000000000404041a000000040700002900000044057000390000132006000041000000000065043500000024057000390000000a06000029000000000065043500001300050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c0000218e0000613d0000000401000029000012a80010009c000012a8010080410000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000004057000290000217c0000613d000000000801034f0000000409000029000000008a08043c0000000009a90436000000000059004b000021780000c13d000000000006004b000021890000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002aea0000613d0000001f01400039000000600110018f0000000401100029000600000001001d000013060010009c0000006e0000213d0000000601000029000000400010043f000000200030008c0000004d0000413d00000004010000290000000001010433000300000001001d0000000101000039000000000201041a000012fe01000041000000060400002900000000001404350000000401400039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c00002b140000c13d000000200400003900002b3d0000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021af0000c13d00002b010000013d000012a80010009c000012a801008041000000c0011002100000000903000029000900000003001d0000004003300210000000000113019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000905700029000021cc0000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b000021c80000c13d000000000006004b000021d90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000023890000613d0000001f01400039000000600110018f0000000902100029000600000002001d000000400020043f000000200030008c0000004d0000413d00001f5f0000013d000012a80030009c000012a803008041000000c0013002100000000903000029000900000003001d0000004003300210000000000113019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000905700029000021fc0000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b000021f80000c13d000000000006004b000022090000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000023950000613d0000001f01400039000000600110018f0000000901100029000000400010043f000000200030008c00001fc60000813d0000004d0000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000221a0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000022260000c13d00002b010000013d000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000022330000c13d00002b010000013d0000000003000019000a00000003001d000000050230021000000008012000290000000003010433000900000002001d000000a00120003900000000010104330000006004100210000000400100043d000000200210003900000000004204350000003404100039000000000034043500000034030000390000000000310435000013070010009c0000006e0000213d0000006003100039000000400030043f000012a80020009c000012a80200804100000040022002100000000001010433000012a80010009c000012a8010080410000006001100210000000000121019f0000000002000414000012a80020009c000012a802008041000000c002200210000000000112019f00001308011001c700008010020000394a9d4a980000040f00000001002001900000004d0000613d000000000701043b0000000101000039000000000201041a000000400b00043d000012fe0100004100000000001b04350000000401b00039000012ff03000041000000000031043500000000010004140000000802200270000012ab02200197000000040020008c000022710000c13d0000000103000031000000200030008c000000200400003900000000040340190000229d0000013d000400000007001d000012a800b0009c000012a80300004100000000030b40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c700050000000b001d4a9d4a980000040f000000050b0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056b00190000228c0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000022880000c13d0000001f07400190000022990000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000027e40000613d00000004070000290000001f01400039000000600110018f000000000ab1001900000000001a004b000000000200003900000001020040390000130600a0009c0000006e0000213d00000001002001900000006e0000c13d0000004000a0043f000000200030008c0000004d0000413d00000000020b0433000012ab0020009c0000004d0000213d0000000204000039000000000404041a0000004405a000390000133a0600004100000000006504350000002405a000390000000000750435000013000500004100000000005a04350000000405a0003900000000004504350000000004000414000000040020008c000022e70000613d000012a800a0009c000012a80100004100000000010a40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c700050000000a001d4a9d4a980000040f000000050a0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000022d50000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000022d10000c13d0000001f07400190000022e20000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000027f00000613d0000001f01400039000000600110018f0000000001a10019000013060010009c0000006e0000213d000000400010043f000000200030008c0000004d0000413d000000070100002900000000010104330000000a03000029000000000031004b0000264f0000a13d0000000902000029000000060120002900000000020a043300000000002104350000000103300039000000800100043d000000000013004b000022390000413d00001e160000013d0000000503000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000505700029000023140000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b000023100000c13d000000000006004b000023210000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000023d10000613d0000001f01400039000000600110018f0000000501100029000013060010009c0000006e0000213d000000400010043f000000200030008c0000004d0000413d00000005010000290000000001010433000700000001001d000012ab0010009c0000004d0000213d0000000201000039000000000101041a000600000001001d00001302010000410000000000100443000000070100002900000004001004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000002f960000613d000000000101043b000000000001004b0000004d0000613d000000400300043d00000064013000390000000a020000290000000000210435000000440130003900001330020000410000000000210435000013350100004100000000001304350000000401300039000a00000001001d00000006020000290000000000210435000500000003001d0000002401300039000000000001043500000000010004140000000702000029000000040020008c000023670000613d0000000502000029000012a80020009c000012a8020080410000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c700000007020000294a9d4a930000040f0000006003100270000112a80030019d0000000100200190000028bd0000613d0000000501000029000013060010009c0000006e0000213d0000000503000029000000400030043f0000000101000039000000000201041a000012fe010000410000000000130435000012ff010000410000000a03000029000000000013043500000000010004140000000802200270000012ab02200197000000040020008c000028e80000c13d0000000103000031000000200030008c00000020040000390000000004034019000029110000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023840000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023900000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000239c0000c13d00002b010000013d000012a80030009c000012a803008041000000c0013002100000000603000029000600000003001d0000004003300210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000023b90000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000023b50000c13d000000000006004b000023c60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000024c10000613d0000001f01400039000000600110018f0000000601100029000900000001001d000000400010043f000000200030008c0000004d0000413d00001f760000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023d80000c13d00002b010000013d0000000101000039000000000201041a000000ff00200190000028cb0000c13d000012f9010000410000000704000029000000000014043500000000010004140000000802200270000012ab02200197000000040020008c000026ca0000c13d0000002004000039000026f30000013d0000000101000039000000000201041a000012fe0100004100000009030000290000000001130436000600000001001d0000000401300039000012ff03000041000000000031043500000000010004140000000802200270000012ab02200197000000040020008c000024cd0000c13d00000020010000390000000602000029000000400020043f00000009020000290000000002020433000012ab0020009c0000004d0000213d0000000203000039000000000303041a000000060600002900000044046000390000132005000041000000000054043500000024046000390000000805000029000000000054043500001300040000410000000000460435000000040460003900000000003404350000000003000414000000040020008c000028080000c13d0000000601100029000900000001001d000000400010043f00000006010000290000000002010433000600000002001d000000070020002a00002d6b0000413d0000000101000039000000000201041a000012fe01000041000000090300002900000000011304360000000403300039000012ff04000041000000000043043500000000030004140000000802200270000012ab02200197000000040020008c000028440000c13d000000400010043f00000009010000290000000001010433000900000001001d000012ab0010009c0000004d0000213d0000000201000039000000000101041a000500000001001d00001302010000410000000000100443000000090100002900000004001004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000002f960000613d000000000101043b000000000001004b0000004d0000613d00000006020000290000000701200029000000400300043d0000006402300039000000000012043500000044013000390000132002000041000000000021043500000024013000390000000802000029000000000021043500001304010000410000000001130436000400000001001d000600000003001d00000004013000390000000502000029000000000021043500000000010004140000000902000029000000040020008c000024630000613d0000000602000029000012a80020009c000012a8020080410000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c700000009020000294a9d4a930000040f0000006003100270000112a80030019d000000010020019000002add0000613d0000000601000029000013060010009c0000006e0000213d0000000601000029000000400010043f000012ac0010009c0000006e0000213d0000000401000029000000400010043f000000060100002900000000000104350000000a0000006b000007f50000613d000000080100002900000007020000294a9d48550000040f000000000301001900000000040200190000000a010000290000000002030019000000000304001900000006040000294a9d39b80000040f000000000100001900004a9e0001042e0000000703000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f0000130b011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000024950000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000024910000c13d000000000006004b000024a20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000026430000613d0000001f01400039000000600110018f0000000702100029000000000012004b00000000010000390000000101004039000600000002001d000013060020009c0000006e0000213d00000001001001900000006e0000c13d0000000601000029000000400010043f000000200030008c0000004d0000413d00000007010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b000028730000c13d0000130a01000041000000000010043f00000005010000290000112e0000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024c80000c13d00002b010000013d000012a80010009c000012a801008041000000c0011002100000000903000029000900000003001d0000004003300210000000000113019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000905700029000024e50000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b000024e10000c13d000000000006004b000024f20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000027200000613d0000001f01400039000000600110018f0000000902100029000600000002001d000000400020043f000000200030008c0000004d0000413d000023fc0000013d0000000005420019000000000004004b000025060000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b000025020000c13d000000000003004b000025130000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000a03000029000000040030008c0000256c0000613d0000001f011000390000134901100197000000a401100039000012a80010009c000012a80100804100000060011002100000000903000029000012a80030009c000012a8030080410000004003300210000000000131019f000012a80020009c000012a802008041000000c002200210000000000121019f0000000a020000294a9d4a930000040f0000006003100270000112a80030019d00000001002001900000256c0000c13d000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025360000c13d00002b010000013d0000000005420019000000000004004b000025440000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b000025400000c13d000000000003004b000025510000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000a03000029000000040030008c0000256c0000613d0000001f011000390000134901100197000000a401100039000012a80010009c000012a80100804100000060011002100000000903000029000012a80030009c000012a8030080410000004003300210000000000131019f000012a80020009c000012a802008041000000c002200210000000000121019f0000000a020000294a9d4a930000040f0000006003100270000112a80030019d0000000100200190000027bd0000613d0000000901000029000013060010009c0000006e0000213d0000000901000029000000400010043f000000000100001900004a9e0001042e0000000005420019000000000004004b0000257c0000613d0000000806000029000000000702001900000000680604340000000007870436000000000057004b000025780000c13d000000000003004b0000258a0000613d000800080040002d0000000303300210000000000405043300000000043401cf000000000434022f000000080600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000903000029000000040030008c000025a50000613d0000001f011000390000134901100197000000a401100039000012a80010009c000012a80100804100000060011002100000000603000029000012a80030009c000012a8030080410000004003300210000000000131019f000012a80020009c000012a802008041000000c002200210000000000121019f00000009020000294a9d4a930000040f0000006003100270000112a80030019d0000000100200190000027ca0000613d0000000601000029000013060010009c0000006e0000213d0000000602000029000000400020043f0000000a0100002900000001030000290000000000130435000000200100003900000000001204350000004001200039000000040210002900000003030000290000000203300367000000040000006b000025bb0000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b000025b70000c13d000000050000006b000025c90000613d000000040330036000000005040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000a011000290000000000010435000000070200002900000060012002100000132b0110009a0000132c0020009c0000132d010080410000000602000029000012a80020009c000012a8020080410000004002200210000000000112019f0000000002000414000012a80020009c000012a802008041000000c00220021000000000012100190000800d0200003900000001030000390000132e04000041000018ca0000013d0000000005420019000000000004004b000025e70000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b000025e30000c13d000000000003004b000025f40000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000903000029000000040030008c000015f60000613d0000001f011000390000134901100197000000a401100039000012a80010009c000012a80100804100000060011002100000000a03000029000012a80030009c000012a8030080410000004003300210000000000131019f000012a80020009c000012a802008041000000c002200210000000000121019f00000009020000294a9d4a930000040f0000006003100270000112a80030019d0000000100200190000015f60000c13d000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000026170000c13d00002b010000013d0000000601000029000000000010043f0000000501000039000000200010043f0000000001000414000012a80010009c000012a801008041000000c0011002100000130d011001c700008010020000394a9d4a980000040f00000001002001900000004d0000613d000000000101043b0000000002000411000012ab02200197000000000020043f000000200010043f0000000001000414000012a80010009c000012a801008041000000c0011002100000130d011001c700008010020000394a9d4a980000040f00000001002001900000004d0000613d000000000101043b000000000101041a000000ff001001900000030f0000c13d0000130e01000041000000000010043f0000000001000411000000040010043f0000000601000029000000240010043f0000130b0100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000264a0000c13d00002b010000013d000012b301000041000000000010043f0000003201000039000000040010043f000012b40100004100004a9f000104300000000008730019000000000007004b0000265e0000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b0000265a0000c13d000000000006004b0000266b0000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f000000000058043500000000043400190000000000040435000000000401043300001349074001970000001f0640018f000000400100043d0000002005100039000000000053004b0000269e0000813d000000000007004b000026800000613d00000000096300190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c0000267a0000c13d000000000006004b000026b40000613d0000000008050019000026aa0000013d0000000007650019000000000006004b0000268d0000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b000026890000c13d000000000002004b0000269a0000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f000000000027043500000000025300190000000000020435000000400300043d000026c50000013d0000000008750019000000000007004b000026a70000613d0000000009030019000000000a050019000000009b090434000000000aba043600000000008a004b000026a30000c13d000000000006004b000026b40000613d00000000037300190000000306600210000000000708043300000000076701cf000000000767022f00000000030304330000010006600089000000000363022f00000000036301cf000000000373019f000000000038043500000000034500190000000a050000290000000000530435000000200340003900000000003104350000005f0340003900001349023001970000000004120019000000000024004b00000000020000390000000102004039000013060040009c0000006e0000213d00000001002001900000006e0000c13d0000000003040019000000400040043f0000002002000039000a00000003001d00000000022304364a9d2fe10000040f000020770000013d0000000703000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012fa011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000026e30000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000026df0000c13d000000000006004b000026f00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000027fc0000613d0000001f01400039000000600110018f0000000701100029000013060010009c0000006e0000213d0000000004010019000000400010043f000000200030008c0000004d0000413d00000007010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b000028ca0000c13d0000000a01000029000012ab0010019800001b5d0000613d00000020020000390000000001040019000800000004001d4a9d30480000040f0000000801000029000000000001043500000080020000390000000a0100002900000009030000294a9d3eb70000040f000000000100001900004a9e0001042e0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000271b0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027270000c13d00002b010000013d0000000703000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000027450000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000027410000c13d000000000006004b000027520000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000028380000613d0000001f01400039000000600110018f0000000704100029000000000014004b00000000020000390000000102004039000600000004001d000013060040009c0000006e0000213d00000001002001900000006e0000c13d0000000602000029000000400020043f000000200030008c0000004d0000413d00000007020000290000000002020433000012ab0020009c0000004d0000213d0000000204000039000000000404041a000000060700002900000044057000390000131d06000041000000000065043500000024057000390000000a06000029000000000065043500001300050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c000027a30000613d0000000601000029000012a80010009c000012a8010080410000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000027910000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b0000278d0000c13d000000000006004b0000279e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000029aa0000613d0000001f01400039000000600110018f0000000601100029000700000001001d000013060010009c0000006e0000213d0000000701000029000000400010043f000000200030008c0000004d0000413d00000006010000290000000001010433000400000001001d0000000101000039000000000201041a000012fe01000041000000070400002900000000001404350000000401400039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c000029c20000c13d0000002004000039000029eb0000013d000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027c50000c13d00002b010000013d000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027d20000c13d00002b010000013d000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027df0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027eb0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027f70000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028030000c13d00002b010000013d000012a80030009c000012a803008041000000c0013002100000000603000029000600000003001d0000004003300210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000028200000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b0000281c0000c13d000000000006004b0000282d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000028810000613d0000001f01400039000000600110018f0000000601100029000900000001001d000000400010043f000000200030008c0000004d0000413d000024130000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000283f0000c13d00002b010000013d000012a80030009c000012a803008041000000c0013002100000000903000029000900000003001d0000004003300210000000000113019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000009057000290000285c0000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b000028580000c13d000000000006004b000028690000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000288d0000613d0000001f01400039000000600110018f0000000901100029000000400010043f000000200030008c0000004d0000413d000024260000013d0000000101000039000000000201041a000000ff00200190000028990000c13d000012f9010000410000000604000029000000000014043500000000010004140000000802200270000012ab02200197000000040020008c0000295a0000c13d0000002004000039000029830000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028880000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028940000c13d00002b010000013d00000006010000290000004402100039000012fb030000410000000000320435000000240210003900000010030000390000000000320435000012fc020000410000000000210435000000040210003900000020030000390000000000320435000012a80010009c000012a8010080410000004001100210000012fd011001c700004a9f000104300000000a0000006b00001b5d0000613d000000080100002900000007020000294a9d48550000040f000900000001001d000800000002001d000000400100043d000700000001001d00000020020000394a9d30480000040f000000070100002900000000000104350000000a01000029000000090200002900000008030000294a9d3eb70000040f000000000100001900004a9e0001042e000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028c50000c13d00002b010000013d000700000004001d00000007030000290000004401300039000012fb020000410000000000210435000000240130003900000010020000390000000000210435000012fc010000410000000000130435000000040130003900000020020000390000000000210435000012a80030009c000012a8030080410000004001300210000012fd011001c700004a9f000104300000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028e30000c13d00002b010000013d0000000503000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000505700029000029010000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b000028fd0000c13d000000000006004b0000290e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000299e0000613d0000001f01400039000000600110018f0000000501100029000013060010009c0000006e0000213d000000400010043f000000200030008c0000004d0000413d00000005010000290000000001010433000a00000001001d000012ab0010009c0000004d0000213d0000000201000039000000000101041a000700000001001d000013020100004100000000001004430000000a0100002900000004001004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000002f960000613d000000000101043b000000000001004b0000004d0000613d000000400300043d000000640130003900000080020000390000000000210435000000440130003900001317020000410000000000210435000013220100004100000000001304350000000401300039000500000001001d0000000702000029000000000021043500000024013000390000000000010435000000090100002900000000010104330000008402300039000000000012043500001349051001970000001f0410018f000600000003001d000000a403300039000000080030006b00002ba50000813d000000000005004b000029560000613d00000008074000290000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c000029500000c13d000000000004004b00002bbc0000613d000000000603001900002bb10000013d0000000603000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012fa011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000029730000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b0000296f0000c13d000000000006004b000029800000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000029b60000613d0000001f01400039000000600110018f0000000601100029000013060010009c0000006e0000213d000000400010043f000000200030008c0000004d0000413d00000006020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b0000004d0000c13d000000000002004b0000289a0000c13d0000000a01000029000012ab00100198000007f50000613d00000080020000390000000a01000029000000090300002900000008040000294a9d39b80000040f000000000100001900004a9e0001042e0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029a50000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029b10000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029bd0000c13d00002b010000013d0000000703000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000029db0000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000029d70000c13d000000000006004b000029e80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002af60000613d0000001f01400039000000600110018f0000000702100029000600000002001d000013060020009c0000006e0000213d0000000602000029000000400020043f000000200030008c0000004d0000413d00000007020000290000000002020433000012ab0020009c0000004d0000213d0000000204000039000000000404041a000000060700002900000044057000390000131e06000041000000000065043500000024057000390000000a0600002900000000006504350000131f050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c00002a340000613d0000000601000029000012a80010009c000012a8010080410000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060570002900002a220000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00002a1e0000c13d000000000006004b00002a2f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002c7d0000613d0000001f01400039000000600110018f0000000602100029000700000002001d000013060020009c0000006e0000213d0000000702000029000000400020043f000000200030008c0000004d0000413d00000006020000290000000004020433000000000004004b0000000002000039000000010200c039000600000004001d000000000024004b0000004d0000c13d0000000102000039000000000202041a000012fe04000041000000070500002900000000004504350000000404500039000012ff05000041000000000054043500000000040004140000000802200270000012ab02200197000000040020008c00002a7c0000613d0000000701000029000012a80010009c000012a8010080410000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000070570002900002a6a0000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b00002a660000c13d000000000006004b00002a770000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002ca10000613d0000001f01400039000000600110018f0000000702100029000300000002001d000013060020009c0000006e0000213d0000000302000029000000400020043f000000200030008c0000004d0000413d00000007020000290000000002020433000012ab0020009c0000004d0000213d0000000204000039000000000404041a000000030700002900000044057000390000132006000041000000000065043500000024057000390000000a06000029000000000065043500001300050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c00002ac30000613d0000000301000029000012a80010009c000012a8010080410000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000030570002900002ab10000613d000000000801034f0000000309000029000000008a08043c0000000009a90436000000000059004b00002aad0000c13d000000000006004b00002abe0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002cc20000613d0000001f01400039000000600110018f0000000301100029000700000001001d000013060010009c0000006e0000213d0000000701000029000000400010043f000000200030008c0000004d0000413d00000003010000290000000001010433000200000001001d0000000101000039000000000201041a000012fe01000041000000070400002900000000001404350000000401400039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c00002cce0000c13d000000200400003900002cf70000013d000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ae50000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002af10000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002afd0000c13d000000000005004b00002b0e0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012a80020009c000012a8020080410000004002200210000000000112019f00004a9f000104300000000603000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060570002900002b2d0000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00002b290000c13d000000000006004b00002b3a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002bed0000613d0000001f01400039000000600110018f0000000602100029000400000002001d000013060020009c0000006e0000213d0000000402000029000000400020043f000000200030008c0000004d0000413d00000006020000290000000002020433000012ab0020009c0000004d0000213d0000000204000039000000000404041a000000040700002900000044057000390000130106000041000000000065043500000024057000390000000a06000029000000000065043500001300050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c00002b860000613d0000000401000029000012a80010009c000012a8010080410000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000040570002900002b740000613d000000000801034f0000000409000029000000008a08043c0000000009a90436000000000059004b00002b700000c13d000000000006004b00002b810000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002c950000613d0000001f01400039000000600110018f0000000401100029000013060010009c0000006e0000213d000000400010043f000000200030008c0000004d0000413d0000130c0010009c0000006e0000213d000000040200002900000000020204330000008003100039000000400030043f000000600310003900000005040000290000000000430435000000400310003900000000002304350000000702000029000000000121043600000003020000290000000000210435000000090020006c00002cad0000a13d0000132301000041000000000010043f0000000301000029000000040010043f0000000901000029000000240010043f0000130b0100004100004a9f000104300000000006530019000000000005004b00002bae0000613d0000000807000029000000000803001900000000790704340000000008980436000000000068004b00002baa0000c13d000000000004004b00002bbc0000613d000800080050002d0000000304400210000000000506043300000000054501cf000000000545022f000000080700002900000000070704330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000000003310019000000000003043500000000030004140000000a04000029000000040040008c00002bd70000613d0000001f011000390000134901100197000000a401100039000012a80010009c000012a80100804100000060011002100000000602000029000012a80020009c000012a8020080410000004002200210000000000121019f000012a80030009c000012a803008041000000c002300210000000000121019f0000000a020000294a9d4a930000040f0000006003100270000112a80030019d000000010020019000002bf90000613d0000000601000029000013060010009c0000006e0000213d0000000603000029000000400030043f0000000101000039000000000201041a000012fe010000410000000000130435000012ff010000410000000503000029000000000013043500000000010004140000000802200270000012ab02200197000000040020008c00002c060000c13d0000000103000031000000200030008c0000002004000039000000000403401900002c2f0000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002bf40000c13d00002b010000013d000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002c010000c13d00002b010000013d0000000603000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060570002900002c1f0000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00002c1b0000c13d000000000006004b00002c2c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002c890000613d0000001f01400039000000600110018f0000000601100029000013060010009c0000006e0000213d000000400010043f000000200030008c0000004d0000413d00000006010000290000000001010433000a00000001001d000012ab0010009c0000004d0000213d0000000201000039000000000101041a000900000001001d000013020100004100000000001004430000000a0100002900000004001004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000002f960000613d000000000101043b000000000001004b0000004d0000613d000000400300043d0000006401300039000012af02000041000000000021043500000044013000390000133602000041000000000021043500001304010000410000000000130435000000040130003900000009020000290000000000210435000900000003001d0000002401300039000000000001043500000000010004140000000a02000029000000040020008c00002c710000613d0000000902000029000012a80020009c000012a8020080410000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c70000000a020000294a9d4a930000040f0000006003100270000112a80030019d000000010020019000002cb50000613d0000000901000029000013060010009c0000006e0000213d0000000901000029000000400010043f0000000303000039000000000103041a0000134a0110019700000001011001bf000000000013041b000000000100001900004a9e0001042e0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002c840000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002c900000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002c9c0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ca80000c13d00002b010000013d0000000a0100002900000009020000294a9d38f90000040f0000000a0100002900000008020000294a9d38380000040f000000000100001900004a9e0001042e000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002cbd0000c13d00002b010000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002cc90000c13d00002b010000013d0000000703000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000070570002900002ce70000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b00002ce30000c13d000000000006004b00002cf40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002d5f0000613d0000001f01400039000000600110018f0000000702100029000300000002001d000013060020009c0000006e0000213d0000000302000029000000400020043f000000200030008c0000004d0000413d00000007020000290000000002020433000012ab0020009c0000004d0000213d0000000204000039000000000404041a000000030700002900000044057000390000130106000041000000000065043500000024057000390000000a06000029000000000065043500001300050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c00002d400000613d0000000301000029000012a80010009c000012a8010080410000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000030570002900002d2e0000613d000000000801034f0000000309000029000000008a08043c0000000009a90436000000000059004b00002d2a0000c13d000000000006004b00002d3b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002d710000613d0000001f01400039000000600110018f0000000301100029000013060010009c0000006e0000213d000000400010043f000000200030008c0000004d0000413d0000130c0010009c0000006e0000213d000000030200002900000000020204330000008004100039000000400040043f000000600410003900000004050000290000000000540435000000400410003900000000002404350000000602000029000000000121043600000002020000290000000000210435000000080020006c00002d7d0000a13d0000132301000041000000000010043f0000000201000029000000040010043f0000000801000029000000240010043f0000130b0100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d660000c13d00002b010000013d000012b301000041000000000010043f0000001101000039000000040010043f000012b40100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d780000c13d00002b010000013d0000000101000039000000000201041a000000400400043d000012fe010000410000000000140435000700000004001d0000000401400039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c00002d8d0000c13d000000200400003900002db60000013d0000000703000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000070570002900002da60000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b00002da20000c13d000000000006004b00002db30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002e150000613d0000001f01400039000000600210018f0000000701200029000000000021004b00000000020000390000000102004039000013060010009c0000006e0000213d00000001002001900000006e0000c13d000000400010043f000000200030008c0000004d0000413d00000007010000290000000001010433000600000001001d000012ab0010009c0000004d0000213d0000000201000039000000000101041a000400000001001d00001302010000410000000000100443000000060100002900000004001004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000002f960000613d000000000101043b000000000001004b0000004d0000613d000000400300043d00000064013000390000000802000029000000000021043500000044013000390000131d02000041000000000021043500000024013000390000000a02000029000000000021043500001304010000410000000000130435000700000003001d00000004023000390000000401000029000800000002001d000000000012043500000000010004140000000602000029000000040020008c00002dff0000613d0000000702000029000012a80020009c000012a8020080410000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c700000006020000294a9d4a930000040f0000006003100270000112a80030019d000000010020019000002e210000613d0000000701000029000013060010009c0000006e0000213d0000000703000029000000400030043f0000000101000039000000000201041a000012fe010000410000000000130435000012ff010000410000000803000029000000000013043500000000010004140000000802200270000012ab02200197000000040020008c00002e2e0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002e570000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e1c0000c13d00002b010000013d000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e290000c13d00002b010000013d0000000703000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000070570002900002e470000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b00002e430000c13d000000000006004b00002e540000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002eb50000613d0000001f01400039000000600110018f0000000701100029000013060010009c0000006e0000213d000000400010043f000000200030008c0000004d0000413d00000007010000290000000001010433000700000001001d000012ab0010009c0000004d0000213d0000000201000039000000000101041a000600000001001d00001302010000410000000000100443000000070100002900000004001004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000002f960000613d000000000101043b000000000001004b0000004d0000613d000000400300043d00000064013000390000000902000029000000000021043500000044013000390000131e0200004100000000002104350000132101000041000000000013043500000024023000390000000a01000029000900000002001d0000000000120435000800000003001d00000004023000390000000601000029000400000002001d000000000012043500000000010004140000000702000029000000040020008c00002e9c0000613d0000000802000029000012a80020009c000012a8020080410000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c700000007020000294a9d4a930000040f0000006003100270000112a80030019d000000010020019000002ec10000613d0000000801000029000013060010009c0000006e0000213d0000000803000029000000400030043f0000000101000039000000000201041a000012f601000041000000000013043500001319010000410000000403000029000000000013043500000005010000290000000903000029000000000013043500000000010004140000000802200270000012ab02200197000000040020008c00002ece0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002ef70000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ebc0000c13d00002b010000013d000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ec90000c13d00002b010000013d0000000803000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f0000130b011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080570002900002ee70000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b00002ee30000c13d000000000006004b00002ef40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002f190000613d0000001f01400039000000600110018f0000000801100029000900000001001d000013060010009c0000006e0000213d0000000901000029000000400010043f000000200030008c0000004d0000413d00000008010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b000019f60000613d0000000101000039000000000201041a000012fe01000041000000090400002900000000001404350000000401400039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c00002f250000c13d000000200400003900002f4e0000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002f200000c13d00002b010000013d0000000903000029000012a80030009c000012a8030080410000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090570002900002f3e0000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b00002f3a0000c13d000000000006004b00002f4b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002f970000613d0000001f01400039000000600110018f0000000901100029000013060010009c0000006e0000213d000000400010043f000000200030008c0000004d0000413d00000009010000290000000001010433000900000001001d000012ab0010009c0000004d0000213d0000000201000039000000000101041a000800000001001d00001302010000410000000000100443000000090100002900000004001004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000002f960000613d000000000101043b000000000001004b0000004d0000613d000000400500043d00000064015000390000008002000039000000000021043500000044015000390000131702000041000000000021043500000024015000390000000a020000290000000000210435000013220100004100000000001504350000000401500039000000080200002900000000002104350000008402500039000000800100043d000000000012043500001349041001970000001f0310018f000a00000005001d000000a402500039000000a10020008c00002fa30000413d000000000004004b00002f910000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c00002f8b0000c13d000000000003004b00002fb90000613d000000a004000039000000000502001900002faf0000013d000000000001042f0000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002f9e0000c13d00002b010000013d0000000005420019000000000004004b00002fac0000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b00002fa80000c13d000000000003004b00002fb90000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000903000029000000040030008c000015f60000613d0000001f011000390000134901100197000000a401100039000012a80010009c000012a80100804100000060011002100000000a03000029000012a80030009c000012a8030080410000004003300210000000000131019f000012a80020009c000012a802008041000000c002200210000000000121019f00000009020000294a9d4a930000040f0000006003100270000112a80030019d0000000100200190000015f60000c13d000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900002b010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002fdc0000c13d00002b010000013d0000000043010434000000000132043600001349063001970000001f0530018f000000000014004b00002ff70000813d000000000006004b00002ff30000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00002fed0000c13d000000000005004b0000300d0000613d0000000007010019000030030000013d0000000007610019000000000006004b000030000000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b00002ffc0000c13d000000000005004b0000300d0000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f0330003900001349023001970000000001210019000000000001042d000000200300003900000000033104360000000042020434000000000023043500001349062001970000001f0520018f0000004001100039000000000014004b0000302c0000813d000000000006004b000030280000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000030220000c13d000000000005004b000030420000613d0000000007010019000030380000013d0000000007610019000000000006004b000030350000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000030310000c13d000000000005004b000030420000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000412001900000000000404350000001f0220003900001349022001970000000001120019000000000001042d0000001f0220003900001349022001970000000001120019000000000021004b00000000020000390000000102004039000013060010009c000030540000213d0000000100200190000030540000c13d000000400010043f000000000001042d000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f0001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000003004b000030680000613d00000000040000190000002002200039000000000502043300000000015104360000000104400039000000000034004b000030620000413d000000000001042d000013140010009c000030cf0000213d0000000004010019000000630010008c000030cf0000a13d00000002050003670000000401500370000000000101043b000012ab0010009c000030cf0000213d0000002402500370000000000302043b000013060030009c000030cf0000213d0000002302300039000000000042004b000030cf0000813d0000000402300039000000000225034f000000000602043b0000134b0060009c000030d10000813d00000005076002100000003f027000390000132508200197000000400200043d0000000008820019000000000028004b00000000090000390000000109004039000013060080009c000030d10000213d0000000100900190000030d10000c13d000000400080043f000000000062043500000024033000390000000007370019000000000047004b000030cf0000213d000000000006004b0000309b0000613d0000000006020019000000000835034f000000000808043b000000200660003900000000008604350000002003300039000000000073004b000030940000413d0000004403500370000000000603043b000013060060009c000030cf0000213d0000002303600039000000000043004b0000000007000019000013150700804100001315084001970000131503300197000000000983013f000000000083004b00000000030000190000131503004041000013150090009c000000000307c019000000000003004b000030cf0000c13d0000000403600039000000000335034f000000000703043b000013060070009c000030d10000213d00000005087002100000003f038000390000132509300197000000400300043d0000000009930019000000000039004b000000000a000039000000010a004039000013060090009c000030d10000213d0000000100a00190000030d10000c13d000000400090043f000000000073043500000024066000390000000008680019000000000048004b000030cf0000213d000000000007004b000030ce0000613d0000000004030019000000000765034f000000000707043b000000200440003900000000007404350000002006600039000000000086004b000030c70000413d000000000001042d000000000100001900004a9f00010430000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f000104300005000000000002000500000001001d000000400100043d0000134c0010009c000033210000813d0000008002100039000000400020043f00000060021000390000000000020435000000400210003900000000000204350000002002100039000000000002043500000000000104350000000101000039000000000201041a000000400c00043d000012fe0100004100000000001c04350000000401c00039000012ff03000041000000000031043500000000010004140000000802200270000012ab02200197000000040020008c000030f70000c13d0000000103000031000000200030008c00000020040000390000000004034019000031220000013d000012a800c0009c000012a80300004100000000030c40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c700040000000c001d4a9d4a980000040f000000040c0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000031120000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000310e0000c13d000000000006004b0000311f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000033270000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000130600b0009c000033210000213d0000000100200190000033210000c13d0000004000b0043f0000001f0030008c0000331f0000a13d00000000020c0433000012ab0020009c0000331f0000213d0000000204000039000000000404041a0000004405b000390000131d0600004100000000006504350000002405b0003900000005060000290000000000650435000013000500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c0000316e0000613d000012a800b0009c000012a80100004100000000010b40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c700040000000b001d4a9d4a980000040f000000040b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000315c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000031580000c13d000000000006004b000031690000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000033330000613d0000001f01400039000000600110018f000000000cb100190000130600c0009c000033210000213d0000004000c0043f000000200030008c0000331f0000413d00000000010b0433000400000001001d0000000101000039000000000201041a000012fe0100004100000000001c04350000000401c00039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c000031840000c13d0000002004000039000031af0000013d000012a800c0009c000012a80300004100000000030c40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c700030000000c001d4a9d4a980000040f000000030c0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000319f0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000319b0000c13d000000000006004b000031ac0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000333f0000613d0000001f01400039000000600110018f000000000bc100190000130600b0009c000033210000213d0000004000b0043f000000200030008c0000331f0000413d00000000020c0433000012ab0020009c0000331f0000213d0000000204000039000000000404041a0000004405b000390000131e0600004100000000006504350000002405b00039000000050600002900000000006504350000131f0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000031f60000613d000012a800b0009c000012a80100004100000000010b40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c700030000000b001d4a9d4a980000040f000000030b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000031e40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000031e00000c13d000000000006004b000031f10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000334b0000613d0000001f01400039000000600110018f000000000cb100190000130600c0009c000033210000213d0000004000c0043f000000200030008c0000331f0000413d00000000040b0433000000000004004b0000000002000039000000010200c039000300000004001d000000000024004b0000331f0000c13d0000000102000039000000000202041a000012fe0400004100000000004c04350000000404c00039000012ff05000041000000000054043500000000040004140000000802200270000012ab02200197000000040020008c0000323c0000613d000012a800c0009c000012a80100004100000000010c40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012b4011001c700020000000c001d4a9d4a980000040f000000020c0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000322a0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000032260000c13d000000000006004b000032370000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000033570000613d0000001f01400039000000600110018f000000000bc100190000130600b0009c000033210000213d0000004000b0043f000000200030008c0000331f0000413d00000000020c0433000012ab0020009c0000331f0000213d0000000204000039000000000404041a0000004405b00039000013200600004100000000006504350000002405b0003900000005060000290000000000650435000013000500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000032810000613d000012a800b0009c000012a80100004100000000010b40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c700020000000b001d4a9d4a980000040f000000020b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000326f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000326b0000c13d000000000006004b0000327c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000033630000613d0000001f01400039000000600110018f000000000cb100190000130600c0009c000033210000213d0000004000c0043f000000200030008c0000331f0000413d00000000010b0433000200000001001d0000000101000039000000000201041a000012fe0100004100000000001c04350000000401c00039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c000032970000c13d0000002004000039000032c20000013d000012a800c0009c000012a80300004100000000030c40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c700010000000c001d4a9d4a980000040f000000010c0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000032b20000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000032ae0000c13d000000000006004b000032bf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000336f0000613d0000001f01400039000000600110018f000000000bc100190000130600b0009c000033210000213d0000004000b0043f000000200030008c0000331f0000413d00000000020c0433000012ab0020009c0000331f0000213d0000000204000039000000000404041a0000004405b00039000013010600004100000000006504350000002405b0003900000005060000290000000000650435000013000500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000033090000613d000012a800b0009c000012a80100004100000000010b40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c700050000000b001d4a9d4a980000040f000000050b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000032f70000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000032f30000c13d000000000006004b000033040000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000337b0000613d0000001f01400039000000600110018f0000000001b10019000013060010009c000033210000213d000000400010043f000000200030008c0000331f0000413d0000130c0010009c000033210000213d00000000020b04330000008003100039000000400030043f0000006003100039000000040400002900000000004304350000004003100039000000000023043500000020021000390000000203000029000000000032043500000003020000290000000000210435000000000001042d000000000100001900004a9f00010430000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d0000000004620019000033860000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000332e0000c13d000033860000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000033860000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000333a0000c13d000033860000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000033860000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000033460000c13d000033860000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000033860000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000033520000c13d000033860000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000033860000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000335e0000c13d000033860000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000033860000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000336a0000c13d000033860000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000033860000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000033760000c13d000033860000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000033860000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000033820000c13d000000000005004b000033930000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012a80020009c000012a8020080410000004002200210000000000112019f00004a9f0001043000010000000000020000000101000039000000000201041a000000ff01200190000033e90000c13d000000400b00043d000012f90100004100000000001b043500000000010004140000000802200270000012ab02200197000000040020008c000033ab0000c13d0000000103000031000000200030008c00000020040000390000000004034019000033d60000013d000012a800b0009c000012a80300004100000000030b40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012fa011001c700010000000b001d4a9d4a980000040f000000010b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000033c60000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000033c20000c13d000000000006004b000033d30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000033f20000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000013060010009c000033ec0000213d0000000100200190000033ec0000c13d000000400010043f0000001f0030008c000033ea0000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000033ea0000c13d000000000001042d000000000100001900004a9f00010430000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d0000000004620019000033fd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000033f90000c13d000000000005004b0000340a0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012a80020009c000012a8020080410000004002200210000000000112019f00004a9f0001043000020000000000020000000102000039000000000202041a000000400c00043d000012fe0300004100000000003c04350000000404c00039000012ff03000041000000000034043500000000040004140000000802200270000012ab02200197000000040020008c000034230000c13d0000000103000031000000200030008c00000020040000390000000004034019000034500000013d000100000001001d000012a800c0009c000012a80300004100000000030c40190000004003300210000012a80040009c000012a804008041000000c001400210000000000131019f000012b4011001c700020000000c001d4a9d4a980000040f000000020c0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000343f0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000343b0000c13d000000000006004b0000344c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000034ab0000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000130600b0009c000034a50000213d0000000100200190000034a50000c13d0000004000b0043f0000001f0030008c000034a30000a13d00000000020c0433000012ab0020009c000034a30000213d0000000204000039000000000404041a0000004405b000390000133a0600004100000000006504350000002405b000390000000000150435000013000500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c0000349b0000613d000012a800b0009c000012a80100004100000000010b40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c700020000000b001d4a9d4a980000040f000000020b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000034890000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000034850000c13d000000000006004b000034960000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000034b70000613d0000001f01400039000000600710018f0000000001b70019000013060010009c000034a50000213d000000400010043f000000200030008c000034a30000413d00000000010b0433000000000001042d000000000100001900004a9f00010430000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d0000000004620019000034c20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000034b20000c13d000034c20000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000034c20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000034be0000c13d000000000005004b000034cf0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012a80020009c000012a8020080410000004002200210000000000112019f00004a9f0001043000020000000000020000000102000039000000000202041a000000400c00043d000012fe0300004100000000003c04350000000404c00039000012ff03000041000000000034043500000000040004140000000802200270000012ab02200197000000040020008c000034e80000c13d0000000103000031000000200030008c00000020040000390000000004034019000035150000013d000100000001001d000012a800c0009c000012a80300004100000000030c40190000004003300210000012a80040009c000012a804008041000000c001400210000000000131019f000012b4011001c700020000000c001d4a9d4a980000040f000000020c0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000035040000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000035000000c13d000000000006004b000035110000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000035700000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000130600b0009c0000356a0000213d00000001002001900000356a0000c13d0000004000b0043f0000001f0030008c000035680000a13d00000000020c0433000012ab0020009c000035680000213d0000000204000039000000000404041a0000004405b00039000013200600004100000000006504350000002405b000390000000000150435000013000500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000035600000613d000012a800b0009c000012a80100004100000000010b40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c700020000000b001d4a9d4a980000040f000000020b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000354e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000354a0000c13d000000000006004b0000355b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000357c0000613d0000001f01400039000000600710018f0000000001b70019000013060010009c0000356a0000213d000000400010043f000000200030008c000035680000413d00000000010b0433000000000001042d000000000100001900004a9f00010430000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d0000000004620019000035870000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000035770000c13d000035870000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000035870000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000035830000c13d000000000005004b000035940000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012a80020009c000012a8020080410000004002200210000000000112019f00004a9f00010430000300000000000200000000070200190000000102000039000000000202041a000000400c00043d000012fe0300004100000000003c04350000000404c00039000012ff03000041000000000034043500000000040004140000000802200270000012ab02200197000000040020008c000035ae0000c13d0000000103000031000000200030008c00000020040000390000000004034019000035dd0000013d000100000007001d000200000001001d000012a800c0009c000012a80300004100000000030c40190000004003300210000012a80040009c000012a804008041000000c001400210000000000131019f000012b4011001c700030000000c001d4a9d4a980000040f000000030c0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000035cb0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000035c70000c13d000000000006004b000035d80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000036370000613d000000020100002900000001070000290000001f02400039000000600620018f000000000bc6001900000000006b004b000000000200003900000001020040390000130600b0009c000036310000213d0000000100200190000036310000c13d0000004000b0043f0000001f0030008c0000362f0000a13d00000000020c0433000012ab0020009c0000362f0000213d0000000204000039000000000404041a0000004405b0003900000000007504350000002405b000390000000000150435000013000500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000036270000613d000012a800b0009c000012a80100004100000000010b40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c700030000000b001d4a9d4a980000040f000000030b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000036150000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000036110000c13d000000000006004b000036220000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000036430000613d0000001f01400039000000600610018f0000000001b60019000013060010009c000036310000213d000000400010043f000000200030008c0000362f0000413d00000000010b0433000000000001042d000000000100001900004a9f00010430000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d00000000046200190000364e0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000363e0000c13d0000364e0000013d0000001f0530018f000012aa06300198000000400200043d00000000046200190000364e0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000364a0000c13d000000000005004b0000365b0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012a80020009c000012a8020080410000004002200210000000000112019f00004a9f00010430000012ab02200197000000000020043f000000200010043f0000000001000414000012a80010009c000012a801008041000000c0011002100000130d011001c700008010020000394a9d4a980000040f00000001002001900000366f0000613d000000000101043b000000000001042d000000000100001900004a9f000104300000006004100210000000400100043d0000002003100039000000000043043500000034041000390000000000240435000000340200003900000000002104350000134d0010009c000036910000813d0000006002100039000000400020043f000012a80030009c000012a80300804100000040023002100000000001010433000012a80010009c000012a8010080410000006001100210000000000121019f0000000002000414000012a80020009c000012a802008041000000c002200210000000000112019f00001308011001c700008010020000394a9d4a980000040f0000000100200190000036970000613d000000000101043b000000000001042d000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f00010430000000000100001900004a9f0001043000020000000000020000000102000039000000000202041a000000400b00043d000012f60300004100000000003b04350000000403b000390000133d040000410000000000430435000012ab051001970000002401b00039000000000051043500000000010004140000000802200270000012ab02200197000000040020008c000036af0000c13d0000000103000031000000200030008c00000020040000390000000004034019000036dc0000013d000100000005001d000012a800b0009c000012a80300004100000000030b40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f0000130b011001c700020000000b001d4a9d4a980000040f000000020b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000036cb0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000036c70000c13d000000000006004b000036d80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000037010000613d00000001050000290000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000013060010009c000036f40000213d0000000100200190000036f40000c13d000000400010043f0000001f0030008c000036f20000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000036f20000c13d000000000001004b000036fa0000613d000000000001042d000000000100001900004a9f00010430000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f000104300000130a01000041000000000010043f000000040050043f0000133d01000041000000240010043f0000130b0100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d00000000046200190000370c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000037080000c13d000000000005004b000037190000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012a80020009c000012a8020080410000004002200210000000000112019f00004a9f0001043000020000000000020000000102000039000000000202041a000000400b00043d000012f60300004100000000003b04350000000403b0003900001319040000410000000000430435000012ab051001970000002401b00039000000000051043500000000010004140000000802200270000012ab02200197000000040020008c000037350000c13d0000000103000031000000200030008c00000020040000390000000004034019000037620000013d000100000005001d000012a800b0009c000012a80300004100000000030b40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f0000130b011001c700020000000b001d4a9d4a980000040f000000020b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000037510000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000374d0000c13d000000000006004b0000375e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000037870000613d00000001050000290000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000013060010009c0000377a0000213d00000001002001900000377a0000c13d000000400010043f0000001f0030008c000037780000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000037780000c13d000000000001004b000037800000613d000000000001042d000000000100001900004a9f00010430000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f000104300000130a01000041000000000010043f000000040050043f0000131901000041000000240010043f0000130b0100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d0000000004620019000037920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000378e0000c13d000000000005004b0000379f0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012a80020009c000012a8020080410000004002200210000000000112019f00004a9f000104300001000000000002000000400b00043d0000000101000039000000000201041a000000ff00200190000037fa0000c13d000012f90100004100000000001b043500000000010004140000000802200270000012ab02200197000000040020008c000037b70000c13d0000000103000031000000200030008c00000020040000390000000004034019000037e20000013d000012a800b0009c000012a80300004100000000030b40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012fa011001c700010000000b001d4a9d4a980000040f000000010b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000037d20000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000037ce0000c13d000000000006004b000037df0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000038110000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000013060010009c0000380b0000213d00000001002001900000380b0000c13d000000400010043f0000001f0030008c000037f80000a13d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000037f80000c13d000000000002004b000037fb0000c13d000000000001042d000000000100001900004a9f0001043000000000010b00190000004402100039000012fb030000410000000000320435000000240210003900000010030000390000000000320435000012fc020000410000000000210435000000040210003900000020030000390000000000320435000012a80010009c000012a8010080410000004001100210000012fd011001c700004a9f00010430000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d00000000046200190000381c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000038180000c13d000000000005004b000038290000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012a80020009c000012a8020080410000004002200210000000000112019f00004a9f00010430000012ab00100198000038330000613d4a9d39b80000040f000000000001042d0000134201000041000000000010043f000000040000043f000012b40100004100004a9f000104300004000000000002000300000002001d000400000001001d0000000101000039000000000201041a000000400b00043d000012fe0100004100000000001b04350000000401b00039000012ff03000041000000000031043500000000010004140000000802200270000012ab02200197000000040020008c0000384d0000c13d0000000103000031000000200030008c00000020040000390000000004034019000038780000013d000012a800b0009c000012a80300004100000000030b40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c700020000000b001d4a9d4a980000040f000000020b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000038680000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000038640000c13d000000000006004b000038750000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000038ce0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000013060010009c000038c70000213d0000000100200190000038c70000c13d000000400010043f0000001f0030008c000038c50000a13d00000000020b0433000012ab0020009c000038c50000213d0000000201000039000000000101041a000100000001001d00001302010000410000000000100443000200000002001d00000004002004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f0000000100200190000038cd0000613d000000000101043b000000000001004b0000000203000029000038c50000613d000000030000006b0000000001000039000000010100c039000000400400043d0000006402400039000000000012043500000044014000390000131e020000410000000000210435000000240140003900000004020000290000000000210435000013210100004100000000001404350000000401400039000000010200002900000000002104350000000001000414000000040030008c000038c10000613d000012a80040009c000012a80200004100000000020440190000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c70000000002030019000400000004001d4a9d4a930000040f00000004040000290000006003100270000112a80030019d0000000100200190000038da0000613d000013060040009c000038c70000213d000000400040043f000000000001042d000000000100001900004a9f00010430000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f00010430000000000001042f0000001f0530018f000012aa06300198000000400200043d0000000004620019000038e60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000038d50000c13d000038e60000013d000012a8033001970000001f0530018f000012aa06300198000000400200043d0000000004620019000038e60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000038e20000c13d000000000005004b000038f30000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012a80020009c000012a8020080410000004002200210000000000112019f00004a9f000104300004000000000002000300000002001d000400000001001d0000000101000039000000000201041a000000400b00043d000012fe0100004100000000001b04350000000401b00039000012ff03000041000000000031043500000000010004140000000802200270000012ab02200197000000040020008c0000390e0000c13d0000000103000031000000200030008c00000020040000390000000004034019000039390000013d000012a800b0009c000012a80300004100000000030b40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c700020000000b001d4a9d4a980000040f000000020b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000039290000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000039250000c13d000000000006004b000039360000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000398d0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000013060010009c000039860000213d0000000100200190000039860000c13d000000400010043f0000001f0030008c000039840000a13d00000000020b0433000012ab0020009c000039840000213d0000000201000039000000000101041a000100000001001d00001302010000410000000000100443000200000002001d00000004002004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f00000001002001900000398c0000613d000000000101043b000000000001004b0000000203000029000039840000613d000000400400043d00000064014000390000000302000029000000000021043500000044014000390000131d020000410000000000210435000000240140003900000004020000290000000000210435000013040100004100000000001404350000000401400039000000010200002900000000002104350000000001000414000000040030008c000039800000613d000012a80040009c000012a80200004100000000020440190000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c70000000002030019000400000004001d4a9d4a930000040f00000004040000290000006003100270000112a80030019d0000000100200190000039990000613d000013060040009c000039860000213d000000400040043f000000000001042d000000000100001900004a9f00010430000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f00010430000000000001042f0000001f0530018f000012aa06300198000000400200043d0000000004620019000039a50000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000039940000c13d000039a50000013d000012a8033001970000001f0530018f000012aa06300198000000400200043d0000000004620019000039a50000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000039a10000c13d000000000005004b000039b20000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012a80020009c000012a8020080410000004002200210000000000112019f00004a9f00010430000f000000000002000100000004001d000700000003001d0000000703000039000000000303041a000012ab03300198000200000001001d000600000002001d00003a1d0000613d00001302010000410000000000100443000f00000003001d00000004003004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000003e050000613d000000000101043b000000000001004b00003dfd0000613d000000400700043d0000006401700039000000a00200003900000000002104350000134e0100004100000000001704350000000201000029000012ab021001970000004401700039000b00000002001d00000000002104350000000001000410000012ab02100197000000040170003900000000002104350000002402700039000000000002043500000006050000290000000003050433000000a4027000390000000000320435000000c402700039000000000003004b000039f00000613d00000000040000190000002005500039000000000605043300000000026204360000000104400039000000000034004b000039ea0000413d000000000112004900000084037000390000000000130435000000070400002900000000030404330000000001320436000000000003004b000039ff0000613d00000000020000190000002004400039000000000504043300000000015104360000000102200039000000000032004b000039f90000413d00000000040004140000000f02000029000000040020008c00003a170000613d0000000001710049000012a80010009c000012a8010080410000006001100210000012a80070009c000012a80300004100000000030740190000004003300210000000000131019f000012a80040009c000012a804008041000000c003400210000000000131019f000f00000007001d4a9d4a930000040f0000000f070000290000006003100270000112a80030019d000000010020019000003ea40000613d0000134b0070009c00003dff0000813d000000400070043f0000000201000029000000060200002900003a1e0000013d000b12ab0010019b0000000043020434000500000004001d000000000003004b00003db00000613d000000400a00043d00030060001002180000000701000029000400200010003d000000000300001900003a310000013d0000130600a0009c00003dff0000213d0000004000a0043f0000000d03000029000000060200002900000000010204330000000103300039000000000013004b00003d940000813d000d00000003001d0000000502300210000f00000002001d00000005012000290000000001010433000e00000001001d0000000101000039000000000201041a000012fe0100004100000000001a04350000000401a00039000012ff03000041000000000031043500000000010004140000000802200270000012ab02200197000000040020008c00003a480000c13d0000000103000031000000200030008c0000002004000039000000000403401900003a720000013d000012a800a0009c000012a80300004100000000030a40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c7000c0000000a001d4a9d4a980000040f0000000c0a0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900003a620000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00003a5e0000c13d0000001f0740019000003a6f0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000000010020019000003e0c0000613d0000001f01400039000000600110018f000000000ba1001900000000001b004b000000000200003900000001020040390000130600b0009c00003dff0000213d000000010020019000003dff0000c13d0000004000b0043f000000200030008c00003dfd0000413d00000000020a0433000012ab0020009c00003dfd0000213d0000000204000039000000000404041a0000004405b00039000013370600004100000000006504350000002405b000390000000e0600002900000000006504350000131f0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00003abd0000613d000012a800b0009c000012a80100004100000000010b40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c7000c0000000b001d4a9d4a980000040f0000000c0b0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056b001900003aab0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b00003aa70000c13d0000001f0740019000003ab80000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000000010020019000003e180000613d0000001f01400039000000600110018f000000000ab100190000130600a0009c00003dff0000213d0000004000a0043f000000200030008c00003dfd0000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b00003dfd0000c13d000000070100002900000000010104330000000d03000029000000000031004b00003e060000a13d0000000b0000006b00003a2c0000613d0000000f0200002900000004012000290000000001010433000c00000001001d0000002001a00039000000030200002900000000002104350000003402a000390000000e030000290000000000320435000000340200003900000000002a04350000130700a0009c00003dff0000213d0000006002a00039000000400020043f000012a80010009c000012a801008041000000400110021000000000020a0433000012a80020009c000012a8020080410000006002200210000000000112019f0000000002000414000012a80020009c000012a802008041000000c002200210000000000112019f00001308011001c700008010020000394a9d4a980000040f000000010020019000003dfd0000613d000000000101043b000f00000001001d0000000101000039000000000201041a000000400b00043d000012fe0100004100000000001b04350000000401b00039000012ff03000041000000000031043500000000010004140000000802200270000012ab02200197000000040020008c00003b060000c13d0000000103000031000000200030008c0000002004000039000000000403401900003b300000013d000012a800b0009c000012a80300004100000000030b40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c7000a0000000b001d4a9d4a980000040f0000000a0b0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056b001900003b200000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b00003b1c0000c13d0000001f0740019000003b2d0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000000010020019000003e490000613d0000001f01400039000000600110018f000000000ab1001900000000001a004b000000000200003900000001020040390000130600a0009c00003dff0000213d000000010020019000003dff0000c13d0000004000a0043f000000200030008c00003dfd0000413d00000000020b0433000012ab0020009c00003dfd0000213d0000000204000039000000000404041a0000004405a000390000133a0600004100000000006504350000002405a000390000000f060000290000000000650435000013000500004100000000005a04350000000405a0003900000000004504350000000004000414000000040020008c00003b7b0000613d000012a800a0009c000012a80100004100000000010a40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c7000a0000000a001d4a9d4a980000040f0000000a0a0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900003b690000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00003b650000c13d0000001f0740019000003b760000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000000010020019000003e240000613d0000001f01400039000000600110018f000000000ba100190000130600b0009c00003dff0000213d0000004000b0043f000000200030008c00003dfd0000413d00000000020a0433000a00000002001d0000000c0020002a00003eb10000413d0000000101000039000000000201041a000012fe0100004100000000001b04350000000401b00039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c000000200400003900003bbc0000613d000012a800b0009c000012a80300004100000000030b40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c700090000000b001d4a9d4a980000040f000000090b0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056b001900003bac0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b00003ba80000c13d0000001f0740019000003bb90000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000000010020019000003e300000613d0000001f01400039000000600110018f0000000001b10019000013060010009c00003dff0000213d000000400010043f000000200030008c00003dfd0000413d00000000020b0433000012ab0020009c00003dfd0000213d0000000201000039000000000101041a000800000001001d00001302010000410000000000100443000900000002001d00000004002004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000003e050000613d000000000101043b000000000001004b000000090300002900003dfd0000613d0000000a020000290000000c01200029000000400a00043d0000006402a0003900000000001204350000004401a000390000133a0200004100000000002104350000002401a000390000000f020000290000000000210435000013040100004100000000001a04350000000404a00039000000080100002900000000001404350000000001000414000000040030008c000c0000000a001d00003c010000613d000012a800a0009c000012a80200004100000000020a40190000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c70000000002030019000a00000004001d4a9d4a930000040f0000000a040000290000000c0a0000290000006003100270000112a80030019d000000010020019000003e3c0000613d0000130600a0009c00003dff0000213d0000004000a0043f0000000101000039000000000201041a000012fe0100004100000000001a0435000012ff01000041000000000014043500000000010004140000000802200270000012ab02200197000000040020008c00003c140000c13d0000000103000031000000200030008c0000002004000039000000000403401900003c3d0000013d000012a800a0009c000012a80300004100000000030a40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000000c0a0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900003c2d0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00003c290000c13d0000001f0740019000003c3a0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000000010020019000003e550000613d0000001f01400039000000600110018f000000000ba100190000130600b0009c00003dff0000213d0000004000b0043f000000200030008c00003dfd0000413d00000000020a0433000012ab0020009c00003dfd0000213d0000000204000039000000000404041a0000004405b000390000134f0600004100000000006504350000002405b000390000000f0600002900000000006504350000132f0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00003c830000613d000012a800b0009c000012a80100004100000000010b40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c7000c0000000b001d4a9d4a980000040f0000000c0b0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056b001900003c710000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b00003c6d0000c13d0000001f0740019000003c7e0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000000010020019000003e610000613d0000001f01400039000000600110018f000000000ab100190000130600a0009c00003dff0000213d0000004000a0043f000000200030008c00003dfd0000413d00000000010b0433000012ab0010009c00003dfd0000213d000000000001004b00003a2b0000c13d0000000101000039000000000201041a000012fe0100004100000000001a04350000000401a00039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c000000200400003900003cc50000613d000012a800a0009c000012a80300004100000000030a40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c7000c0000000a001d4a9d4a980000040f0000000c0a0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900003cb50000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00003cb10000c13d0000001f0740019000003cc20000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000000010020019000003e6d0000613d0000001f01400039000000600110018f0000000001a10019000013060010009c00003dff0000213d000000400010043f000000200030008c00003dfd0000413d00000000020a0433000012ab0020009c00003dfd0000213d0000000201000039000000000101041a000a00000001001d00001302010000410000000000100443000c00000002001d00000004002004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000003e050000613d000000000101043b000000000001004b0000000c0300002900003dfd0000613d000000400a00043d0000006401a000390000000b0200002900000000002104350000004401a000390000134f0200004100000000002104350000002401a000390000000f020000290000000000210435000013350100004100000000001a04350000000404a000390000000a0100002900000000001404350000000001000414000000040030008c00090000000a001d00003d090000613d000012a800a0009c000012a80200004100000000020a40190000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c70000000002030019000c00000004001d4a9d4a930000040f0000000c04000029000000090a0000290000006003100270000112a80030019d000000010020019000003e790000613d0000130600a0009c00003dff0000213d0000004000a0043f0000000101000039000000000201041a000012fe0100004100000000001a0435000012ff01000041000000000014043500000000010004140000000802200270000012ab02200197000000040020008c00003d1c0000c13d0000000103000031000000200030008c0000002004000039000000000403401900003d450000013d000012a800a0009c000012a80300004100000000030a40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f000000090a0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900003d350000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00003d310000c13d0000001f0740019000003d420000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000000010020019000003e860000613d0000001f01400039000000600110018f0000000001a10019000013060010009c00003dff0000213d000000400010043f000000200030008c00003dfd0000413d00000000020a0433000012ab0020009c00003dfd0000213d0000000201000039000000000101041a000a00000001001d00001302010000410000000000100443000c00000002001d00000004002004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000003e050000613d000000000101043b000000000001004b0000000c0300002900003dfd0000613d000000400a00043d0000006401a000390000000e0200002900000000002104350000004401a00039000013360200004100000000002104350000002401a000390000000f020000290000000000210435000013040100004100000000001a04350000000401a000390000000a0200002900000000002104350000000001000414000000040030008c00003a280000613d000012a800a0009c000012a80200004100000000020a40190000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c70000000002030019000c0000000a001d4a9d4a930000040f0000000c0a0000290000006003100270000112a80030019d000000010020019000003a280000c13d000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900003e910000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d8f0000c13d00003e910000013d000000010010008c00003db00000c13d00000007010000290000000001010433000000000001004b00003e060000613d0000000501000029000000000101043300000004020000290000000002020433000000400300043d000000200430003900000000002404350000000000130435000012a80030009c000012a80300804100000040013002100000000002000414000012a80020009c000012a802008041000000c002200210000000000112019f0000130d011001c70000800d0200003900000004030000390000000005000411000013500400004100003de10000013d000000400100043d000000400300003900000000083104360000000004020433000000400310003900000000004304350000006003100039000000000004004b00003dc10000613d000000000500001900000000060200190000002006600039000000000706043300000000037304360000000105500039000000000045004b00003dbb0000413d000000000500041100000000041300490000000000480435000000070600002900000000040604330000000002430436000000000004004b00003dd00000613d00000000030000190000002006600039000000000706043300000000027204360000000103300039000000000043004b00003dca0000413d0000000002120049000012a80020009c000012a8020080410000006002200210000012a80010009c000012a8010080410000004001100210000000000112019f0000000002000414000012a80020009c000012a802008041000000c002200210000000000121019f00001308011001c70000800d020000390000000403000039000013510400004100000000060000190000000b070000294a9d4a930000040f000000010020019000003dfd0000613d0000000b0000006b00003dfc0000613d000000000100041100000006040000290000000002040433000000010020008c00003df70000c13d000000070200002900000020022000390000000005020433000000050200002900000000040204330000000002000019000000020300002900000001060000294a9d49830000040f000000000001042d00000000020000190000000203000029000000070500002900000001060000294a9d486f0000040f000000000001042d000000000100001900004a9f00010430000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f00010430000000000001042f000012b301000041000000000010043f0000003201000039000000040010043f000012b40100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d000000000462001900003e910000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003e130000c13d00003e910000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900003e910000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003e1f0000c13d00003e910000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900003e910000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003e2b0000c13d00003e910000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900003e910000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003e370000c13d00003e910000013d000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900003e910000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003e440000c13d00003e910000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900003e910000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003e500000c13d00003e910000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900003e910000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003e5c0000c13d00003e910000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900003e910000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003e680000c13d00003e910000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900003e910000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003e740000c13d00003e910000013d000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900003e910000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003e810000c13d00003e910000013d0000001f0530018f000012aa06300198000000400200043d000000000462001900003e910000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003e8d0000c13d000000000005004b00003e9e0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012a80020009c000012a8020080410000004002200210000000000112019f00004a9f00010430000012a8033001970000001f0530018f000012aa06300198000000400200043d000000000462001900003e910000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003eac0000c13d00003e910000013d000012b301000041000000000010043f0000001101000039000000040010043f000012b40100004100004a9f00010430000b00000000000200000000070100190000000701000039000000000101041a000012ab04100198000900000003001d000500000002001d00003f030000613d000b00000007001d00001302010000410000000000100443000a00000004001d00000004004004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f0000000100200190000041650000613d000000000101043b000000000001004b0000000b07000029000041570000613d000000400800043d0000006401800039000000a00200003900000000002104350000134e010000410000000000180435000012ab027001970000002401800039000400000002001d00000000002104350000000001000410000012ab02100197000000040180003900000000002104350000004402800039000000000002043500000005050000290000000003050433000000a4028000390000000000320435000000c402800039000000000003004b00003eef0000613d00000000040000190000002005500039000000000605043300000000026204360000000104400039000000000034004b00003ee90000413d000000000112004900000084038000390000000000130435000000090400002900000000030404330000000001320436000000000003004b00003f050000613d00000000060000190000000a020000290000002004400039000000000504043300000000015104360000000106600039000000000036004b00003ef90000413d0000000004000414000000040020008c00003f090000c13d00003f1e0000013d000412ab0070019b00003f230000013d0000000a020000290000000004000414000000040020008c00003f1e0000613d0000000001810049000012a80010009c000012a8010080410000006001100210000012a80080009c000012a80300004100000000030840190000004003300210000000000131019f000012a80040009c000012a804008041000000c003400210000000000131019f000a00000008001d4a9d4a930000040f0000000a080000290000000b070000290000006003100270000112a80030019d0000000100200190000041c70000613d0000134b0080009c000041590000813d000000400080043f000000090300002900000005020000290000000021020434000300000002001d000000000001004b0000411e0000613d000000400a00043d0001006000700218000200200030003d000000000300001900003f310000013d000000050100002900000000010104330000000103300039000000000013004b000041030000813d000b00000003001d0000000502300210000800000002001d000000030120002900000000070104330000000101000039000000000201041a000012fe0100004100000000001a04350000000401a00039000012ff03000041000000000031043500000000010004140000000802200270000012ab02200197000000040020008c000a00000007001d00003f480000c13d0000000103000031000000200030008c0000002004000039000000000403401900003f730000013d000012a800a0009c000012a80300004100000000030a40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c700070000000a001d4a9d4a980000040f000000070a0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900003f620000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00003f5e0000c13d0000001f0740019000003f6f0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00000001002001900000416c0000613d0000000a070000290000001f01400039000000600110018f000000000ba1001900000000001b004b000000000200003900000001020040390000130600b0009c000041590000213d0000000100200190000041590000c13d0000004000b0043f000000200030008c000041570000413d00000000020a0433000012ab0020009c000041570000213d0000000204000039000000000404041a0000004405b00039000013370600004100000000006504350000002405b0003900000000007504350000131f0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00003fbe0000613d000012a800b0009c000012a80100004100000000010b40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c700070000000b001d4a9d4a980000040f000000070b0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056b001900003fab0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b00003fa70000c13d0000001f0740019000003fb80000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000041780000613d0000001f01400039000000600110018f0000000a07000029000000000ab100190000130600a0009c000041590000213d0000004000a0043f000000200030008c000041570000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000041570000c13d000000090200002900000000010204330000000b03000029000000000031004b0000415f0000a13d000000040000006b00003f2c0000613d000000080200002900000002012000290000000001010433000800000001001d0000002001a00039000000010200002900000000002104350000003402a000390000000000720435000000340200003900000000002a04350000130700a0009c000041590000213d0000006002a00039000000400020043f000012a80010009c000012a801008041000000400110021000000000020a0433000012a80020009c000012a8020080410000006002200210000000000112019f0000000002000414000012a80020009c000012a802008041000000c002200210000000000112019f00001308011001c700008010020000394a9d4a980000040f0000000100200190000041570000613d000000000101043b000a00000001001d0000000101000039000000000201041a000000400b00043d000012fe0100004100000000001b04350000000401b00039000012ff03000041000000000031043500000000010004140000000802200270000012ab02200197000000040020008c000040060000c13d0000000103000031000000200030008c00000020040000390000000004034019000040300000013d000012a800b0009c000012a80300004100000000030b40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c700070000000b001d4a9d4a980000040f000000070b0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000040200000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b0000401c0000c13d0000001f074001900000402d0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000041840000613d0000001f01400039000000600110018f000000000ab1001900000000001a004b000000000200003900000001020040390000130600a0009c000041590000213d0000000100200190000041590000c13d0000004000a0043f000000200030008c000041570000413d00000000020b0433000012ab0020009c000041570000213d0000000204000039000000000404041a0000004405a000390000133a0600004100000000006504350000002405a000390000000a060000290000000000650435000013000500004100000000005a04350000000405a0003900000000004504350000000004000414000000040020008c0000407b0000613d000012a800a0009c000012a80100004100000000010a40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c700070000000a001d4a9d4a980000040f000000070a0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000040690000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000040650000c13d0000001f07400190000040760000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000041900000613d0000001f01400039000000600110018f000000000ba100190000130600b0009c000041590000213d0000004000b0043f000000200030008c000041570000413d00000000010a04330008000800100074000041660000413d0000000101000039000000000201041a000012fe0100004100000000001b04350000000401b00039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c0000002004000039000040bb0000613d000012a800b0009c000012a80300004100000000030b40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c700070000000b001d4a9d4a980000040f000000070b0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000040ab0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000040a70000c13d0000001f07400190000040b80000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00000001002001900000419c0000613d0000001f01400039000000600110018f0000000001b10019000013060010009c000041590000213d000000400010043f000000200030008c000041570000413d00000000020b0433000012ab0020009c000041570000213d0000000201000039000000000101041a000600000001001d00001302010000410000000000100443000700000002001d00000004002004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f0000000100200190000041650000613d000000000101043b000000000001004b0000000703000029000041570000613d000000400a00043d0000006401a00039000000080200002900000000002104350000004401a000390000133a0200004100000000002104350000002401a000390000000a020000290000000000210435000013040100004100000000001a04350000000401a00039000000060200002900000000002104350000000001000414000000040030008c000040fd0000613d000012a800a0009c000012a80200004100000000020a40190000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c7000000000203001900070000000a001d4a9d4a930000040f000000070a0000290000006003100270000112a80030019d0000000100200190000041a80000613d0000130600a0009c000041590000213d0000004000a0043f00000009020000290000000b0300002900003f2c0000013d000000010010008c0000411e0000c13d0000000001020433000000000001004b0000415f0000613d0000000301000029000000000101043300000002020000290000000002020433000000400300043d000000200430003900000000002404350000000000130435000012a80030009c000012a80300804100000040013002100000000002000414000012a80020009c000012a802008041000000c002200210000000000112019f0000130d011001c70000800d02000039000000040300003900000000050004110000135004000041000041510000013d000000400100043d0000004002000039000000000221043600000005030000290000000004030433000000400310003900000000004304350000006003100039000000000004004b000041300000613d000000000500001900000005070000290000002007700039000000000607043300000000036304360000000105500039000000000045004b0000412a0000413d000000000500041100000000041300490000000000420435000000090200002900000000040204330000000002430436000000000004004b000041400000613d000000000300001900000009070000290000002007700039000000000607043300000000026204360000000103300039000000000043004b0000413a0000413d0000000002120049000012a80020009c000012a8020080410000006002200210000012a80010009c000012a8010080410000004001100210000000000112019f0000000002000414000012a80020009c000012a802008041000000c002200210000000000121019f00001308011001c70000800d0200003900000004030000390000135104000041000000040600002900000000070000194a9d4a930000040f0000000100200190000041570000613d000000000001042d000000000100001900004a9f00010430000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f00010430000012b301000041000000000010043f0000003201000039000000040010043f000012b40100004100004a9f00010430000000000001042f000012b301000041000000000010043f0000001101000039000000040010043f000012b40100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d0000000004620019000041b40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000041730000c13d000041b40000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000041b40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000417f0000c13d000041b40000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000041b40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000418b0000c13d000041b40000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000041b40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000041970000c13d000041b40000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000041b40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000041a30000c13d000041b40000013d000012a8033001970000001f0530018f000012aa06300198000000400200043d0000000004620019000041b40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000041b00000c13d000000000005004b000041c10000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012a80020009c000012a8020080410000004002200210000000000112019f00004a9f00010430000012a8033001970000001f0530018f000012aa06300198000000400200043d0000000004620019000041b40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000041cf0000c13d000041b40000013d0012000000000002000100000005001d000900000004001d000800000003001d0000000703000039000000000303041a000012ab03300198000300000002001d000200000001001d000042240000613d00001302010000410000000000100443001200000003001d00000004003004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f0000000100200190000047630000613d000000000101043b000000000001004b0000475b0000613d000000400700043d0000006401700039000000a00200003900000000002104350000134e0100004100000000001704350000000301000029000012ab021001970000004401700039000d00000002001d00000000002104350000000201000029000012ab021001970000002401700039000c00000002001d00000000002104350000000001000410000012ab021001970000000401700039000000000021043500000008050000290000000003050433000000a4027000390000000000320435000000c402700039000000000003004b000042100000613d00000000040000190000002005500039000000000605043300000000026204360000000104400039000000000034004b0000420a0000413d000000000112004900000084037000390000000000130435000000090400002900000000030404330000000001320436000000000003004b000042270000613d000000000600001900000012020000290000002004400039000000000504043300000000015104360000000106600039000000000036004b0000421a0000413d0000000004000414000000040020008c0000422b0000c13d0000423f0000013d000d12ab0020019b000c12ab0010019b000042440000013d00000012020000290000000004000414000000040020008c0000423f0000613d0000000001710049000012a80010009c000012a8010080410000006001100210000012a80070009c000012a80300004100000000030740190000004003300210000000000131019f000012a80040009c000012a804008041000000c003400210000000000131019f001200000007001d4a9d4a930000040f00000012070000290000006003100270000112a80030019d0000000100200190000048480000613d0000134b0070009c0000475d0000813d000000400070043f0000000302000029000000020100002900000008040000290000000053040434000700000005001d000000000003004b00000000030400190000470e0000613d000000400a00043d000400600020021800050060001002180000000901000029000600200010003d00000000020000190000425a0000013d0000130600a0009c0000475d0000213d0000004000a0043f0000001102000029000000080300002900000000010304330000000102200039000000000012004b000046f20000813d001100000002001d0000000502200210001000000002001d00000007012000290000000001010433001200000001001d0000000101000039000000000201041a000012fe0100004100000000001a04350000000401a00039000012ff03000041000000000031043500000000010004140000000802200270000012ab02200197000000040020008c000042710000c13d0000000103000031000000200030008c000000200400003900000000040340190000429b0000013d000012a800a0009c000012a80300004100000000030a40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c7000e0000000a001d4a9d4a980000040f0000000e0a0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056a00190000428b0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000042870000c13d0000001f07400190000042980000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00000001002001900000477f0000613d0000001f01400039000000600110018f000000000ba1001900000000001b004b000000000200003900000001020040390000130600b0009c0000475d0000213d00000001002001900000475d0000c13d0000004000b0043f000000200030008c0000475b0000413d00000000020a0433000012ab0020009c0000475b0000213d0000000204000039000000000404041a0000004405b00039000013370600004100000000006504350000002405b00039000000120600002900000000006504350000131f0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000042e60000613d000012a800b0009c000012a80100004100000000010b40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c7000f0000000b001d4a9d4a980000040f0000000f0b0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000042d40000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000042d00000c13d0000001f07400190000042e10000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00000001002001900000478b0000613d0000001f01400039000000600110018f000000000ab100190000130600a0009c0000475d0000213d0000004000a0043f000000200030008c0000475b0000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b0000475b0000c13d000000000001004b000042f80000613d0000000c0000006b000042f80000613d0000000d0000006b0000476a0000c13d000000090100002900000000010104330000001102000029000000000021004b000047640000a13d000000100300002900000006013000290000000001010433000f00000001001d0000000c0000006b000044300000613d0000002001a00039000000050200002900000000002104350000003402a0003900000012030000290000000000320435000000340200003900000000002a04350000130700a0009c0000475d0000213d0000006002a00039000000400020043f000012a80010009c000012a801008041000000400110021000000000020a0433000012a80020009c000012a8020080410000006002200210000000000112019f0000000002000414000012a80020009c000012a802008041000000c002200210000000000112019f00001308011001c700008010020000394a9d4a980000040f00000001002001900000475b0000613d000000000101043b001000000001001d0000000101000039000000000201041a000000400b00043d000012fe0100004100000000001b04350000000401b00039000012ff03000041000000000031043500000000010004140000000802200270000012ab02200197000000040020008c000043350000c13d0000000103000031000000200030008c000000200400003900000000040340190000435f0000013d000012a800b0009c000012a80300004100000000030b40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c7000e0000000b001d4a9d4a980000040f0000000e0b0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056b00190000434f0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b0000434b0000c13d0000001f074001900000435c0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000047970000613d0000001f01400039000000600110018f000000000ab1001900000000001a004b000000000200003900000001020040390000130600a0009c0000475d0000213d00000001002001900000475d0000c13d0000004000a0043f000000200030008c0000475b0000413d00000000020b0433000012ab0020009c0000475b0000213d0000000204000039000000000404041a0000004405a000390000133a0600004100000000006504350000002405a0003900000010060000290000000000650435000013000500004100000000005a04350000000405a0003900000000004504350000000004000414000000040020008c000043aa0000613d000012a800a0009c000012a80100004100000000010a40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c7000e0000000a001d4a9d4a980000040f0000000e0a0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000043980000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000043940000c13d0000001f07400190000043a50000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000047a30000613d0000001f01400039000000600110018f000000000ba100190000130600b0009c0000475d0000213d0000004000b0043f000000200030008c0000475b0000413d00000000010a0433000e000f00100074000047790000413d0000000101000039000000000201041a000012fe0100004100000000001b04350000000401b00039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c0000002004000039000043ea0000613d000012a800b0009c000012a80300004100000000030b40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c7000b0000000b001d4a9d4a980000040f0000000b0b0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000043da0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000043d60000c13d0000001f07400190000043e70000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000047af0000613d0000001f01400039000000600110018f0000000001b10019000013060010009c0000475d0000213d000000400010043f000000200030008c0000475b0000413d00000000020b0433000012ab0020009c0000475b0000213d0000000201000039000000000101041a000a00000001001d00001302010000410000000000100443000b00000002001d00000004002004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f0000000100200190000047630000613d000000000101043b000000000001004b0000000b030000290000475b0000613d000000400a00043d0000006401a000390000000e0200002900000000002104350000004401a000390000133a0200004100000000002104350000002401a0003900000010020000290000000000210435000013040100004100000000001a04350000000401a000390000000a0200002900000000002104350000000001000414000000040030008c0000442c0000613d000012a800a0009c000012a80200004100000000020a40190000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c70000000002030019000e0000000a001d4a9d4a930000040f0000000e0a0000290000006003100270000112a80030019d0000000100200190000047bb0000613d0000130600a0009c0000475d0000213d0000004000a0043f00000011020000290000000d0000006b000042550000613d0000002001a00039000000040200002900000000002104350000003402a0003900000012030000290000000000320435000000340200003900000000002a04350000130700a0009c0000475d0000213d0000006002a00039000000400020043f000012a80010009c000012a801008041000000400110021000000000020a0433000012a80020009c000012a8020080410000006002200210000000000112019f0000000002000414000012a80020009c000012a802008041000000c002200210000000000112019f00001308011001c700008010020000394a9d4a980000040f00000001002001900000475b0000613d000000000101043b001000000001001d0000000101000039000000000201041a000000400b00043d000012fe0100004100000000001b04350000000401b00039000012ff03000041000000000031043500000000010004140000000802200270000012ab02200197000000040020008c000044640000c13d0000000103000031000000200030008c000000200400003900000000040340190000448e0000013d000012a800b0009c000012a80300004100000000030b40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c7000e0000000b001d4a9d4a980000040f0000000e0b0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056b00190000447e0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b0000447a0000c13d0000001f074001900000448b0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000047c80000613d0000001f01400039000000600110018f000000000ab1001900000000001a004b000000000200003900000001020040390000130600a0009c0000475d0000213d00000001002001900000475d0000c13d0000004000a0043f000000200030008c0000475b0000413d00000000020b0433000012ab0020009c0000475b0000213d0000000204000039000000000404041a0000004405a000390000133a0600004100000000006504350000002405a0003900000010060000290000000000650435000013000500004100000000005a04350000000405a0003900000000004504350000000004000414000000040020008c000044d90000613d000012a800a0009c000012a80100004100000000010a40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c7000e0000000a001d4a9d4a980000040f0000000e0a0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000044c70000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000044c30000c13d0000001f07400190000044d40000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000047d40000613d0000001f01400039000000600110018f000000000ba100190000130600b0009c0000475d0000213d0000004000b0043f000000200030008c0000475b0000413d00000000020a0433000e00000002001d0000000f0020002a000047790000413d0000000101000039000000000201041a000012fe0100004100000000001b04350000000401b00039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c00000020040000390000451a0000613d000012a800b0009c000012a80300004100000000030b40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c7000b0000000b001d4a9d4a980000040f0000000b0b0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056b00190000450a0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000045060000c13d0000001f07400190000045170000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000047e00000613d0000001f01400039000000600110018f0000000001b10019000013060010009c0000475d0000213d000000400010043f000000200030008c0000475b0000413d00000000020b0433000012ab0020009c0000475b0000213d0000000201000039000000000101041a000a00000001001d00001302010000410000000000100443000b00000002001d00000004002004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f0000000100200190000047630000613d000000000101043b000000000001004b0000000b030000290000475b0000613d0000000e020000290000000f01200029000000400a00043d0000006402a0003900000000001204350000004401a000390000133a0200004100000000002104350000002401a0003900000010020000290000000000210435000013040100004100000000001a04350000000404a000390000000a0100002900000000001404350000000001000414000000040030008c000f0000000a001d0000455f0000613d000012a800a0009c000012a80200004100000000020a40190000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c70000000002030019000e00000004001d4a9d4a930000040f0000000e040000290000000f0a0000290000006003100270000112a80030019d0000000100200190000047ec0000613d0000130600a0009c0000475d0000213d0000004000a0043f0000000101000039000000000201041a000012fe0100004100000000001a0435000012ff01000041000000000014043500000000010004140000000802200270000012ab02200197000000040020008c000045720000c13d0000000103000031000000200030008c000000200400003900000000040340190000459b0000013d000012a800a0009c000012a80300004100000000030a40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000000f0a0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056a00190000458b0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000045870000c13d0000001f07400190000045980000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000047f90000613d0000001f01400039000000600110018f000000000ba100190000130600b0009c0000475d0000213d0000004000b0043f000000200030008c0000475b0000413d00000000020a0433000012ab0020009c0000475b0000213d0000000204000039000000000404041a0000004405b000390000134f0600004100000000006504350000002405b00039000000100600002900000000006504350000132f0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000045e10000613d000012a800b0009c000012a80100004100000000010b40190000004001100210000012a80040009c000012a804008041000000c003400210000000000113019f000012fd011001c7000f0000000b001d4a9d4a980000040f0000000f0b0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000045cf0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000045cb0000c13d0000001f07400190000045dc0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000048050000613d0000001f01400039000000600110018f000000000ab100190000130600a0009c0000475d0000213d0000004000a0043f000000200030008c0000475b0000413d00000000010b0433000012ab0010009c0000475b0000213d000000000001004b000042540000c13d0000000101000039000000000201041a000012fe0100004100000000001a04350000000401a00039000012ff04000041000000000041043500000000010004140000000802200270000012ab02200197000000040020008c0000002004000039000046230000613d000012a800a0009c000012a80300004100000000030a40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c7000e0000000a001d4a9d4a980000040f0000000e0a0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000046130000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b0000460f0000c13d0000001f07400190000046200000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000048110000613d0000001f01400039000000600110018f0000000001a10019000013060010009c0000475d0000213d000000400010043f000000200030008c0000475b0000413d00000000020a0433000012ab0020009c0000475b0000213d0000000201000039000000000101041a000e00000001001d00001302010000410000000000100443000f00000002001d00000004002004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f0000000100200190000047630000613d000000000101043b000000000001004b0000000f030000290000475b0000613d000000400a00043d0000006401a000390000000d0200002900000000002104350000004401a000390000134f0200004100000000002104350000002401a0003900000010020000290000000000210435000013350100004100000000001a04350000000404a000390000000e0100002900000000001404350000000001000414000000040030008c000b0000000a001d000046670000613d000012a800a0009c000012a80200004100000000020a40190000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c70000000002030019000f00000004001d4a9d4a930000040f0000000f040000290000000b0a0000290000006003100270000112a80030019d00000001002001900000481d0000613d0000130600a0009c0000475d0000213d0000004000a0043f0000000101000039000000000201041a000012fe0100004100000000001a0435000012ff01000041000000000014043500000000010004140000000802200270000012ab02200197000000040020008c0000467a0000c13d0000000103000031000000200030008c00000020040000390000000004034019000046a30000013d000012a800a0009c000012a80300004100000000030a40190000004003300210000012a80010009c000012a801008041000000c001100210000000000131019f000012b4011001c74a9d4a980000040f0000000b0a0000290000006003100270000012a803300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000046930000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b0000468f0000c13d0000001f07400190000046a00000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00000001002001900000482a0000613d0000001f01400039000000600110018f0000000001a10019000013060010009c0000475d0000213d000000400010043f000000200030008c0000475b0000413d00000000020a0433000012ab0020009c0000475b0000213d0000000201000039000000000101041a000e00000001001d00001302010000410000000000100443000f00000002001d00000004002004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f0000000100200190000047630000613d000000000101043b000000000001004b0000000f030000290000475b0000613d000000400a00043d0000006401a00039000000120200002900000000002104350000004401a00039000013360200004100000000002104350000002401a0003900000010020000290000000000210435000013040100004100000000001a04350000000401a000390000000e0200002900000000002104350000000001000414000000040030008c000042510000613d000012a800a0009c000012a80200004100000000020a40190000004002200210000012a80010009c000012a801008041000000c001100210000000000121019f00001305011001c70000000002030019000e0000000a001d4a9d4a930000040f0000000e0a0000290000006003100270000112a80030019d0000000100200190000042510000c13d000012a8033001970000001f0530018f000012aa06300198000000400200043d0000000004620019000048350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000046ed0000c13d000048350000013d000000010010008c0000470e0000c13d00000009010000290000000001010433000000000001004b000047640000613d0000000701000029000000000101043300000006020000290000000002020433000000400300043d000000200430003900000000002404350000000000130435000012a80030009c000012a80300804100000040013002100000000002000414000012a80020009c000012a802008041000000c002200210000000000112019f0000130d011001c70000800d020000390000000403000039000000000500041100001350040000410000473f0000013d000000400100043d0000004002000039000000000221043600000000040304330000000006030019000000400310003900000000004304350000006003100039000000000004004b0000471f0000613d00000000050000190000002006600039000000000706043300000000037304360000000105500039000000000045004b000047190000413d000000000500041100000000041300490000000000420435000000090600002900000000040604330000000002430436000000000004004b0000472e0000613d00000000030000190000002006600039000000000706043300000000027204360000000103300039000000000043004b000047280000413d0000000002120049000012a80020009c000012a8020080410000006002200210000012a80010009c000012a8010080410000004001100210000000000112019f0000000002000414000012a80020009c000012a802008041000000c002200210000000000121019f00001308011001c70000800d02000039000000040300003900001351040000410000000c060000290000000d070000294a9d4a930000040f00000001002001900000475b0000613d0000000d0000006b0000475a0000613d000000000100041100000008040000290000000002040433000000010020008c000047550000c13d000000090200002900000020022000390000000005020433000000070200002900000000040204330000000202000029000000030300002900000001060000294a9d49830000040f000000000001042d00000002020000290000000303000029000000090500002900000001060000294a9d486f0000040f000000000001042d000000000100001900004a9f00010430000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f00010430000000000001042f000012b301000041000000000010043f0000003201000039000000040010043f000012b40100004100004a9f00010430000012fc0100004100000000001a04350000000401a00039000e0000000a001d4a9d48620000040f0000000e020000290000000001210049000012a80010009c000012a8010080410000006001100210000012a80020009c000012a8020080410000004002200210000000000121019f00004a9f00010430000012b301000041000000000010043f0000001101000039000000040010043f000012b40100004100004a9f000104300000001f0530018f000012aa06300198000000400200043d0000000004620019000048350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000047860000c13d000048350000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000048350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000047920000c13d000048350000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000048350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000479e0000c13d000048350000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000048350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000047aa0000c13d000048350000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000048350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000047b60000c13d000048350000013d000012a8033001970000001f0530018f000012aa06300198000000400200043d0000000004620019000048350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000047c30000c13d000048350000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000048350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000047cf0000c13d000048350000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000048350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000047db0000c13d000048350000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000048350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000047e70000c13d000048350000013d000012a8033001970000001f0530018f000012aa06300198000000400200043d0000000004620019000048350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000047f40000c13d000048350000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000048350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048000000c13d000048350000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000048350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000480c0000c13d000048350000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000048350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048180000c13d000048350000013d000012a8033001970000001f0530018f000012aa06300198000000400200043d0000000004620019000048350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048250000c13d000048350000013d0000001f0530018f000012aa06300198000000400200043d0000000004620019000048350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048310000c13d000000000005004b000048420000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012a80020009c000012a8020080410000004002200210000000000112019f00004a9f00010430000012a8033001970000001f0530018f000012aa06300198000000400200043d0000000004620019000048350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048500000c13d000048350000013d000000400300043d000000600430003900000000002404350000002002300039000000000012043500000001010000390000000000130435000000400230003900000000001204350000008001300039000000400010043f0000000001030019000000000001042d000000600210003900001352030000410000000000320435000000400210003900001353030000410000000000320435000000200210003900000025030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0008000000000002000500000006001d000400000005001d000300000004001d000100000002001d000200000001001d00001302010000410000000000100443000600000003001d00000004003004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f0000000100200190000049400000613d000000000101043b000000000001004b0000493d0000613d000000400b00043d0000004401b00039000000a00200003900000000002104350000000101000029000012ab011001970000002402b000390000000000120435000013540100004100000000001b04350000000201000029000012ab021001970000000401b00039000000000021043500000003070000290000000003070433000000a402b000390000000000320435000000c402b00039000000000003004b000048a30000613d000000000400001900000004060000290000002007700039000000000507043300000000025204360000000104400039000000000034004b0000489c0000413d000048a40000013d000000040600002900000000031200490000006404b00039000000000034043500000000040604330000000003420436000000000004004b000048b20000613d00000000020000190000002006600039000000000506043300000000035304360000000102200039000000000042004b000048ac0000413d00000000011300490000008402b0003900000000001204350000000501000029000000004c0104340000000001c304360000134906c001970000001f05c0018f000000000014004b000048cc0000813d000000000006004b000048c80000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000048c20000c13d000000000005004b000048e20000613d0000000007010019000048d80000013d0000000007610019000000000006004b000048d50000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000048d10000c13d000000000005004b000048e20000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f000000000047043500000000041c0019000000000004043500000000040004140000000602000029000012ab02200197000000040020008c000048f10000c13d0000000005000415000000080550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000049280000013d0000001f05c0003900001349035001970000000001b100490000000001310019000012a80010009c000012a8010080410000006001100210000012a800b0009c000012a80300004100000000030b40190000004003300210000000000131019f000012a80040009c000012a804008041000000c003400210000000000131019f000500000002001d00060000000b001d4a9d4a930000040f000000060b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000049140000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000049100000c13d000000000006004b000049210000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000005000415000000070550008a00000005055002100000000100200190000049410000613d00000005020000290000001f01400039000000600410018f0000000001b40019000000000041004b00000000040000390000000104004039000013060010009c000049750000213d0000000100400190000049750000c13d000000400010043f0000001f0030008c0000493e0000a13d00000000010b043300001344001001980000493e0000c13d0000000503500270000000000301001f0000134501100197000013540010009c000049700000c13d000000000001042d000000000100001900004a9f00010430000000000001042f000000000003004b000049460000c13d000000600200003900000080040000390000496c0000013d0000001f02300039000012a9022001970000003f022000390000135504200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000013060040009c000049750000213d0000000100500190000049750000c13d000000400040043f0000001f0530018f0000000004320436000012aa0630019800000000036400190000495f0000613d000000000701034f0000000008040019000000007907043c0000000008980436000000000038004b0000495b0000c13d000000000005004b0000496c0000613d000000000161034f0000000305500210000000000603043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001304350000000001020433000000000001004b00000005020000290000497b0000c13d0000134201000041000000000010043f000000040020043f000012b40100004100004a9f00010430000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f00010430000012a80040009c000012a8040080410000004002400210000012a80010009c000012a8010080410000006001100210000000000121019f00004a9f000104300008000000000002000500000006001d000100000005001d000300000004001d000200000002001d000400000001001d00001302010000410000000000100443000600000003001d00000004003004430000000001000414000012a80010009c000012a801008041000000c00110021000001303011001c700008002020000394a9d4a980000040f000000010020019000004a3a0000613d000000000101043b000000000001004b00004a370000613d000000400b00043d0000008401b00039000000a00200003900000000002104350000006401b00039000000010200002900000000002104350000004401b00039000000030200002900000000002104350000000201000029000012ab011001970000002402b000390000000000120435000013560100004100000000001b04350000000401000029000012ab011001970000000402b000390000000000120435000000a402b00039000000050100002900000000410104340000000000120435000000200c00008a0000000006c1016f0000001f0510018f000000c403b00039000000000034004b000049c70000813d000000000006004b000049c30000613d00000000085400190000000007530019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000049bd0000c13d000000000005004b000049dd0000613d0000000007030019000049d30000013d0000000007630019000000000006004b000049d00000613d00000000080400190000000009030019000000008a0804340000000009a90436000000000079004b000049cc0000c13d000000000005004b000049dd0000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f00000000004704350000000003310019000000000003043500000000030004140000000602000029000012ab02200197000000040020008c000049ec0000c13d0000000005000415000000080550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900004a220000013d0000001f011000390000000001c1016f000000c401100039000012a80010009c000012a8010080410000006001100210000012a800b0009c000012a80400004100000000040b40190000004004400210000000000141019f000012a80030009c000012a803008041000000c003300210000000000131019f000500000002001d00060000000b001d4a9d4a930000040f000000060b0000290000006003100270000012a803300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004a0e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004a0a0000c13d000000000006004b00004a1b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000005000415000000070550008a0000000505500210000000010020019000004a3b0000613d00000005020000290000001f01400039000000600410018f0000000001b40019000000000041004b00000000040000390000000104004039000013060010009c00004a6f0000213d000000010040019000004a6f0000c13d000000400010043f0000001f0030008c00004a380000a13d00000000010b0433000013440010019800004a380000c13d0000000503500270000000000301001f0000134501100197000013560010009c00004a6a0000c13d000000000001042d000000000100001900004a9f00010430000000000001042f000000000003004b00004a400000c13d0000006002000039000000800400003900004a660000013d0000001f02300039000012a9022001970000003f022000390000135504200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000013060040009c00004a6f0000213d000000010050019000004a6f0000c13d000000400040043f0000001f0530018f0000000004320436000012aa06300198000000000364001900004a590000613d000000000701034f0000000008040019000000007907043c0000000008980436000000000038004b00004a550000c13d000000000005004b00004a660000613d000000000161034f0000000305500210000000000603043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001304350000000001020433000000000001004b000000050200002900004a750000c13d0000134201000041000000000010043f000000040020043f000012b40100004100004a9f00010430000012b301000041000000000010043f0000004101000039000000040010043f000012b40100004100004a9f00010430000012a80040009c000012a8040080410000004002400210000012a80010009c000012a8010080410000006001100210000000000121019f00004a9f00010430000000000001042f000012a80010009c000012a8010080410000004001100210000012a80020009c000012a8020080410000006002200210000000000112019f0000000002000414000012a80020009c000012a802008041000000c002200210000000000112019f00001308011001c700008010020000394a9d4a980000040f000000010020019000004a910000613d000000000101043b000000000001042d000000000100001900004a9f0001043000004a96002104210000000102000039000000000001042d0000000002000019000000000001042d00004a9b002104230000000102000039000000000001042d0000000002000019000000000001042d00004a9d0000043200004a9e0001042e00004a9f0001043000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffdfffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00a6ece734f20310c441daec80768668ffd0649e14bbd0ab181cf9ad511b7e60def652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f09addddcec1d7ba6ad726df49aeea3e93fb0c1037d551236841a60c0c883f2c100000002000000000000000000000000000000400000010000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000000000000000000082840eec00000000000000000000000000000000000000000000000000000000cdb0e89d00000000000000000000000000000000000000000000000000000000e725f87600000000000000000000000000000000000000000000000000000000ed022ebc00000000000000000000000000000000000000000000000000000000f242432900000000000000000000000000000000000000000000000000000000f242432a00000000000000000000000000000000000000000000000000000000f5298aca00000000000000000000000000000000000000000000000000000000ed022ebd00000000000000000000000000000000000000000000000000000000f0a8102b00000000000000000000000000000000000000000000000000000000e725f87700000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000d7f151e200000000000000000000000000000000000000000000000000000000d7f151e300000000000000000000000000000000000000000000000000000000d81d0a1500000000000000000000000000000000000000000000000000000000dd898b2f00000000000000000000000000000000000000000000000000000000cdb0e89e00000000000000000000000000000000000000000000000000000000ce62bc8c00000000000000000000000000000000000000000000000000000000d59b921100000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000af2b8c5100000000000000000000000000000000000000000000000000000000af2b8c5200000000000000000000000000000000000000000000000000000000b76ac0d700000000000000000000000000000000000000000000000000000000c03ad0be00000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a485b4cf00000000000000000000000000000000000000000000000000000000a9cdb8e100000000000000000000000000000000000000000000000000000000938e3d7a00000000000000000000000000000000000000000000000000000000938e3d7b000000000000000000000000000000000000000000000000000000009b642de100000000000000000000000000000000000000000000000000000000a16ad7da0000000000000000000000000000000000000000000000000000000082840eed0000000000000000000000000000000000000000000000000000000088e4f1cb000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000002fb0b873000000000000000000000000000000000000000000000000000000006b20c453000000000000000000000000000000000000000000000000000000007dc0bf3e000000000000000000000000000000000000000000000000000000007dc0bf3f000000000000000000000000000000000000000000000000000000008129fc1c000000000000000000000000000000000000000000000000000000008245e472000000000000000000000000000000000000000000000000000000006b20c4540000000000000000000000000000000000000000000000000000000077278ae8000000000000000000000000000000000000000000000000000000007b4a5411000000000000000000000000000000000000000000000000000000005a2148b8000000000000000000000000000000000000000000000000000000005a2148b9000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000005d1ca631000000000000000000000000000000000000000000000000000000002fb0b874000000000000000000000000000000000000000000000000000000004036ab78000000000000000000000000000000000000000000000000000000004e1273f400000000000000000000000000000000000000000000000000000000156e29f5000000000000000000000000000000000000000000000000000000001f7fdff9000000000000000000000000000000000000000000000000000000001f7fdffa00000000000000000000000000000000000000000000000000000000267659e2000000000000000000000000000000000000000000000000000000002eb2c2d600000000000000000000000000000000000000000000000000000000156e29f60000000000000000000000000000000000000000000000000000000015be71ff0000000000000000000000000000000000000000000000000000000016c38b3c0000000000000000000000000000000000000000000000000000000006fdde020000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000000000000000000000000e89341c000000000000000000000000000000000000000000000000000000001328357f000000000000000000000000000000000000000000000000000000000035a9ae0000000000000000000000000000000000000000000000000000000000fdd58e0000000000000000000000000000000000000000000000000000000001ffc9a7c36dd7ea00000000000000000000000000000000000000000000000000000000d3dc2a3a14cbd0cdbf3069fc3927e48506f271b9dda2c21625b93e6a99d3eb5300000000000000000000000000000000000000440000008000000000000000005c975abb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000005061757361626c653a207061757365640000000000000000000000000000000008c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000053e41c1e000000000000000000000000000000000000000000000000000000009750ad73d9615445751d3fd0a61d867ae6a6dd1dfb5f65ef07fe835b7d5ca6bda1b9224c00000000000000000000000000000000000000000000000000000000a4461be494c8ac4161bbebae7582b8b9702b218cee52e3af7374f39c418f8bde1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b8302000002000000000000000000000000000000240000000000000000000000009b29de69000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffff9f02000000000000000000000000000000000000000000000000000000000000004e6f7420656e6f7567682062616c616e636500000000000000000000000000000161a64a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f0200000000000000000000000000000000000040000000000000000000000000e237d922000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000000000000000240000008000000000000000008a4bcc9000000000000000000000000000000000000000000000000000000000dfc4bf0eca7feb04d15ce5df48f53a222054e5a04aff6d9e7b5c7e90debe19447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff800000000000000000000000000000000000000000000000000000000000000007fef633000000000000000000000000000000000000000000000000000000002361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d60e217cc52bb17854a0b236c2e7b936de0d03c3e8e627c48d806ac42e6b4fd8b9f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08ffffffffffffffffffffff0000000000000000000000000000000000000000ffa4b9148100000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000007e61c209e219816f2d6552de7fdbac392549e401c2ca89cd18a229b82bce31a2a543b62a2588a912b1f57070dec0eeef05a0e6b44cbcf0f780fda7c043035db165168970000000000000000000000000000000000000000000000000000000007ec44d5489e2b86ed2f87d84b04b5a3949fba967937842e10302a5545dfc6315f2c071ca00000000000000000000000000000000000000000000000000000000e95c0487000000000000000000000000000000000000000000000000000000005f7eb40400000000000000000000000000000000000000000000000000000000bfa2ccd2000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0020000000000000000000000000000000000002000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31ced3e1000000000000000000000000000000000000000000000000000000000007b920aa000000000000000000000000000000000000000000000000000000006818841ab9979379b712f05bf5316284ac48e388dba4038f832cb3c37f7aeeaffdffffffffffffffffffffffffffffffffffffc000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffc002000000000000000000000000000000ffffffff000000000000000000000000905d981207a7d0b6c62cc46ab0be2a076d0298e4a86d0ab79882dbd01ac37378e81b22ea0000000000000000000000000000000000000000000000000000000002016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0fc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c476967617665727365202d204974656d730000000000000000000000000000000dc149f000000000000000000000000000000000000000000000000000000000421683f821a0574472445355be6d2b769119e8515f8376a1d7878523dfdecf7b0a41b90f00000000000000000000000000000000000000000000000000000000a709fd3aa96d9faf770e44a5aef2f4808a6fe3a5ddf546568f36ad3a3873f31d9e7ed7f8e6dcd193d98e2fd5ebd44790ad3072ac13a6c8399c17d661a1faa4bd5b0599910000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003fffffffffffffffe0ea06f38f7e4f15e87567361213c28f235cccdaa1d7fd34c9db1dfe9489c6a091000000000000000000000000000000000000008000000000000000000000000001a83514000000000000000000000000000000000000000000000000000000009f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a665d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2585db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f742070617573656400000000000000000000000057f447ce00000000000000000000000000000000000000000000000000000000b6f2b9310000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000d9b67a260000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000f6a7d85700000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffff80000000000000000000000000000000000000000000000000ffffffffffffffa0bc4802b000000000000000000000000000000000000000000000000000000000326d994cdb81aaccb84aa1f62bae636dc0aaf98ab22f66b0c9224f1edccd7cc9c3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f624a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb6572726564000000000000000000000000000000000000000000000000000000536f756c626f756e6420746f6b656e2063616e6e6f74206265207472616e7366bc197c810000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe0f23a6e6100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060c16d72a89d44f3079ea01150fdf48810d11799d44a95f10b89f9c040d36eaf
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b5f84708957e5628c363709ae1d4cb346081fbf6
-----Decoded View---------------
Arg [0] : gameRegistryAddress (address): 0xb5f84708957E5628C363709AE1d4CB346081fbf6
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b5f84708957e5628c363709ae1d4cb346081fbf6
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.