ERC-1155
Overview
Max Total Supply
0
Holders
3,301
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 "@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, BURN_COUNT_CID, MINT_COUNT_CID, OWNER_CID} from "../constants/ColumnConstants.sol"; import {IGameItems, ID} from "./IGameItems.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Context.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"; import {ERC1155C} from "@creator-token-standards/erc1155c/ERC1155C.sol"; import {OwnableBasic} from "@creator-token-standards/access/OwnableBasic.sol"; import {BasicRoyalties} from "@creator-token-standards/programmable-royalties/BasicRoyalties.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ERC2981} from "@openzeppelin/contracts/token/common/ERC2981.sol"; import {ERC1155} from "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import {IERC1155} from "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import {ERC1155OpenZeppelin} from "@creator-token-standards/token/erc1155/ERC1155OpenZeppelin.sol"; import {IERC1155Receiver} from "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol"; import "@openzeppelin/contracts/utils/Address.sol"; /** @title ERC1155 contract for Game Items */ contract GameItems is DataTable, IGameItems, ERC1155C, OwnableBasic, BasicRoyalties { /** TYPES **/ struct TypeInfo { uint256 mints; uint256 burns; uint256 maxSupply; } using Address for address; /** MEMBERS **/ /// @notice Handler for before update events address public updateHandler; string public uri_suffix; /** 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, address royaltiesAddress, uint96 feeNumerator) DataTable(gameRegistryAddress, ID) ERC1155OpenZeppelin("") BasicRoyalties(royaltiesAddress, feeNumerator) {} function initialize() external override onlyRole(DEPLOYER_ROLE) { initializeTable("Gigaverse - Items", ID); } //////////////////// // Public Writes // ////////////////// function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public override(ERC1155, IERC1155) whenNotPaused { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public override(ERC1155, IERC1155) whenNotPaused { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner or approved" ); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); _afterTokenTransfer(operator, from, to, ids, amounts, data); if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non-ERC1155Receiver implementer"); } } } //////////////////// // Public Reads /// ////////////////// function balanceOf(address account, uint256 id) public view override(IERC1155, ERC1155) returns (uint256) { return getDocUint256Value(getAccountTokenKey(account, id), BALANCE_CID); } function balanceOfBatch( address[] memory accounts, uint256[] memory ids ) public view virtual override(IERC1155, ERC1155) returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } function owner() public view override(DataTable, Ownable) returns (address) { return getTableAddressValue(OWNER_CID); } function contractURI() public view returns (string memory) { return getTableStringValue(CONTRACT_URI_CID); } function getType(uint256 id) public view returns (TypeInfo memory) { uint256 maxSupply = getDocUint256Value(id, MAX_SUPPLY_CID); uint256 mints = getDocUint256Value(id, MINT_COUNT_CID); uint256 burns = getDocUint256Value(id, BURN_COUNT_CID); return TypeInfo(mints, burns, maxSupply); } function uri(uint256 id) public view override returns (string memory) { string memory baseUri = getTableStringValue(BASE_URI_CID); return string(abi.encodePacked(baseUri, Strings.toString(id), uri_suffix)); } function tokenURI(uint256 _tokenId) public view returns (string memory) { return uri(_tokenId); } function minted( uint256 id ) external view virtual override(IGameItems) returns (uint256) { return getDocUint256Value(id, MINT_COUNT_CID); } function tokenName( uint256 tokenId ) public view virtual returns (string memory) { if (hasDocStringValue(tokenId, NAME_CID)) { 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))); } ////////////// // Manager // //////////// function setContractURI(string calldata _uri) public onlyRole(MANAGER_ROLE) { _setTableStringValue(CONTRACT_URI_CID, _uri); emit ContractURIUpdated(_uri); } function setUri(string memory newUri) external onlyRole(MANAGER_ROLE) { _setTableStringValue(BASE_URI_CID, newUri); } function setUriSuffix(string memory newUriSuffix) external onlyRole(MANAGER_ROLE) { uri_suffix = newUriSuffix; } function setBaseTokenName(string memory baseTokenName) external onlyRole(MANAGER_ROLE) { _setTableStringValue(BASE_NAME_CID, baseTokenName); } function setType( uint256 id, uint256 maxSupply ) public onlyRole(MANAGER_ROLE) { TypeInfo memory typeData = getType(id); if (typeData.mints > maxSupply) { revert MaxSupplyTooLow(typeData.mints, maxSupply); } _setDocUint256Value(id, MAX_SUPPLY_CID, maxSupply); } 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, string memory name ) external onlyRole(MANAGER_ROLE) { setType(id, maxSupply); setTokenName(id, name); } function setUpdateHandler( address handlerAddress ) external onlyRole(MANAGER_ROLE) { updateHandler = handlerAddress; } ///////////////////// // Game Contracts // /////////////////// function mint( address to, uint256 id, uint256 amount ) external override onlyRole(MINTER_ROLE) whenNotPaused { _safeMint(to, id, amount); } function mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory /*data*/ ) external onlyRole(MINTER_ROLE) whenNotPaused { _confirmMintBatch(to, ids, amounts); } function mintBatch( address to, uint256[] memory ids, uint256[] memory amounts ) external onlyRole(MINTER_ROLE) whenNotPaused { _confirmMintBatch(to, ids, amounts); } function burn( address from, uint256 id, uint256 amount ) external override onlyRole(GAME_LOGIC_CONTRACT_ROLE) whenNotPaused { _burn(from, id, amount); } function burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) external onlyRole(GAME_LOGIC_CONTRACT_ROLE) whenNotPaused { require(ids.length == amounts.length, "Ids and amounts must have the same length"); for (uint256 i = 0; i < ids.length; i++) { _burn(from, ids[i], amounts[i]); } } //////////////////////// // Internal Helpers /// ////////////////////// function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal override { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = new uint256[](1); ids[0] = id; uint256[] memory amounts = new uint256[](1); amounts[0] = amount; uint256 fromBalance = balanceOf(from, id); require(fromBalance >= amount, string.concat("ERC1155: insufficient balance for before transfer ", Strings.toString(fromBalance), " ", Strings.toString(amount))); _beforeTokenTransfer(operator, from, to, ids, amounts, data); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheckCustom(operator, from, to, id, amount, data); } function _doSafeTransferAcceptanceCheckCustom( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _safeMint(address to, uint256 id, uint256 amount) internal { 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, ""); } function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal override { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = new uint256[](1); ids[0] = id; uint256[] memory amounts = new uint256[](1); amounts[0] = amount; _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); } function _confirmMintBatch(address to, uint256[] memory ids, uint256[] memory amounts) internal { require(ids.length == amounts.length, "Ids and amounts must have the same length"); for (uint256 i = 0; i < ids.length; i++) { _safeMint(to, ids[i], amounts[i]); } } function _burn( address from, uint256 id, uint256 amount ) internal override { require(balanceOf(from, id) >= amount, "Not enough balance"); _incrementAmount(id, BURN_COUNT_CID, amount); require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = new uint256[](1); ids[0] = id; uint256[] memory amounts = new uint256[](1); amounts[0] = amount; uint256 fromBalance = balanceOf(from, id); require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override( ERC1155C ) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); 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); } } function supportsInterface( bytes4 interfaceId ) public view virtual override( ERC1155C, IERC165, ERC2981 ) returns (bool) { return super.supportsInterface(interfaceId) || interfaceId == type(IGameItems).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../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. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @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 { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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 { require(newOwner != address(0), "Ownable: new owner is the zero address"); _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")); uint256 constant UNLOCKED_CID = uint256(keccak256("unlocked")); uint256 constant FACTION_CID = uint256(keccak256("faction"));
// 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 // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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; } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.13; import {ReentrancyGuard} from "@openzeppelin/contracts/security/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 v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * 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[EIP 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 pragma solidity ^0.8.4; import "../utils/AutomaticValidatorTransferApproval.sol"; import "../utils/CreatorTokenBase.sol"; import "../token/erc1155/ERC1155OpenZeppelin.sol"; import {TOKEN_TYPE_ERC1155} from "@limitbreak/permit-c/Constants.sol"; /** * @title ERC1155C * @author Limit Break, Inc. * @notice Extends OpenZeppelin's ERC1155 implementation with Creator Token functionality, which * allows the contract owner to update the transfer validation logic by managing a security policy in * an external transfer validation security policy registry. See {CreatorTokenTransferValidator}. */ abstract contract ERC1155C is ERC1155OpenZeppelin, CreatorTokenBase, AutomaticValidatorTransferApproval { /** * @notice Overrides behavior of isApprovedFor all such that if an operator is not explicitly approved * for all, the contract owner can optionally auto-approve the 721-C transfer validator for transfers. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool isApproved) { isApproved = super.isApprovedForAll(owner, operator); if (!isApproved) { if (autoApproveTransfersFromValidator) { isApproved = operator == address(getTransferValidator()); } } } /** * @notice Indicates whether the contract implements the specified interface. * @dev Overrides supportsInterface in ERC165. * @param interfaceId The interface id * @return true if the contract implements the specified interface, false otherwise */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(ICreatorToken).interfaceId || interfaceId == type(ICreatorTokenLegacy).interfaceId || super.supportsInterface(interfaceId); } /** * @notice Returns the function selector for the transfer validator's validation function to be called * @notice for transaction simulation. */ function getTransferValidationFunction() external pure returns (bytes4 functionSignature, bool isViewFunction) { functionSignature = bytes4(keccak256("validateTransfer(address,address,address,uint256,uint256)")); isViewFunction = false; } /// @dev Ties the open-zeppelin _beforeTokenTransfer hook to more granular transfer validation logic function _beforeTokenTransfer( address /*operator*/, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory /*data*/ ) internal virtual override { uint256 idsArrayLength = ids.length; for (uint256 i = 0; i < idsArrayLength;) { _validateBeforeTransfer(from, to, ids[i], amounts[i]); unchecked { ++i; } } } /// @dev Ties the open-zeppelin _afterTokenTransfer hook to more granular transfer validation logic function _afterTokenTransfer( address /*operator*/, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory /*data*/ ) internal virtual override { uint256 idsArrayLength = ids.length; for (uint256 i = 0; i < idsArrayLength;) { _validateAfterTransfer(from, to, ids[i], amounts[i]); unchecked { ++i; } } } function _tokenType() internal pure override returns(uint16) { return uint16(TOKEN_TYPE_ERC1155); } } /** * @title ERC1155CInitializable * @author Limit Break, Inc. * @notice Initializable implementation of ERC1155C to allow for EIP-1167 proxy clones. */ abstract contract ERC1155CInitializable is ERC1155OpenZeppelinInitializable, CreatorTokenBase, AutomaticValidatorTransferApproval { function initializeERC1155(string memory uri_) public override { super.initializeERC1155(uri_); _emitDefaultTransferValidator(); _registerTokenType(getTransferValidator()); } /** * @notice Overrides behavior of isApprovedFor all such that if an operator is not explicitly approved * for all, the contract owner can optionally auto-approve the 721-C transfer validator for transfers. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool isApproved) { isApproved = super.isApprovedForAll(owner, operator); if (!isApproved) { if (autoApproveTransfersFromValidator) { isApproved = operator == address(getTransferValidator()); } } } /** * @notice Indicates whether the contract implements the specified interface. * @dev Overrides supportsInterface in ERC165. * @param interfaceId The interface id * @return true if the contract implements the specified interface, false otherwise */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(ICreatorToken).interfaceId || interfaceId == type(ICreatorTokenLegacy).interfaceId || super.supportsInterface(interfaceId); } /** * @notice Returns the function selector for the transfer validator's validation function to be called * @notice for transaction simulation. */ function getTransferValidationFunction() external pure returns (bytes4 functionSignature, bool isViewFunction) { functionSignature = bytes4(keccak256("validateTransfer(address,address,address,uint256,uint256)")); isViewFunction = false; } /// @dev Ties the open-zeppelin _beforeTokenTransfer hook to more granular transfer validation logic function _beforeTokenTransfer( address /*operator*/, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory /*data*/ ) internal virtual override { uint256 idsArrayLength = ids.length; for (uint256 i = 0; i < idsArrayLength;) { _validateBeforeTransfer(from, to, ids[i], amounts[i]); unchecked { ++i; } } } /// @dev Ties the open-zeppelin _afterTokenTransfer hook to more granular transfer validation logic function _afterTokenTransfer( address /*operator*/, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory /*data*/ ) internal virtual override { uint256 idsArrayLength = ids.length; for (uint256 i = 0; i < idsArrayLength;) { _validateAfterTransfer(from, to, ids[i], amounts[i]); unchecked { ++i; } } } function _tokenType() internal pure override returns(uint16) { return uint16(TOKEN_TYPE_ERC1155); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./OwnablePermissions.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; abstract contract OwnableBasic is OwnablePermissions, Ownable { function _requireCallerIsContractOwner() internal view virtual override { _checkOwner(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/common/ERC2981.sol"; /** * @title BasicRoyaltiesBase * @author Limit Break, Inc. * @dev Base functionality of an NFT mix-in contract implementing the most basic form of programmable royalties. */ abstract contract BasicRoyaltiesBase is ERC2981 { event DefaultRoyaltySet(address indexed receiver, uint96 feeNumerator); event TokenRoyaltySet(uint256 indexed tokenId, address indexed receiver, uint96 feeNumerator); function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual override { super._setDefaultRoyalty(receiver, feeNumerator); emit DefaultRoyaltySet(receiver, feeNumerator); } function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual override { super._setTokenRoyalty(tokenId, receiver, feeNumerator); emit TokenRoyaltySet(tokenId, receiver, feeNumerator); } } /** * @title BasicRoyalties * @author Limit Break, Inc. * @notice Constructable BasicRoyalties Contract implementation. */ abstract contract BasicRoyalties is BasicRoyaltiesBase { constructor(address receiver, uint96 feeNumerator) { _setDefaultRoyalty(receiver, feeNumerator); } } /** * @title BasicRoyaltiesInitializable * @author Limit Break, Inc. * @notice Initializable BasicRoyalties Contract implementation to allow for EIP-1167 clones. */ abstract contract BasicRoyaltiesInitializable is BasicRoyaltiesBase {}
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.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 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => 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 EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); 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 override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner or approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner or approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` 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 `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 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, 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. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, 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 EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts 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 `amount` tokens of token 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 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @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 ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @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 ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non-ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non-ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token 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 amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ 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 caller. */ 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 `amount` tokens of token type `id` from `from` to `to`. * * 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 `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 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * 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 safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "../../access/OwnablePermissions.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; abstract contract ERC1155OpenZeppelinBase is ERC1155 { } abstract contract ERC1155OpenZeppelin is ERC1155OpenZeppelinBase { constructor(string memory uri_) ERC1155(uri_) {} } abstract contract ERC1155OpenZeppelinInitializable is OwnablePermissions, ERC1155OpenZeppelinBase { error ERC1155OpenZeppelinInitializable__AlreadyInitializedERC1155(); bool private _erc1155Initialized; function initializeERC1155(string memory uri_) public virtual { _requireCallerIsContractOwner(); if(_erc1155Initialized) { revert ERC1155OpenZeppelinInitializable__AlreadyInitializedERC1155(); } _erc1155Initialized = true; _setURI(uri_); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 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 ERC1155 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 v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 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. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, 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 + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @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 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; 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 require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // 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; } }
// 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 pragma solidity ^0.8.4; import "../access/OwnablePermissions.sol"; /** * @title AutomaticValidatorTransferApproval * @author Limit Break, Inc. * @notice Base contract mix-in that provides boilerplate code giving the contract owner the * option to automatically approve a 721-C transfer validator implementation for transfers. */ abstract contract AutomaticValidatorTransferApproval is OwnablePermissions { /// @dev Emitted when the automatic approval flag is modified by the creator. event AutomaticApprovalOfTransferValidatorSet(bool autoApproved); /// @dev If true, the collection's transfer validator is automatically approved to transfer holder's tokens. bool public autoApproveTransfersFromValidator; /** * @notice Sets if the transfer validator is automatically approved as an operator for all token owners. * * @dev Throws when the caller is not the contract owner. * * @param autoApprove If true, the collection's transfer validator will be automatically approved to * transfer holder's tokens. */ function setAutomaticApprovalOfTransfersFromValidator(bool autoApprove) external { _requireCallerIsContractOwner(); autoApproveTransfersFromValidator = autoApprove; emit AutomaticApprovalOfTransferValidatorSet(autoApprove); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "../access/OwnablePermissions.sol"; import "../interfaces/ICreatorToken.sol"; import "../interfaces/ICreatorTokenLegacy.sol"; import "../interfaces/ITransferValidator.sol"; import "./TransferValidation.sol"; import "../interfaces/ITransferValidatorSetTokenType.sol"; /** * @title CreatorTokenBase * @author Limit Break, Inc. * @notice CreatorTokenBaseV3 is an abstract contract that provides basic functionality for managing token * transfer policies through an implementation of ICreatorTokenTransferValidator/ICreatorTokenTransferValidatorV2/ICreatorTokenTransferValidatorV3. * This contract is intended to be used as a base for creator-specific token contracts, enabling customizable transfer * restrictions and security policies. * * <h4>Features:</h4> * <ul>Ownable: This contract can have an owner who can set and update the transfer validator.</ul> * <ul>TransferValidation: Implements the basic token transfer validation interface.</ul> * * <h4>Benefits:</h4> * <ul>Provides a flexible and modular way to implement custom token transfer restrictions and security policies.</ul> * <ul>Allows creators to enforce policies such as account and codehash blacklists, whitelists, and graylists.</ul> * <ul>Can be easily integrated into other token contracts as a base contract.</ul> * * <h4>Intended Usage:</h4> * <ul>Use as a base contract for creator token implementations that require advanced transfer restrictions and * security policies.</ul> * <ul>Set and update the ICreatorTokenTransferValidator implementation contract to enforce desired policies for the * creator token.</ul> * * <h4>Compatibility:</h4> * <ul>Backward and Forward Compatible - V1/V2/V3 Creator Token Base will work with V1/V2/V3 Transfer Validators.</ul> */ abstract contract CreatorTokenBase is OwnablePermissions, TransferValidation, ICreatorToken { /// @dev Thrown when setting a transfer validator address that has no deployed code. error CreatorTokenBase__InvalidTransferValidatorContract(); /// @dev The default transfer validator that will be used if no transfer validator has been set by the creator. address public constant DEFAULT_TRANSFER_VALIDATOR = address(0x721C002B0059009a671D00aD1700c9748146cd1B); /// @dev Used to determine if the default transfer validator is applied. /// @dev Set to true when the creator sets a transfer validator address. bool private isValidatorInitialized; /// @dev Address of the transfer validator to apply to transactions. address private transferValidator; constructor() { _emitDefaultTransferValidator(); _registerTokenType(DEFAULT_TRANSFER_VALIDATOR); } /** * @notice Sets the transfer validator for the token contract. * * @dev Throws when provided validator contract is not the zero address and does not have code. * @dev Throws when the caller is not the contract owner. * * @dev <h4>Postconditions:</h4> * 1. The transferValidator address is updated. * 2. The `TransferValidatorUpdated` event is emitted. * * @param transferValidator_ The address of the transfer validator contract. */ function setTransferValidator(address transferValidator_) public { _requireCallerIsContractOwner(); bool isValidTransferValidator = transferValidator_.code.length > 0; if(transferValidator_ != address(0) && !isValidTransferValidator) { revert CreatorTokenBase__InvalidTransferValidatorContract(); } emit TransferValidatorUpdated(address(getTransferValidator()), transferValidator_); isValidatorInitialized = true; transferValidator = transferValidator_; _registerTokenType(transferValidator_); } /** * @notice Returns the transfer validator contract address for this token contract. */ function getTransferValidator() public view override returns (address validator) { validator = transferValidator; if (validator == address(0)) { if (!isValidatorInitialized) { validator = DEFAULT_TRANSFER_VALIDATOR; } } } /** * @dev Pre-validates a token transfer, reverting if the transfer is not allowed by this token's security policy. * Inheriting contracts are responsible for overriding the _beforeTokenTransfer function, or its equivalent * and calling _validateBeforeTransfer so that checks can be properly applied during token transfers. * * @dev Be aware that if the msg.sender is the transfer validator, the transfer is automatically permitted, as the * transfer validator is expected to pre-validate the transfer. * * @dev Throws when the transfer doesn't comply with the collection's transfer policy, if the transferValidator is * set to a non-zero address. * * @param caller The address of the caller. * @param from The address of the sender. * @param to The address of the receiver. * @param tokenId The token id being transferred. */ function _preValidateTransfer( address caller, address from, address to, uint256 tokenId, uint256 /*value*/) internal virtual override { address validator = getTransferValidator(); if (validator != address(0)) { if (msg.sender == validator) { return; } ITransferValidator(validator).validateTransfer(caller, from, to, tokenId); } } /** * @dev Pre-validates a token transfer, reverting if the transfer is not allowed by this token's security policy. * Inheriting contracts are responsible for overriding the _beforeTokenTransfer function, or its equivalent * and calling _validateBeforeTransfer so that checks can be properly applied during token transfers. * * @dev Be aware that if the msg.sender is the transfer validator, the transfer is automatically permitted, as the * transfer validator is expected to pre-validate the transfer. * * @dev Used for ERC20 and ERC1155 token transfers which have an amount value to validate in the transfer validator. * @dev The `tokenId` for ERC20 tokens should be set to `0`. * * @dev Throws when the transfer doesn't comply with the collection's transfer policy, if the transferValidator is * set to a non-zero address. * * @param caller The address of the caller. * @param from The address of the sender. * @param to The address of the receiver. * @param tokenId The token id being transferred. * @param amount The amount of token being transferred. */ function _preValidateTransfer( address caller, address from, address to, uint256 tokenId, uint256 amount, uint256 /*value*/) internal virtual override { address validator = getTransferValidator(); if (validator != address(0)) { if (msg.sender == validator) { return; } ITransferValidator(validator).validateTransfer(caller, from, to, tokenId, amount); } } function _tokenType() internal virtual pure returns(uint16); function _registerTokenType(address validator) internal { if (validator != address(0)) { uint256 validatorCodeSize; assembly { validatorCodeSize := extcodesize(validator) } if(validatorCodeSize > 0) { try ITransferValidatorSetTokenType(validator).setTokenTypeOfCollection(address(this), _tokenType()) { } catch { } } } } /** * @dev Used during contract deployment for constructable and cloneable creator tokens * @dev to emit the `TransferValidatorUpdated` event signaling the validator for the contract * @dev is the default transfer validator. */ function _emitDefaultTransferValidator() internal { emit TransferValidatorUpdated(address(0), DEFAULT_TRANSFER_VALIDATOR); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /// @dev Constant bytes32 value of 0x000...000 bytes32 constant ZERO_BYTES32 = bytes32(0); /// @dev Constant value of 0 uint256 constant ZERO = 0; /// @dev Constant value of 1 uint256 constant ONE = 1; /// @dev Constant value representing an open order in storage uint8 constant ORDER_STATE_OPEN = 0; /// @dev Constant value representing a filled order in storage uint8 constant ORDER_STATE_FILLED = 1; /// @dev Constant value representing a cancelled order in storage uint8 constant ORDER_STATE_CANCELLED = 2; /// @dev Constant value representing the ERC721 token type for signatures and transfer hooks uint256 constant TOKEN_TYPE_ERC721 = 721; /// @dev Constant value representing the ERC1155 token type for signatures and transfer hooks uint256 constant TOKEN_TYPE_ERC1155 = 1155; /// @dev Constant value representing the ERC20 token type for signatures and transfer hooks uint256 constant TOKEN_TYPE_ERC20 = 20; /// @dev Constant value to mask the upper bits of a signature that uses a packed `vs` value to extract `s` bytes32 constant UPPER_BIT_MASK = 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff; /// @dev EIP-712 typehash used for validating signature based stored approvals bytes32 constant UPDATE_APPROVAL_TYPEHASH = keccak256("UpdateApprovalBySignature(uint256 tokenType,address token,uint256 id,uint256 amount,uint256 nonce,address operator,uint256 approvalExpiration,uint256 sigDeadline,uint256 masterNonce)"); /// @dev EIP-712 typehash used for validating a single use permit without additional data bytes32 constant SINGLE_USE_PERMIT_TYPEHASH = keccak256("PermitTransferFrom(uint256 tokenType,address token,uint256 id,uint256 amount,uint256 nonce,address operator,uint256 expiration,uint256 masterNonce)"); /// @dev EIP-712 typehash used for validating a single use permit with additional data string constant SINGLE_USE_PERMIT_TRANSFER_ADVANCED_TYPEHASH_STUB = "PermitTransferFromWithAdditionalData(uint256 tokenType,address token,uint256 id,uint256 amount,uint256 nonce,address operator,uint256 expiration,uint256 masterNonce,"; /// @dev EIP-712 typehash used for validating an order permit that updates storage as it fills string constant PERMIT_ORDER_ADVANCED_TYPEHASH_STUB = "PermitOrderWithAdditionalData(uint256 tokenType,address token,uint256 id,uint256 amount,uint256 salt,address operator,uint256 expiration,uint256 masterNonce,"; /// @dev Pausable flag for stored approval transfers of ERC721 assets uint256 constant PAUSABLE_APPROVAL_TRANSFER_FROM_ERC721 = 1 << 0; /// @dev Pausable flag for stored approval transfers of ERC1155 assets uint256 constant PAUSABLE_APPROVAL_TRANSFER_FROM_ERC1155 = 1 << 1; /// @dev Pausable flag for stored approval transfers of ERC20 assets uint256 constant PAUSABLE_APPROVAL_TRANSFER_FROM_ERC20 = 1 << 2; /// @dev Pausable flag for single use permit transfers of ERC721 assets uint256 constant PAUSABLE_PERMITTED_TRANSFER_FROM_ERC721 = 1 << 3; /// @dev Pausable flag for single use permit transfers of ERC1155 assets uint256 constant PAUSABLE_PERMITTED_TRANSFER_FROM_ERC1155 = 1 << 4; /// @dev Pausable flag for single use permit transfers of ERC20 assets uint256 constant PAUSABLE_PERMITTED_TRANSFER_FROM_ERC20 = 1 << 5; /// @dev Pausable flag for order fill transfers of ERC1155 assets uint256 constant PAUSABLE_ORDER_TRANSFER_FROM_ERC1155 = 1 << 6; /// @dev Pausable flag for order fill transfers of ERC20 assets uint256 constant PAUSABLE_ORDER_TRANSFER_FROM_ERC20 = 1 << 7;
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/Context.sol"; abstract contract OwnablePermissions is Context { function _requireCallerIsContractOwner() internal view virtual; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 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); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ 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 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 pragma solidity ^0.8.4; interface ICreatorToken { event TransferValidatorUpdated(address oldValidator, address newValidator); function getTransferValidator() external view returns (address validator); function setTransferValidator(address validator) external; function getTransferValidationFunction() external view returns (bytes4 functionSignature, bool isViewFunction); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface ICreatorTokenLegacy { event TransferValidatorUpdated(address oldValidator, address newValidator); function getTransferValidator() external view returns (address validator); function setTransferValidator(address validator) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface ITransferValidator { function applyCollectionTransferPolicy(address caller, address from, address to) external view; function validateTransfer(address caller, address from, address to) external view; function validateTransfer(address caller, address from, address to, uint256 tokenId) external view; function validateTransfer(address caller, address from, address to, uint256 tokenId, uint256 amount) external; function beforeAuthorizedTransfer(address operator, address token, uint256 tokenId) external; function afterAuthorizedTransfer(address token, uint256 tokenId) external; function beforeAuthorizedTransfer(address operator, address token) external; function afterAuthorizedTransfer(address token) external; function beforeAuthorizedTransfer(address token, uint256 tokenId) external; function beforeAuthorizedTransferWithAmount(address token, uint256 tokenId, uint256 amount) external; function afterAuthorizedTransferWithAmount(address token, uint256 tokenId) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/Context.sol"; /** * @title TransferValidation * @author Limit Break, Inc. * @notice A mix-in that can be combined with ERC-721 contracts to provide more granular hooks. * Openzeppelin's ERC721 contract only provides hooks for before and after transfer. This allows * developers to validate or customize transfers within the context of a mint, a burn, or a transfer. */ abstract contract TransferValidation is Context { /// @dev Thrown when the from and to address are both the zero address. error ShouldNotMintToBurnAddress(); /*************************************************************************/ /* Transfers Without Amounts */ /*************************************************************************/ /// @dev Inheriting contracts should call this function in the _beforeTokenTransfer function to get more granular hooks. function _validateBeforeTransfer(address from, address to, uint256 tokenId) internal virtual { bool fromZeroAddress = from == address(0); bool toZeroAddress = to == address(0); if(fromZeroAddress && toZeroAddress) { revert ShouldNotMintToBurnAddress(); } else if(fromZeroAddress) { _preValidateMint(_msgSender(), to, tokenId, msg.value); } else if(toZeroAddress) { _preValidateBurn(_msgSender(), from, tokenId, msg.value); } else { _preValidateTransfer(_msgSender(), from, to, tokenId, msg.value); } } /// @dev Inheriting contracts should call this function in the _afterTokenTransfer function to get more granular hooks. function _validateAfterTransfer(address from, address to, uint256 tokenId) internal virtual { bool fromZeroAddress = from == address(0); bool toZeroAddress = to == address(0); if(fromZeroAddress && toZeroAddress) { revert ShouldNotMintToBurnAddress(); } else if(fromZeroAddress) { _postValidateMint(_msgSender(), to, tokenId, msg.value); } else if(toZeroAddress) { _postValidateBurn(_msgSender(), from, tokenId, msg.value); } else { _postValidateTransfer(_msgSender(), from, to, tokenId, msg.value); } } /// @dev Optional validation hook that fires before a mint function _preValidateMint(address caller, address to, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a mint function _postValidateMint(address caller, address to, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires before a burn function _preValidateBurn(address caller, address from, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a burn function _postValidateBurn(address caller, address from, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires before a transfer function _preValidateTransfer(address caller, address from, address to, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a transfer function _postValidateTransfer(address caller, address from, address to, uint256 tokenId, uint256 value) internal virtual {} /*************************************************************************/ /* Transfers With Amounts */ /*************************************************************************/ /// @dev Inheriting contracts should call this function in the _beforeTokenTransfer function to get more granular hooks. function _validateBeforeTransfer(address from, address to, uint256 tokenId, uint256 amount) internal virtual { bool fromZeroAddress = from == address(0); bool toZeroAddress = to == address(0); if(fromZeroAddress && toZeroAddress) { revert ShouldNotMintToBurnAddress(); } else if(fromZeroAddress) { _preValidateMint(_msgSender(), to, tokenId, amount, msg.value); } else if(toZeroAddress) { _preValidateBurn(_msgSender(), from, tokenId, amount, msg.value); } else { _preValidateTransfer(_msgSender(), from, to, tokenId, amount, msg.value); } } /// @dev Inheriting contracts should call this function in the _afterTokenTransfer function to get more granular hooks. function _validateAfterTransfer(address from, address to, uint256 tokenId, uint256 amount) internal virtual { bool fromZeroAddress = from == address(0); bool toZeroAddress = to == address(0); if(fromZeroAddress && toZeroAddress) { revert ShouldNotMintToBurnAddress(); } else if(fromZeroAddress) { _postValidateMint(_msgSender(), to, tokenId, amount, msg.value); } else if(toZeroAddress) { _postValidateBurn(_msgSender(), from, tokenId, amount, msg.value); } else { _postValidateTransfer(_msgSender(), from, to, tokenId, amount, msg.value); } } /// @dev Optional validation hook that fires before a mint function _preValidateMint(address caller, address to, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a mint function _postValidateMint(address caller, address to, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} /// @dev Optional validation hook that fires before a burn function _preValidateBurn(address caller, address from, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a burn function _postValidateBurn(address caller, address from, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} /// @dev Optional validation hook that fires before a transfer function _preValidateTransfer(address caller, address from, address to, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a transfer function _postValidateTransfer(address caller, address from, address to, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface ITransferValidatorSetTokenType { function setTokenTypeOfCollection(address collection, uint16 tokenType) external; }
{ "viaIR": false, "codegen": "yul", "remappings": [ "@limitbreak/creator-token-standards/=lib/creator-token-standards/", "@openzeppelin/=lib/creator-token-standards/lib/openzeppelin-contracts/", "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "murky/=lib/murky/src/", "erc721a/=lib/ERC721A/", "@creator-token-standards/=lib/creator-token-standards/src/", "@limitbreak/permit-c/=lib/creator-token-standards/lib/PermitC/src/", "@opensea/tstorish/=lib/creator-token-standards/lib/tstorish/src/", "@rari-capital/solmate/=lib/creator-token-standards/lib/PermitC/lib/solmate/", "ERC721A/=lib/ERC721A/contracts/", "PermitC/=lib/creator-token-standards/lib/PermitC/", "creator-token-standards/=lib/creator-token-standards/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-gas-metering/=lib/creator-token-standards/lib/PermitC/lib/forge-gas-metering/", "forge-zksync-std/=lib/forge-zksync-std/src/", "halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "openzeppelin/=lib/creator-token-standards/lib/PermitC/lib/openzeppelin-contracts/contracts/", "solady/=lib/creator-token-standards/lib/PermitC/lib/forge-gas-metering/lib/solady/", "solmate/=lib/creator-token-standards/lib/PermitC/lib/solmate/src/", "tstorish/=lib/creator-token-standards/lib/tstorish/src/" ], "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 }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"gameRegistryAddress","type":"address"},{"internalType":"address","name":"royaltiesAddress","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"inputs":[],"name":"CreatorTokenBase__InvalidTransferValidatorContract","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":"ShouldNotMintToBurnAddress","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":"bool","name":"autoApproved","type":"bool"}],"name":"AutomaticApprovalOfTransferValidatorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"ContractURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"DefaultRoyaltySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"TokenRoyaltySet","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":"address","name":"oldValidator","type":"address"},{"indexed":false,"internalType":"address","name":"newValidator","type":"address"}],"name":"TransferValidatorUpdated","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":[],"name":"DEFAULT_TRANSFER_VALIDATOR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"autoApproveTransfersFromValidator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"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":[],"name":"getTransferValidationFunction","outputs":[{"internalType":"bytes4","name":"functionSignature","type":"bytes4"},{"internalType":"bool","name":"isViewFunction","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getTransferValidator","outputs":[{"internalType":"address","name":"validator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getType","outputs":[{"components":[{"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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isApproved","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":"","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"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":"amounts","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":"amount","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":"bool","name":"autoApprove","type":"bool"}],"name":"setAutomaticApprovalOfTransfersFromValidator","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":"address","name":"transferValidator_","type":"address"}],"name":"setTransferValidator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"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":"string","name":"newUriSuffix","type":"string"}],"name":"setUriSuffix","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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateHandler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uri_suffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010014033203330286b519ec3e2486f132190ab66cd7819d8ab265c5872d10770000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006000000000000000000000000074eb92b33f2400eb14f6d6725b14f76078d5e731000000000000000000000000f62dceddd3a9aa9239f068a6dcd7a08c95d903d000000000000000000000000000000000000000000000000000000000000001f4
Deployed Bytecode
0x0004000000000002000e000000000002000000000401034f0000006001100270000012fc0010019d000012fc03100197000300000034035500020000000403550000008001000039000000400010043f00000001002001900000003a0000c13d000000040030008c0000291d0000413d000000000134034f000000000204043b000000e0022002700000131c0020009c0000006d0000a13d0000131d0020009c0000007a0000a13d0000131e0020009c000000ff0000213d0000132a0020009c000001940000213d000013300020009c000004020000213d000013330020009c000006dd0000613d000013340020009c0000291d0000c13d000000440030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000002401400370000000000101043b000900000001001d0000000401400370000000000101043b000a00000001001d0000000101000039000000000201041a0000139301000041000000800010043f0000139401000041000000840010043f00000000010004140000000802200270000012ff02200197000000040020008c00000b390000c13d0000000103000031000000200030008c0000002004000039000000000403401900000b5e0000013d0000000002000416000000000002004b0000291d0000c13d0000001f02300039000012fd022001970000008002200039000000400020043f0000001f0530018f000012fe0630019800000080026000390000004a0000613d000000000704034f000000007807043c0000000001810436000000000021004b000000460000c13d000000000005004b000000570000613d000000000164034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600030008c0000291d0000413d000000800100043d000012ff0010009c0000291d0000213d000000a00200043d000a00000002001d000012ff0020009c0000291d0000213d000000c00200043d000900000002001d000013000020009c0000291d0000213d000000400200043d000013010020009c000005c80000a13d000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed000104300000134a0020009c000000d40000213d000013600020009c000001370000a13d000013610020009c0000020f0000213d000013670020009c0000049b0000213d0000136a0020009c000007f80000613d0000136b0020009c000005b10000613d0000291d0000013d000013350020009c0000011a0000a13d000013360020009c000001790000213d0000133c0020009c000003cf0000213d0000133f0020009c0000062c0000613d000013400020009c0000291d0000c13d000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000201043b0000130e0020009c0000291d0000213d0000002301200039000000000031004b0000291d0000813d0000000405200039000000000154034f000000000101043b0000130e0010009c000000670000213d0000001f06100039000013e7066001970000003f06600039000013e706600197000013770060009c000000670000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b0000291d0000213d0000002002500039000000000324034f000013e7041001980000001f0510018f000000a002400039000000ae0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000000aa0000c13d000000000005004b000000bb0000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000101000039000000000201041a000000400500043d0000139e01000041000000000015043500000004015000390000139f0300004100000000003104350000000001000411000012ff031001970000002401500039000900000003001d000000000031043500000000010004140000000802200270000012ff02200197000000040020008c000016db0000c13d0000000103000031000000200030008c00000020040000390000000004034019000017080000013d0000134b0020009c000001520000a13d0000134c0020009c000002660000213d000013520020009c000004b00000213d000013550020009c0000080e0000613d000013560020009c0000291d0000c13d000000440030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000a00000002001d000000000012004b0000291d0000c13d0000000101000039000000000201041a0000139e01000041000000800010043f0000139f01000041000000840010043f0000000001000411000012ff03100197000000a40030043f00000000010004140000000802200270000012ff02200197000000040020008c000900000003001d0000115d0000c13d0000000103000031000000200030008c00000020040000390000000004034019000011820000013d0000131f0020009c000001ad0000213d000013250020009c000004560000213d000013280020009c000006f80000613d000013290020009c0000291d0000c13d0000000002000416000000000002004b0000291d0000c13d0000000102000039000000000202041a0000139303000041000000800030043f0000139403000041000000840030043f00000000030004140000000802200270000012ff02200197000000040020008c000009950000c13d0000000103000031000000200030008c00000020040000390000000004034019000009ba0000013d000013410020009c000002e40000a13d000013420020009c000003f80000213d000013450020009c000006c20000613d000013460020009c0000291d0000c13d000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000101000039000000000201041a0000139301000041000000800010043f0000139401000041000000840010043f00000000010004140000000802200270000012ff02200197000000040020008c00000af20000c13d0000000103000031000000200030008c0000002004000039000000000403401900000b170000013d0000136c0020009c000002ff0000a13d0000136d0020009c000005480000213d000013700020009c000008d20000613d000013710020009c0000291d0000c13d0000000002000416000000000002004b0000291d0000c13d0000000102000039000000000202041a0000139303000041000000800030043f0000139403000041000000840030043f00000000030004140000000802200270000012ff02200197000000040020008c00000be30000c13d0000000103000031000000200030008c0000002004000039000000000403401900000c080000013d000013570020009c0000030c0000a13d000013580020009c000005540000213d0000135b0020009c000008e70000613d0000135c0020009c0000291d0000c13d000000440030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000002401400370000000000301043b0000000401400370000000000401043b0000000101000039000000000201041a0000139e01000041000000800010043f0000139f01000041000000840010043f0000000001000411000012ff05100197000000a40050043f00000000010004140000000802200270000012ff02200197000000040020008c000900000003001d000a00000004001d000800000005001d00000d280000c13d0000000103000031000000200030008c0000002004000039000000000403401900000d4d0000013d000013370020009c000003ee0000213d0000133a0020009c000006560000613d0000133b0020009c0000291d0000c13d000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000101000039000000000201041a0000139301000041000000800010043f0000139401000041000000840010043f00000000010004140000000802200270000012ff02200197000000040020008c00000a3b0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000a600000013d0000132b0020009c000004640000213d0000132e0020009c000007100000613d0000132f0020009c0000291d0000c13d000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000101043b000a00000001001d000012ff0010009c0000291d0000213d00000000010004114beb33190000040f0000000b01000039000000000201041a0000130f022001970000000a022001af000000000021041b000000000100001900004bec0001042e000013200020009c000004860000213d000013230020009c0000072b0000613d000013240020009c0000291d0000c13d000000a40030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000101043b000a00000001001d000012ff0010009c0000291d0000213d0000002401400370000000000101043b000900000001001d000012ff0010009c0000291d0000213d0000006401400370000000000101043b000700000001001d0000004401400370000000000101043b000800000001001d0000008401400370000000000201043b0000130e0020009c0000291d0000213d0000002301200039000000000031004b0000291d0000813d0000000405200039000000000154034f000000000101043b0000130e0010009c000000670000213d0000001f06100039000013e7066001970000003f06600039000013e706600197000013770060009c000000670000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b0000291d0000213d0000002002500039000000000324034f000013e7041001980000001f0510018f000000a002400039000001ed0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000001e90000c13d000000000005004b000001fa0000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a0011000390000000000010435000000400100043d000600000001001d0000000101000039000000000201041a000000ff0020019000001ae70000c13d00001378010000410000000603000029000000000013043500000000010004140000000802200270000012ff02200197000000040020008c00001b100000c13d0000000103000031000000200030008c0000002004000039000000000403401900001b3a0000013d000013620020009c000004bc0000213d000013650020009c000008640000613d000013660020009c0000291d0000c13d000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000201043b0000130e0020009c0000291d0000213d0000002301200039000000000031004b0000291d0000813d0000000405200039000000000154034f000000000101043b0000130e0010009c000000670000213d0000001f06100039000013e7066001970000003f06600039000013e706600197000013770060009c000000670000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b0000291d0000213d0000002002500039000000000324034f000013e7041001980000001f0510018f000000a0024000390000023f0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b0000023b0000c13d000000000005004b0000024c0000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000101000039000900000001001d000000000201041a000000400500043d0000139e01000041000000000015043500000004015000390000139f0300004100000000003104350000000001000411000012ff031001970000002401500039000a00000003001d000000000031043500000000010004140000000802200270000012ff02200197000000040020008c000017d40000c13d0000000103000031000000200030008c00000020040000390000000004034019000018010000013d0000134d0020009c0000052f0000213d000013500020009c0000086e0000613d000013510020009c0000291d0000c13d000000640030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000101043b000a00000001001d000012ff0010009c0000291d0000213d0000002401400370000000000101043b0000130e0010009c0000291d0000213d0000002302100039000000000032004b0000291d0000813d0000000402100039000000000224034f000000000502043b0000130e0050009c000000670000213d00000005025002100000003f06200039000013a606600197000013770060009c000000670000213d0000008006600039000000400060043f000000800050043f00000024011000390000000002120019000000000032004b0000291d0000213d000000000005004b000002980000613d0000008005000039000000000614034f000000000606043b000000200550003900000000006504350000002001100039000000000021004b000002910000413d0000004401400370000000000101043b0000130e0010009c0000291d0000213d0000002302100039000000000032004b000000000500001900001399050080410000139902200197000000000002004b00000000060000190000139906004041000013990020009c000000000605c019000000000006004b0000291d0000c13d0000000402100039000000000224034f000000000202043b0000130e0020009c000000670000213d00000005052002100000003f06500039000013a606600197000000400700043d0000000006670019000800000007001d000000000076004b000000000700003900000001070040390000130e0060009c000000670000213d0000000100700190000000670000c13d000000400060043f00000008060000290000000006260436000700000006001d00000024011000390000000005150019000000000035004b0000291d0000213d000000000002004b000002cc0000613d0000000802000029000000000314034f000000000303043b000000200220003900000000003204350000002001100039000000000051004b000002c50000413d0000000101000039000000000201041a000000400400043d0000139e0100004100000000001404350000000401400039000013c00300004100000000003104350000000001000411000012ff03100197000900000004001d0000002401400039000500000003001d000000000031043500000000010004140000000802200270000012ff02200197000000040020008c00001dff0000c13d0000000103000031000000200030008c0000002004000039000000000403401900001e290000013d000013470020009c000005d30000613d000013480020009c000006230000613d000013490020009c0000291d0000c13d0000000001000416000000000001004b0000291d0000c13d0000000101000039000000000201041a0000139e01000041000000800010043f000013b801000041000000840010043f0000000001000411000000a40010043f00000000010004140000000802200270000012ff02200197000000040020008c00000ba70000c13d0000000103000031000000200030008c0000002004000039000000000403401900000bcc0000013d000013720020009c0000077a0000613d000013730020009c000007aa0000613d000013740020009c0000291d0000c13d0000000001000416000000000001004b0000291d0000c13d0000130701000041000000800010043f000013920100004100004bec0001042e0000135d0020009c000007950000613d0000135e0020009c000007b80000613d0000135f0020009c0000291d0000c13d000000a40030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000101043b000a00000001001d000012ff0010009c0000291d0000213d0000002401400370000000000101043b000900000001001d000012ff0010009c0000291d0000213d0000004401400370000000000101043b0000130e0010009c0000291d0000213d0000002302100039000000000032004b0000291d0000813d0000000402100039000000000224034f000000000502043b0000130e0050009c000000670000213d00000005025002100000003f06200039000013a606600197000013770060009c000000670000213d0000008006600039000000400060043f000000800050043f00000024011000390000000002120019000000000032004b0000291d0000213d000000000005004b000003430000613d0000008005000039000000000614034f000000000606043b000000200550003900000000006504350000002001100039000000000021004b0000033c0000413d0000006401400370000000000101043b0000130e0010009c0000291d0000213d0000002302100039000000000032004b000000000500001900001399050080410000139902200197000000000002004b00000000060000190000139906004041000013990020009c000000000605c019000000000006004b0000291d0000c13d0000000402100039000000000224034f000000000202043b0000130e0020009c000000670000213d00000005052002100000003f06500039000013a606600197000000400700043d0000000006670019000800000007001d000000000076004b000000000700003900000001070040390000130e0060009c000000670000213d0000000100700190000000670000c13d000000400060043f0000000806000029000000000026043500000024011000390000000005150019000000000035004b0000291d0000213d000000000002004b000003760000613d0000000802000029000000000614034f000000000606043b000000200220003900000000006204350000002001100039000000000051004b0000036f0000413d0000008401400370000000000201043b0000130e0020009c0000291d0000213d0000002301200039000000000031004b000000000500001900001399050080410000139901100197000000000001004b00000000060000190000139906004041000013990010009c000000000605c019000000000006004b0000291d0000c13d0000000405200039000000000154034f000000000101043b0000130e0010009c000000670000213d0000001f06100039000013e7066001970000003f06600039000013e706600197000000400700043d0000000006670019000700000007001d000000000076004b000000000700003900000001070040390000130e0060009c000000670000213d0000000100700190000000670000c13d0000002402200039000000400060043f00000007060000290000000006160436000600000006001d0000000002210019000000000032004b0000291d0000213d0000002002500039000000000324034f000013e7041001980000001f0510018f0000000602400029000003ad0000613d000000000603034f0000000607000029000000006806043c0000000007870436000000000027004b000003a90000c13d000000000005004b000003ba0000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000032043500000006011000290000000000010435000000400100043d000500000001001d0000000101000039000000000201041a000000ff00200190000022860000c13d00001378010000410000000503000029000000000013043500000000010004140000000802200270000012ff02200197000000040020008c0000236a0000c13d0000000103000031000000200030008c00000020040000390000000004034019000023940000013d0000133d0020009c000006770000613d0000133e0020009c0000291d0000c13d000000440030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000002401400370000000000101043b000900000001001d0000000401400370000000000101043b000a00000001001d0000000101000039000000000201041a0000139301000041000000800010043f0000139401000041000000840010043f00000000010004140000000802200270000012ff02200197000000040020008c00000a7f0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000aa40000013d000013380020009c000006a00000613d000013390020009c0000291d0000c13d0000000001000416000000000001004b0000291d0000c13d0000000b01000039000000000101041a000004600000013d000013430020009c000004b40000613d000013440020009c0000291d0000c13d0000000001000416000000000001004b0000291d0000c13d4beb315c0000040f000012ff01100197000008950000013d000013310020009c000005b10000613d000013320020009c0000291d0000c13d000000440030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000002401400370000000000201043b0000130e0020009c0000291d0000213d0000002301200039000000000031004b0000291d0000813d0000000405200039000000000154034f000000000101043b0000130e0010009c000000670000213d0000001f06100039000013e7066001970000003f06600039000013e706600197000013770060009c000000670000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b0000291d0000213d0000002002500039000000000324034f000013e7041001980000001f0510018f000000a002400039000004300000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b0000042c0000c13d000000000005004b0000043d0000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000101000039000000000201041a000000400500043d0000139e01000041000000000015043500000004015000390000139f0300004100000000003104350000000001000411000012ff031001970000002401500039000900000003001d000000000031043500000000010004140000000802200270000012ff02200197000000040020008c0000172e0000c13d0000000103000031000000200030008c000000200400003900000000040340190000175b0000013d000013260020009c000007380000613d000013270020009c0000291d0000c13d0000000001000416000000000001004b0000291d0000c13d0000000101000039000000000101041a0000000801100270000012ff01100197000000800010043f000013920100004100004bec0001042e0000132c0020009c000007470000613d0000132d0020009c0000291d0000c13d000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000101043b000a00000001001d000012ff0010009c0000291d0000213d0000000101000039000000000201041a0000139e01000041000000800010043f0000139f01000041000000840010043f0000000001000411000012ff03100197000000a40030043f00000000010004140000000802200270000012ff02200197000000040020008c000900000003001d000010fb0000c13d0000000103000031000000200030008c00000020040000390000000004034019000011200000013d000013210020009c000007580000613d000013220020009c0000291d0000c13d0000000001000416000000000001004b0000291d0000c13d00000000010300194beb2a280000040f000a00000001001d000900000002001d000800000003001d00000000010004114beb33a00000040f4beb34270000040f0000000a01000029000000090200002900000008030000294beb449e0000040f000000000100001900004bec0001042e000013680020009c000008790000613d000013690020009c0000291d0000c13d0000000001000416000000000001004b0000291d0000c13d00000000010300194beb2a280000040f000a00000001001d000900000002001d000800000003001d00000000010004114beb32920000040f4beb34270000040f0000000a01000029000000090200002900000008030000294beb34b20000040f000000000100001900004bec0001042e000013530020009c0000088e0000613d000013540020009c0000291d0000c13d0000000001000416000000000001004b0000291d0000c13d0000000201000039000000000101041a000000800010043f000013920100004100004bec0001042e000013630020009c0000089c0000613d000013640020009c0000291d0000c13d000000840030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000101043b000a00000001001d000012ff0010009c0000291d0000213d0000002401400370000000000101043b0000130e0010009c0000291d0000213d0000002302100039000000000032004b0000291d0000813d0000000402100039000000000224034f000000000502043b0000130e0050009c000000670000213d00000005025002100000003f06200039000013a606600197000013770060009c000000670000213d0000008006600039000000400060043f000000800050043f00000024011000390000000002120019000000000032004b0000291d0000213d000000000005004b000004ec0000613d0000008005000039000000000614034f000000000606043b000000200550003900000000006504350000002001100039000000000021004b000004e50000413d0000004401400370000000000101043b0000130e0010009c0000291d0000213d0000002302100039000000000032004b000000000500001900001399050080410000139902200197000000000002004b00000000060000190000139906004041000013990020009c000000000605c019000000000006004b0000291d0000c13d0000000402100039000000000224034f000000000202043b0000130e0020009c000000670000213d00000005052002100000003f06500039000013a606600197000000400700043d0000000006670019000900000007001d000000000076004b000000000700003900000001070040390000130e0060009c000000670000213d0000000100700190000000670000c13d000000400060043f0000000906000029000000000026043500000024011000390000000005150019000000000035004b0000291d0000213d000000000002004b0000051f0000613d0000000902000029000000000614034f000000000606043b000000200220003900000000006204350000002001100039000000000051004b000005180000413d0000006401400370000000000101043b0000130e0010009c0000291d0000213d000000040110003900000000020300194beb2a380000040f00000000010004114beb32920000040f4beb34270000040f00000080020000390000000a0100002900000009030000294beb3c8f0000040f000000000100001900004bec0001042e0000134e0020009c000008bb0000613d0000134f0020009c0000291d0000c13d000000240030008c0000291d0000413d0000000002000416000000000002004b0000291d0000c13d0000000102000039000000000202041a0000139303000041000000800030043f0000139403000041000000840030043f00000000030004140000000802200270000012ff02200197000000040020008c00000c890000c13d0000000103000031000000200030008c0000002004000039000000000403401900000cae0000013d0000136e0020009c000009020000613d0000136f0020009c0000291d0000c13d0000000001000416000000000001004b0000291d0000c13d000013dc01000041000000800010043f000000a00000043f000013dd0100004100004bec0001042e000013590020009c000009090000613d0000135a0020009c0000291d0000c13d000000440030008c0000291d0000413d0000000002000416000000000002004b0000291d0000c13d0000000402400370000000000202043b0000130e0020009c0000291d0000213d0000002305200039000000000035004b0000291d0000813d0000000405200039000000000554034f000000000605043b0000130e0060009c000000670000213d00000005056002100000003f07500039000013a607700197000013770070009c000000670000213d0000008007700039000000400070043f000000800060043f00000024022000390000000005250019000000000035004b0000291d0000213d000000000006004b000005800000613d000000a006000039000000000724034f000000000707043b000012ff0070009c0000291d0000213d00000000067604360000002002200039000000000052004b000005780000413d0000002402400370000000000202043b0000130e0020009c0000291d0000213d0000002305200039000000000035004b000000000600001900001399060040410000139905500197000000000005004b00000000070000190000139907002041000013990050009c000000000706c019000000000007004b0000291d0000613d0000000405200039000000000554034f000000000505043b0000130e0050009c000000670000213d00000005065002100000003f07600039000013a607700197000000400800043d0000000007780019000700000008001d000000000087004b000000000800003900000001080040390000130e0070009c000000670000213d0000000100800190000000670000c13d000000400070043f00000007070000290000000007570436000600000007001d00000024022000390000000006260019000000000036004b0000291d0000213d000000000005004b00001dc10000c13d000000800200043d000000000002004b000000000200001900001dd00000613d00001df50000013d000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000101043b4beb2b060000040f0000002002000039000000400300043d000a00000003001d00000000022304364beb29e40000040f0000000a020000290000000001210049000012fc0010009c000012fc010080410000006001100210000012fc0020009c000012fc020080410000004002200210000000000121019f00004bec0001042e0000002003200039000000400030043f00000000000204350000000102000039000000000020041b000000000001004b0000091f0000c13d000013a201000041000000000010043f000013790100004100004bed00010430000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000201043b0000130e0020009c0000291d0000213d0000002301200039000000000031004b0000291d0000813d0000000405200039000000000154034f000000000101043b0000130e0010009c000000670000213d0000001f06100039000013e7066001970000003f06600039000013e706600197000013770060009c000000670000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b0000291d0000213d0000002002500039000000000324034f000013e7041001980000001f0510018f000000a002400039000005fd0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000005f90000c13d000000000005004b0000060a0000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000101000039000000000201041a000000400500043d0000139e01000041000000000015043500000004015000390000139f0300004100000000003104350000000001000411000012ff031001970000002401500039000900000003001d000000000031043500000000010004140000000802200270000012ff02200197000000040020008c000017810000c13d0000000103000031000000200030008c00000020040000390000000004034019000017ae0000013d000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000101043b4beb30830000040f000008950000013d000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000101043b0000130e0010009c0000291d0000213d0000002302100039000000000032004b0000291d0000813d000900040010003d0000000902400360000000000202043b000a00000002001d0000130e0020009c0000291d0000213d0000000a01100029000800240010003d000000080030006b0000291d0000213d0000000101000039000000000201041a0000139e01000041000000800010043f0000139f01000041000000840010043f0000000001000411000012ff01100197000700000001001d000000a40010043f00000000010004140000000802200270000012ff02200197000000040020008c000015750000c13d0000000103000031000000200030008c000000200400003900000000040340190000159a0000013d000000440030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000101043b000a00000001001d000012ff0010009c0000291d0000213d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000900000002001d000000000012004b0000291d0000c13d00000000020004110000000a0020006c000012f50000c13d0000131701000041000000800010043f0000002001000039000000840010043f0000002901000039000000a40010043f000013aa01000041000000c40010043f000013ab01000041000000e40010043f000013ac0100004100004bed00010430000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000a00000002001d000000000012004b0000291d0000c13d4beb4b070000040f0000000701000039000000000201041a000013ae022001970000000a04000029000000000004004b0000000003000019000013af0300c041000000000232019f000000000021041b000000400100043d0000000000410435000012fc0010009c000012fc0100804100000040011002100000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f00001313011001c70000800d020000390000000103000039000013b0040000414beb4be10000040f00000001002001900000291d0000613d000008d00000013d000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000101043b000a00000001001d000012ff0010009c0000291d0000213d4beb4b070000040f0000130a0100004100000000001004430000000a0100002900000004001004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000029ac0000613d0000000a04000029000000000004004b0000126b0000613d000000000101043b000000000001004b0000126b0000c13d000013a701000041000000000010043f000013790100004100004bed00010430000000440030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000002401400370000000000101043b000900000001001d0000000401400370000000000101043b000a00000001001d0000000101000039000000000201041a0000139301000041000000800010043f0000139401000041000000840010043f00000000010004140000000802200270000012ff02200197000000040020008c00000d5f0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000d840000013d000000440030008c0000291d0000413d0000000002000416000000000002004b0000291d0000c13d0000002402400370000000000202043b000900000002001d0000000402400370000000000202043b000a00000002001d0000000102000039000000000202041a0000139303000041000000800030043f0000139403000041000000840030043f00000000030004140000000802200270000012ff02200197000000040020008c00000da30000c13d0000000103000031000000200030008c0000002004000039000000000403401900000dc80000013d000000240030008c0000291d0000413d0000000002000416000000000002004b0000291d0000c13d0000000402400370000000000202043b000a00000002001d0000000102000039000000000202041a0000139303000041000000800030043f0000139403000041000000840030043f00000000030004140000000802200270000012ff02200197000000040020008c00000e460000c13d0000000103000031000000200030008c0000002004000039000000000403401900000e6b0000013d000000440030008c0000291d0000413d0000000002000416000000000002004b0000291d0000c13d0000002402400370000000000202043b000900000002001d0000000402400370000000000202043b000a00000002001d0000000102000039000000000202041a0000139303000041000000800030043f0000139403000041000000840030043f00000000030004140000000802200270000012ff02200197000000040020008c00000ea20000c13d0000000103000031000000200030008c0000002004000039000000000403401900000ec70000013d000000440030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000101043b000012ff0010009c0000291d0000213d0000002402400370000000000202043b4beb326a0000040f000008950000013d000000440030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000101043b000012ff0010009c0000291d0000213d0000002402400370000000000202043b000012ff0020009c0000291d0000213d4beb32350000040f000008920000013d0000000001000416000000000001004b0000291d0000c13d00000000010300194beb2a8e0000040f000a00000001001d000900000002001d000800000003001d00000000010004114beb32920000040f4beb34270000040f0000000a01000029000000090200002900000008030000294beb3c8f0000040f000000000100001900004bec0001042e000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000101043b000a00000001001d000012ff0010009c0000291d0000213d4beb4b070000040f0000000a06000029000000000006004b000011bd0000c13d000000400100043d00000064021000390000137503000041000000000032043500000044021000390000137603000041000000000032043500000024021000390000002603000039000000000032043500001317020000410000000000210435000000040210003900000020030000390000000000320435000012fc0010009c000012fc0100804100000040011002100000131b011001c700004bed00010430000000440030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000002401400370000000000101043b000900000001001d0000000401400370000000000101043b000a00000001001d0000000101000039000000000201041a0000139301000041000000800010043f0000139401000041000000840010043f00000000010004140000000802200270000012ff02200197000000040020008c00000f490000c13d0000000103000031000000200030008c0000002004000039000000000403401900000f6e0000013d000000240030008c0000291d0000413d0000000002000416000000000002004b0000291d0000c13d0000000102000039000000000202041a0000139303000041000000800030043f0000139403000041000000840030043f00000000030004140000000802200270000012ff02200197000000040020008c00000f920000c13d0000000103000031000000200030008c0000002004000039000000000403401900000fb70000013d000000440030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000101043b000012ff0010009c0000291d0000213d0000002402400370000000000202043b4beb326a0000040f4beb2faa0000040f000008950000013d000000440030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000002401400370000000000101043b000a00000001001d0000000401400370000000000101043b000000000010043f0000000a01000039000000200010043f0000000001000414000012fc0010009c000012fc01008041000000c00110021000001308011001c700008010020000394beb4be60000040f00000001002001900000291d0000613d000000400300043d000013120030009c000000670000213d000000000101043b0000004002300039000000400020043f000000000101041a0000002004300039000000a0021002700000000000240435000012ff011001980000000000130435000007e70000c13d000000400300043d000013120030009c000000670000213d0000004001300039000000400010043f0000000901000039000000000101041a0000002004300039000000a0021002700000000000240435000012ff0110019700000000001304350000000a0400002900000000034200a9000000000004004b000007ee0000613d00000000044300d9000000000042004b0000169d0000c13d000027100230011a000000400300043d000000200430003900000000002404350000000000130435000012fc0030009c000012fc030080410000004001300210000013d4011001c700004bec0001042e0000000001000416000000000001004b0000291d0000c13d0000000c03000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000009330000c13d000000800010043f000000000004004b0000120b0000613d000000000030043f000000000001004b000013280000c13d0000008002000039000013310000013d000000640030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000002401400370000000000101043b000a00000001001d0000000401400370000000000101043b000900000001001d0000004401400370000000000201043b0000130e0020009c0000291d0000213d0000002301200039000000000031004b0000291d0000813d0000000405200039000000000154034f000000000101043b0000130e0010009c000000670000213d0000001f06100039000013e7066001970000003f06600039000013e706600197000013770060009c000000670000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b0000291d0000213d0000002002500039000000000324034f000013e7041001980000001f0510018f000000a0024000390000083e0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b0000083a0000c13d000000000005004b0000084b0000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000101000039000000000201041a000000400500043d0000139e01000041000000000015043500000004015000390000139f0300004100000000003104350000000001000411000012ff031001970000002401500039000700000003001d000000000031043500000000010004140000000802200270000012ff02200197000000040020008c000018260000c13d0000000103000031000000200030008c00000020040000390000000004034019000018530000013d000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000101043b000012ff0010009c000009060000a13d0000291d0000013d0000000001000416000000000001004b0000291d0000c13d0000000701000039000000000101041a0000137b001001980000000001000039000000010100c039000000800010043f000013920100004100004bec0001042e000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000101000039000000000201041a0000139301000041000000800010043f0000139401000041000000840010043f00000000010004140000000802200270000012ff02200197000000040020008c0000103d0000c13d0000000103000031000000200030008c00000020040000390000000004034019000010620000013d0000000001000416000000000001004b0000291d0000c13d4beb2f320000040f000000000001004b0000000001000039000000010100c039000000400200043d0000000000120435000012fc0020009c000012fc02008041000000400120021000001391011001c700004bec0001042e000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000a00000002001d000000000012004b0000291d0000c13d0000000101000039000000000201041a0000139e01000041000000800010043f000013d501000041000000840010043f0000000001000411000000a40010043f00000000010004140000000802200270000012ff02200197000000040020008c000012110000c13d0000000103000031000000200030008c00000020040000390000000004034019000012360000013d0000000001000416000000000001004b0000291d0000c13d4beb4b070000040f0000000801000039000000000201041a0000130f03200197000000000031041b0000000001000414000012ff05200197000012fc0010009c000012fc01008041000000c00110021000001310011001c70000800d020000390000000303000039000013110400004100000000060000194beb4be10000040f00000001002001900000291d0000613d000000000100001900004bec0001042e000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000201043b0000138d002001980000291d0000c13d0000000101000039000013de0020009c000012640000a13d000013df0020009c000012d60000213d000013e20020009c000009060000613d000013e30020009c000000000100c019000000800010043f000013920100004100004bec0001042e000000440030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000002401400370000000000501043b0000000401400370000000000301043b0000000101000039000000000201041a0000139301000041000000800010043f0000139401000041000000840010043f00000000010004140000000802200270000012ff02200197000000040020008c000a00000003001d000900000005001d000010820000c13d0000000103000031000000200030008c00000020040000390000000004034019000010a70000013d0000000001000416000000000001004b0000291d0000c13d4beb2afc0000040f000000800010043f000013920100004100004bec0001042e000000240030008c0000291d0000413d0000000001000416000000000001004b0000291d0000c13d0000000401400370000000000101043b4beb2d120000040f0000000032010434000000400400043d0000000002240436000000000303043300000000003204350000004001100039000000000101043300000040024000390000000000120435000012fc0040009c000012fc040080410000004001400210000013ca011001c700004bec0001042e000000000302041a000013020330019700000008011002100000130301100197000000000131019f00000001011001bf000000000012041b00001304010000410000000202000039000000000012041b0000000601000039000000000201041a000000010320019000000001022002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000043004b000009390000613d000013cf01000041000000000010043f0000002201000039000000040010043f0000139c0100004100004bed00010430000000200020008c000009440000413d000000000010043f00001305030000410000001f022000390000000502200270000013060220009a000000000003041b0000000103300039000000000023004b000009400000413d000000000001041b000000400100043d0000002002100039000013070300004100000000003204350000000000010435000012fc0010009c000012fc0100804100000040011002100000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f00001308011001c70000800d02000039000000010300003900001309040000414beb4be10000040f00000001002001900000291d0000613d0000130a010000410000000000100443000013070100004100000004001004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000029ac0000613d000000000101043b000000000001004b000013460000c13d0000000801000039000000000201041a0000130f032001970000000006000411000000000363019f000000000031041b000000400100043d000800000001001d0000000001000414000012ff05200197000012fc0010009c000012fc01008041000000c00110021000001310011001c70000800d02000039000000030300003900001311040000414beb4be10000040f00000001002001900000291d0000613d00000009010000290000130002100197000027110020008c000016d10000413d000000080300002900000064013000390000131902000041000000000021043500000044013000390000131a02000041000000000021043500000024013000390000002a02000039000000000021043500001317010000410000000000130435000000040130003900000020020000390000000000210435000012fc0030009c000012fc0300804100000040013002100000131b011001c700004bed00010430000012fc0030009c000012fc03008041000000c00130021000001395011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009a90000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009a50000c13d000000000006004b000009b60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010cb0000613d0000001f02400039000000600420018f00000080024001bf000a00000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000012ff0020009c0000291d0000213d0000000205000039000000000505041a00001396060000410000000a0a00002900000000006a043500000084064001bf0000000000560435000000c40540003900001397060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c000009e10000613d0000004001a00210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c74beb4be60000040f0000006003100270000112fc0030019d000012fc0330019700030000000103550000000100200190000015ad0000613d0000000a0a000029000013e7053001980000001f0630018f00000000045a0019000009eb0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000009e70000c13d000000000006004b000009f80000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000013e7041001970000000001a40019000000000041004b000000000400003900000001040040390000130e0010009c000000670000213d0000000100400190000000670000c13d000000400010043f000013980030009c0000291d0000213d000000200030008c0000291d0000413d0000000a0400002900000000040404330000130e0040009c0000291d0000213d0000000a063000290000000a034000290000001f04300039000000000064004b0000000005000019000013990500804100001399044001970000139907600197000000000874013f000000000074004b00000000040000190000139904004041000013990080009c000000000405c019000000000004004b0000291d0000c13d00000000430304340000130e0030009c000000670000213d0000001f05300039000013e7055001970000003f05500039000013e70550019700000000051500190000130e0050009c000000670000213d000000400050043f00000000053104360000000007430019000000000067004b0000291d0000213d000013e7063001970000001f0230018f000000000054004b00001e920000813d000000000006004b000010390000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000a340000c13d000010390000013d000012fc0010009c000012fc01008041000000c00110021000001395011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000a4f0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000a4b0000c13d000000000006004b00000a5c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010d70000613d0000001f01400039000000600110018f00000080021001bf000a00000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000012ff0020009c0000291d0000213d0000000203000039000000000303041a000013a8040000410000000a05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000013770000c13d0000000001150019000000400010043f0000000a0200002900000f8b0000013d000012fc0010009c000012fc01008041000000c00110021000001395011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000a930000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000a8f0000c13d000000000006004b00000aa00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010e30000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000012ff0020009c0000291d0000213d0000000203000039000000000303041a000013ad040000410000000805000029000000000045043500000084041001bf0000000000340435000000c40310003900000009040000290000000000430435000000a4031000390000000a0400002900000000004304350000000003000414000000040020008c00000f880000613d000012fc0030009c000012fc03008041000000c0013002100000004003500210000000000131019f00001318011001c74beb4be60000040f000000080b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000ad50000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000ad10000c13d000000000006004b00000ae20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000015100000c13d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000aed0000c13d000020d20000013d000012fc0010009c000012fc01008041000000c00110021000001395011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000b060000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000b020000c13d000000000006004b00000b130000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010ef0000613d0000001f01400039000000600110018f00000080021001bf000a00000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000012ff0020009c0000291d0000213d0000000203000039000000000303041a000013b6040000410000000a05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000013a60000c13d0000000001150019000000400010043f0000000a020000290000000002020433000012ff0020009c0000291d0000213d000010c70000013d000012fc0010009c000012fc01008041000000c00110021000001395011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000b4d0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000b490000c13d000000000006004b00000b5a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011390000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000012ff0020009c0000291d0000213d0000000203000039000000000303041a0000139a040000410000000805000029000000000045043500000084041001bf0000000000340435000000c40310003900000009040000290000000000430435000000a4031000390000000a0400002900000000004304350000000003000414000000040020008c00000f880000613d000012fc0030009c000012fc03008041000000c0013002100000004003500210000000000131019f00001318011001c74beb4be60000040f000000080b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000b8f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000b8b0000c13d000000000006004b00000b9c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000015b90000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000f8a0000813d0000291d0000013d000012fc0010009c000012fc01008041000000c001100210000013a0011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000bbb0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000bb70000c13d000000000006004b00000bc80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011450000613d0000001f01400039000000600110018f00000080021001bf000a00000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b0000291d0000c13d000000000002004b000013d90000c13d000013a301000041000000000010043f0000000001000411000000040010043f000013b801000041000000240010043f0000130d0100004100004bed00010430000012fc0030009c000012fc03008041000000c00130021000001395011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000bf70000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000bf30000c13d000000000006004b00000c040000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011510000613d0000001f02400039000000600420018f00000080024001bf000a00000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000012ff0020009c0000291d0000213d0000000205000039000000000505041a00001396060000410000000a0a00002900000000006a043500000084064001bf0000000000560435000000c4054000390000139b060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c00000c2f0000613d0000004001a00210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c74beb4be60000040f0000006003100270000112fc0030019d000012fc0330019700030000000103550000000100200190000015dd0000613d0000000a0a000029000013e7053001980000001f0630018f00000000045a001900000c390000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000c350000c13d000000000006004b00000c460000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000013e7041001970000000001a40019000000000041004b000000000400003900000001040040390000130e0010009c000000670000213d0000000100400190000000670000c13d000000400010043f000013980030009c0000291d0000213d000000200030008c0000291d0000413d0000000a0400002900000000040404330000130e0040009c0000291d0000213d0000000a063000290000000a034000290000001f04300039000000000064004b0000000005000019000013990500804100001399044001970000139907600197000000000874013f000000000074004b00000000040000190000139904004041000013990080009c000000000405c019000000000004004b0000291d0000c13d00000000430304340000130e0030009c000000670000213d0000001f05300039000013e7055001970000003f05500039000013e70550019700000000051500190000130e0050009c000000670000213d000000400050043f00000000053104360000000007430019000000000067004b0000291d0000213d000013e7063001970000001f0230018f000000000054004b00001e9c0000813d000000000006004b000010390000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000c820000c13d000010390000013d000012fc0030009c000012fc03008041000000c00130021000001395011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000c9d0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000c990000c13d000000000006004b00000caa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011990000613d0000001f02400039000000600420018f00000080024001bf000a00000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000012ff0020009c0000291d0000213d0000000205000039000000000505041a000013a5060000410000000a0a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c00000cd70000613d0000004001a00210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c74beb4be60000040f0000006003100270000112fc0030019d000012fc0330019700030000000103550000000100200190000015ed0000613d0000000a0a000029000013e7053001980000001f0630018f00000000045a001900000ce10000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000cdd0000c13d000000000006004b00000cee0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000013e7021001970000000001a20019000000000021004b000000000200003900000001020040390000130e0010009c000000670000213d0000000100200190000000670000c13d000000400010043f000013980030009c0000291d0000213d000000200030008c0000291d0000413d0000000a0200002900000000020204330000130e0020009c0000291d0000213d0000000a033000290000000a022000290000001f04200039000000000034004b0000000005000019000013990500804100001399044001970000139906300197000000000764013f000000000064004b00000000040000190000139904004041000013990070009c000000000405c019000000000004004b0000291d0000c13d00000000250204340000130e0050009c000000670000213d00000005045002100000003f06400039000013a60660019700000000061600190000130e0060009c000000670000213d000000400060043f00000000005104350000000004240019000000000034004b0000291d0000213d000000000005004b00000e400000613d0000000003010019000000200330003900000000250204340000000000530435000000000042004b00000d220000413d00000e400000013d000012fc0010009c000012fc01008041000000c001100210000013a0011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000d3c0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000d380000c13d000000000006004b00000d490000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011a50000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c0000291d0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000291d0000c13d000000000001004b0000147d0000c13d000013a301000041000000000010043f0000000801000029000011940000013d000012fc0010009c000012fc01008041000000c00110021000001395011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000d730000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000d6f0000c13d000000000006004b00000d800000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011b10000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000012ff0020009c0000291d0000213d0000000203000039000000000303041a000013b7040000410000000805000029000000000045043500000084041001bf0000000000340435000000c40310003900000009040000290000000000430435000000a4031000390000000a0400002900000000004304350000000003000414000000040020008c000014890000c13d0000000001150019000000400010043f00000008020000290000000002020433000010c70000013d000012fc0030009c000012fc03008041000000c00130021000001395011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000db70000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000db30000c13d000000000006004b00000dc40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011cf0000613d0000001f02400039000000600420018f00000080024001bf000800000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000012ff0020009c0000291d0000213d0000000205000039000000000505041a000013a506000041000000080a00002900000000006a043500000084064001bf0000000000560435000000c40540003900000009060000290000000000650435000000a4044000390000000a0500002900000000005404350000000004000414000000040020008c00000df00000613d0000004001a00210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c74beb4be60000040f0000006003100270000112fc0030019d000012fc0330019700030000000103550000000100200190000016610000613d000000080a000029000013e7053001980000001f0630018f00000000045a001900000dfa0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000df60000c13d000000000006004b00000e070000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000013e7021001970000000001a20019000000000021004b000000000200003900000001020040390000130e0010009c000000670000213d0000000100200190000000670000c13d000000400010043f000013980030009c0000291d0000213d000000200030008c0000291d0000413d000000080200002900000000020204330000130e0020009c0000291d0000213d000000080330002900000008022000290000001f04200039000000000034004b0000000005000019000013990500804100001399044001970000139906300197000000000764013f000000000064004b00000000040000190000139904004041000013990070009c000000000405c019000000000004004b0000291d0000c13d00000000250204340000130e0050009c000000670000213d00000005045002100000003f06400039000013a60660019700000000061600190000130e0060009c000000670000213d000000400060043f00000000005104350000000004240019000000000034004b0000291d0000213d000000000005004b00000e400000613d0000000003010019000000200330003900000000250204340000000000530435000000000042004b00000e3b0000413d000000400300043d000a00000003001d000000200200003900000000022304364beb2a810000040f000005be0000013d000012fc0030009c000012fc03008041000000c00130021000001395011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000e5a0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000e560000c13d000000000006004b00000e670000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011db0000613d0000001f02400039000000600420018f00000080024001bf000900000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000012ff0020009c0000291d0000213d0000000205000039000000000505041a0000139a060000410000000907000029000000000067043500000084064001bf0000000000560435000000c4054000390000139b060000410000000000650435000000a4054000390000000a0600002900000000006504350000000005000414000000040020008c000014b80000c13d0000000002470019000800000002001d000000400020043f00000009020000290000000005020433000000000005004b0000000002000039000000010200c039000000000025004b0000291d0000c13d0000000102000039000000000202041a00001393060000410000000807000029000000000067043500000004067001bf000013940700004100000000007604350000000802200270000012ff02200197000000000005004b0000187c0000c13d0000000005000414000000040020008c0000192f0000c13d0000000802400029000900000002001d000000400020043f0000195f0000013d000012fc0030009c000012fc03008041000000c00130021000001395011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000eb60000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000eb20000c13d000000000006004b00000ec30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011e70000613d0000001f02400039000000600420018f00000080024001bf000800000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000012ff0020009c0000291d0000213d0000000205000039000000000505041a0000139606000041000000080a00002900000000006a043500000084064001bf0000000000560435000000c40540003900000009060000290000000000650435000000a4044000390000000a0500002900000000005404350000000004000414000000040020008c00000eef0000613d0000004001a00210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c74beb4be60000040f0000006003100270000112fc0030019d000012fc03300197000300000001035500000001002001900000166d0000613d000000080a000029000013e7053001980000001f0630018f00000000045a001900000ef90000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000ef50000c13d000000000006004b00000f060000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000013e7041001970000000001a40019000000000041004b000000000400003900000001040040390000130e0010009c000000670000213d0000000100400190000000670000c13d000000400010043f000013980030009c0000291d0000213d000000200030008c0000291d0000413d000000080400002900000000040404330000130e0040009c0000291d0000213d000000080630002900000008034000290000001f04300039000000000064004b0000000005000019000013990500804100001399044001970000139907600197000000000874013f000000000074004b00000000040000190000139904004041000013990080009c000000000405c019000000000004004b0000291d0000c13d00000000430304340000130e0030009c000000670000213d0000001f05300039000013e7055001970000003f05500039000013e70550019700000000051500190000130e0050009c000000670000213d000000400050043f00000000053104360000000007430019000000000067004b0000291d0000213d000013e7063001970000001f0230018f000000000054004b00001ea60000813d000000000006004b000010390000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000f420000c13d000010390000013d000012fc0010009c000012fc01008041000000c00110021000001395011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000f5d0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000f590000c13d000000000006004b00000f6a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011f30000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000012ff0020009c0000291d0000213d0000000203000039000000000303041a000013a8040000410000000805000029000000000045043500000084041001bf0000000000340435000000c40310003900000009040000290000000000430435000000a4031000390000000a0400002900000000004304350000000003000414000000040020008c000014e80000c13d0000000001150019000000400010043f00000008020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000010c70000613d0000291d0000013d000012fc0030009c000012fc03008041000000c00130021000001395011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000fa60000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000fa20000c13d000000000006004b00000fb30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011ff0000613d0000001f02400039000000600420018f00000080024001bf000a00000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000012ff0020009c0000291d0000213d0000000205000039000000000505041a00001396060000410000000a0a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c00000fe00000613d0000004001a00210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c74beb4be60000040f0000006003100270000112fc0030019d000012fc0330019700030000000103550000000100200190000016790000613d0000000a0a000029000013e7053001980000001f0630018f00000000045a001900000fea0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000fe60000c13d000000000006004b00000ff70000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000013e7041001970000000001a40019000000000041004b000000000400003900000001040040390000130e0010009c000000670000213d0000000100400190000000670000c13d000000400010043f000013980030009c0000291d0000213d000000200030008c0000291d0000413d0000000a0400002900000000040404330000130e0040009c0000291d0000213d0000000a063000290000000a034000290000001f04300039000000000064004b0000000005000019000013990500804100001399044001970000139907600197000000000874013f000000000074004b00000000040000190000139904004041000013990080009c000000000405c019000000000004004b0000291d0000c13d00000000430304340000130e0030009c000000670000213d0000001f05300039000013e7055001970000003f05500039000013e70550019700000000051500190000130e0050009c000000670000213d000000400050043f00000000053104360000000007430019000000000067004b0000291d0000213d000013e7063001970000001f0230018f000000000054004b00001eb00000813d000000000006004b000010390000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000010330000c13d000000000002004b00001ec60000613d000000000705001900001ebc0000013d000012fc0010009c000012fc01008041000000c00110021000001395011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000010510000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000104d0000c13d000000000006004b0000105e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000124c0000613d0000001f01400039000000600110018f00000080021001bf000a00000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000012ff0020009c0000291d0000213d0000000203000039000000000303041a000013b7040000410000000a05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000015170000c13d0000000001150019000000400010043f0000000a020000290000000002020433000010c70000013d000012fc0010009c000012fc01008041000000c00110021000001395011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000010960000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000010920000c13d000000000006004b000010a30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012580000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000012ff0020009c0000291d0000213d0000000203000039000000000303041a000013b6040000410000000805000029000000000045043500000084041001bf0000000000340435000000c40310003900000009040000290000000000430435000000a4031000390000000a0400002900000000004304350000000003000414000000040020008c000015460000c13d0000000001150019000000400010043f00000008020000290000000002020433000012ff0020009c0000291d0000213d0000000000210435000000400110021000001391011001c700004bec0001042e0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010d20000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010de0000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010ea0000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010f60000c13d000020d20000013d000012fc0010009c000012fc01008041000000c001100210000013a0011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000110f0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000110b0000c13d000000000006004b0000111c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012dd0000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c0000291d0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000291d0000c13d000000000001004b000011910000613d0000000a03000029000000080130021000001303011001970000000104000039000000000204041a000013a102200197000000000112019f000000000014041b000000000003004b000005cf0000613d000008d00000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011400000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000114c0000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011580000c13d000020d20000013d000012fc0010009c000012fc01008041000000c001100210000013a0011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000011710000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000116d0000c13d000000000006004b0000117e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012e90000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b0000291d0000c13d000000000002004b000015f90000c13d000013a301000041000000000010043f0000000901000029000000040010043f0000139f01000041000000240010043f0000130d0100004100004bed000104300000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011a00000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011ac0000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011b80000c13d000020d20000013d0000000801000039000000000201041a0000130f03200197000000000363019f000000000031041b0000000001000414000012ff05200197000012fc0010009c000012fc01008041000000c00110021000001310011001c70000800d02000039000000030300003900001311040000414beb4be10000040f0000000100200190000008d00000c13d0000291d0000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011d60000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011e20000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011ee0000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011fa0000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012060000c13d000020d20000013d000013e802200197000000a00020043f000000000001004b000000a0020000390000008002006039000013310000013d000012fc0010009c000012fc01008041000000c001100210000013a0011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000012250000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000012210000c13d000000000006004b000012320000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000133a0000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c0000291d0000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b0000291d0000c13d000000000003004b000016a30000c13d000013a301000041000000000010043f0000000001000411000000040010043f000013d501000041000000240010043f0000130d0100004100004bed000104300000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012530000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000125f0000c13d000020d20000013d000013e40020009c000009060000613d000013e50020009c000009060000613d000013e60020009c000009060000613d000012da0000013d0000000701000039000000000201041a0000000801200270000012ff01100198000012730000c13d000000ff0020019000000000010000190000130701006041000000400200043d000000200320003900000000004304350000000000120435000012fc0020009c000012fc0200804100000040012002100000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f00001308011001c70000800d02000039000000010300003900001309040000414beb4be10000040f00000001002001900000291d0000613d0000000704000039000000000104041a00001302011001970000000a0300002900000008023002100000130302200197000000000112019f00000001011001bf000000000014041b000000000003004b000008d00000613d0000130a0100004100000000001004430000000a0100002900000004001004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000029ac0000613d000000000101043b000000000001004b000008d00000613d0000130a0100004100000000001004430000000a0100002900000004001004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000029ac0000613d000000000101043b000000000001004b0000291d0000613d000000400300043d0000002401300039000004830200003900000000002104350000130c010000410000000000130435000900000003001d00000004013000390000000002000410000000000021043500000000010004140000000a02000029000000040020008c000012cf0000613d0000000902000029000012fc0020009c000012fc020080410000004002200210000012fc0010009c000012fc01008041000000c001100210000000000121019f0000130d011001c70000000a020000294beb4be10000040f0000006003100270000112fc0030019d00030000000103550000000100200190000008d00000613d00000009010000290000130e0010009c000000670000213d0000000901000029000000400010043f000000000100001900004bec0001042e000013e00020009c000009060000613d000013e10020009c000009060000613d000000800000043f000013920100004100004bec0001042e0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012e40000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012f00000c13d000020d20000013d000000000020043f0000000501000039000000200010043f0000000001000414000012fc0010009c000012fc01008041000000c00110021000001308011001c700008010020000394beb4be60000040f00000001002001900000291d0000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000012fc0010009c000012fc01008041000000c00110021000001308011001c700008010020000394beb4be60000040f00000001002001900000291d0000613d000000000101043b000000000201041a000013e8022001970000000903000029000000000232019f000000000021041b000000400100043d0000000000310435000012fc0010009c000012fc0100804100000040011002100000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f00001313011001c70000800d020000390000000303000039000013a90400004100000000050004110000000a060000294beb4be10000040f00000001002001900000291d0000613d000008d00000013d000013da030000410000000004000019000000000503041a000000a002400039000000000052043500000001033000390000002004400039000000000014004b0000132a0000413d000000600220008a00000080010000394beb2a160000040f0000002001000039000000400200043d000a00000002001d00000000021204360000008001000039000005bd0000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013410000c13d000020d20000013d0000130a010000410000000000100443000013070100004100000004001004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000029ac0000613d000000000101043b000000000001004b0000291d0000613d000000400300043d0000002401300039000004830200003900000000002104350000130c010000410000000000130435000000040130003900000000020004100000000000210435000012fc0030009c000800000003001d000012fc01000041000000000103401900000040011002100000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f0000130d011001c700001307020000414beb4be10000040f0000006003100270000112fc0030019d00030000000103550000000100200190000009690000613d00000008010000290000130e0010009c000000670000213d0000000801000029000000400010043f000009690000013d000012fc0030009c000012fc03008041000000c0013002100000004003500210000000000131019f00001318011001c74beb4be60000040f0000000a0b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000138e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000138a0000c13d000000000006004b0000139b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000015c50000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000a7d0000813d0000291d0000013d000012fc0030009c000012fc03008041000000c0013002100000004003500210000000000131019f00001318011001c74beb4be60000040f0000000a0b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000013bd0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000013b90000c13d000000000006004b000013ca0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000015d10000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000291d0000413d0000000a020000290000000002020433000012ff0020009c0000291d0000213d000010c70000013d000000c002100039000000400020043f00000011020000390000000a040000290000000000240435000000a004100039000013b90200004100000000002404350000000302000039000000000202041a000000ff00200190000015e90000c13d000900000004001d0000000102000039000000000202041a000000400b00043d000013930400004100000000004b04350000000404b000390000139405000041000000000054043500000000040004140000000802200270000012ff02200197000000040020008c000014210000613d000012fc00b0009c000012fc0100004100000000010b40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f0000139c011001c700080000000b001d4beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080b00002900000008057000290000140e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000140a0000c13d000000000006004b0000141b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001a8c0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b000000000100003900000001010040390000130e0020009c000000670000213d0000000100100190000000670000c13d000000400020043f000000200030008c0000291d0000413d00000000010b0433000800000001001d000012ff0010009c0000291d0000213d0000000201000039000000000101041a000700000001001d0000130a010000410000000000100443000000080100002900000004001004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000029ac0000613d000000000101043b000000000001004b0000291d0000613d000000400300043d0000006401300039000000000200041000000000002104350000004401300039000013bb020000410000000000210435000013bc0100004100000000001304350000000401300039000500000001001d00000007020000290000000000210435000600000003001d0000002401300039000000000001043500000000010004140000000802000029000000040020008c000014670000613d0000000602000029000012fc0020009c000012fc020080410000004002200210000012fc0010009c000012fc01008041000000c001100210000000000121019f0000131b011001c700000008020000294beb4be10000040f0000006003100270000112fc0030019d0003000000010355000000010020019000001edf0000613d00000006010000290000130e0010009c000000670000213d0000000603000029000000400030043f0000000101000039000000000201041a0000139301000041000000000013043500001394010000410000000503000029000000000013043500000000010004140000000802200270000012ff02200197000000040020008c00001fb60000c13d0000000103000031000000200030008c0000002004000039000000000403401900001fe00000013d0000000a010000294beb2d120000040f00000000010104330000000902000029000000000021004b000016510000a13d000013c503000041000000000030043f000000040010043f000000240020043f0000130d0100004100004bed00010430000012fc0030009c000012fc03008041000000c0013002100000004003500210000000000131019f00001318011001c74beb4be60000040f000000080b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000014a00000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000149c0000c13d000000000006004b000014ad0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000016550000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000da00000813d0000291d0000013d000012fc0050009c000012fc05008041000000c0015002100000004003700210000000000131019f00001318011001c74beb4be60000040f000000090b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000014cf0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000014cb0000c13d000000000006004b000014dc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000016850000613d0000001f02400039000000600420018f0000000002b40019000800000002001d000000400020043f000000200030008c00000e880000813d0000291d0000013d000012fc0030009c000012fc03008041000000c0013002100000004003500210000000000131019f00001318011001c74beb4be60000040f000000080b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000014ff0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000014fb0000c13d000000000006004b0000150c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000016910000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000f8a0000813d0000291d0000013d000012fc0030009c000012fc03008041000000c0013002100000004003500210000000000131019f00001318011001c74beb4be60000040f0000000a0b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000152e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000152a0000c13d000000000006004b0000153b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000016b90000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000107f0000813d0000291d0000013d000012fc0030009c000012fc03008041000000c0013002100000004003500210000000000131019f00001318011001c74beb4be60000040f000000080b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000155d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000015590000c13d000000000006004b0000156a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000016c50000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000010c30000813d0000291d0000013d000012fc0010009c000012fc01008041000000c001100210000013a0011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000015890000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000015850000c13d000000000006004b000015960000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000181a0000613d0000001f01400039000000600110018f00000080021001bf000600000002001d000000400020043f000000200030008c0000291d0000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b0000291d0000c13d000000000002004b00001a980000c13d000013a301000041000000000010043f0000000701000029000011940000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015b40000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015c00000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015cc0000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015d80000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015e40000c13d000020d20000013d000013ba01000041000000000010043f000013790100004100004bed000104300000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015f40000c13d000020d20000013d0000000102000039000000000202041a00001393040000410000000805000029000000000045043500000084011001bf0000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c000018830000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000001510019000000400010043f00000008010000290000000001010433000900000001001d000012ff0010009c0000291d0000213d0000000201000039000000000101041a000800000001001d0000130a010000410000000000100443000000090100002900000004001004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000029ac0000613d000000000101043b000000000001004b0000291d0000613d000000400400043d000013c301000041000000000014043500000004014000390000000802000029000000000021043500000004010000390000000201100367000000000101043b00000064024000390000000a0300002900000000003204350000004402400039000013c4030000410000000000320435000a00000004001d0000002402400039000000000012043500000000010004140000000902000029000000040020008c0000164a0000613d0000000a02000029000012fc0020009c000012fc020080410000004002200210000012fc0010009c000012fc01008041000000c001100210000000000121019f0000131b011001c700000009020000294beb4be10000040f0000006003100270000112fc0030019d0003000000010355000000010020019000001e490000613d0000000a010000290000130e0010009c000000670000213d0000000a01000029000000400010043f000000000100001900004bec0001042e0000000a010000294beb43dd0000040f000000000100001900004bec0001042e0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000165c0000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016680000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016740000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016800000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000168c0000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016980000c13d000020d20000013d000013cf01000041000000000010043f0000001101000039000000040010043f0000139c0100004100004bed000104300000000103000039000000000303041a000000ff0430018f0000000a0000006b000018b10000c13d000000000004004b000018c30000613d000013e8023001970000000103000039000000000023041b0000000002000411000000000021043500000040011002100000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f00001313011001c70000800d02000039000013d7040000410000069c0000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016c00000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016cc0000c13d000020d20000013d000000400100043d0000000a03000029000012ff05300198000018d10000c13d0000004402100039000013160300004100000000003204350000002402100039000000190300003900001aed0000013d000012fc0050009c000012fc0300004100000000030540190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000130d011001c7000a00000005001d4beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0b0000290000000a05700029000016f60000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000016f20000c13d000000000006004b000017030000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000018f30000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000a00000002001d0000130e0020009c000000670000213d0000000100100190000000670000c13d0000000a01000029000000400010043f000000200030008c0000291d0000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b0000291d0000c13d000000000001004b000011910000613d0000000101000039000000000201041a00001393010000410000000a04000029000000000014043500000004014000390000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c00001bac0000c13d000000200400003900001bd60000013d000012fc0050009c000012fc0300004100000000030540190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000130d011001c7000a00000005001d4beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0b0000290000000a05700029000017490000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000017450000c13d000000000006004b000017560000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000018ff0000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000a00000002001d0000130e0020009c000000670000213d0000000100100190000000670000c13d0000000a01000029000000400010043f000000200030008c0000291d0000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b0000291d0000c13d000000000001004b000011910000613d0000000101000039000000000201041a00001393010000410000000a04000029000000000014043500000004014000390000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c00001c1d0000c13d000000200400003900001c470000013d000012fc0050009c000012fc0300004100000000030540190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000130d011001c7000a00000005001d4beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0b0000290000000a057000290000179c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000017980000c13d000000000006004b000017a90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000190b0000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000a00000002001d0000130e0020009c000000670000213d0000000100100190000000670000c13d0000000a01000029000000400010043f000000200030008c0000291d0000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b0000291d0000c13d000000000001004b000011910000613d0000000101000039000000000201041a00001393010000410000000a04000029000000000014043500000004014000390000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c00001c910000c13d000000200400003900001cbb0000013d000012fc0050009c000012fc0300004100000000030540190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000130d011001c7000800000005001d4beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080b0000290000000805700029000017ef0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000017eb0000c13d000000000006004b000017fc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019170000613d00000000050b00190000001f01400039000000600210018f0000000001520019000000000021004b000000000200003900000001020040390000130e0010009c000000670000213d0000000100200190000000670000c13d000000400010043f000000200030008c0000291d0000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b0000291d0000c13d000000000001004b00001b610000c13d000013a301000041000000000010043f0000000a01000029000011940000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018210000c13d000020d20000013d000012fc0050009c000012fc0300004100000000030540190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000130d011001c7000800000005001d4beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080b0000290000000805700029000018410000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000183d0000c13d000000000006004b0000184e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019230000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000800000002001d0000130e0020009c000000670000213d0000000100100190000000670000c13d0000000801000029000000400010043f000000200030008c0000291d0000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b0000291d0000c13d000000000001004b000015a90000613d0000000101000039000000000201041a00000008050000290000002401500039000000070400002900000000004104350000139e01000041000000000015043500000004015000390000139f04000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c00001d020000c13d000000200400003900001d2c0000013d0000000005000414000000040020008c000019dd0000c13d0000000802400029000900000002001d000000400020043f00001a0d0000013d000012fc0010009c000012fc01008041000000c0011002100000004003500210000000000131019f0000139c011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000805700029000018990000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b000018950000c13d000000000006004b000018a60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001adb0000613d0000001f01400039000000600110018f0000000801100029000000400010043f000000200030008c0000160c0000813d0000291d0000013d000000000004004b000018c30000c13d000013e80230019700000001022001bf0000000103000039000000000023041b0000000002000411000000000021043500000040011002100000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f00001313011001c70000800d02000039000013d6040000410000069c0000013d0000131703000041000000000031043500000084032001bf00000020040000390000000000430435000000c403200039000013d8040000410000000000430435000000a40220003900000014030000390000000000320435000000400110021000001318011001c700004bed00010430000013120010009c000000670000213d0000004003100039000000400030043f0000002003100039000000000023043500000000005104350000000901000029000000a001100210000000000151019f0000000903000039000000000013041b000000400100043d0000000000210435000012fc0010009c000012fc0100804100000040011002100000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f00001313011001c70000800d02000039000000020300003900001314040000414beb4be10000040f00000001002001900000291d0000613d000000200100003900000100001004430000012000000443000013150100004100004bec0001042e0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018fa0000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019060000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019120000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000191e0000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000192a0000c13d000020d20000013d000012fc0050009c000012fc05008041000000c0015002100000000803000029000800000003001d0000004003300210000000000113019f0000139c011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000805700029000019470000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b000019430000c13d000000000006004b000019540000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001af80000613d0000001f02400039000000600220018f0000000802200029000900000002001d000000400020043f000000200030008c0000291d0000413d00000008020000290000000002020433000012ff0020009c0000291d0000213d0000000204000039000000000404041a000000090700002900000044057000390000139d0600004100000000006504350000139605000041000000000057043500000004057000390000000000450435000000240470003900000000000404350000000004000414000000040020008c000019800000613d00000009010000290000004001100210000012fc0040009c000012fc04008041000000c003400210000000000131019f00001318011001c74beb4be60000040f0000006003100270000112fc0030019d000012fc033001970003000000010355000000010020019000001b880000613d000013e7053001980000001f0630018f00000009045000290000198a0000613d000000000701034f0000000908000029000000007907043c0000000008980436000000000048004b000019860000c13d000000000006004b000019970000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000013e7041001970000000901400029000000000041004b000000000400003900000001040040390000130e0010009c000000670000213d0000000100400190000000670000c13d000000400010043f000013980030009c0000291d0000213d000000200030008c0000291d0000413d000000090400002900000000040404330000130e0040009c0000291d0000213d000000090630002900000009034000290000001f04300039000000000064004b0000000005000019000013990500804100001399044001970000139907600197000000000874013f000000000074004b00000000040000190000139904004041000013990080009c000000000405c019000000000004004b0000291d0000c13d00000000540304340000130e0040009c000000670000213d0000001f03400039000013e7033001970000003f03300039000013e70330019700000000031300190000130e0030009c000000670000213d000000400030043f00000000034104360000000007540019000000000067004b0000291d0000213d000013e7074001970000001f0640018f000000000035004b000022880000813d000000000007004b000019d90000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000019d30000c13d000000000006004b0000229e0000613d0000000008030019000022940000013d000012fc0050009c000012fc05008041000000c0015002100000000803000029000800000003001d0000004003300210000000000113019f0000139c011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000805700029000019f50000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b000019f10000c13d000000000006004b00001a020000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001b040000613d0000001f02400039000000600220018f0000000802200029000900000002001d000000400020043f000000200030008c0000291d0000413d00000008020000290000000002020433000012ff0020009c0000291d0000213d0000000204000039000000000404041a000000090700002900000044057000390000139b06000041000000000065043500000024057000390000000a06000029000000000065043500001396050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c00001a2f0000613d00000009010000290000004001100210000012fc0040009c000012fc04008041000000c003400210000000000131019f00001318011001c74beb4be60000040f0000006003100270000112fc0030019d000012fc033001970003000000010355000000010020019000001b940000613d000013e7053001980000001f0630018f000000090450002900001a390000613d000000000701034f0000000908000029000000007907043c0000000008980436000000000048004b00001a350000c13d000000000006004b00001a460000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000013e7041001970000000901400029000000000041004b000000000400003900000001040040390000130e0010009c000000670000213d0000000100400190000000670000c13d000000400010043f000013980030009c0000291d0000213d000000200030008c0000291d0000413d000000090400002900000000040404330000130e0040009c0000291d0000213d000000090630002900000009034000290000001f04300039000000000064004b0000000005000019000013990500804100001399044001970000139907600197000000000874013f000000000074004b00000000040000190000139904004041000013990080009c000000000405c019000000000004004b0000291d0000c13d00000000430304340000130e0030009c000000670000213d0000001f05300039000013e7055001970000003f05500039000013e70550019700000000051500190000130e0050009c000000670000213d000000400050043f00000000053104360000000007430019000000000067004b0000291d0000213d000013e7063001970000001f0230018f000000000054004b000022b70000813d000000000006004b00001a880000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00001a820000c13d000000000002004b000022cd0000613d0000000007050019000022c30000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a930000c13d000020d20000013d0000000a020000290000001f02200039000013e702200197000700000002001d0000003f02200039000013e70220019700000006022000290000130e0020009c000000670000213d000000400020043f0000000a02000029000000060500002900000000002504350000000802000029000000000020007c0000291d0000213d0000000a02000029000013e7042001980005001f00200193000000a001100039000400000004001d000800000001001d000000000141001900000009020000290000002002200039000300000002001d000000020220036700001aba0000613d000000000402034f0000000805000029000000004604043c0000000005650436000000000015004b00001ab60000c13d000000050000006b00001ac80000613d000000040220036000000005040000290000000304400210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f000000000021043500000008020000290000000a0120002900000000000104350000000101000039000000000201041a000000400400043d00001393010000410000000000140435000900000004001d00000004014000390000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c00001d490000c13d000000200400003900001d730000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ae20000c13d000020d20000013d000000060100002900000044021000390000137a03000041000000000032043500000024021000390000001003000039000000000032043500001317020000410000000000210435000000040210003900000020030000390000000000320435000012fc0010009c000012fc01008041000000400110021000001318011001c700004bed000104300000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001aff0000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b0b0000c13d000020d20000013d0000000603000029000012fc0030009c000012fc030080410000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f00001379011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060570002900001b290000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00001b250000c13d000000000006004b00001b360000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001ba00000613d0000001f01400039000000600210018f0000000601200029000000000021004b000000000200003900000001020040390000130e0010009c000000670000213d0000000100200190000000670000c13d000000400010043f000000200030008c0000291d0000413d00000006020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b0000291d0000c13d000000000002004b00001ae80000c13d00000000020004110000000a0020006b0000203a0000c13d000000400100043d000600000001001d000000090000006b000020890000c13d00000006030000290000006401300039000013d20200004100000000002104350000004401300039000013d3020000410000000000210435000000240130003900000025020000390000098a0000013d000000800200043d0000130e0020009c000000670000213d0000000c01000039000000000401041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f0000000100400190000009330000c13d000000200030008c00001b800000413d000000000010043f0000001f042000390000000504400270000013d90440009a000000200020008c000013da040040410000001f033000390000000503300270000013d90330009a000000000034004b00001b800000813d000000000004041b0000000104400039000000000034004b00001b7c0000413d0000001f0020008c00001ed50000a13d000000000010043f000013e7042001980000206d0000c13d000000a005000039000013da030000410000207b0000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b8f0000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b9b0000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ba70000c13d000020d20000013d0000000a03000029000012fc0030009c000012fc030080410000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0570002900001bc50000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b00001bc10000c13d000000000006004b00001bd20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001e560000613d0000001f01400039000000600110018f0000000a011000290000130e0010009c000000670000213d000000400010043f000000200030008c0000291d0000413d0000000a010000290000000001010433000a00000001001d000012ff0010009c0000291d0000213d0000000201000039000000000101041a000900000001001d0000130a0100004100000000001004430000000a0100002900000004001004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000029ac0000613d000000000101043b000000000001004b0000291d0000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000013b1020000410000000000210435000013a4010000410000000000150435000000040150003900000009020000290000000000210435000000240150003900000000000104350000008402500039000000800100043d0000000000120435000013e7041001970000001f0310018f000900000005001d000000a402500039000000a10020008c0000210c0000413d000000000004004b00001c180000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c00001c120000c13d000000000003004b000021220000613d000000a0040000390000000005020019000021180000013d0000000a03000029000012fc0030009c000012fc030080410000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0570002900001c360000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b00001c320000c13d000000000006004b00001c430000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001e620000613d0000001f01400039000000600110018f0000000a011000290000130e0010009c000000670000213d000000400010043f000000200030008c0000291d0000413d0000000a010000290000000001010433000a00000001001d000012ff0010009c0000291d0000213d0000000201000039000000000101041a000900000001001d0000130a0100004100000000001004430000000a0100002900000004001004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000029ac0000613d000000000101043b000000000001004b0000291d0000613d000000400500043d000013a401000041000000000015043500000004015000390000000902000029000000000021043500000004010000390000000201100367000000000101043b00000064025000390000008003000039000000000032043500000044025000390000139b030000410000000000320435000000240250003900000000001204350000008402500039000000800100043d0000000000120435000013e7041001970000001f0310018f000900000005001d000000a402500039000000a10020008c0000214b0000413d000000000004004b00001c8c0000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c00001c860000c13d000000000003004b000021610000613d000000a0040000390000000005020019000021570000013d0000000a03000029000012fc0030009c000012fc030080410000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0570002900001caa0000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b00001ca60000c13d000000000006004b00001cb70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001e6e0000613d0000001f01400039000000600110018f0000000a011000290000130e0010009c000000670000213d000000400010043f000000200030008c0000291d0000413d0000000a010000290000000001010433000a00000001001d000012ff0010009c0000291d0000213d0000000201000039000000000101041a000900000001001d0000130a0100004100000000001004430000000a0100002900000004001004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000029ac0000613d000000000101043b000000000001004b0000291d0000613d000000400500043d00000064015000390000008002000039000000000021043500000044015000390000139d020000410000000000210435000013a4010000410000000000150435000000040150003900000009020000290000000000210435000000240150003900000000000104350000008402500039000000800100043d0000000000120435000013e7041001970000001f0310018f000900000005001d000000a402500039000000a10020008c0000218a0000413d000000000004004b00001cfd0000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c00001cf70000c13d000000000003004b000021a00000613d000000a0040000390000000005020019000021960000013d0000000803000029000012fc0030009c000012fc030080410000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000130d011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080570002900001d1b0000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b00001d170000c13d000000000006004b00001d280000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001e7a0000613d0000001f01400039000000600110018f00000008011000290000130e0010009c000000670000213d000000400010043f000000200030008c0000291d0000413d00000008010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000291d0000c13d000000000001004b000015a90000613d00000009010000294beb2d120000040f00000000010104330000000a0010006c000020f30000a13d000013c502000041000000000020043f000000040010043f0000000a01000029000000240010043f0000130d0100004100004bed000104300000000903000029000012fc0030009c000012fc030080410000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090570002900001d620000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b00001d5e0000c13d000000000006004b00001d6f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001e860000613d0000001f01400039000000600210018f0000000901200029000000000021004b000000000200003900000001020040390000130e0010009c000000670000213d0000000100200190000000670000c13d000000400010043f000000200030008c0000291d0000413d00000009010000290000000001010433000900000001001d000012ff0010009c0000291d0000213d0000000201000039000000000101041a000200000001001d0000130a010000410000000000100443000000090100002900000004001004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000029ac0000613d000000000101043b000000000001004b0000291d0000613d000000400500043d000000640150003900000080020000390000000000210435000000440150003900001397020000410000000000210435000013a4010000410000000001150436000100000001001d000000040150003900000002020000290000000000210435000000240150003900000000000104350000000601000029000000000101043300000084025000390000000000120435000013e7041001970000001f0310018f000600000005001d000000a402500039000000080020006b000021c90000813d000000000004004b00001dbd0000613d00000008063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c00001db70000c13d000000000003004b000021e00000613d0000000005020019000021d50000013d0000000703000029000000000524034f000000000505043b000000200330003900000000005304350000002002200039000000000062004b00001dc20000413d00000007020000290000000002020433000000800300043d000000000023004b00001df50000c13d0000130e0020009c000000670000213d00000005032002100000003f04300039000013c805400197000000400400043d000500000004001d0000000004450019000000000054004b000000000500003900000001050040390000130e0040009c000000670000213d0000000100500190000000670000c13d000000400040043f00000005040000290000000002240436000400000002001d0000001f0230018f000000000003004b00001dea0000613d00000004040000290000000003340019000000001501043c0000000004540436000000000034004b00001de60000c13d000000000002004b000000800100043d000000000001004b00001eec0000c13d000000400200043d000a00000002001d0000002001000039000000000212043600000005010000294beb2a810000040f000005be0000013d000000400100043d0000006402100039000013c60300004100000000003204350000004402100039000013c7030000410000000000320435000000240210003900000029030000390000076f0000013d0000000903000029000012fc0030009c000012fc030080410000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000130d011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090570002900001e180000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b00001e140000c13d000000000006004b00001e250000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001ec90000613d0000001f01400039000000600110018f0000000902100029000000000012004b00000000010000390000000101004039000600000002001d0000130e0020009c000000670000213d0000000100100190000000670000c13d0000000601000029000000400010043f000000200030008c0000291d0000413d00000009010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000291d0000c13d000000000001004b000020e50000c13d000013a301000041000000000010043f0000000501000029000000040010043f000013c001000041000000240010043f0000130d0100004100004bed00010430000012fc033001970000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e510000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e5d0000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e690000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e750000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e810000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e8d0000c13d000020d20000013d0000000007650019000000000006004b00001eb90000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001e970000c13d00001eb90000013d0000000007650019000000000006004b00001eb90000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001ea10000c13d00001eb90000013d0000000007650019000000000006004b00001eb90000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001eab0000c13d00001eb90000013d0000000007650019000000000006004b00001eb90000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001eb50000c13d000000000002004b00001ec60000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f000000000027043500000000025300190000000000020435000005b90000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ed00000c13d000020d20000013d000000000002004b000000000300001900001ed90000613d000000a00300043d0000000304200210000013e90440027f000013e904400167000000000343016f0009000100200218000020850000013d000012fc033001970000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ee70000c13d000020d20000013d000000000300001900000007010000290000000001010433000000000031004b0000271a0000a13d000900000003001d000000050230021000000006012000290000000003010433000800000002001d000000a00120003900000000010104330000006004100210000000400100043d0000002002100039000000000042043500000034041000390000000000340435000000340300003900000000003104350000137e0010009c000000670000213d0000006003100039000000400030043f000012fc0020009c000012fc0200804100000040022002100000000001010433000012fc0010009c000012fc010080410000006001100210000000000121019f0000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f00001310011001c700008010020000394beb4be60000040f00000001002001900000291d0000613d000000000401043b0000000101000039000000000201041a000000400a00043d000013930100004100000000001a04350000000401a000390000139403000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c000a00000004001d00001f2a0000c13d0000000103000031000000200030008c0000002004000039000000000403401900001f550000013d000012fc00a0009c000012fc0300004100000000030a40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700030000000a001d4beb4be60000040f000000030a0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900001f440000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00001f400000c13d0000001f0740019000001f510000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000023ba0000613d0000001f01400039000000600110018f00000000040a0019000000000aa1001900000000001a004b000000000200003900000001020040390000130e00a0009c000000670000213d0000000100200190000000670000c13d0000004000a0043f000000200030008c0000291d0000413d0000000002040433000012ff0020009c0000291d0000213d0000000204000039000000000404041a0000004405a00039000013c90600004100000000006504350000002405a000390000000a060000290000000000650435000013b70500004100000000005a04350000000405a0003900000000004504350000000004000414000000040020008c00001fa20000613d000012fc00a0009c000012fc0100004100000000010a40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c7000a0000000a001d4beb4be60000040f0000000a0a0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900001f8f0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00001f8b0000c13d0000001f0740019000001f9c0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000023c60000613d0000001f01400039000000600110018f0000000001a100190000130e0010009c000000670000213d000000400010043f000000200030008c0000291d0000413d000000050100002900000000010104330000000903000029000000000031004b0000271a0000a13d0000000802000029000000040120002900000000020a043300000000002104350000000103300039000000800100043d000000000013004b00001eed0000413d00001dee0000013d0000000603000029000012fc0030009c000012fc030080410000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060570002900001fcf0000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00001fcb0000c13d000000000006004b00001fdc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000020c70000613d0000001f01400039000000600110018f00000006011000290000130e0010009c000000670000213d000000400010043f000000200030008c0000291d0000413d00000006010000290000000001010433000800000001001d000012ff0010009c0000291d0000213d0000000201000039000000000101041a000700000001001d0000130a010000410000000000100443000000080100002900000004001004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000029ac0000613d000000000101043b000000000001004b0000291d0000613d000000400300043d0000006401300039000000000200041100000000002104350000004401300039000013bd020000410000000000210435000013bc0100004100000000001304350000000401300039000500000001001d00000007020000290000000000210435000600000003001d0000002401300039000000000001043500000000010004140000000802000029000000040020008c000020240000613d0000000602000029000012fc0020009c000012fc020080410000004002200210000012fc0010009c000012fc01008041000000c001100210000000000121019f0000131b011001c700000008020000294beb4be10000040f0000006003100270000112fc0030019d00030000000103550000000100200190000024330000613d00000006010000290000130e0010009c000000670000213d0000000603000029000000400030043f0000000101000039000000000201041a0000139301000041000000000013043500001394010000410000000503000029000000000013043500000000010004140000000802200270000012ff02200197000000040020008c000024520000c13d0000000103000031000000200030008c000000200400003900000000040340190000247c0000013d0000000a01000029000000000010043f0000000501000039000000200010043f0000000001000414000012fc0010009c000012fc01008041000000c00110021000001308011001c700008010020000394beb4be60000040f00000001002001900000291d0000613d000000000101043b0000000002000411000012ff02200197000600000002001d000000000020043f000000200010043f0000000001000414000012fc0010009c000012fc01008041000000c00110021000001308011001c700008010020000394beb4be60000040f00000001002001900000291d0000613d000000000101043b000000000101041a000000ff0010019000001b530000c13d0000000701000039000000000101041a0000137b00100198000020660000613d0000000802100270000012ff02200198000020640000c13d000000ff0010019000000000020000190000130702006041000000060020006b00001b530000613d000000400100043d00000064021000390000137c03000041000000000032043500000044021000390000137d0300004100001dfb0000013d000013da030000410000002006000039000000010540008a0000000505500270000013db0550009a000000000706001900000080066000390000000006060433000000000063041b00000020067000390000000103300039000000000053004b000020720000c13d000000a005700039000000000024004b000020840000813d0000000304200210000000f80440018f000013e90440027f000013e9044001670000000005050433000000000445016f000000000043041b000000010320021000000009023001af000000000021041b000000000100001900004bec0001042e0000000601000029000013120010009c000000670000213d00000006030000290000004001300039000000400010043f00000020013000390000000802000029000000000021043500000001010000390000000000130435000000400100043d000500000001001d000013120010009c000000670000213d00000005030000290000004001300039000000400010043f000000200130003900000007020000290000000000210435000000010100003900000000001304350000000a010000290000006003100210000000400100043d00000020021000390000000000320435000000340310003900000008040000290000000000430435000000340300003900000000003104350000137e0010009c000000670000213d0000006003100039000000400030043f000012fc0020009c000012fc0200804100000040022002100000000001010433000012fc0010009c000012fc010080410000006001100210000000000121019f0000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f00001310011001c700008010020000394beb4be60000040f00000001002001900000291d0000613d000000000101043b4beb2faa0000040f0000137f0010009c000023ea0000413d00000040050000390000137f0210012a000023f30000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020ce0000c13d000000000005004b000020df0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000112019f00004bed000104300000000101000039000000000201041a000000ff00200190000024410000c13d00001378010000410000000604000029000000000014043500000000010004140000000802200270000012ff02200197000000040020008c000022fb0000c13d0000002004000039000023250000013d00000009010000290000000a020000294beb43dd0000040f0000000101000039000000000201041a000000400400043d0000002401400039000000070300002900000000003104350000139e010000410000000000140435000a00000004001d00000004014000390000139f03000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c000022350000c13d0000000103000031000000200030008c000000200400003900000000040340190000225f0000013d0000000005420019000000000004004b000021150000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b000021110000c13d000000000003004b000021220000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000a03000029000000040030008c000012cf0000613d0000001f01100039000013e701100197000000a401100039000012fc0010009c000012fc0100804100000060011002100000000903000029000012fc0030009c000012fc030080410000004003300210000000000131019f000012fc0020009c000012fc02008041000000c002200210000000000112019f0000000a020000294beb4be10000040f0000006003100270000112fc0030019d00030000000103550000000100200190000012cf0000c13d000012fc033001970000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021460000c13d000020d20000013d0000000005420019000000000004004b000021540000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b000021500000c13d000000000003004b000021610000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000a03000029000000040030008c000012cf0000613d0000001f01100039000013e701100197000000a401100039000012fc0010009c000012fc0100804100000060011002100000000903000029000012fc0030009c000012fc030080410000004003300210000000000131019f000012fc0020009c000012fc02008041000000c002200210000000000112019f0000000a020000294beb4be10000040f0000006003100270000112fc0030019d00030000000103550000000100200190000012cf0000c13d000012fc033001970000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021850000c13d000020d20000013d0000000005420019000000000004004b000021930000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b0000218f0000c13d000000000003004b000021a00000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000a03000029000000040030008c000012cf0000613d0000001f01100039000013e701100197000000a401100039000012fc0010009c000012fc0100804100000060011002100000000903000029000012fc0030009c000012fc030080410000004003300210000000000131019f000012fc0020009c000012fc02008041000000c002200210000000000112019f0000000a020000294beb4be10000040f0000006003100270000112fc0030019d00030000000103550000000100200190000012cf0000c13d000012fc033001970000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021c40000c13d000020d20000013d0000000005420019000000000004004b000021d20000613d0000000806000029000000000702001900000000680604340000000007870436000000000057004b000021ce0000c13d000000000003004b000021e00000613d000800080040002d0000000303300210000000000405043300000000043401cf000000000434022f000000080600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000903000029000000040030008c000021fc0000613d0000001f01100039000013e701100197000000a401100039000012fc0010009c000012fc0100804100000060011002100000000603000029000012fc0030009c000012fc030080410000004003300210000000000131019f000012fc0020009c000012fc02008041000000c002200210000000000112019f00000009020000294beb4be10000040f0000006003100270000112fc0030019d00030000000103550000000100200190000023510000613d00000006010000290000130e0010009c000000670000213d0000000602000029000000400020043f0000000a0100002900000001030000290000000000130435000000200100003900000000001204350000004001200039000000040210002900000003030000290000000203300367000000040000006b000022120000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b0000220e0000c13d000000050000006b000022200000613d000000040330036000000005040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000a01100029000000000001043500000007020000290000006001200210000013b20110009a000013b30020009c000013b4010080410000000602000029000012fc0020009c000012fc020080410000004002200210000000000121019f0000000002000414000012fc0020009c000012fc02008041000000c00220021000000000012100190000800d020000390000000103000039000013b5040000410000069c0000013d0000000a03000029000012fc0030009c000012fc030080410000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000130d011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a057000290000224e0000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b0000224a0000c13d000000000006004b0000225b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000235e0000613d0000001f01400039000000600110018f0000000a02100029000000000012004b00000000010000390000000101004039000800000002001d0000130e0020009c000000670000213d0000000100100190000000670000c13d0000000801000029000000400010043f000000200030008c0000291d0000413d0000000a010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000291d0000c13d000000000001004b000015a90000613d0000000101000039000000000201041a00001393010000410000000804000029000000000014043500000004014000390000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c000025200000c13d00000020040000390000254a0000013d000000050100002900001ae80000013d0000000008730019000000000007004b000022910000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b0000228d0000c13d000000000006004b0000229e0000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f0000000000580435000000000434001900000000000404350000000004010433000013e7074001970000001f0640018f000000400100043d0000002005100039000000000053004b000022d20000813d000000000007004b000022b30000613d00000000096300190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000022ad0000c13d000000000006004b000022e80000613d0000000008050019000022de0000013d0000000007650019000000000006004b000022c00000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b000022bc0000c13d000000000002004b000022cd0000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f000000000027043500000000025300190000000000020435000000400300043d0000002002000039000005bb0000013d0000000008750019000000000007004b000022db0000613d0000000009030019000000000a050019000000009b090434000000000aba043600000000008a004b000022d70000c13d000000000006004b000022e80000613d00000000037300190000000306600210000000000708043300000000076701cf000000000767022f00000000030304330000010006600089000000000363022f00000000036301cf000000000373019f000000000038043500000000034500190000000a050000290000000000530435000000200340003900000000003104350000005f03400039000013e7023001970000000004120019000000000024004b000000000200003900000001020040390000130e0040009c000000670000213d0000000100200190000000670000c13d0000000003040019000000400040043f0000002002000039000005bb0000013d0000000603000029000012fc0030009c000012fc030080410000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f00001379011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000023140000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000023100000c13d000000000006004b000023210000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000023d20000613d0000001f01400039000000600110018f00000006011000290000130e0010009c000000670000213d000000400010043f000000200030008c0000291d0000413d00000006020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b0000291d0000c13d000000000002004b000024400000c13d00000008020000290000000003020433000000800200043d000000000032004b000025920000c13d000000000002004b000008d00000613d000000000200001900000008010000290000000001010433000000000021004b0000271a0000a13d000900000002001d000000050120021000000007021000290000000003020433000000a00110003900000000020104330000000a010000294beb449e0000040f00000009030000290000000103300039000000800100043d0000000002030019000000000013004b0000233e0000413d000008d00000013d000012fc033001970000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023590000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023650000c13d000020d20000013d0000000503000029000012fc0030009c000012fc030080410000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f00001379011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000505700029000023830000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b0000237f0000c13d000000000006004b000023900000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000023de0000613d0000001f01400039000000600210018f0000000501200029000000000021004b000000000200003900000001020040390000130e0010009c000000670000213d0000000100200190000000670000c13d000000400010043f000000200030008c0000291d0000413d00000005020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b0000291d0000c13d000000000002004b00001ae80000c13d0000000a01000029000512ff0010019b0000000001000411000000050010006b000026190000c13d00000008010000290000000001010433000000800200043d000000000012004b0000264f0000c13d0000000901000029000412ff0010019c0000266f0000c13d000000400100043d000600000001001d00001b570000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023c10000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023cd0000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023d90000c13d000020d20000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023e50000c13d000020d20000013d000013810010009c0000000002010019000013800220212a00000000050000390000002005002039000013820020009c00000010055081bf0000138302208197000013820220812a000013840020009c00000008055080390000130e02208197000013840220812a000027100020008c0000000405508039000012fc02208197000027100220811a000000640020008c00000002055080390000ffff0220818f000000640220811a000000090020008c0000000105502039000013e7035001970000005f02300039000013e706200197000000400400043d0000000002460019000000000062004b000000000600003900000001060040390000130e0020009c000000670000213d0000000100600190000000670000c13d000000400020043f000000010250003900000000022404360000002003300039000013e7073001980000001f0630018f000000000300003100000002033003670000241d0000613d0000000007720019000000000803034f0000000009020019000000008a08043c0000000009a90436000000000079004b000024190000c13d000000000006004b000000000554001900000021055000390000000006010019000000090060008c0000000a7660011a0000000307700210000000010550008a00000000080504330000138508800197000013860770021f0000138707700197000000000787019f0000000000750435000024210000213d00000007050000290000137f0050009c000024c50000413d000000400600003900000007050000290000137f0550012a000024ce0000013d000012fc033001970000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000243b0000c13d000020d20000013d000600000001001d000000060300002900000044013000390000137a02000041000000000021043500000024013000390000001002000039000000000021043500001317010000410000000000130435000000040130003900000020020000390000000000210435000012fc0030009c000012fc03008041000000400130021000001318011001c700004bed000104300000000603000029000012fc0030009c000012fc030080410000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000006057000290000246b0000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000024670000c13d000000000006004b000024780000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000025980000613d0000001f01400039000000600110018f00000006011000290000130e0010009c000000670000213d000000400010043f000000200030008c0000291d0000413d00000006010000290000000001010433000800000001001d000012ff0010009c0000291d0000213d0000000201000039000000000101041a000700000001001d0000130a010000410000000000100443000000080100002900000004001004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000029ac0000613d000000000101043b000000000001004b0000291d0000613d000000400300043d00000064013000390000008002000039000000000021043500000044013000390000139b020000410000000000210435000013a40100004100000000001304350000000401300039000500000001001d00000007020000290000000000210435000000240130003900000000000104350000000a01000029000000000101043300000084023000390000000000120435000013e7051001970000001f0410018f000600000003001d000000a403300039000000090030006b000027200000813d000000000005004b000024c10000613d00000009074000290000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c000024bb0000c13d000000000004004b000027370000613d00000000060300190000272c0000013d0000000705000029000013810050009c000013800550212a00000000060000390000002006002039000013820050009c00000010066081bf0000138305508197000013820550812a000013840050009c00000008066080390000130e05508197000013840550812a000027100050008c0000000406608039000012fc05508197000027100550811a000000640050008c00000002066080390000ffff0550818f000000640550811a000000090050008c0000000106602039000013e7086001970000005f05800039000013e709500197000000400700043d0000000005790019000000000095004b000000000900003900000001090040390000130e0050009c000000670000213d0000000100900190000000670000c13d000000400050043f000000010560003900000000055704360000002008800039000013e7098001980000001f0880018f000024f50000613d0000000009950019000000000a050019000000003b03043c000000000aba043600000000009a004b000024f10000c13d000000000008004b000000000367001900000021033000390000000706000029000000090060008c0000000a8660011a0000000308800210000000010330008a00000000090304330000138509900197000013860880021f0000138708800197000000000898019f0000000000830435000024f90000213d000000400300043d0000004006300039000013880800004100000000008604350000002006300039000013890800004100000000008604350000000004040433000013e70a4001970000001f0940018f0000005208300039000000000082004b000025a40000813d00000000000a004b0000251d0000613d000000000c920019000000000b980019000000200bb0008a000000200cc0008a000000000dab0019000000000eac0019000000000e0e04330000000000ed0435000000200aa0008c000025170000c13d000000000009004b000025b00000c13d000025ba0000013d0000000803000029000012fc0030009c000012fc030080410000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000805700029000025390000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b000025350000c13d000000000006004b000025460000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000260d0000613d0000001f01400039000000600110018f00000008011000290000130e0010009c000000670000213d000000400010043f000000200030008c0000291d0000413d00000008010000290000000001010433000a00000001001d000012ff0010009c0000291d0000213d0000000201000039000000000101041a000800000001001d0000130a0100004100000000001004430000000a0100002900000004001004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000029ac0000613d000000000101043b000000000001004b0000291d0000613d000000400500043d00000064015000390000008002000039000000000021043500000044015000390000139b020000410000000000210435000000240150003900000009020000290000000000210435000013a40100004100000000001504350000000401500039000000080200002900000000002104350000008402500039000000800100043d0000000000120435000013e7041001970000001f0310018f000900000005001d000000a402500039000000a10020008c000027690000413d000000000004004b0000258d0000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c000025870000c13d000000000003004b0000277f0000613d000000a0040000390000000005020019000027750000013d0000006402100039000013c10300004100000000003204350000004402100039000013c20300004100001dfb0000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000259f0000c13d000020d20000013d000000000ba8001900000000000a004b000025ac0000613d000000000c02001900000000cd0c04340000000008d804360000000000b8004b000025a80000c13d000000000009004b000025ba0000613d0000000002a2001900000000080b00190000000309900210000000000a080433000000000a9a01cf000000000a9a022f00000000020204330000010009900089000000000292022f00000000029201cf0000000002a2019f0000000000280435000000000234001900000052042000390000138a0800004100000000008404350000000004070433000013e7094001970000001f0840018f0000005307200039000000000075004b000025d30000813d000000000009004b000025d00000613d000000000b850019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c000025ca0000c13d000000000008004b000025df0000c13d000025e90000013d000000000a970019000000000009004b000025db0000613d000000000b05001900000000bc0b04340000000007c704360000000000a7004b000025d70000c13d000000000008004b000025e90000613d000000000595001900000000070a00190000000308800210000000000907043300000000098901cf000000000989022f00000000050504330000010008800089000000000585022f00000000058501cf000000000595019f00000000005704350000000002240019000000530420003900000000000404350000000002320049000000330420003900000000004304350000005202200039000013e70220019700000000026200190000130e0020009c000000670000213d0000000004020019000000000032004b000000670000413d000000400040043f000000070010006c000026590000813d0000131701000041000400000004001d0000000000140435000000040140003900000020020000390000000000210435000000240240003900000000010300194beb29e40000040f00000004020000290000000001210049000012fc0010009c000012fc01008041000012fc0020009c000012fc0200804100000060011002100000004002200210000000000121019f00004bed000104300000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000026140000c13d000020d20000013d0000000501000029000000000010043f0000000501000039000000200010043f0000000001000414000012fc0010009c000012fc01008041000000c00110021000001308011001c700008010020000394beb4be60000040f00000001002001900000291d0000613d000000000101043b0000000002000411000012ff02200197000400000002001d000000000020043f000000200010043f0000000001000414000012fc0010009c000012fc01008041000000c00110021000001308011001c700008010020000394beb4be60000040f00000001002001900000291d0000613d000000000101043b000000000101041a000000ff00100190000023af0000c13d0000000701000039000000000101041a0000137b00100198000026450000613d0000000802100270000012ff02200198000026430000c13d000000ff0010019000000000020000190000130702006041000000040020006b000023af0000613d000000400100043d0000006402100039000013cb0300004100000000003204350000004402100039000013cc03000041000000000032043500000024021000390000002e030000390000076f0000013d000000400100043d0000006402100039000013cd0300004100000000003204350000004402100039000013ce030000410000000000320435000000240210003900000028030000390000076f0000013d00000000010004110000000a020000290000000903000029000000060400002900000005050000294beb3cc90000040f00000006010000290000000001010433000000000001004b000026df0000613d0000000a0300002900000009033001af00000005020000290000000002020433000012ff00300198000026d90000c13d000000000002004b0000271a0000613d0000138b01000041000000000010043f000013790100004100004bed00010430000000800400003900000000010004110000000a020000290000000903000029000a00000004001d00000008050000294beb3cc90000040f000000800100043d000000000001004b0000267e0000613d000000010110008a00000008020000290000000002020433000000000012004b0000271a0000a13d0000130a010000410000000000100443000000090100002900000004001004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000029ac0000613d000000000101043b000000000001004b000008d00000613d000000400300043d0000004401300039000000a0020000390000000000210435000000240130003900000005020000290000000000210435000013d0010000410000000000130435000000040130003900000000020004110000000000210435000000a401300039000000800200043d0000000000210435000900000003001d000000c401300039000000000002004b000026aa0000613d00000000030000190000000a040000290000002004400039000a00000004001d000000000404043300000000014104360000000103300039000000000023004b000026a20000413d00000009030000290000000002310049000000040220008a00000064033000390000000000230435000000080200002900000000020204330000000001210436000000000002004b000026bd0000613d000000000300001900000008040000290000002004400039000800000004001d000000000404043300000000014104360000000103300039000000000023004b000026b50000413d00000009030000290000000002310049000000040220008a00000084033000390000000000230435000000070200002900000000020204330000000001210436000013e7042001970000001f0320018f000000060010006b0000281c0000813d000000000004004b000026d50000613d00000006063000290000000005310019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c000026cf0000c13d000000000003004b000028330000613d0000000005010019000028280000013d0000000003000019000000000032004b0000271a0000a13d0000000103300039000000000013004b000026da0000413d0000130a010000410000000000100443000000090100002900000004001004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000029ac0000613d000000000101043b000000000001004b000008d00000613d000000400600043d0000008401600039000000a005000039000000000051043500000064016000390000000702000029000000000021043500000044016000390000000802000029000000000021043500000024016000390000000a0200002900000000002104350000138c010000410000000000160435000000040160003900000000020004110000000000210435000000a402600039000000800100043d0000000000120435000013e7041001970000001f0310018f000600000006001d000000c402600039000000a10020008c000027a00000413d000000000004004b000027150000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c0000270f0000c13d000000000003004b000027b50000613d000000a0040000390000000006020019000027ab0000013d000013cf01000041000000000010043f0000003201000039000000040010043f0000139c0100004100004bed000104300000000006530019000000000005004b000027290000613d0000000907000029000000000803001900000000790704340000000008980436000000000068004b000027250000c13d000000000004004b000027370000613d000900090050002d0000000304400210000000000506043300000000054501cf000000000545022f000000090700002900000000070704330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000000003310019000000000003043500000000030004140000000804000029000000040040008c000027530000613d0000001f01100039000013e701100197000000a401100039000012fc0010009c000012fc0100804100000060011002100000000602000029000012fc0020009c000012fc020080410000004002200210000000000121019f000012fc0030009c000012fc03008041000000c002300210000000000112019f00000008020000294beb4be10000040f0000006003100270000112fc0030019d000300000001035500000001002001900000280f0000613d00000006010000290000130e0010009c000000670000213d0000000603000029000000400030043f0000000101000039000000000201041a0000139301000041000000000013043500001394010000410000000503000029000000000013043500000000010004140000000802200270000012ff02200197000000040020008c000028e60000c13d0000000103000031000000200030008c00000020040000390000000004034019000029100000013d0000000005420019000000000004004b000027720000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b0000276e0000c13d000000000003004b0000277f0000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000a03000029000000040030008c0000279b0000613d0000001f01100039000013e701100197000000a401100039000012fc0010009c000012fc0100804100000060011002100000000903000029000012fc0030009c000012fc030080410000004003300210000000000131019f000012fc0020009c000012fc02008041000000c002200210000000000121019f0000000a020000294beb4be10000040f0000006003100270000112fc0030019d000300000001035500000001002001900000289d0000613d000000090100002900000000020000194beb2a160000040f000000000100001900004bec0001042e0000000006420019000000000004004b000027a80000613d000000000702001900000000580504340000000007870436000000000067004b000027a40000c13d000000000003004b000027b50000613d000000a0044000390000000303300210000000000506043300000000053501cf000000000535022f00000000040404330000010003300089000000000434022f00000000033401cf000000000353019f00000000003604350000000002210019000000000002043500000000020004140000000903000029000000040030008c000027c30000c13d00000000050004150000000c0550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000027f70000013d0000001f01100039000013e701100197000000c401100039000012fc0010009c000012fc0100804100000060011002100000000603000029000012fc0030009c000012fc030080410000004003300210000000000131019f000012fc0020009c000012fc02008041000000c002200210000000000112019f00000009020000294beb4be10000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000027e30000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000027df0000c13d000000000006004b000027f00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000000050004150000000b0550008a00000005055002100000000100200190000028aa0000613d0000001f01400039000000600110018f0000000602100029000000000012004b000000000100003900000001010040390000130e0020009c000000670000213d0000000100100190000000670000c13d0000000004020019000000400020043f000000200030008c0000291d0000413d000000060100002900000000010104330000138d001001980000291d0000c13d0000000502500270000000000201001f0000138e011001970000138c0010009c000008d00000613d0000288e0000013d000012fc033001970000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028170000c13d000020d20000013d0000000005410019000000000004004b000028250000613d0000000606000029000000000701001900000000680604340000000007870436000000000057004b000028210000c13d000000000003004b000028330000613d000600060040002d0000000303300210000000000405043300000000043401cf000000000434022f000000060600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000003120019000000000003043500000000030004140000000404000029000000040040008c000028410000c13d00000000050004150000000e0550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000028770000013d0000001f02200039000013e702200197000000090400002900000000014100490000000001210019000012fc0010009c000012fc010080410000006001100210000012fc0040009c000012fc0200004100000000020440190000004002200210000000000121019f000012fc0030009c000012fc03008041000000c002300210000000000121019f00000004020000294beb4be10000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000905700029000028630000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b0000285f0000c13d000000000006004b000028700000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000000050004150000000d0550008a000000050550021000000001002001900000291f0000613d0000001f01400039000000600110018f0000000902100029000000000012004b000000000100003900000001010040390000130e0020009c000000670000213d0000000100100190000000670000c13d0000000004020019000000400020043f000000200030008c0000291d0000413d000000090100002900000000010104330000138d001001980000291d0000c13d0000000502500270000000000201001f0000138e01100197000013d00010009c000008d00000613d0000131701000041000a00000004001d000000000014043500000004014000394beb2d050000040f0000000a020000290000000001210049000012fc0010009c000012fc010080410000006001100210000012fc0020009c000012fc020080410000004002200210000000000121019f00004bed00010430000012fc033001970000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028a50000c13d000020d20000013d000000040230008c000028df0000413d000000000400043d0000138d04400197000000000501043b0000138e05500197000000000445019f000000000040043f0000138e04400197000013170040009c000028df0000c13d000000440030008c000028df0000413d0000000405100370000013e7062001980000001f0720018f000000400400043d0000000001640019000028c30000613d000000000805034f0000000009040019000000008a08043c0000000009a90436000000000019004b000028bf0000c13d000000000007004b000028d00000613d000000000565034f0000000306700210000000000701043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000051043500000000050404330000130e0050009c000028df0000213d0000002401500039000000000031004b000028df0000213d000000000145001900000000030104330000130e0030009c000028df0000213d000000000224001900000000063100190000002006600039000000000026004b000029ad0000a13d000000400100043d00000064021000390000138f030000410000000000320435000000440210003900001390030000410000295a0000013d0000000603000029000012fc0030009c000012fc030080410000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c74beb4be60000040f0000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000028ff0000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000028fb0000c13d000000000006004b0000290c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000295e0000613d0000001f01400039000000600110018f00000006011000290000130e0010009c000000670000213d000000400010043f000000200030008c0000291d0000413d00000006010000290000000001010433000a00000001001d000012ff0010009c0000296a0000a13d000000000100001900004bed00010430000000040230008c000029540000413d000000000400043d0000138d04400197000000000501043b0000138e05500197000000000445019f000000000040043f000000440030008c000029540000413d0000138e04400197000013170040009c000029540000c13d0000000405100370000013e7062001980000001f0720018f000000400400043d0000000001640019000029380000613d000000000805034f0000000009040019000000008a08043c0000000009a90436000000000019004b000029340000c13d000000000007004b000029450000613d000000000565034f0000000306700210000000000701043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000051043500000000050404330000130e0050009c000029540000213d0000002401500039000000000031004b000029540000213d000000000145001900000000030104330000130e0030009c000029540000213d000000000224001900000000063100190000002006600039000000000026004b000029bd0000a13d000000400100043d00000064021000390000138f0300004100000000003204350000004402100039000013d1030000410000000000320435000000240210003900000034030000390000076f0000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029650000c13d000020d20000013d0000000201000039000000000101041a000900000001001d0000130a0100004100000000001004430000000a0100002900000004001004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000029ac0000613d000000000101043b000000000001004b0000291d0000613d000000400300043d0000006401300039000013040200004100000000002104350000004401300039000013be020000410000000000210435000013bf010000410000000000130435000000040130003900000009020000290000000000210435000900000003001d0000002401300039000000000001043500000000010004140000000a02000029000000040020008c000029a00000613d0000000902000029000012fc0020009c000012fc020080410000004002200210000012fc0010009c000012fc01008041000000c001100210000000000121019f0000131b011001c70000000a020000294beb4be10000040f0000006003100270000112fc0030019d00030000000103550000000100200190000029d70000613d00000009010000290000130e0010009c000000670000213d0000000901000029000000400010043f0000000303000039000000000103041a000013e80110019700000001011001bf000000000013041b000000000100001900004bec0001042e000000000001042f00000000023500190000003f02200039000013e7022001970000000004420019000000000024004b000000000200003900000001020040390000130e0040009c000000670000213d0000000100200190000000670000c13d0000000003040019000000400040043f000000000001004b000028df0000613d000029cc0000013d00000000023500190000003f02200039000013e7022001970000000004420019000000000024004b000000000200003900000001020040390000130e0040009c000000670000213d0000000100200190000000670000c13d0000000003040019000000400040043f000000000001004b000029540000613d00001317020000410000000004030019000a00000003001d000000000023043500000004023000390000002003000039000000000032043500000024024000394beb29e40000040f0000000a02000029000026040000013d000012fc033001970000001f0530018f000012fe06300198000000400200043d0000000004620019000020d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029df0000c13d000020d20000013d00000000430104340000000001320436000013e7063001970000001f0530018f000000000014004b000029fa0000813d000000000006004b000029f60000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000029f00000c13d000000000005004b00002a100000613d000000000701001900002a060000013d0000000007610019000000000006004b00002a030000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000029ff0000c13d000000000005004b00002a100000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f03300039000013e7023001970000000001210019000000000001042d0000001f02200039000013e7022001970000000001120019000000000021004b000000000200003900000001020040390000130e0010009c00002a220000213d000000010020019000002a220000c13d000000400010043f000000000001042d000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed00010430000013980010009c00002a360000213d000000630010008c00002a360000a13d00000002030003670000000401300370000000000101043b000012ff0010009c00002a360000213d0000002402300370000000000202043b0000004403300370000000000303043b000000000001042d000000000100001900004bed000104300000001f03100039000000000023004b0000000004000019000013990400404100001399052001970000139903300197000000000653013f000000000053004b00000000030000190000139903002041000013990060009c000000000304c019000000000003004b00002a7f0000613d0000000204000367000000000314034f000000000303043b000013ea0030009c00002a790000813d0000001f06300039000013e7066001970000003f06600039000013e707600197000000400600043d0000000007760019000000000067004b000000000800003900000001080040390000130e0070009c00002a790000213d000000010080019000002a790000c13d0000002008100039000000400070043f00000000013604360000000006830019000000000026004b00002a7f0000213d000000000484034f000013e7053001980000001f0630018f000000000251001900002a690000613d000000000704034f0000000008010019000000007907043c0000000008980436000000000028004b00002a650000c13d000000000006004b00002a760000613d000000000454034f0000000305600210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000042043500000000013100190000000000010435000000000001042d000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed00010430000000000100001900004bed00010430000000000301001900000000040104330000000001420436000000000004004b00002a8d0000613d00000000020000190000002003300039000000000503043300000000015104360000000102200039000000000042004b00002a870000413d000000000001042d000013980010009c00002af40000213d0000000004010019000000630010008c00002af40000a13d00000002050003670000000401500370000000000101043b000012ff0010009c00002af40000213d0000002402500370000000000302043b0000130e0030009c00002af40000213d0000002302300039000000000042004b00002af40000813d0000000402300039000000000225034f000000000602043b000013ea0060009c00002af60000813d00000005076002100000003f02700039000013a608200197000000400200043d0000000008820019000000000028004b000000000900003900000001090040390000130e0080009c00002af60000213d000000010090019000002af60000c13d000000400080043f000000000062043500000024033000390000000007370019000000000047004b00002af40000213d000000000006004b00002ac00000613d0000000006020019000000000835034f000000000808043b000000200660003900000000008604350000002003300039000000000073004b00002ab90000413d0000004403500370000000000603043b0000130e0060009c00002af40000213d0000002303600039000000000043004b0000000007000019000013990700804100001399084001970000139903300197000000000983013f000000000083004b00000000030000190000139903004041000013990090009c000000000307c019000000000003004b00002af40000c13d0000000403600039000000000335034f000000000703043b0000130e0070009c00002af60000213d00000005087002100000003f03800039000013a609300197000000400300043d0000000009930019000000000039004b000000000a000039000000010a0040390000130e0090009c00002af60000213d0000000100a0019000002af60000c13d000000400090043f000000000073043500000024066000390000000008680019000000000048004b00002af40000213d000000000007004b00002af30000613d0000000004030019000000000765034f000000000707043b000000200440003900000000007404350000002006600039000000000086004b00002aec0000413d000000000001042d000000000100001900004bed00010430000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed000104300000000701000039000000000201041a0000000801200270000012ff0110019800002b020000613d000000000001042d000000ff0020019000000000010000190000130701006041000000000001042d0002000000000002000000000c0100190000000101000039000000000201041a000000400b00043d000013930100004100000000001b04350000000401b000390000139403000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c00020000000c001d00002b1b0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002b480000013d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700010000000b001d4beb4be60000040f000000010b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002b360000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002b320000c13d000000000006004b00002b430000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000000020c00002900002cc90000613d0000001f01400039000000600110018f000000000ab1001900000000001a004b000000000100003900000001010040390000130e00a0009c00002cbd0000213d000000010010019000002cbd0000c13d0000004000a0043f0000001f0030008c00002cbb0000a13d00000000020b0433000012ff0020009c00002cbb0000213d0000000201000039000000000101041a0000004404a00039000013b1050000410000000000540435000013960400004100000000004a04350000000404a0003900000000001404350000002401a0003900000000000104350000000001000414000000040020008c00002b680000c13d000000030100036700002b7b0000013d000012fc00a0009c00010000000a001d000012fc0300004100000000030a40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f00001318011001c74beb4be60000040f0000006003100270000112fc0030019d000012fc033001970003000000010355000000010020019000002ce70000613d000000020c000029000000010a000029000013e7053001980000001f0630018f00000000045a001900002b850000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00002b810000c13d000000000006004b00002b920000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000013e7041001970000000001a40019000000000041004b000000000400003900000001040040390000130e0010009c00002cbd0000213d000000010040019000002cbd0000c13d000000400010043f000013980030009c00002cbb0000213d000000200030008c00002cbb0000413d00000000040a04330000130e0040009c00002cbb0000213d0000000006a300190000000003a400190000001f04300039000000000064004b0000000005000019000013990500804100001399044001970000139907600197000000000874013f000000000074004b00000000040000190000139904004041000013990080009c000000000405c019000000000004004b00002cbb0000c13d00000000540304340000130e0040009c00002cbd0000213d0000001f03400039000013e7033001970000003f03300039000013e70330019700000000031300190000130e0030009c00002cbd0000213d000000400030043f00000000034104360000000007540019000000000067004b00002cbb0000213d000013e7074001970000001f0640018f000000000035004b00002bd70000813d000000000007004b00002bd30000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00002bcd0000c13d000000000006004b00002bed0000613d000000000803001900002be30000013d0000000008730019000000000007004b00002be00000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b00002bdc0000c13d000000000006004b00002bed0000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f0000000000580435000000000443001900000000000404350000137f00c0009c00002bf40000413d00000040060000390000137f04c0012a00002bfd0000013d0000138100c0009c00000000040c0019000013800440212a00000000060000390000002006002039000013820040009c00000010066081bf0000138304408197000013820440812a000013840040009c00000008066080390000130e04408197000013840440812a000027100040008c0000000406608039000012fc04408197000027100440811a000000640040008c00000002066080390000ffff0440818f000000640440811a000000090040008c0000000106602039000013e7076001970000005f04700039000013e708400197000000400500043d0000000004580019000000000084004b000000000800003900000001080040390000130e0040009c00002cbd0000213d000000010080019000002cbd0000c13d000000400040043f000000010460003900000000044504360000002007700039000013e7087001980000001f0770018f00002c260000613d000000000884001900000000090000310000000209900367000000000a040019000000009b09043c000000000aba043600000000008a004b00002c220000c13d000000000007004b000000000665001900000021066000390000000900c0008c0000000a7cc0011a0000000307700210000000010660008a00000000080604330000138508800197000013860770021f0000138707700197000000000787019f000000000076043500002c290000213d0000000006010433000013e7096001970000001f0860018f000000400100043d0000002007100039000000000073004b00002c4b0000813d000000000009004b00002c470000613d000000000b830019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c00002c410000c13d000000000008004b00002c610000613d000000000a07001900002c570000013d000000000a970019000000000009004b00002c540000613d000000000b030019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b00002c500000c13d000000000008004b00002c610000613d0000000003930019000000030880021000000000090a043300000000098901cf000000000989022f00000000030304330000010008800089000000000383022f00000000038301cf000000000393019f00000000003a0435000000000367001900000000000304350000000005050433000013e7075001970000001f0650018f000000000034004b00002c780000813d000000000007004b00002c740000613d00000000096400190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00002c6e0000c13d000000000006004b00002c8e0000613d000000000803001900002c840000013d0000000008730019000000000007004b00002c810000613d0000000009040019000000000a030019000000009b090434000000000aba043600000000008a004b00002c7d0000c13d000000000006004b00002c8e0000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f0000000000480435000000000353001900000000000304350000000c06000039000000000506041a000000010750019000000001045002700000007f0440618f0000001f0040008c00000000080000390000000108002039000000000087004b00002cc30000c13d000000000007004b00002ca90000613d000000000060043f000000000004004b00002cab0000613d000013da0500004100000000060000190000000007360019000000000805041a000000000087043500000001055000390000002006600039000000000046004b00002ca10000413d00002cab0000013d000013e805500197000000000053043500000000031300490000000003430019000000200430008a00000000004104350000001f03300039000013e7033001970000000002130019000000000032004b000000000300003900000001030040390000130e0020009c00002cbd0000213d000000010030019000002cbd0000c13d000000400020043f000000000001042d000000000100001900004bed00010430000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed00010430000013cf01000041000000000010043f0000002201000039000000040010043f0000139c0100004100004bed000104300000001f0530018f000012fe06300198000000400200043d000000000462001900002cd40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002cd00000c13d000000000005004b00002ce10000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000112019f00004bed000104300000001f0530018f000012fe06300198000000400200043d000000000462001900002cf20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002cee0000c13d000000000005004b00002cff0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000121019f00004bed000104300000006002100039000013eb0300004100000000003204350000004002100039000013ec030000410000000000320435000000200210003900000028030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0004000000000002000400000001001d000000400100043d000013ed0010009c00002ed20000813d0000006002100039000000400020043f000000400210003900000000000204350000002002100039000000000002043500000000000104350000000101000039000000000201041a000000400c00043d000013930100004100000000001c04350000000401c000390000139403000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c00002d300000c13d0000000103000031000000200030008c0000002004000039000000000403401900002d5c0000013d000012fc00c0009c000012fc0300004100000000030c40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700030000000c001d4beb4be60000040f000000030c0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002d4b0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002d470000c13d000000000006004b00002d580000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002ed80000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000130e00b0009c00002ed20000213d000000010020019000002ed20000c13d0000004000b0043f0000001f0030008c00002ed00000a13d00000000020c0433000012ff0020009c00002ed00000213d0000000204000039000000000404041a0000004405b00039000013ee0600004100000000006504350000002405b0003900000004060000290000000000650435000013b70500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002da90000613d000012fc00b0009c000012fc0100004100000000010b40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c700030000000b001d4beb4be60000040f000000030b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002d960000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002d920000c13d000000000006004b00002da30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002ee40000613d0000001f01400039000000600110018f000000000cb100190000130e00c0009c00002ed20000213d0000004000c0043f000000200030008c00002ed00000413d00000000010b0433000300000001001d0000000101000039000000000201041a000013930100004100000000001c04350000000401c000390000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c00002dbf0000c13d000000200400003900002deb0000013d000012fc00c0009c000012fc0300004100000000030c40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700020000000c001d4beb4be60000040f000000020c0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002dda0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002dd60000c13d000000000006004b00002de70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002ef00000613d0000001f01400039000000600110018f000000000bc100190000130e00b0009c00002ed20000213d0000004000b0043f000000200030008c00002ed00000413d00000000020c0433000012ff0020009c00002ed00000213d0000000204000039000000000404041a0000004405b00039000013ef0600004100000000006504350000002405b0003900000004060000290000000000650435000013b70500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002e330000613d000012fc00b0009c000012fc0100004100000000010b40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c700020000000b001d4beb4be60000040f000000020b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002e200000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002e1c0000c13d000000000006004b00002e2d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002efc0000613d0000001f01400039000000600110018f000000000cb100190000130e00c0009c00002ed20000213d0000004000c0043f000000200030008c00002ed00000413d00000000010b0433000200000001001d0000000101000039000000000201041a000013930100004100000000001c04350000000401c000390000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c00002e490000c13d000000200400003900002e750000013d000012fc00c0009c000012fc0300004100000000030c40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700010000000c001d4beb4be60000040f000000010c0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002e640000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002e600000c13d000000000006004b00002e710000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002f080000613d0000001f01400039000000600110018f000000000bc100190000130e00b0009c00002ed20000213d0000004000b0043f000000200030008c00002ed00000413d00000000020c0433000012ff0020009c00002ed00000213d0000000204000039000000000404041a0000004405b00039000013f00600004100000000006504350000002405b0003900000004060000290000000000650435000013b70500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002ebd0000613d000012fc00b0009c000012fc0100004100000000010b40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c700040000000b001d4beb4be60000040f000000040b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002eaa0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002ea60000c13d000000000006004b00002eb70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002f140000613d0000001f01400039000000600110018f0000000001b100190000130e0010009c00002ed20000213d000000400010043f000000200030008c00002ed00000413d0000137e0010009c00002ed20000213d00000000020b04330000006003100039000000400030043f0000004003100039000000030400002900000000004304350000002003100039000000000023043500000002020000290000000000210435000000000001042d000000000100001900004bed00010430000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed000104300000001f0530018f000012fe06300198000000400200043d000000000462001900002f1f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002edf0000c13d00002f1f0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900002f1f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002eeb0000c13d00002f1f0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900002f1f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ef70000c13d00002f1f0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900002f1f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002f030000c13d00002f1f0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900002f1f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002f0f0000c13d00002f1f0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900002f1f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002f1b0000c13d000000000005004b00002f2c0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000112019f00004bed0001043000010000000000020000000101000039000000000201041a000000ff0120019000002f830000c13d000000400b00043d000013780100004100000000001b043500000000010004140000000802200270000012ff02200197000000040020008c00002f440000c13d0000000103000031000000200030008c0000002004000039000000000403401900002f700000013d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f00001379011001c700010000000b001d4beb4be60000040f000000010b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002f5f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002f5b0000c13d000000000006004b00002f6c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002f8c0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000130e0010009c00002f860000213d000000010020019000002f860000c13d000000400010043f0000001f0030008c00002f840000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b00002f840000c13d000000000001042d000000000100001900004bed00010430000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed000104300000001f0530018f000012fe06300198000000400200043d000000000462001900002f970000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002f930000c13d000000000005004b00002fa40000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000121019f00004bed0001043000020000000000020000000102000039000000000202041a000000400c00043d000013930300004100000000003c04350000000404c000390000139403000041000000000034043500000000040004140000000802200270000012ff02200197000000040020008c00002fbd0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002feb0000013d000100000001001d000012fc00c0009c000012fc0300004100000000030c40190000004003300210000012fc0040009c000012fc04008041000000c001400210000000000131019f0000139c011001c700020000000c001d4beb4be60000040f000000020c0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002fd90000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002fd50000c13d000000000006004b00002fe60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000030470000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000130e00b0009c000030410000213d0000000100200190000030410000c13d0000004000b0043f0000001f0030008c0000303f0000a13d00000000020c0433000012ff0020009c0000303f0000213d0000000204000039000000000404041a0000004405b00039000013c90600004100000000006504350000002405b000390000000000150435000013b70500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000030370000613d000012fc00b0009c000012fc0100004100000000010b40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c700020000000b001d4beb4be60000040f000000020b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000030240000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000030200000c13d000000000006004b000030310000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000030650000613d0000001f01400039000000600710018f0000000001b700190000130e0010009c000030410000213d000000400010043f000000200030008c0000303f0000413d00000000010b0433000000000001042d000000000100001900004bed00010430000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed000104300000001f0530018f000012fe06300198000000400200043d0000000004620019000030520000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000304e0000c13d000000000005004b0000305f0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000112019f00004bed000104300000001f0530018f000012fe06300198000000400200043d0000000004620019000030700000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000306c0000c13d000000000005004b0000307d0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000121019f00004bed0001043000020000000000020000000102000039000000000202041a000000400c00043d000013930300004100000000003c04350000000404c000390000139403000041000000000034043500000000040004140000000802200270000012ff02200197000000040020008c000030960000c13d0000000103000031000000200030008c00000020040000390000000004034019000030c40000013d000100000001001d000012fc00c0009c000012fc0300004100000000030c40190000004003300210000012fc0040009c000012fc04008041000000c001400210000000000131019f0000139c011001c700020000000c001d4beb4be60000040f000000020c0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000030b20000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000030ae0000c13d000000000006004b000030bf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000031200000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000130e00b0009c0000311a0000213d00000001002001900000311a0000c13d0000004000b0043f0000001f0030008c000031180000a13d00000000020c0433000012ff0020009c000031180000213d0000000204000039000000000404041a0000004405b00039000013ef0600004100000000006504350000002405b000390000000000150435000013b70500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000031100000613d000012fc00b0009c000012fc0100004100000000010b40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c700020000000b001d4beb4be60000040f000000020b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000030fd0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000030f90000c13d000000000006004b0000310a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000313e0000613d0000001f01400039000000600710018f0000000001b700190000130e0010009c0000311a0000213d000000400010043f000000200030008c000031180000413d00000000010b0433000000000001042d000000000100001900004bed00010430000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed000104300000001f0530018f000012fe06300198000000400200043d00000000046200190000312b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000031270000c13d000000000005004b000031380000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000112019f00004bed000104300000001f0530018f000012fe06300198000000400200043d0000000004620019000031490000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000031450000c13d000000000005004b000031560000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000121019f00004bed0001043000010000000000020000000101000039000000000201041a000000400c00043d000013930100004100000000001c04350000000401c000390000139403000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c0000316f0000c13d0000000103000031000000200030008c000000200400003900000000040340190000319b0000013d000012fc00c0009c000012fc0300004100000000030c40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700010000000c001d4beb4be60000040f000000010c0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000318a0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000031860000c13d000000000006004b000031970000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000031f90000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000130e00b0009c000031f30000213d0000000100200190000031f30000c13d0000004000b0043f0000001f0030008c000031f10000a13d00000000020c0433000012ff0020009c000031f10000213d0000000204000039000000000404041a0000004405b00039000013bd060000410000000000650435000013b60500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c000031e70000613d000012fc00b0009c000012fc0100004100000000010b40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c700010000000b001d4beb4be60000040f000000010b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000031d40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000031d00000c13d000000000006004b000031e10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000032170000613d0000001f01400039000000600110018f0000000001b100190000130e0010009c000031f30000213d000000400010043f000000200030008c000031f10000413d00000000010b0433000012ff0010009c000031f10000213d000000000001042d000000000100001900004bed00010430000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed000104300000001f0530018f000012fe06300198000000400200043d0000000004620019000032040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000032000000c13d000000000005004b000032110000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000112019f00004bed000104300000001f0530018f000012fe06300198000000400200043d0000000004620019000032220000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000321e0000c13d000000000005004b0000322f0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000121019f00004bed000104300001000000000002000100000002001d000012ff01100197000000000010043f0000000501000039000000200010043f0000000001000414000012fc0010009c000012fc01008041000000c00110021000001308011001c700008010020000394beb4be60000040f0000000100200190000032680000613d000000000101043b0000000102000029000012ff02200197000100000002001d000000000020043f000000200010043f0000000001000414000012fc0010009c000012fc01008041000000c00110021000001308011001c700008010020000394beb4be60000040f0000000100200190000032680000613d000000000101043b000000000101041a000000ff01100190000032580000613d000000000001042d0000000701000039000000000201041a0000137b00200198000032660000613d0000000801200270000012ff01100198000032620000c13d000000ff0020019000000000010000190000130701006041000000010010006b00000000010000390000000101006039000000000001042d0000000001000019000000000001042d000000000100001900004bed000104300000006004100210000000400100043d000000200310003900000000004304350000003404100039000000000024043500000034020000390000000000210435000013ed0010009c0000328a0000813d0000006002100039000000400020043f000012fc0030009c000012fc0300804100000040023002100000000001010433000012fc0010009c000012fc010080410000006001100210000000000121019f0000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f00001310011001c700008010020000394beb4be60000040f0000000100200190000032900000613d000000000101043b000000000001042d000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed00010430000000000100001900004bed0001043000020000000000020000000102000039000000000202041a000000400b00043d0000139e0300004100000000003b04350000000403b00039000013f1040000410000000000430435000012ff051001970000002401b00039000000000051043500000000010004140000000802200270000012ff02200197000000040020008c000032a80000c13d0000000103000031000000200030008c00000020040000390000000004034019000032d60000013d000100000005001d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000130d011001c700020000000b001d4beb4be60000040f000000020b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000032c40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000032c00000c13d000000000006004b000032d10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000032fb0000613d00000001050000290000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000130e0010009c000032ee0000213d0000000100200190000032ee0000c13d000000400010043f0000001f0030008c000032ec0000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000032ec0000c13d000000000001004b000032f40000613d000000000001042d000000000100001900004bed00010430000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed00010430000013a301000041000000000010043f000000040050043f000013f101000041000000240010043f0000130d0100004100004bed000104300000001f0530018f000012fe06300198000000400200043d0000000004620019000033060000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000033020000c13d000000000005004b000033130000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000112019f00004bed0001043000020000000000020000000102000039000000000202041a000000400b00043d0000139e0300004100000000003b04350000000403b000390000139f040000410000000000430435000012ff051001970000002401b00039000000000051043500000000010004140000000802200270000012ff02200197000000040020008c0000332f0000c13d0000000103000031000000200030008c000000200400003900000000040340190000335d0000013d000100000005001d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000130d011001c700020000000b001d4beb4be60000040f000000020b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000334b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000033470000c13d000000000006004b000033580000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000033820000613d00000001050000290000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000130e0010009c000033750000213d0000000100200190000033750000c13d000000400010043f0000001f0030008c000033730000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000033730000c13d000000000001004b0000337b0000613d000000000001042d000000000100001900004bed00010430000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed00010430000013a301000041000000000010043f000000040050043f0000139f01000041000000240010043f0000130d0100004100004bed000104300000001f0530018f000012fe06300198000000400200043d00000000046200190000338d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000033890000c13d000000000005004b0000339a0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000112019f00004bed0001043000020000000000020000000102000039000000000202041a000000400b00043d0000139e0300004100000000003b04350000000403b00039000013c0040000410000000000430435000012ff051001970000002401b00039000000000051043500000000010004140000000802200270000012ff02200197000000040020008c000033b60000c13d0000000103000031000000200030008c00000020040000390000000004034019000033e40000013d000100000005001d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000130d011001c700020000000b001d4beb4be60000040f000000020b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000033d20000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000033ce0000c13d000000000006004b000033df0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000034090000613d00000001050000290000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000130e0010009c000033fc0000213d0000000100200190000033fc0000c13d000000400010043f0000001f0030008c000033fa0000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000033fa0000c13d000000000001004b000034020000613d000000000001042d000000000100001900004bed00010430000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed00010430000013a301000041000000000010043f000000040050043f000013c001000041000000240010043f0000130d0100004100004bed000104300000001f0530018f000012fe06300198000000400200043d0000000004620019000034140000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000034100000c13d000000000005004b000034210000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000112019f00004bed000104300001000000000002000000400b00043d0000000101000039000000000201041a000000ff002001900000347d0000c13d000013780100004100000000001b043500000000010004140000000802200270000012ff02200197000000040020008c000034390000c13d0000000103000031000000200030008c00000020040000390000000004034019000034650000013d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f00001379011001c700010000000b001d4beb4be60000040f000000010b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000034540000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000034500000c13d000000000006004b000034610000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000034940000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000130e0010009c0000348e0000213d00000001002001900000348e0000c13d000000400010043f0000001f0030008c0000347b0000a13d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b0000347b0000c13d000000000002004b0000347e0000c13d000000000001042d000000000100001900004bed0001043000000000010b001900000044021000390000137a03000041000000000032043500000024021000390000001003000039000000000032043500001317020000410000000000210435000000040210003900000020030000390000000000320435000012fc0010009c000012fc01008041000000400110021000001318011001c700004bed00010430000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed000104300000001f0530018f000012fe06300198000000400200043d00000000046200190000349f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000349b0000c13d000000000005004b000034ac0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000112019f00004bed00010430000d000000000002000c00000003001d000d00000002001d000b00000001001d0000000101000039000000000201041a000000400c00043d000013930100004100000000001c04350000000401c000390000139403000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c000034c80000c13d0000000103000031000000200030008c00000020040000390000000004034019000034f40000013d000012fc00c0009c000012fc0300004100000000030c40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c7000a0000000c001d4beb4be60000040f0000000a0c0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000034e30000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000034df0000c13d000000000006004b000034f00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003c090000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000130e00b0009c00003b4b0000213d000000010020019000003b4b0000c13d0000004000b0043f0000001f0030008c00003b490000a13d00000000020c0433000012ff0020009c00003b490000213d0000000204000039000000000404041a0000004405b00039000013ee0600004100000000006504350000002405b000390000000d060000290000000000650435000013b70500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000035410000613d000012fc00b0009c000012fc0100004100000000010b40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c7000a0000000b001d4beb4be60000040f0000000a0b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000352e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000352a0000c13d000000000006004b0000353b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003c150000613d0000001f01400039000000600110018f000000000db100190000130e00d0009c00003b4b0000213d0000004000d0043f000000200030008c00003b490000413d00000000010b0433000a00000001001d0000000101000039000000000201041a000013930100004100000000001d04350000000401d000390000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c000035570000c13d0000002004000039000035830000013d000012fc00d0009c000012fc0300004100000000030d40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700090000000d001d4beb4be60000040f000000090d0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057d0019000035720000613d000000000801034f00000000090d0019000000008a08043c0000000009a90436000000000059004b0000356e0000c13d000000000006004b0000357f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003c210000613d0000001f01400039000000600110018f000000000cd100190000130e00c0009c00003b4b0000213d0000004000c0043f000000200030008c00003b490000413d00000000020d0433000012ff0020009c00003b490000213d0000000204000039000000000404041a0000004405c00039000013ef0600004100000000006504350000002405c000390000000d060000290000000000650435000013b70500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000035cb0000613d000012fc00c0009c000012fc0100004100000000010c40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c700090000000c001d4beb4be60000040f000000090c0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000035b80000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000035b40000c13d000000000006004b000035c50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003c2d0000613d0000001f01400039000000600110018f000000000bc100190000130e00b0009c00003b4b0000213d0000004000b0043f000000200030008c00003b490000413d00000000010c04330000000c02000029000000000021001a0000000a0400002900003c890000413d0000000001210019000000000041004b00003bf00000213d0000000101000039000000000201041a000013930100004100000000001b04350000000401b000390000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c000035e70000c13d0000002004000039000036130000013d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c7000a0000000b001d4beb4be60000040f0000000a0b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000036020000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000035fe0000c13d000000000006004b0000360f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003c390000613d0000001f01400039000000600110018f000000000cb100190000130e00c0009c00003b4b0000213d0000004000c0043f000000200030008c00003b490000413d00000000020b0433000012ff0020009c00003b490000213d0000000204000039000000000404041a0000004405c00039000013ef0600004100000000006504350000002405c000390000000d060000290000000000650435000013b70500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c0000365b0000613d000012fc00c0009c000012fc0100004100000000010c40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c7000a0000000c001d4beb4be60000040f0000000a0c0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000036480000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000036440000c13d000000000006004b000036550000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003c450000613d0000001f01400039000000600110018f000000000bc100190000130e00b0009c00003b4b0000213d0000004000b0043f000000200030008c00003b490000413d00000000020c0433000a00000002001d0000000c0020002a00003c890000413d0000000101000039000000000201041a000013930100004100000000001b04350000000401b000390000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c000036730000c13d00000020040000390000369f0000013d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700090000000b001d4beb4be60000040f000000090b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000368e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000368a0000c13d000000000006004b0000369b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003c510000613d0000001f01400039000000600110018f0000000001b100190000130e0010009c00003b4b0000213d000000400010043f000000200030008c00003b490000413d00000000020b0433000012ff0020009c00003b490000213d0000000201000039000000000101041a000800000001001d0000130a010000410000000000100443000900000002001d00000004002004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f000000010020019000003b570000613d000000000101043b000000000001004b000000090300002900003b490000613d0000000a020000290000000c01200029000000400400043d000000640240003900000000001204350000004401400039000013ef02000041000000000021043500000024014000390000000d020000290000000000210435000013bf0100004100000000021404360000000401400039000000080500002900000000005104350000000001000414000000040030008c000036e50000613d000012fc0040009c000800000002001d000012fc0200004100000000020440190000004002200210000012fc0010009c000012fc01008041000000c001100210000000000121019f0000131b011001c70000000002030019000a00000004001d4beb4be10000040f0000000a040000290000006003100270000112fc0030019d00030000000103550000000100200190000000080200002900003c5d0000613d0000130e0040009c00003b4b0000213d000000400040043f000013010040009c00003b4b0000213d000000400020043f0000000000040435000000400300043d0000000b01000029000112ff0010019c00003bf60000613d000500000003001d000013120030009c00003b4b0000213d00000005020000290000004001200039000000400010043f00000001010000390000000001120436000400000001001d0000000d020000290000000000210435000000400100043d000900000001001d000013120010009c00003b4b0000213d00000009020000290000004001200039000000400010043f00000001010000390000000001120436000300000001001d0000000c02000029000000000021043500000005010000290000000001010433000000000001004b000037120000613d000000010210008c0000000003000039000000010300c039000000000002004b00003b510000c13d000000000032004b0000370e0000c13d0000000b02000039000000000202041a000012ff02200198000037700000613d0000130a010000410000000000100443000d00000002001d00000004002004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f000000010020019000003b570000613d000000000101043b000000000001004b00003b490000613d000000400600043d0000006401600039000000a0020000390000000000210435000000440160003900000001020000290000000000210435000013f20100004100000000001604350000000401600039000000000200041000000000002104350000002401600039000000000001043500000005040000290000000002040433000000a4016000390000000000210435000000c401600039000000000002004b000037420000613d00000000030000190000002004400039000000000504043300000000015104360000000103300039000000000023004b0000373c0000413d0000000002610049000000040220008a00000084036000390000000000230435000000090400002900000000020404330000000001210436000000000002004b000037520000613d00000000030000190000002004400039000000000504043300000000015104360000000103300039000000000023004b0000374c0000413d00000000040004140000000d02000029000000040020008c0000376b0000613d0000000001610049000012fc0010009c000012fc010080410000006001100210000012fc0060009c000012fc0300004100000000030640190000004003300210000000000131019f000012fc0040009c000012fc04008041000000c003400210000000000131019f000d00000006001d4beb4be10000040f0000000d060000290000006003100270000112fc0030019d0003000000010355000000010020019000003c6a0000613d0000130e0060009c00003b4b0000213d000000400060043f00000005010000290000000001010433000000000001004b000000050300002900003b090000613d000000400a00043d0000000b0100002900020060001002180000000004000019000037820000013d0000130e00a0009c00003b4b0000213d0000004000a0043f000000050300002900000000010304330000000b040000290000000104400039000000000014004b000000090200002900003aee0000813d000b00000004001d0000000502400210000d00000002001d00000004012000290000000001010433000c00000001001d0000000101000039000000000201041a000013930100004100000000001a04350000000401a000390000139403000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c000037990000c13d0000000103000031000000200030008c00000020040000390000000004034019000037c40000013d000012fc00a0009c000012fc0300004100000000030a40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c7000a0000000a001d4beb4be60000040f0000000a0a0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000037b30000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000037af0000c13d0000001f07400190000037c00000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003b580000613d0000001f01400039000000600110018f000000000ba1001900000000001b004b000000000200003900000001020040390000130e00b0009c00003b4b0000213d000000010020019000003b4b0000c13d0000004000b0043f000000200030008c00003b490000413d00000000020a0433000012ff0020009c00003b490000213d0000000204000039000000000404041a0000004405b00039000013c40600004100000000006504350000002405b000390000000c060000290000000000650435000013a80500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000038100000613d000012fc00b0009c000012fc0100004100000000010b40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c7000a0000000b001d4beb4be60000040f0000000a0b0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000037fd0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000037f90000c13d0000001f074001900000380a0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003b640000613d0000001f01400039000000600110018f0000000001b100190000130e0010009c00003b4b0000213d000000400010043f000000200030008c00003b490000413d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b00003b490000c13d000000090200002900000000020204330000000b0020006c00003b510000a13d0000000d0300002900000003023000290000000002020433000a00000002001d00000020021000390000000203000029000000000032043500000034031000390000000c040000290000000000430435000000340300003900000000003104350000137e0010009c00003b4b0000213d0000006003100039000000400030043f000012fc0020009c000012fc0200804100000040022002100000000001010433000012fc0010009c000012fc010080410000006001100210000000000121019f0000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f00001310011001c700008010020000394beb4be60000040f000000010020019000003b490000613d000000000101043b000d00000001001d0000000101000039000000000201041a000000400b00043d000013930100004100000000001b04350000000401b000390000139403000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c000038560000c13d0000000103000031000000200030008c00000020040000390000000004034019000038810000013d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700080000000b001d4beb4be60000040f000000080b0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000038700000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b0000386c0000c13d0000001f074001900000387d0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003b700000613d0000001f01400039000000600110018f000000000ab1001900000000001a004b000000000200003900000001020040390000130e00a0009c00003b4b0000213d000000010020019000003b4b0000c13d0000004000a0043f000000200030008c00003b490000413d00000000020b0433000012ff0020009c00003b490000213d0000000204000039000000000404041a0000004405a00039000013c90600004100000000006504350000002405a000390000000d060000290000000000650435000013b70500004100000000005a04350000000405a0003900000000004504350000000004000414000000040020008c000038cd0000613d000012fc00a0009c000012fc0100004100000000010a40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c700080000000a001d4beb4be60000040f000000080a0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000038ba0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000038b60000c13d0000001f07400190000038c70000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003b7c0000613d0000001f01400039000000600110018f000000000ba100190000130e00b0009c00003b4b0000213d0000004000b0043f000000200030008c00003b490000413d00000000020a0433000800000002001d0000000a0020002a00003c890000413d0000000101000039000000000201041a000013930100004100000000001b04350000000401b000390000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c00000020040000390000390f0000613d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700070000000b001d4beb4be60000040f000000070b0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000038fe0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000038fa0000c13d0000001f074001900000390b0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003b880000613d0000001f01400039000000600110018f0000000001b100190000130e0010009c00003b4b0000213d000000400010043f000000200030008c00003b490000413d00000000020b0433000012ff0020009c00003b490000213d0000000201000039000000000101041a000600000001001d0000130a010000410000000000100443000700000002001d00000004002004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f000000010020019000003b570000613d000000000101043b000000000001004b000000070300002900003b490000613d00000008020000290000000a01200029000000400a00043d0000006402a0003900000000001204350000004401a00039000013c90200004100000000002104350000002401a000390000000d020000290000000000210435000013bf0100004100000000001a04350000000404a00039000000060100002900000000001404350000000001000414000000040030008c000a0000000a001d000039550000613d000012fc00a0009c000012fc0200004100000000020a40190000004002200210000012fc0010009c000012fc01008041000000c001100210000000000121019f0000131b011001c70000000002030019000800000004001d4beb4be10000040f00000008040000290000000a0a0000290000006003100270000112fc0030019d0003000000010355000000010020019000003b940000613d0000130e00a0009c00003b4b0000213d0000004000a0043f0000000101000039000000000201041a000013930100004100000000001a04350000139401000041000000000014043500000000010004140000000802200270000012ff02200197000000040020008c000039680000c13d0000000103000031000000200030008c00000020040000390000000004034019000039920000013d000012fc00a0009c000012fc0300004100000000030a40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c74beb4be60000040f0000000a0a0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000039810000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b0000397d0000c13d0000001f074001900000398e0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003ba10000613d0000001f01400039000000600110018f000000000ba100190000130e00b0009c00003b4b0000213d0000004000b0043f000000200030008c00003b490000413d00000000020a0433000012ff0020009c00003b490000213d0000000204000039000000000404041a0000004405b00039000013f30600004100000000006504350000002405b000390000000d060000290000000000650435000013b60500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000039d90000613d000012fc00b0009c000012fc0100004100000000010b40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c7000a0000000b001d4beb4be60000040f0000000a0b0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000039c60000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000039c20000c13d0000001f07400190000039d30000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003bad0000613d0000001f01400039000000600110018f000000000ab100190000130e00a0009c00003b4b0000213d0000004000a0043f000000200030008c00003b490000413d00000000010b0433000012ff0010009c00003b490000213d000000000001004b0000377b0000c13d0000000101000039000000000201041a000013930100004100000000001a04350000000401a000390000139403000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c000000200400003900003a1c0000613d000012fc00a0009c000012fc0300004100000000030a40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c7000a0000000a001d4beb4be60000040f0000000a0a0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900003a0b0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00003a070000c13d0000001f0740019000003a180000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003bb90000613d0000001f01400039000000600110018f0000000001a100190000130e0010009c00003b4b0000213d000000400010043f000000200040008c00003b490000413d00000000020a0433000012ff0020009c00003b490000213d0000000201000039000000000101041a000800000001001d0000130a010000410000000000100443000a00000002001d00000004002004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f000000010020019000003b570000613d000000000101043b000000000001004b0000000a0300002900003b490000613d000000400a00043d0000006401a00039000000010200002900000000002104350000004401a00039000013f30200004100000000002104350000002401a000390000000d020000290000000000210435000013bc0100004100000000001a04350000000404a00039000000080100002900000000001404350000000001000414000000040030008c00070000000a001d00003a610000613d000012fc00a0009c000012fc0200004100000000020a40190000004002200210000012fc0010009c000012fc01008041000000c001100210000000000121019f0000131b011001c70000000002030019000a00000004001d4beb4be10000040f0000000a04000029000000070a0000290000006003100270000112fc0030019d0003000000010355000000010020019000003bc50000613d0000130e00a0009c00003b4b0000213d0000004000a0043f0000000101000039000000000201041a000013930100004100000000001a04350000139401000041000000000014043500000000010004140000000802200270000012ff02200197000000040020008c00003a740000c13d0000000103000031000000200030008c0000002004000039000000000403401900003a9e0000013d000012fc00a0009c000012fc0300004100000000030a40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c74beb4be60000040f000000070a0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900003a8d0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00003a890000c13d0000001f0740019000003a9a0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003bd20000613d0000001f01400039000000600110018f0000000001a100190000130e0010009c00003b4b0000213d000000400010043f000000200030008c00003b490000413d00000000020a0433000012ff0020009c00003b490000213d0000000201000039000000000101041a000800000001001d0000130a010000410000000000100443000a00000002001d00000004002004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f000000010020019000003b570000613d000000000101043b000000000001004b0000000a0300002900003b490000613d000000400a00043d0000006401a000390000000c0200002900000000002104350000004401a00039000013be0200004100000000002104350000002401a000390000000d020000290000000000210435000013bf0100004100000000001a04350000000401a00039000000080200002900000000002104350000000001000414000000040030008c000037780000613d000012fc00a0009c000012fc0200004100000000020a40190000004002200210000012fc0010009c000012fc01008041000000c001100210000000000121019f0000131b011001c70000000002030019000a0000000a001d4beb4be10000040f0000000a0a0000290000006003100270000112fc0030019d00030000000103550000000100200190000037780000c13d000012fc033001970000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003ae90000c13d00003bdd0000013d000000010010008c00003b090000c13d0000000001020433000000000001004b00003b510000613d0000000401000029000000000101043300000003020000290000000002020433000000400300043d000000200430003900000000002404350000000000130435000012fc0030009c000012fc0300804100000040013002100000000002000414000012fc0020009c000012fc02008041000000c002200210000000000121019f00001308011001c70000800d0200003900000004030000390000000005000411000013f40400004100003b3a0000013d000000400100043d0000004002000039000000000221043600000000040304330000000006030019000000400310003900000000004304350000006003100039000000000004004b00003b1a0000613d00000000050000190000002006600039000000000706043300000000037304360000000105500039000000000045004b00003b140000413d000000000413004900000000004204350000000005000411000000090600002900000000040604330000000002430436000000000004004b00003b290000613d00000000030000190000002006600039000000000706043300000000027204360000000103300039000000000043004b00003b230000413d0000000002120049000012fc0020009c000012fc020080410000006002200210000012fc0010009c000012fc010080410000004001100210000000000112019f0000000002000414000012fc0020009c000012fc02008041000000c002200210000000000121019f00001310011001c70000800d020000390000000403000039000013f504000041000000000600001900000001070000294beb4be10000040f000000010020019000003b490000613d00000005010000290000000001010433000000000001004b000000090200002900003b480000613d000000010110008a0000000002020433000000000012004b00003b510000a13d000000000001042d000000000100001900004bed00010430000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed00010430000013cf01000041000000000010043f0000003201000039000000040010043f0000139c0100004100004bed00010430000000000001042f0000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003b5f0000c13d00003bdd0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003b6b0000c13d00003bdd0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003b770000c13d00003bdd0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003b830000c13d00003bdd0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003b8f0000c13d00003bdd0000013d000012fc033001970000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003b9c0000c13d00003bdd0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003ba80000c13d00003bdd0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003bb40000c13d00003bdd0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003bc00000c13d00003bdd0000013d000012fc033001970000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003bcd0000c13d00003bdd0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003bd90000c13d000000000005004b00003bea0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000112019f00004bed00010430000013f802000041000000000020043f000000040010043f000000240040043f0000130d0100004100004bed000104300000006401300039000013f60200004100000000002104350000004401300039000013f702000041000000000021043500000024013000390000002102000039000000000021043500001317010000410000000000130435000000040130003900000020020000390000000000210435000012fc0030009c000012fc0300804100000040013002100000131b011001c700004bed000104300000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003c100000c13d00003bdd0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003c1c0000c13d00003bdd0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003c280000c13d00003bdd0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003c340000c13d00003bdd0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003c400000c13d00003bdd0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900003bdd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003c4c0000c13d00003bdd0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900003c760000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003c580000c13d00003c760000013d000012fc033001970000001f0530018f000012fe06300198000000400200043d000000000462001900003c760000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003c650000c13d00003c760000013d000012fc033001970000001f0530018f000012fe06300198000000400200043d000000000462001900003c760000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003c720000c13d000000000005004b00003c830000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000121019f00004bed00010430000013cf01000041000000000010043f0000001101000039000000040010043f0000139c0100004100004bed000104300006000000000002000300000001001d000400000002001d0000000021020434000200000002001d000500000003001d0000000032030434000100000003001d000000000021004b00003cb50000c13d000000000001004b00003cae0000613d000000000200001900000005010000290000000001010433000000000021004b00003caf0000a13d0000000501200210000600000002001d000000020210002900000001011000290000000003010433000000000202043300000003010000294beb34b20000040f0000000602000029000000010220003900000004010000290000000001010433000000000012004b00003c9c0000413d000000000001042d000013cf01000041000000000010043f0000003201000039000000040010043f0000139c0100004100004bed00010430000000400100043d0000006402100039000013c10300004100000000003204350000004402100039000013c203000041000000000032043500000024021000390000002903000039000000000032043500001317020000410000000000210435000000040210003900000020030000390000000000320435000012fc0010009c000012fc0100804100000040011002100000131b011001c700004bed000104300010000000000002000c00000005001d000100000001001d000300000003001d000812ff0030019b000400000002001d000a12ff0020019b000b00000004001d0000000016040434000700000001001d000000000006004b000600200050003d00003d4a0000613d000000080000006b000000000100003900000001010060390000000a04000029000000000004004b0000000002000039000000010200603900000008004001b0000043c20000613d000000000112019f000000010410018f0000000005000411000000070700003900000000080000190000000c03000029000900000006001d000500000004001d00003ced0000013d000000ff0010019000003d460000613d0000000108800039000000000068004b00003d4a0000813d0000000b010000290000000001010433000000000081004b000043c60000a13d0000000001030433000000000081004b000043c60000a13d000000000004004b00003cea0000c13d0000000501800210000000070210002900000000090204330000000601100029000000000a010433000000000107041a0000000802100270000012ff0220019800003ce80000613d000000000025004b00003cea0000613d000f0000000a001d001000000009001d000d00000008001d0000130a010000410000000000100443000e00000002001d00000004002004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000042c00000613d000000000101043b000000000001004b000000000500041100000010020000290000000f03000029000042b80000613d000000400900043d000000840190003900000000003104350000006401900039000000000021043500000044019000390000000802000029000000000021043500000024019000390000000a020000290000000000210435000013dc010000410000000000190435000012ff015001970000000402900039000000000012043500000000010004140000000e02000029000000040020008c00003d3d0000613d000012fc0090009c000012fc0300004100000000030940190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f000013f9011001c7001000000009001d4beb4be10000040f000000100900002900000000050004110000006003100270000112fc0030019d00030000000103550000000100200190000043a30000613d000013ea0090009c0000000906000029000000050400002900000007070000390000000d08000029000042ba0000813d000000400090043f0000000c0300002900003cea0000013d0000130702000041000000000025004b00003cea0000613d00003d010000013d0000000b01000039000000000101041a000012ff0210019800003da70000613d0000130a010000410000000000100443001000000002001d00000004002004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000042c00000613d000000000101043b000000000001004b000042b80000613d000000400600043d0000006401600039000000a002000039000000000021043500000044016000390000000802000029000000000021043500000024016000390000000a020000290000000000210435000013f20100004100000000001604350000000401600039000000000200041000000000002104350000000b040000290000000002040433000000a4016000390000000000210435000000c401600039000000000002004b00003d7b0000613d00000000030000190000002004400039000000000504043300000000015104360000000103300039000000000023004b00003d750000413d0000000002610049000000040220008a000000840360003900000000002304350000000c0400002900000000020404330000000001210436000000000002004b00003d8b0000613d00000000030000190000002004400039000000000504043300000000015104360000000103300039000000000023004b00003d850000413d00000000040004140000001002000029000000040020008c00003da40000613d0000000001610049000012fc0010009c000012fc010080410000006001100210000012fc0060009c000012fc0300004100000000030640190000004003300210000000000131019f000012fc0040009c000012fc04008041000000c003400210000000000131019f001000000006001d4beb4be10000040f00000010060000290000006003100270000112fc0030019d00030000000103550000000100200190000043d00000613d0000130e0060009c000042ba0000213d000000400060043f0000000b030000290000000001030433000000000001004b0000427f0000613d000000400a00043d0000000301000029000200600010021800000004010000290003006000100218000000000400001900003dbc0000013d0000130e00a0009c000042ba0000213d0000004000a0043f0000000c020000290000000b0300002900000000010304330000000f040000290000000104400039000000000014004b000042630000813d000f00000004001d0000000502400210000e00000002001d00000007012000290000000001010433001000000001001d0000000101000039000000000201041a000013930100004100000000001a04350000000401a000390000139403000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c00003dd30000c13d0000000103000031000000200030008c0000002004000039000000000403401900003dfe0000013d000012fc00a0009c000012fc0300004100000000030a40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700090000000a001d4beb4be60000040f000000090a0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900003ded0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00003de90000c13d0000001f0740019000003dfa0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042da0000613d0000001f01400039000000600110018f000000000ba1001900000000001b004b000000000200003900000001020040390000130e00b0009c000042ba0000213d0000000100200190000042ba0000c13d0000004000b0043f000000200030008c000042b80000413d00000000020a0433000012ff0020009c000042b80000213d0000000204000039000000000404041a0000004405b00039000013c40600004100000000006504350000002405b0003900000010060000290000000000650435000013a80500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00003e4a0000613d000012fc00b0009c000012fc0100004100000000010b40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c7000d0000000b001d4beb4be60000040f0000000d0b0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056b001900003e370000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b00003e330000c13d0000001f0740019000003e440000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042e60000613d0000001f01400039000000600110018f000000000ab100190000130e00a0009c000042ba0000213d0000004000a0043f000000200030008c000042b80000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000042b80000c13d000000000001004b00003e5c0000613d0000000a0000006b00003e5c0000613d000000080000006b000042c10000c13d0000000c0200002900000000010204330000000f0010006c000043c60000a13d0000000e0300002900000006013000290000000001010433000d00000001001d0000000a0000006b00003f970000613d0000002001a00039000000030200002900000000002104350000003402a0003900000010030000290000000000320435000000340200003900000000002a04350000137e00a0009c000042ba0000213d0000006002a00039000000400020043f000012fc0010009c000012fc01008041000000400110021000000000020a0433000012fc0020009c000012fc020080410000006002200210000000000112019f0000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f00001310011001c700008010020000394beb4be60000040f0000000100200190000042b80000613d000000000101043b000e00000001001d0000000101000039000000000201041a000000400b00043d000013930100004100000000001b04350000000401b000390000139403000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c00003e980000c13d0000000103000031000000200030008c0000002004000039000000000403401900003ec30000013d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700090000000b001d4beb4be60000040f000000090b0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056b001900003eb20000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b00003eae0000c13d0000001f0740019000003ebf0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042f20000613d0000001f01400039000000600110018f000000000ab1001900000000001a004b000000000200003900000001020040390000130e00a0009c000042ba0000213d0000000100200190000042ba0000c13d0000004000a0043f000000200030008c000042b80000413d00000000020b0433000012ff0020009c000042b80000213d0000000204000039000000000404041a0000004405a00039000013c90600004100000000006504350000002405a000390000000e060000290000000000650435000013b70500004100000000005a04350000000405a0003900000000004504350000000004000414000000040020008c00003f0f0000613d000012fc00a0009c000012fc0100004100000000010a40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c700090000000a001d4beb4be60000040f000000090a0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900003efc0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00003ef80000c13d0000001f0740019000003f090000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042fe0000613d0000001f01400039000000600110018f000000000ba100190000130e00b0009c000042ba0000213d0000004000b0043f000000200030008c000042b80000413d00000000010a04330009000d00100074000042d40000413d0000000101000039000000000201041a000013930100004100000000001b04350000000401b000390000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c000000200400003900003f500000613d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700050000000b001d4beb4be60000040f000000050b0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056b001900003f3f0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b00003f3b0000c13d0000001f0740019000003f4c0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000430a0000613d0000001f01400039000000600110018f0000000001b100190000130e0010009c000042ba0000213d000000400010043f000000200030008c000042b80000413d00000000020b0433000012ff0020009c000042b80000213d0000000201000039000000000101041a000400000001001d0000130a010000410000000000100443000500000002001d00000004002004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000042c00000613d000000000101043b000000000001004b0000000503000029000042b80000613d000000400a00043d0000006401a00039000000090200002900000000002104350000004401a00039000013c90200004100000000002104350000002401a000390000000e020000290000000000210435000013bf0100004100000000001a04350000000401a00039000000040200002900000000002104350000000001000414000000040030008c00003f930000613d000012fc00a0009c000012fc0200004100000000020a40190000004002200210000012fc0010009c000012fc01008041000000c001100210000000000121019f0000131b011001c7000000000203001900090000000a001d4beb4be10000040f000000090a0000290000006003100270000112fc0030019d00030000000103550000000100200190000043160000613d0000130e00a0009c000042ba0000213d0000004000a0043f0000000c02000029000000080000006b00003db60000613d0000002001a00039000000020200002900000000002104350000003402a0003900000010030000290000000000320435000000340200003900000000002a04350000137e00a0009c000042ba0000213d0000006002a00039000000400020043f000012fc0010009c000012fc01008041000000400110021000000000020a0433000012fc0020009c000012fc020080410000006002200210000000000112019f0000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f00001310011001c700008010020000394beb4be60000040f0000000100200190000042b80000613d000000000101043b000e00000001001d0000000101000039000000000201041a000000400b00043d000013930100004100000000001b04350000000401b000390000139403000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c00003fcb0000c13d0000000103000031000000200030008c0000002004000039000000000403401900003ff60000013d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700090000000b001d4beb4be60000040f000000090b0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056b001900003fe50000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b00003fe10000c13d0000001f0740019000003ff20000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000043230000613d0000001f01400039000000600110018f000000000ab1001900000000001a004b000000000200003900000001020040390000130e00a0009c000042ba0000213d0000000100200190000042ba0000c13d0000004000a0043f000000200030008c000042b80000413d00000000020b0433000012ff0020009c000042b80000213d0000000204000039000000000404041a0000004405a00039000013c90600004100000000006504350000002405a000390000000e060000290000000000650435000013b70500004100000000005a04350000000405a0003900000000004504350000000004000414000000040020008c000040420000613d000012fc00a0009c000012fc0100004100000000010a40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c700090000000a001d4beb4be60000040f000000090a0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a00190000402f0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b0000402b0000c13d0000001f074001900000403c0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000432f0000613d0000001f01400039000000600110018f000000000ba100190000130e00b0009c000042ba0000213d0000004000b0043f000000200030008c000042b80000413d00000000020a0433000900000002001d0000000d0020002a000042d40000413d0000000101000039000000000201041a000013930100004100000000001b04350000000401b000390000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c0000002004000039000040840000613d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700050000000b001d4beb4be60000040f000000050b0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000040730000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b0000406f0000c13d0000001f07400190000040800000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000433b0000613d0000001f01400039000000600110018f0000000001b100190000130e0010009c000042ba0000213d000000400010043f000000200030008c000042b80000413d00000000020b0433000012ff0020009c000042b80000213d0000000201000039000000000101041a000400000001001d0000130a010000410000000000100443000500000002001d00000004002004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000042c00000613d000000000101043b000000000001004b0000000503000029000042b80000613d00000009020000290000000d01200029000000400a00043d0000006402a0003900000000001204350000004401a00039000013c90200004100000000002104350000002401a000390000000e020000290000000000210435000013bf0100004100000000001a04350000000404a00039000000040100002900000000001404350000000001000414000000040030008c000d0000000a001d000040ca0000613d000012fc00a0009c000012fc0200004100000000020a40190000004002200210000012fc0010009c000012fc01008041000000c001100210000000000121019f0000131b011001c70000000002030019000900000004001d4beb4be10000040f00000009040000290000000d0a0000290000006003100270000112fc0030019d00030000000103550000000100200190000043470000613d0000130e00a0009c000042ba0000213d0000004000a0043f0000000101000039000000000201041a000013930100004100000000001a04350000139401000041000000000014043500000000010004140000000802200270000012ff02200197000000040020008c000040dd0000c13d0000000103000031000000200030008c00000020040000390000000004034019000041070000013d000012fc00a0009c000012fc0300004100000000030a40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c74beb4be60000040f0000000d0a0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000040f60000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000040f20000c13d0000001f07400190000041030000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000043540000613d0000001f01400039000000600110018f000000000ba100190000130e00b0009c000042ba0000213d0000004000b0043f000000200030008c000042b80000413d00000000020a0433000012ff0020009c000042b80000213d0000000204000039000000000404041a0000004405b00039000013f30600004100000000006504350000002405b000390000000e060000290000000000650435000013b60500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c0000414e0000613d000012fc00b0009c000012fc0100004100000000010b40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c7000d0000000b001d4beb4be60000040f0000000d0b0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056b00190000413b0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000041370000c13d0000001f07400190000041480000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000043600000613d0000001f01400039000000600110018f000000000ab100190000130e00a0009c000042ba0000213d0000004000a0043f000000200030008c000042b80000413d00000000010b0433000012ff0010009c000042b80000213d000000000001004b00003db50000c13d0000000101000039000000000201041a000013930100004100000000001a04350000000401a000390000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c0000002004000039000041910000613d000012fc00a0009c000012fc0300004100000000030a40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700090000000a001d4beb4be60000040f000000090a0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000041800000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b0000417c0000c13d0000001f074001900000418d0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000436c0000613d0000001f01400039000000600110018f0000000001a100190000130e0010009c000042ba0000213d000000400010043f000000200030008c000042b80000413d00000000020a0433000012ff0020009c000042b80000213d0000000201000039000000000101041a000900000001001d0000130a010000410000000000100443000d00000002001d00000004002004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000042c00000613d000000000101043b000000000001004b0000000d03000029000042b80000613d000000400a00043d0000006401a00039000000080200002900000000002104350000004401a00039000013f30200004100000000002104350000002401a000390000000e020000290000000000210435000013bc0100004100000000001a04350000000404a00039000000090100002900000000001404350000000001000414000000040030008c00050000000a001d000041d60000613d000012fc00a0009c000012fc0200004100000000020a40190000004002200210000012fc0010009c000012fc01008041000000c001100210000000000121019f0000131b011001c70000000002030019000d00000004001d4beb4be10000040f0000000d04000029000000050a0000290000006003100270000112fc0030019d00030000000103550000000100200190000043780000613d0000130e00a0009c000042ba0000213d0000004000a0043f0000000101000039000000000201041a000013930100004100000000001a04350000139401000041000000000014043500000000010004140000000802200270000012ff02200197000000040020008c000041e90000c13d0000000103000031000000200030008c00000020040000390000000004034019000042130000013d000012fc00a0009c000012fc0300004100000000030a40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c74beb4be60000040f000000050a0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000042020000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000041fe0000c13d0000001f074001900000420f0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000043970000613d0000001f01400039000000600110018f0000000001a100190000130e0010009c000042ba0000213d000000400010043f000000200030008c000042b80000413d00000000020a0433000012ff0020009c000042b80000213d0000000201000039000000000101041a000900000001001d0000130a010000410000000000100443000d00000002001d00000004002004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000042c00000613d000000000101043b000000000001004b0000000d03000029000042b80000613d000000400a00043d0000006401a00039000000100200002900000000002104350000004401a00039000013be0200004100000000002104350000002401a000390000000e020000290000000000210435000013bf0100004100000000001a04350000000401a00039000000090200002900000000002104350000000001000414000000040030008c00003db20000613d000012fc00a0009c000012fc0200004100000000020a40190000004002200210000012fc0010009c000012fc01008041000000c001100210000000000121019f0000131b011001c7000000000203001900090000000a001d4beb4be10000040f000000090a0000290000006003100270000112fc0030019d0003000000010355000000010020019000003db20000c13d000012fc033001970000001f0530018f000012fe06300198000000400200043d0000000004620019000043af0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000425e0000c13d000043af0000013d000000010010008c0000427f0000c13d0000000001020433000000000001004b000043c60000613d0000000701000029000000000101043300000006020000290000000002020433000000400300043d000000200430003900000000002404350000000000130435000012fc0030009c000012fc0300804100000040013002100000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f00001308011001c70000000102000029000012ff052001970000800d020000390000000403000039000013f404000041000042b20000013d000000400100043d000000400200003900000000022104360000000004030433000000400310003900000000004304350000006003100039000000000004004b000042900000613d00000000050000190000000b070000290000002007700039000000000607043300000000036304360000000105500039000000000045004b0000428a0000413d000000000413004900000000004204350000000c02000029000000000402043300000000024304360000000103000029000012ff05300197000000000004004b000042a10000613d00000000030000190000000c070000290000002007700039000000000607043300000000026204360000000103300039000000000043004b0000429b0000413d0000000002120049000012fc0020009c000012fc020080410000006002200210000012fc0010009c000012fc010080410000004001100210000000000112019f0000000002000414000012fc0020009c000012fc02008041000000c002200210000000000121019f00001310011001c70000800d020000390000000403000039000013f5040000410000000a0600002900000008070000294beb4be10000040f0000000100200190000042b80000613d000000000001042d000000000100001900004bed00010430000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed00010430000000000001042f0000006401a00039000013fa0200004100000000002104350000004401a00039000013fb0200004100000000002104350000002401a0003900000025020000390000000000210435000013170100004100000000001a04350000000401a0003900000020020000390000000000210435000012fc00a0009c000012fc0a0080410000004001a002100000131b011001c700004bed00010430000013cf01000041000000000010043f0000001101000039000000040010043f0000139c0100004100004bed000104300000001f0530018f000012fe06300198000000400200043d0000000004620019000043af0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042e10000c13d000043af0000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000043af0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042ed0000c13d000043af0000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000043af0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042f90000c13d000043af0000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000043af0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043050000c13d000043af0000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000043af0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043110000c13d000043af0000013d000012fc033001970000001f0530018f000012fe06300198000000400200043d0000000004620019000043af0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000431e0000c13d000043af0000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000043af0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000432a0000c13d000043af0000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000043af0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043360000c13d000043af0000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000043af0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043420000c13d000043af0000013d000012fc033001970000001f0530018f000012fe06300198000000400200043d0000000004620019000043af0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000434f0000c13d000043af0000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000043af0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000435b0000c13d000043af0000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000043af0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043670000c13d000043af0000013d0000001f0530018f000012fe06300198000000400200043d0000000004620019000043840000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043730000c13d000043840000013d000012fc033001970000001f0530018f000012fe06300198000000400200043d0000000004620019000043840000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043800000c13d000000000005004b000043910000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000121019f00004bed000104300000001f0530018f000012fe06300198000000400200043d0000000004620019000043af0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000439e0000c13d000043af0000013d000012fc033001970000001f0530018f000012fe06300198000000400200043d0000000004620019000043af0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043ab0000c13d000000000005004b000043bc0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000112019f00004bed000104300000000c010000290000000001010433000000000001004b000043cc0000c13d000013cf01000041000000000010043f0000003201000039000000040010043f0000139c0100004100004bed000104300000138b01000041000000000010043f000013790100004100004bed00010430000012fc033001970000001f0530018f000012fe06300198000000400200043d0000000004620019000043af0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043d80000c13d000043af0000013d0004000000000002000300000002001d000400000001001d0000000101000039000000000201041a000000400b00043d000013930100004100000000001b04350000000401b000390000139403000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c000043f20000c13d0000000103000031000000200030008c000000200400003900000000040340190000441e0000013d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700020000000b001d4beb4be60000040f000000020b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000440d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000044090000c13d000000000006004b0000441a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000044730000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000130e0010009c0000446c0000213d00000001002001900000446c0000c13d000000400010043f0000001f0030008c0000446a0000a13d00000000020b0433000012ff0020009c0000446a0000213d0000000201000039000000000101041a000100000001001d0000130a010000410000000000100443000200000002001d00000004002004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000044720000613d000000000101043b000000000001004b00000002030000290000446a0000613d000000400400043d0000006401400039000000030200002900000000002104350000004401400039000013ee020000410000000000210435000000240140003900000004020000290000000000210435000013bf0100004100000000001404350000000401400039000000010200002900000000002104350000000001000414000000040030008c000044660000613d000012fc0040009c000012fc0200004100000000020440190000004002200210000012fc0010009c000012fc01008041000000c001100210000000000121019f0000131b011001c70000000002030019000400000004001d4beb4be10000040f00000004040000290000006003100270000112fc0030019d000300000001035500000001002001900000447f0000613d0000130e0040009c0000446c0000213d000000400040043f000000000001042d000000000100001900004bed00010430000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed00010430000000000001042f0000001f0530018f000012fe06300198000000400200043d00000000046200190000448b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000447a0000c13d0000448b0000013d000012fc033001970000001f0530018f000012fe06300198000000400200043d00000000046200190000448b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000044870000c13d000000000005004b000044980000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000112019f00004bed00010430000b000000000002000b00000003001d000900000001001d0000006003100210000000400100043d0000002004100039000400000003001d00000000003404350000003403100039000a00000002001d000000000023043500000034030000390000000000310435000013ed0010009c000049e80000813d0000006003100039000000400030043f000012fc0040009c000012fc0400804100000040024002100000000001010433000012fc0010009c000012fc010080410000006001100210000000000121019f0000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f00001310011001c700008010020000394beb4be60000040f0000000100200190000049e60000613d000000000701043b0000000101000039000000000201041a000000400b00043d000013930100004100000000001b04350000000401b000390000139403000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c000044d40000c13d0000000103000031000000200030008c00000020040000390000000004034019000045020000013d000700000007001d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700080000000b001d4beb4be60000040f000000080b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000044f00000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000044ec0000c13d000000000006004b000044fd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004a870000613d00000007070000290000001f01400039000000600110018f000000000cb1001900000000001c004b000000000200003900000001020040390000130e00c0009c000049e80000213d0000000100200190000049e80000c13d0000004000c0043f000000200030008c000049e60000413d00000000020b0433000012ff0020009c000049e60000213d0000000204000039000000000404041a0000004405c00039000013c90600004100000000006504350000002405c000390000000000750435000013b70500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c0000454e0000613d000012fc00c0009c000012fc0100004100000000010c40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c700080000000c001d4beb4be60000040f000000080c0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000453b0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000045370000c13d000000000006004b000045480000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004a930000613d0000001f01400039000000600110018f000000000bc100190000130e00b0009c000049e80000213d0000004000b0043f000000200030008c000049e60000413d0000000401b0003900000000020c04330000000b0020006c00004a560000413d0000000102000039000000000202041a000013930400004100000000004b04350000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c000045650000c13d0000002004000039000045910000013d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700080000000b001d4beb4be60000040f000000080b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000045800000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000457c0000c13d000000000006004b0000458d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004a9f0000613d0000001f01400039000000600110018f000000000cb100190000130e00c0009c000049e80000213d0000004000c0043f000000200030008c000049e60000413d00000000020b0433000012ff0020009c000049e60000213d0000000204000039000000000404041a0000004405c00039000013f00600004100000000006504350000002405c000390000000a060000290000000000650435000013b70500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000045d90000613d000012fc00c0009c000012fc0100004100000000010c40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c700080000000c001d4beb4be60000040f000000080c0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000045c60000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000045c20000c13d000000000006004b000045d30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004aab0000613d0000001f01400039000000600110018f000000000bc100190000130e00b0009c000049e80000213d0000004000b0043f000000200030008c000049e60000413d00000000020c0433000800000002001d0000000b0020002a000049f50000413d0000000101000039000000000201041a000013930100004100000000001b04350000000401b000390000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c000045f10000c13d00000020040000390000461d0000013d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700070000000b001d4beb4be60000040f000000070b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000460c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000046080000c13d000000000006004b000046190000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004ab70000613d0000001f01400039000000600110018f0000000001b100190000130e0010009c000049e80000213d000000400010043f000000200030008c000049e60000413d00000000020b0433000012ff0020009c000049e60000213d0000000201000039000000000101041a000500000001001d0000130a010000410000000000100443000700000002001d00000004002004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000049ee0000613d000000000101043b000000000001004b0000000703000029000049e60000613d00000008020000290000000b01200029000000400800043d000013bf020000410000000002280436000200000002001d000000640480003900000000001404350000004405800039000013f001000041000000000015043500000024068000390000000a0100002900000000001604350000000407800039000000050100002900000000001704350000000001000414000000040030008c000600000008001d0000466a0000613d000012fc0080009c000012fc0200004100000000020840190000004002200210000012fc0010009c000012fc01008041000000c001100210000000000121019f0000131b011001c70000000002030019000800000004001d000700000005001d000500000006001d000300000007001d4beb4be10000040f000000060800002900000003070000290000000506000029000000070500002900000008040000290000006003100270000112fc0030019d0003000000010355000000010020019000004ac30000613d0000130e0080009c000049e80000213d0000000602000029000000400020043f0000000901000029000312ff0010019c00004a650000613d000013120020009c000049e80000213d00000006020000290000004001200039000000400010043f0000000101000039000000000012043500000002010000290000000a020000290000000000210435000000400100043d000500000001001d000013120010009c000049e80000213d00000005020000290000004001200039000000400010043f00000001010000390000000001120436000100000001001d0000000b020000290000000000210435000000400100043d00000020021000390000000403000029000000000032043500000034031000390000000a040000290000000000430435000000340300003900000000003104350000137e0010009c000049e80000213d0000006003100039000000400030043f000012fc0020009c000012fc0200804100000040022002100000000001010433000012fc0010009c000012fc010080410000006001100210000000000121019f0000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f00001310011001c700008010020000394beb4be60000040f0000000100200190000049e60000613d000000000701043b0000000101000039000000000201041a000000400c00043d000013930100004100000000001c04350000000401c000390000139403000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c000046b90000c13d0000000103000031000000200030008c00000020040000390000000004034019000046e70000013d000900000007001d000012fc00c0009c000012fc0300004100000000030c40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c7000a0000000c001d4beb4be60000040f0000000a0c0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000046d50000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000046d10000c13d000000000006004b000046e20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004ae20000613d00000009070000290000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000130e00b0009c000049e80000213d0000000100200190000049e80000c13d0000004000b0043f000000200030008c000049e60000413d00000000020c0433000012ff0020009c000049e60000213d0000000204000039000000000404041a0000004405b00039000013c90600004100000000006504350000002405b000390000000000750435000013b70500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000047330000613d000012fc00b0009c000012fc0100004100000000010b40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c7000a0000000b001d4beb4be60000040f0000000a0b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000047200000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000471c0000c13d000000000006004b0000472d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004aee0000613d0000001f01400039000000600110018f0000000001b100190000130e0010009c000049e80000213d000000400010043f000000200030008c000049e60000413d00000000020b04330000000b0020006c00004a740000413d000013010010009c000049e80000213d0000002002100039000000400020043f000000000001043500000006010000290000000001010433000000000001004b0000474a0000613d000000010210008a00000005030000290000000003030433000000000023004b000049ef0000a13d0000000b02000039000000000202041a000012ff02200198000047a80000613d0000130a010000410000000000100443000b00000002001d00000004002004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000049ee0000613d000000000101043b000000000001004b000049e60000613d000000400600043d0000006401600039000000a0020000390000000000210435000000240160003900000003020000290000000000210435000013f20100004100000000001604350000000401600039000000000200041000000000002104350000004401600039000000000001043500000006040000290000000002040433000000a4016000390000000000210435000000c401600039000000000002004b0000477a0000613d00000000030000190000002004400039000000000504043300000000015104360000000103300039000000000023004b000047740000413d0000000002610049000000040220008a00000084036000390000000000230435000000050400002900000000020404330000000001210436000000000002004b0000478a0000613d00000000030000190000002004400039000000000504043300000000015104360000000103300039000000000023004b000047840000413d00000000040004140000000b02000029000000040020008c000047a30000613d0000000001610049000012fc0010009c000012fc010080410000006001100210000012fc0060009c000012fc0300004100000000030640190000004003300210000000000131019f000012fc0040009c000012fc04008041000000c003400210000000000131019f000b00000006001d4beb4be10000040f0000000b060000290000006003100270000112fc0030019d0003000000010355000000010020019000004afa0000613d0000130e0060009c000049e80000213d000000400060043f00000006010000290000000001010433000000000001004b0000000603000029000049a00000613d000000400a00043d0000000002000019000b00000002001d0000000501200210000900200010003d000000090130002900000000070104330000000101000039000000000201041a000013930100004100000000001a04350000000401a000390000139403000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c000a00000007001d000047c40000c13d0000000103000031000000200030008c00000020040000390000000004034019000047f00000013d000012fc00a0009c000012fc0300004100000000030a40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700080000000a001d4beb4be60000040f000000080a0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000047de0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000047da0000c13d0000001f07400190000047eb0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000049fb0000613d0000000a070000290000001f01400039000000600110018f000000000ba1001900000000001b004b000000000200003900000001020040390000130e00b0009c000049e80000213d0000000100200190000049e80000c13d0000004000b0043f000000200030008c000049e60000413d00000000020a0433000012ff0020009c000049e60000213d0000000204000039000000000404041a0000004405b00039000013c40600004100000000006504350000002405b000390000000000750435000013a80500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c0000483c0000613d000012fc00b0009c000012fc0100004100000000010b40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c700080000000b001d4beb4be60000040f000000080b0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000048280000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000048240000c13d0000001f07400190000048350000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004a070000613d0000001f01400039000000600110018f0000000a070000290000000001b100190000130e0010009c000049e80000213d000000400010043f000000200030008c000049e60000413d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000049e60000c13d000000050300002900000000020304330000000b0020006c000049ef0000a13d00000009023000290000000002020433000900000002001d00000020021000390000000403000029000000000032043500000034031000390000000000730435000000340300003900000000003104350000137e0010009c000049e80000213d0000006003100039000000400030043f000012fc0020009c000012fc0200804100000040022002100000000001010433000012fc0010009c000012fc010080410000006001100210000000000121019f0000000002000414000012fc0020009c000012fc02008041000000c002200210000000000112019f00001310011001c700008010020000394beb4be60000040f0000000100200190000049e60000613d000000000101043b000a00000001001d0000000101000039000000000201041a000000400b00043d000013930100004100000000001b04350000000401b000390000139403000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c000048800000c13d0000000103000031000000200030008c00000020040000390000000004034019000048ab0000013d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700080000000b001d4beb4be60000040f000000080b0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056b00190000489a0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000048960000c13d0000001f07400190000048a70000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004a130000613d0000001f01400039000000600110018f000000000ab1001900000000001a004b000000000200003900000001020040390000130e00a0009c000049e80000213d0000000100200190000049e80000c13d0000004000a0043f000000200030008c000049e60000413d00000000020b0433000012ff0020009c000049e60000213d0000000204000039000000000404041a0000004405a00039000013c90600004100000000006504350000002405a000390000000a060000290000000000650435000013b70500004100000000005a04350000000405a0003900000000004504350000000004000414000000040020008c000048f70000613d000012fc00a0009c000012fc0100004100000000010a40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c700080000000a001d4beb4be60000040f000000080a0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000048e40000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000048e00000c13d0000001f07400190000048f10000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004a1f0000613d0000001f01400039000000600110018f000000000ba100190000130e00b0009c000049e80000213d0000004000b0043f000000200030008c000049e60000413d00000000010a04330009000900100074000049f50000413d0000000101000039000000000201041a000013930100004100000000001b04350000000401b000390000139404000041000000000041043500000000010004140000000802200270000012ff02200197000000040020008c0000002004000039000049380000613d000012fc00b0009c000012fc0300004100000000030b40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700080000000b001d4beb4be60000040f000000080b0000290000006003100270000012fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000049270000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000049230000c13d0000001f07400190000049340000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004a2b0000613d0000001f01400039000000600110018f0000000001b100190000130e0010009c000049e80000213d000000400010043f000000200030008c000049e60000413d00000000020b0433000012ff0020009c000049e60000213d0000000201000039000000000101041a000700000001001d0000130a010000410000000000100443000800000002001d00000004002004430000000001000414000012fc0010009c000012fc01008041000000c0011002100000130b011001c700008002020000394beb4be60000040f0000000100200190000049ee0000613d000000000101043b000000000001004b0000000803000029000049e60000613d000000400a00043d0000006401a00039000000090200002900000000002104350000004401a00039000013c90200004100000000002104350000002401a000390000000a020000290000000000210435000013bf0100004100000000041a04360000000401a00039000000070200002900000000002104350000000001000414000000040030008c0000497d0000613d000012fc00a0009c000012fc0200004100000000020a40190000004002200210000012fc0010009c000012fc01008041000000c001100210000000000121019f0000131b011001c7000000000203001900080000000a001d000a00000004001d4beb4be10000040f0000000a04000029000000080a0000290000006003100270000112fc0030019d0003000000010355000000010020019000004a370000613d0000130e00a0009c000049e80000213d0000004000a0043f0000000b02000029000000010220003900000006030000290000000001030433000000000012004b000047ad0000413d000000010010008c000049a00000c13d00000005010000290000000001010433000000000001004b000049ef0000613d0000000201000029000000000101043300000001020000290000000002020433000000000024043500000000001a0435000012fc00a0009c000012fc0a0080410000004001a002100000000002000414000012fc0020009c000012fc02008041000000c002200210000000000121019f00001308011001c70000800d0200003900000004030000390000000005000411000013f404000041000049d10000013d000000400100043d0000004002000039000000000221043600000000040304330000000006030019000000400310003900000000004304350000006003100039000000000004004b000049b10000613d00000000050000190000002006600039000000000706043300000000037304360000000105500039000000000045004b000049ab0000413d000000000413004900000000004204350000000005000411000000050600002900000000040604330000000002430436000000000004004b000049c00000613d00000000030000190000002006600039000000000706043300000000027204360000000103300039000000000043004b000049ba0000413d0000000002120049000012fc0020009c000012fc020080410000006002200210000012fc0010009c000012fc010080410000004001100210000000000112019f0000000002000414000012fc0020009c000012fc02008041000000c002200210000000000121019f00001310011001c70000800d020000390000000403000039000013f504000041000000030600002900000000070000194beb4be10000040f0000000100200190000049e60000613d000000400100043d000013010010009c000049e80000213d0000002002100039000000400020043f000000000001043500000006010000290000000001010433000000000001004b0000000502000029000049e50000613d000000010110008a0000000002020433000000000012004b000049ef0000a13d000000000001042d000000000100001900004bed00010430000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed00010430000000000001042f000013cf01000041000000000010043f0000003201000039000000040010043f0000139c0100004100004bed00010430000013cf01000041000000000010043f0000001101000039000000040010043f0000139c0100004100004bed000104300000001f0530018f000012fe06300198000000400200043d000000000462001900004a430000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a020000c13d00004a430000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900004a430000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a0e0000c13d00004a430000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900004a430000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a1a0000c13d00004a430000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900004a430000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a260000c13d00004a430000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900004a430000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a320000c13d00004a430000013d000012fc033001970000001f0530018f000012fe06300198000000400200043d000000000462001900004a430000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a3f0000c13d000000000005004b00004a500000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000112019f00004bed00010430000013170200004100000000002b0435000000200200003900000000002104350000004401b00039000014000200004100000000002104350000002401b0003900000012020000390000000000210435000012fc00b0009c000012fc0b0080410000004001b0021000001318011001c700004bed00010430000013170100004100000000001204350000002001000039000000000017043500000023010000390000000000160435000013fe010000410000000000150435000013ff010000410000000000140435000012fc0020009c000012fc0200804100000040012002100000131b011001c700004bed000104300000006402100039000013fc0300004100000000003204350000004402100039000013fd03000041000000000032043500000024021000390000002403000039000000000032043500001317020000410000000000210435000000040210003900000020030000390000000000320435000012fc0010009c000012fc0100804100000040011002100000131b011001c700004bed000104300000001f0530018f000012fe06300198000000400200043d000000000462001900004a430000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a8e0000c13d00004a430000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900004a430000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a9a0000c13d00004a430000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900004a430000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004aa60000c13d00004a430000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900004a430000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004ab20000c13d00004a430000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900004acf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004abe0000c13d00004acf0000013d000012fc033001970000001f0530018f000012fe06300198000000400200043d000000000462001900004acf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004acb0000c13d000000000005004b00004adc0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000121019f00004bed000104300000001f0530018f000012fe06300198000000400200043d000000000462001900004a430000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004ae90000c13d00004a430000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900004a430000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004af50000c13d00004a430000013d000012fc033001970000001f0530018f000012fe06300198000000400200043d000000000462001900004a430000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b020000c13d00004a430000013d00010000000000020000000101000039000000000201041a000000400c00043d000013930100004100000000001c04350000000401c000390000139403000041000000000031043500000000010004140000000802200270000012ff02200197000000040020008c00004b1a0000c13d0000000103000031000000200030008c0000002004000039000000000403401900004b460000013d000012fc00c0009c000012fc0300004100000000030c40190000004003300210000012fc0010009c000012fc01008041000000c001100210000000000131019f0000139c011001c700010000000c001d4beb4be60000040f000000010c0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900004b350000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00004b310000c13d000000000006004b00004b420000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004bb60000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000130e00b0009c00004ba10000213d000000010020019000004ba10000c13d0000004000b0043f0000001f0030008c00004b9f0000a13d00000000020c0433000012ff0020009c00004b9f0000213d0000000204000039000000000404041a0000004405b00039000013bd060000410000000000650435000013b60500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c00004b920000613d000012fc00b0009c000012fc0100004100000000010b40190000004001100210000012fc0040009c000012fc04008041000000c003400210000000000113019f00001318011001c700010000000b001d4beb4be60000040f000000010b0000290000006003100270000012fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004b7f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004b7b0000c13d000000000006004b00004b8c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004bc20000613d0000001f01400039000000600110018f0000000001b100190000130e0010009c00004ba10000213d000000400010043f000000200030008c00004b9f0000413d00000000020b0433000012ff0020009c00004b9f0000213d0000000003000411000000000032004b00004ba70000c13d000000000001042d000000000100001900004bed00010430000013cf01000041000000000010043f0000004101000039000000040010043f0000139c0100004100004bed000104300000004402100039000014010300004100000000003204350000131702000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000012fc0010009c000012fc01008041000000400110021000001318011001c700004bed000104300000001f0530018f000012fe06300198000000400200043d000000000462001900004bcd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bbd0000c13d00004bcd0000013d0000001f0530018f000012fe06300198000000400200043d000000000462001900004bcd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bc90000c13d000000000005004b00004bda0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012fc0020009c000012fc020080410000004002200210000000000112019f00004bed00010430000000000001042f00004be4002104210000000102000039000000000001042d0000000002000019000000000001042d00004be9002104230000000102000039000000000001042d0000000002000019000000000001042d00004beb0000043200004bec0001042e00004bed000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffdfffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00a6ece734f20310c441daec80768668ffd0649e14bbd0ab181cf9ad511b7e60def652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f09addddcec1d7ba6ad726df49aeea3e93fb0c1037d551236841a60c0c883f2c1000000000000000000000000721c002b0059009a671d00ad1700c9748146cd1b0200000000000000000000000000000000000040000000000000000000000000cc5dc080ff977b3c3a211fa63ab74f90f658f5ba9d3236e92c8f59570f442aac1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000fb2de5d7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000000000000000ffffffffffffffbf02000000000000000000000000000000000000200000000000000000000000008a8bae378cb731c5c40b632330c6836c2f916f48edb967699c86736f9a6a76ef0000000200000000000000000000000000000040000001000000000000000000455243323938313a20696e76616c69642072656365697665720000000000000008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000002073616c65507269636500000000000000000000000000000000000000000000455243323938313a20726f79616c7479206665652077696c6c206578636565640000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000000000000000000000007b4a541000000000000000000000000000000000000000000000000000000000b76ac0d600000000000000000000000000000000000000000000000000000000e725f87600000000000000000000000000000000000000000000000000000000f0a8102a00000000000000000000000000000000000000000000000000000000f2fde38a00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f5298aca00000000000000000000000000000000000000000000000000000000f0a8102b00000000000000000000000000000000000000000000000000000000f242432a00000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000ed022ebd00000000000000000000000000000000000000000000000000000000e725f87700000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000ce62bc8b00000000000000000000000000000000000000000000000000000000d81d0a1400000000000000000000000000000000000000000000000000000000d81d0a1500000000000000000000000000000000000000000000000000000000dd898b2f00000000000000000000000000000000000000000000000000000000ce62bc8c00000000000000000000000000000000000000000000000000000000d7f151e300000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000cdb0e89e00000000000000000000000000000000000000000000000000000000b76ac0d700000000000000000000000000000000000000000000000000000000c03ad0be00000000000000000000000000000000000000000000000000000000938e3d7a00000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000a9fc664d00000000000000000000000000000000000000000000000000000000a9fc664e00000000000000000000000000000000000000000000000000000000af2b8c5200000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a485b4cf000000000000000000000000000000000000000000000000000000009e05d23f000000000000000000000000000000000000000000000000000000009e05d24000000000000000000000000000000000000000000000000000000000a16ad7da00000000000000000000000000000000000000000000000000000000938e3d7b000000000000000000000000000000000000000000000000000000009b642de1000000000000000000000000000000000000000000000000000000008245e4710000000000000000000000000000000000000000000000000000000088e4f1ca0000000000000000000000000000000000000000000000000000000088e4f1cb000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000008245e4720000000000000000000000000000000000000000000000000000000082840eed000000000000000000000000000000000000000000000000000000007b4a5411000000000000000000000000000000000000000000000000000000007dc0bf3f000000000000000000000000000000000000000000000000000000008129fc1c00000000000000000000000000000000000000000000000000000000267659e10000000000000000000000000000000000000000000000000000000055e8f0c4000000000000000000000000000000000000000000000000000000006221d13b00000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000077278ae8000000000000000000000000000000000000000000000000000000006221d13c000000000000000000000000000000000000000000000000000000006b20c454000000000000000000000000000000000000000000000000000000005c975aba000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000005d1ca6310000000000000000000000000000000000000000000000000000000055e8f0c5000000000000000000000000000000000000000000000000000000005a2148b9000000000000000000000000000000000000000000000000000000002fb0b873000000000000000000000000000000000000000000000000000000004036ab77000000000000000000000000000000000000000000000000000000004036ab78000000000000000000000000000000000000000000000000000000004e1273f4000000000000000000000000000000000000000000000000000000002fb0b874000000000000000000000000000000000000000000000000000000003ac7026600000000000000000000000000000000000000000000000000000000267659e2000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000002eb2c2d6000000000000000000000000000000000000000000000000000000000df412610000000000000000000000000000000000000000000000000000000015be71fe0000000000000000000000000000000000000000000000000000000016c38b3b0000000000000000000000000000000000000000000000000000000016c38b3c000000000000000000000000000000000000000000000000000000001f7fdffa0000000000000000000000000000000000000000000000000000000015be71ff0000000000000000000000000000000000000000000000000000000016ba10e0000000000000000000000000000000000000000000000000000000001328357e000000000000000000000000000000000000000000000000000000001328357f00000000000000000000000000000000000000000000000000000000156e29f6000000000000000000000000000000000000000000000000000000000df41262000000000000000000000000000000000000000000000000000000000e89341c0000000000000000000000000000000000000000000000000000000001ffc9a600000000000000000000000000000000000000000000000000000000098144d300000000000000000000000000000000000000000000000000000000098144d4000000000000000000000000000000000000000000000000000000000d705df60000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000000000000000000000000035a9ae0000000000000000000000000000000000000000000000000000000000fdd58e000000000000000000000000000000000000000000000000000000000146354664647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f2061000000000000000000000000000000000000000000000000ffffffffffffff7f5c975abb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000005061757361626c653a207061757365640000000000000000000000000000000000000000000000000000ff00000000000000000000000000000000000000000020617070726f7665640000000000000000000000000000000000000000000000455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f72000000000000000000000000000000000000000000000000ffffffffffffff9f0000000000184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000000000000000000000000000000000000000004ee2d6d415b85acef810000000000000000000000000000000000000000000004ee2d6d415b85acef80ffffffff000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000005f5e10000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30313233343536373839616263646566000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000072206265666f7265207472616e73666572200000000000000000000000000000455243313135353a20696e73756666696369656e742062616c616e636520666f20000000000000000000000000000000000000000000000000000000000000005cbd944100000000000000000000000000000000000000000000000000000000f23a6e610000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000526563656976657220696d706c656d656e746572000000000000000000000000455243313135353a207472616e7366657220746f206e6f6e20455243313135350000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000080000000000000000053e41c1e000000000000000000000000000000000000000000000000000000009750ad73d9615445751d3fd0a61d867ae6a6dd1dfb5f65ef07fe835b7d5ca6bd00000000000000000000000000000000000000240000008000000000000000008a4bcc9000000000000000000000000000000000000000000000000000000000dfc4bf0eca7feb04d15ce5df48f53a222054e5a04aff6d9e7b5c7e90debe19447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff800000000000000000000000000000000000000000000000000000000000000007fef633000000000000000000000000000000000000000000000000000000002361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d600000000000000000000000000000000000000024000000000000000000000000e217cc52bb17854a0b236c2e7b936de0d03c3e8e627c48d806ac42e6b4fd8b9fc36dd7ea00000000000000000000000000000000000000000000000000000000241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b080000000000000000000000000000000000000044000000800000000000000000ffffffffffffffffffffff0000000000000000000000000000000000000000ffa4b91481000000000000000000000000000000000000000000000000000000000161a64a00000000000000000000000000000000000000000000000000000000e95c048700000000000000000000000000000000000000000000000000000000bfa2ccd2000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe032483afb00000000000000000000000000000000000000000000000000000000651689700000000000000000000000000000000000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c660000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000007b920aa00000000000000000000000000000000000000000000000000000000ffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff00000000000000000000010000000000000000000000000000000000000000006787c7f9a80aa0f5ceddab2c54f1f5169c0b88e75dd5e19d5e858a64144c7dbc6818841ab9979379b712f05bf5316284ac48e388dba4038f832cb3c37f7aeeaffdffffffffffffffffffffffffffffffffffffc000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffc002000000000000000000000000000000ffffffff000000000000000000000000905d981207a7d0b6c62cc46ab0be2a076d0298e4a86d0ab79882dbd01ac37378e81b22ea00000000000000000000000000000000000000000000000000000000a1b9224c00000000000000000000000000000000000000000000000000000000fc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c476967617665727365202d204974656d730000000000000000000000000000000dc149f000000000000000000000000000000000000000000000000000000000421683f821a0574472445355be6d2b769119e8515f8376a1d7878523dfdecf7b0a41b90f0000000000000000000000000000000000000000000000000000000002016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0a709fd3aa96d9faf770e44a5aef2f4808a6fe3a5ddf546568f36ad3a3873f31d9b29de6900000000000000000000000000000000000000000000000000000000d3dc2a3a14cbd0cdbf3069fc3927e48506f271b9dda2c21625b93e6a99d3eb536d65206c656e677468000000000000000000000000000000000000000000000049647320616e6420616d6f756e7473206d757374206861766520746865207361f2c071ca000000000000000000000000000000000000000000000000000000009e7ed7f8e6dcd193d98e2fd5ebd44790ad3072ac13a6c8399c17d661a1faa4bd5f7eb40400000000000000000000000000000000000000000000000000000000206d69736d617463680000000000000000000000000000000000000000000000455243313135353a206163636f756e747320616e6420696473206c656e67746800000000000000000000000000000000000000000000003fffffffffffffffe0ea06f38f7e4f15e87567361213c28f235cccdaa1d7fd34c9db1dfe9489c6a09100000000000000000000000000000000000000600000000000000000000000006572206f7220617070726f766564000000000000000000000000000000000000455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e6d69736d61746368000000000000000000000000000000000000000000000000455243313135353a2069647320616e6420616d6f756e7473206c656e677468204e487b7100000000000000000000000000000000000000000000000000000000bc197c8100000000000000000000000000000000000000000000000000000000455243313135353a207472616e7366657220746f206e6f6e2d455243313135356472657373000000000000000000000000000000000000000000000000000000455243313135353a207472616e7366657220746f20746865207a65726f206164000000000000000000000000000000000000004000000000000000000000000065d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2585db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f7420706175736564000000000000000000000000209699368efae3c2ab13a6e9d9f9aceb6c5aebfb5ffd7bd0a9ff6281a30b5739df6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7209699368efae3c2ab13a6e9d9f9aceb6c5aebfb5ffd7bd0a9ff6281a30b57381854b241000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000800000000000000000a07d2299ffffffffffffffffffffffffffffffffffffffffffffffffffffffffd9b67a25ffffffffffffffffffffffffffffffffffffffffffffffffffffffffd9b67a2600000000000000000000000000000000000000000000000000000000f6a7d85700000000000000000000000000000000000000000000000000000000a07d229a00000000000000000000000000000000000000000000000000000000ad0d7f6c0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000000e89341c000000000000000000000000000000000000000000000000000000002a55205a00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000100000000000000006420746f6b656e73000000000000000000000000000000000000000000000000455243313135353a204552433131353552656365697665722072656a65637465000000000000000000000000000000000000000000000000ffffffffffffffa07e61c209e219816f2d6552de7fdbac392549e401c2ca89cd18a229b82bce31a27ec44d5489e2b86ed2f87d84b04b5a3949fba967937842e10302a5545dfc6315a4461be494c8ac4161bbebae7582b8b9702b218cee52e3af7374f39c418f8bde9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6bc4802b000000000000000000000000000000000000000000000000000000000326d994cdb81aaccb84aa1f62bae636dc0aaf98ab22f66b0c9224f1edccd7cc9c3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f624a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb7300000000000000000000000000000000000000000000000000000000000000455243313135353a206d696e7420746f20746865207a65726f20616464726573b6f2b9310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a40000000000000000000000006572726564000000000000000000000000000000000000000000000000000000536f756c626f756e6420746f6b656e2063616e6e6f74206265207472616e7366616e636500000000000000000000000000000000000000000000000000000000455243313135353a206275726e20616d6f756e7420657863656564732062616c455243313135353a206275726e2066726f6d20746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000004e6f7420656e6f7567682062616c616e636500000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572b16d4252d76a2f7ee33d474bc2c2dc94669e3f2decb8f0157a2190322736d828
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000074eb92b33f2400eb14f6d6725b14f76078d5e731000000000000000000000000f62dceddd3a9aa9239f068a6dcd7a08c95d903d000000000000000000000000000000000000000000000000000000000000001f4
-----Decoded View---------------
Arg [0] : gameRegistryAddress (address): 0x74eb92b33f2400EB14F6D6725B14F76078d5E731
Arg [1] : royaltiesAddress (address): 0xF62DcedDd3A9Aa9239f068A6DCD7a08C95D903D0
Arg [2] : feeNumerator (uint96): 500
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000074eb92b33f2400eb14f6d6725b14f76078d5e731
Arg [1] : 000000000000000000000000f62dceddd3a9aa9239f068a6dcd7a08c95d903d0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001f4
[ 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.